원클릭으로
task-plan
Plan HOW to implement — codebase exploration, concrete steps, test strategy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Plan HOW to implement — codebase exploration, concrete steps, test strategy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Write 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
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: paused