원클릭으로
plan-resume
Resume working on an in-progress implementation plan. Finds incomplete plans and provides context to continue.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Resume working on an in-progress implementation plan. Finds incomplete plans and provides context to continue.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Draft or amend an Architecture Decision Record (ADR) from a research synthesis or a design decision. Use when a decision needs to become a durable, reviewable record — and when extending or correcting a decision that has already landed.
Review an Architecture Decision Record (or coupled ADR set + cover) for grounding, decisiveness, completeness, and internal consistency before it is approved or landed — and to catch the drift that iteration introduces across coupled drafts and the cover. Reports findings; does not auto-fix unless asked.
Create and maintain a roadmap that sequences milestones and the plans, research, and decisions that fulfill them. Use when work spans many artifacts over time and needs one living place that shows the sequence, status, dependencies, and risks.
Create implementation plans following project conventions. Use when planning new features, refactors, or significant changes.
Review an implementation plan for correctness, feasibility, completeness, and internal consistency before it is approved or implemented — and to catch the reference drift that iteration introduces. Reports findings; does not auto-fix unless asked.
Resume a research plan. Spawns parallel agents if not started, checks progress, or synthesizes findings.
| name | plan-resume |
| description | Resume working on an in-progress implementation plan. Finds incomplete plans and provides context to continue. |
Find and resume work on an in-progress implementation plan.
Scan for in-progress plans:
.gumbo/plans/*/task-list.md files (exclude .gumbo/plans/archive/)- [ ]For each in-progress plan found, gather context:
.plan-state.json if it exists:
created_at - when the plan was createdupdated_at - last state updateplanning_agent_id - agent ID from original planning session (for resumption)current_task - task that was in progresslast_session_notes - notes from previous sessionprogress.completed / progress.total - task counts- [x] = completed- [ ] = incompleteHandle different scenarios:
No plans found:
No in-progress plans found in `.gumbo/plans/`.
To create a new plan, use `/plan-create <feature description>`.
One plan found: Display the resume output (see format below).
Multiple plans found: List all plans and ask user to choose:
Found multiple in-progress plans:
1. `.gumbo/plans/0006-rust-parser/` - 3/12 tasks (25%)
2. `.gumbo/plans/0007-output-formats/` - 0/8 tasks (0%)
Which plan would you like to resume? Enter the number or plan name.
Then display resume output for the chosen plan.
Display resume output:
**Resuming plan:** `.gumbo/plans/NNNN-feature-name/`
**Progress:** N/M tasks complete (X%)
**Created:** YYYY-MM-DD HH:MM UTC
**Last session:** YYYY-MM-DD HH:MM UTC (or "No previous session" if no state file)
**Planning agent:** `{agentId}` (or omit if not in state file)
**Last notes:** "Notes from previous session" (or omit if null)
**Next tasks:**
- [ ] **2.1** First incomplete task
- [ ] **2.2** Second incomplete task
- [ ] **2.3** Third incomplete task
Begin implementing the plan using strict TDD:
tasks/ for each task before starting itfeat(plan-NNNN): Phase N - <phase description>commits array in .plan-state.json/plan-review catches what the sweep missed.Record findings during implementation:
findings/ subdirectory in the active plan directory# Finding: Short Title
**Type:** discovery | diversion | plan-error | note | todo | cleanup
**Task:** 2.1 (which task surfaced this)
**Date:** YYYY-MM-DD
## Details
[What was found/changed/wrong]
## Impact
[How this affects the current plan or future work]
## Action Items
- [ ] Concrete next step (if any)
Resuming plan: .gumbo/plans/0008-rust-parser/
Progress: 3/12 tasks complete (25%)
Created: 2026-01-22 14:30 UTC
Last session: 2026-01-23 16:45 UTC
Planning agent: a1b2c3d4-e5f6-7890-abcd-ef1234567890
Last notes: "Completed data model, starting parser implementation"
Next tasks:
Found multiple in-progress plans:
.gumbo/plans/0006-rust-parser/ - 3/12 tasks (25%).gumbo/plans/0007-output-formats/ - 0/8 tasks (0%)Which plan would you like to resume? Enter the number or plan name.
No in-progress plans found in .gumbo/plans/.
All plans are either completed (in .gumbo/plans/archive/) or none exist yet.
To create a new plan, use /plan-create <feature description>.