design-test-cases
Design comprehensive test cases for a given set of requirements. Use before starting TDD to plan coverage.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design comprehensive test cases for a given set of requirements. Use before starting TDD to plan coverage.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyzes the extracted story document, capturing capability, acceptance criteria, edge cases, dependencies and open design questions. Use after extracting a story from a user request, to clarify the stories intended and likley imact. Use before designing the implementation.
Discovers the current application reality BEFORE designing or implementing. Surfaces relevant ADRs, existing code patterns, and target architecture.
Design the implementation of a new user story based on the current application reality, and analysis of the proposed user story.
Drafts a high-level implementation plan based on the extracted story document
Extract a user story from a given document or text, into a json format
Grades the quality of the extracted story document with additional details based on the User Story Quality Rubric
| name | design-test-cases |
| description | Design comprehensive test cases for a given set of requirements. Use before starting TDD to plan coverage. |
Analyze requirements and design test cases before writing any code. This is the planning phase of TDD.
Analyze the requirements and answer:
1. What is the core behavior being requested?
2. What are the inputs and expected outputs?
3. What are the boundary conditions?
4. What could go wrong (error cases)?
Create a test case list covering:
HAPPY PATH:
- [ ] Basic successful scenario
- [ ] Typical use case with valid inputs
EDGE CASES:
- [ ] Empty/null inputs
- [ ] Minimum valid values
- [ ] Maximum valid values
- [ ] Boundary conditions
ERROR CASES:
- [ ] Invalid input types
- [ ] Out of range values
- [ ] Missing required data
- [ ] System/dependency failures
SPECIAL CASES:
- [ ] Concurrent access (if applicable)
- [ ] Idempotency requirements
- [ ] Performance constraints
Utilize documented cases, and fill in any gaps.
Order tests by:
1. Core happy path (proves basic functionality)
2. Critical error handling
3. Edge cases
4. Nice-to-have scenarios
For each prioritized test, define:
- Test name following convention: Method_Scenario_ExpectedResult
- Arrange: What setup is needed?
- Act: What action triggers the behavior?
- Assert: What outcome proves success?
Capture test cases in a JSON file that follows the schema in schema/test-cases.schema.json. File should be named {workstream}.test-cases.json and placed in the same directory as the implementation plan.
Output the test cases in the following format:
- Test name following convention: Method_Scenario_ExpectedResult
- Arrange: What setup is needed?
- Act: What action triggers the behavior?
- Assert: What outcome proves success?
.process directory, named {skill-name}.done.json.