con un clic
task-plan
Plan HOW to implement — codebase exploration, concrete steps, test strategy
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ú
Plan HOW to implement — codebase exploration, concrete steps, test strategy
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
| name | task-plan |
| description | Plan HOW to implement — codebase exploration, concrete steps, test strategy |
You are planning how to implement a designed solution. The plan file already has Problem Statement, Approach, and Acceptance Criteria. Your job is to explore the actual codebase and produce a concrete, executable implementation plan.
Title: <task title>
Issue: <issue number>
Repo: <repo name>
Plan: <plan file path>
Body: |
<current board body>
Read the plan file to get the full context. If Body contains prior planning context, pick up where you left off.
Invoke relevant thinking skills (from the repo's available_skills config) and read the actual source files that will be affected.
What you're looking for:
Extend the plan file with ## Implementation Plan:
## Implementation Plan
### Test strategy
- Existing factory functions to use: <list>
- New factory functions needed: <list>
- Test type: <pure function / resource / channel>
- Key assertions: <what the tests prove>
### Order of changes
1. <first change>
2. <second change>
...
### Files to modify
- `path/to/file.ex` — <brief description of changes>
### New files
- <if any, or "(none)">
### Technical decisions
- <implementation-level choices>
Test strategy is listed first because it drives the order (test-first mandate).
The order of changes is the critical section — it's what makes Implement high-autonomy. If the order is wrong or incomplete, Implement stalls.
If exploration reveals the design won't work (assumed module doesn't exist, undiscovered constraint, etc.), flag this to the user and ask what they want to do. If the user wants to regress:
```completion
status: regressed
regress_to: Design
summary: <what was discovered that invalidates the design>
```
Summarize: test strategy, order of changes, files to modify, key technical decisions. Ask if the user is satisfied and ready to move to Implement. User confirms conversationally.
When the user confirms:
```completion
status: done
plan: <plan file path>
summary: <one-line summary of the implementation plan>
comment: |
## Implementation Plan
### Files to Modify
- <files and brief descriptions>
### Order of Changes
1. <first change>
### Test Strategy
- <test approach>
```
status: pausedWrite the code — execute the implementation plan with high autonomy
Skeptical review of implementation — actively look for what's wrong
Define and articulate a problem before exploring solutions
Explore solutions to a defined problem — approach, acceptance criteria, scope
Documentation, decision records, cleanup, and push