writing-plans
Convert test scenarios into ordered implementation plans for TDD
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Convert test scenarios into ordered implementation plans for TDD
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Structured code review
Find and load available skills
PR description generation
Spec-faithful implementation for spec-driven development
Architecture and interface design for spec-driven development
Codebase analysis and context gathering for spec-driven development
| name | writing-plans |
| description | Convert test scenarios into ordered implementation plans for TDD |
| methodology | tdd |
Convert a list of test scenarios into an ordered implementation plan. This skill is used by the Planner after the Brainstormer produces scenarios.
Review scenarios: Read the brainstorming output carefully.
Group into test suites: Organize scenarios by the code unit they test.
Order the tests: Sequence tests from simplest to most complex.
Write the test plan: For each test, specify:
TestFunctionName_Scenario_ExpectedResult)Identify implementation dependencies: List what code must be written.
Estimate complexity: Flag high-effort items.
## Test Plan
### Suite: <FunctionName>
- [ ] Test: TestFunctionName_HappyPath_ReturnsResult
Setup: <what to prepare>
Action: call FunctionName with <inputs>
Assert: result equals <expected>
- [ ] Test: TestFunctionName_EmptyInput_ReturnsError
...
## Implementation Dependencies
1. <what needs to be implemented>
2. ...
## Complexity Estimates
- TestFunctionName_HappyPath: Simple
- ...
Hand this plan to the Implementer. Do NOT write implementation code.