What problem does it solve? Writing integration test cases for a meeting scheduling system requires repetitive boilerplate: login flows with RSA-encrypted credentials, creating prerequisite meetings, and cleaning up test data. This Skill generates ready-to-run Meeting Server test cases in both Markdown (agent-exec YAML) and Python pytest formats, enforcing strict rules so no hardcoded credentials or leftover test data ever appear. ## Core Features & Use Cases - Dual-format test case generation: Produces human-readable Markdown tables with agent-executable YAML blocks, or Python pytest scripts with reusable fixtures. - Mandatory setup/teardown injection: Automatically weaves login (via TEST_ACCOUNT/TEST_PASSWORD environment variables), meeting creation, and guaranteed deletion cleanup into every case that needs an existing meeting. - Domain-specific coverage: Handles recurring (cycle) meetings, time-conflict avoidance, meeting state-machine transitions, and auth/permission cases, with IDs like TC-MEETING-DELETE-001. - Use Case: Given a Meeting Server API document for the delete-meeting endpoint, generate a full suite of P0/P1 cases where each case logs in, creates a meeting dated the first of next month, runs the delete, and force-cleans up even on failure. ## Quick Start Generate Meeting Server test cases for the delete meeting API using the test-case-generator skill, with login credentials read from TEST_ACCOUNT and TEST_PASSWORD environment variables.