원클릭으로
implement-plan
Execute a plan from _plans/, implementing steps, checking off tasks, running tests, and documenting fixes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute a plan from _plans/, implementing steps, checking off tasks, running tests, and documenting fixes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create an implementation plan in _plans/ with embedded repo context and step-by-step task lists
Clone/pull git repos, verify local folders, auto-register orphans, and regenerate repos.md
Clone a git repo or register a local folder into repos/ and update repos.md with its description
Find and remove stale entries from repos.yaml whose directories no longer exist on disk
Iterate through all sub-repos in repos/ and stage/commit/push each one, then do the same for the master repo
Stage, commit, and push changes for the master repo only (excludes sub-repos in repos/)
| name | implement-plan |
| description | Execute a plan from _plans/, implementing steps, checking off tasks, running tests, and documenting fixes |
| user-invocable | true |
| origin | template |
Execute an implementation plan from _plans/, working through each step, updating the plan as you go, and running tests to verify.
This skill combines the "implement" and "run" phases into one — you build it, run it, test it, fix it, and the plan documents everything that happened.
The user provides the plan file to implement. For example:
/implement-plan _plans/20260409-auth-ui.plan.md/implement-plan auth-ui (shorthand — resolve to the matching .plan.md file in _plans/)/implement-plan (no argument — if only one plan has status: draft or status: in-progress, use that)_plans/.plan.md file- [x]) and which are pending (- [ ])For each repo listed in the plan's repos frontmatter:
repos/<name>/CLAUDE.md exists — if so, read and follow itrepos/<name>/AGENTS.md exists — if so, read and follow itUpdate the plan file's frontmatter:
status: in-progress
For each unchecked step (- [ ]), in order:
- [ ] to - [x]**Notes** line under the step:
- [x] Step 3: Add OAuth endpoint
- **Task**: Create POST /api/auth/google
- **Files**: `repos/backend-api/src/routes/auth.ts`
- **Pseudocode**: Validate token, create session
- **Notes**: Used existing session middleware instead of creating new one. Added rate limiting per security best practice.
IMPORTANT: Update the plan file after EACH step, not at the end. If the session is interrupted, the plan shows exactly where things stand.
After all implementation steps are complete:
If tests fail or the app has issues:
- [x] Fix: Corrected token validation logic
- **Notes**: The OAuth token response format changed in v2. Updated parser to handle both formats.
When all steps pass and tests are green:
status: completed
/commit-all-repos to commit")_plans/ and ask the user to pick one