Resume work from a handoff document
You are tasked with resuming work from a handoff document through an interactive process. These handoffs contain critical context, learnings, and next steps from previous work sessions that need to be understood and continued.
Initial Response
When this command is invoked:
If the path to a handoff document was provided:
- If a handoff document path was provided as a parameter, skip the default message
- Immediately read the handoff document FULLY
- Immediately read any research or plan documents that it links to under
thoughts/shared/plans or thoughts/shared/research. do NOT use a sub-agent to read these critical files.
- Begin the analysis process by ingesting relevant context from the handoff document, reading additional files it mentions
- Then propose a course of action to the user and confirm, or ask for clarification on direction.
If a ticket number (like ENG-XXXX) was provided:
- locate the most recent handoff document for the ticket. Tickets will be located in
thoughts/shared/handoffs/ENG-XXXX where ENG-XXXX is the ticket number. e.g. for ENG-2124 the handoffs would be in thoughts/shared/handoffs/ENG-2124/. List this directory's contents.
- There may be zero, one or multiple files in the directory.
- If there are zero files in the directory, or the directory does not exist: tell the user: "I'm sorry, I can't seem to find that handoff document. Can you please provide me with a path to it?"
- If there is only one file in the directory: proceed with that handoff
- If there are multiple files in the directory: using the date and time specified in the file name (it will be in the format
YYYY-MM-DD_HH-MM-SS in 24-hour time format), proceed with the most recent handoff document.
- Immediately read the handoff document FULLY
- Immediately read any research or plan documents that it links to under
thoughts/shared/plans or thoughts/shared/research; do NOT use a sub-agent to read these critical files.
- Begin the analysis process by ingesting relevant context from the handoff document, reading additional files it mentions
- Then propose a course of action to the user and confirm, or ask for clarification on direction.
If no parameters provided, respond with:
I'll help you resume work from a handoff document. Let me find the available handoffs.
Which handoff would you like to resume from?
Tip: You can invoke this command directly with a handoff path: `/resume_handoff `thoughts/shared/handoffs/ENG-XXXX/YYYY-MM-DD_HH-MM-SS_ENG-XXXX_description.md`
or using a ticket number to resume from the most recent handoff for that ticket: `/resume_handoff ENG-XXXX`
Then wait for the user's input.
Process Steps
Step 1: Read and Analyze Handoff
Read handoff document completely:
- Use the Read tool WITHOUT limit/offset parameters
- Extract all sections:
- Task(s) and their statuses
- Recent changes
- Learnings
- Artifacts
- Action items and next steps
- Other notes
Spawn focused research tasks:
Based on the handoff content, spawn parallel research tasks to verify current state:
Task 1 - Gather artifact context:
Read all artifacts mentioned in the handoff.
1. Read feature documents listed in "Artifacts"
2. Read implementation plans referenced
3. Read any research documents mentioned
4. Extract key requirements and decisions
Use tools: Read
Return: Summary of artifact contents and key decisions
Wait for ALL sub-tasks to complete before proceeding
Read critical files identified:
- Read files from "Learnings" section completely
- Read files from "Recent changes" to understand modifications
- Read any new related files discovered during research
Step 2: Synthesize and Present Analysis
Present comprehensive analysis:
I've analyzed the handoff from [date] by [researcher]. Here's the current situation:
**Original Tasks:**
- [Task 1]: [Status from handoff] → [Current verification]
- [Task 2]: [Status from handoff] → [Current verification]
**Key Learnings Validated:**
- [Learning with file:line reference] - [Still valid/Changed]
- [Pattern discovered] - [Still applicable/Modified]
**Recent Changes Status:**
- [Change 1] - [Verified present/Missing/Modified]
- [Change 2] - [Verified present/Missing/Modified]
**Artifacts Reviewed:**
- [Document 1]: [Key takeaway]
- [Document 2]: [Key takeaway]
**Recommended Next Actions:**
Based on the handoff's action items and current state:
1. [Most logical next step based on handoff]
2. [Second priority action]
3. [Additional tasks discovered]
**Potential Issues Identified:**
- [Any conflicts or regressions found]
- [Missing dependencies or broken code]
Shall I proceed with [recommended action 1], or would you like to adjust the approach?
Get confirmation before proceeding
Step 3: Create Action Plan
Use TodoWrite to create task list:
- Convert action items from handoff into todos
- Add any new tasks discovered during analysis
- Prioritize based on dependencies and handoff guidance
Present the plan:
I've created a task list based on the handoff and current analysis:
[Show todo list]
Ready to begin with the first task: [task description]?
Step 4: Route to Specialist Agent
CRITICAL: Do NOT implement directly. Always spawn via Task tool.
Analyze task type and select specialist agent:
Leads (can spawn workers):
| Agent |
Domain |
Use For |
kraken |
implement |
Large features, new systems, major components |
architect |
plan |
Feature design, system architecture, implementation planning |
phoenix |
plan |
Refactoring plans, migrations, codebase restructuring |
herald |
deploy |
Releases, deployments, publishing |
maestro |
orchestrate |
Complex multi-agent workflows |
Workers (focused specialists):
| Agent |
Domain |
Use For |
spark |
implement |
Quick fixes, patches, minor tweaks |
scribe |
document |
Documentation, guides, explanations |
sleuth |
debug |
Bug investigation, tracing, root cause analysis |
aegis |
debug |
Security audits, vulnerability scanning |
profiler |
debug |
Performance optimization, bottleneck analysis |
arbiter |
validate |
Unit tests |
atlas |
validate |
E2E/integration tests |
oracle |
research |
External docs, best practices, how-to |
scout |
research |
Codebase exploration, finding existing code |
pathfinder |
research |
Repository structure analysis |
plan-reviewer |
review |
Feature plan review, design validation |
plan-reviewer |
review |
Migration review, refactoring validation |
chronicler |
session |
Session analysis, history summaries |
Spawn the specialist via Task tool:
Use Task tool with:
- subagent_type: [selected agent from above]
- prompt: [task description + relevant handoff context + learnings]
Include handoff context in the prompt:
- Key learnings from the handoff
- File references with line numbers
- Patterns to follow
- Pitfalls to avoid
Wait for agent completion, then proceed to next task
Guidelines
Be Thorough in Analysis:
- Read the entire handoff document first
- Verify ALL mentioned changes still exist
- Check for any regressions or conflicts
- Read all referenced artifacts
Be Interactive:
- Present findings before starting work
- Get buy-in on the approach
- Allow for course corrections
- Adapt based on current state vs handoff state
Leverage Handoff Wisdom:
- Pay special attention to "Learnings" section
- Apply documented patterns and approaches
- Avoid repeating mistakes mentioned
- Build on discovered solutions
Track Continuity:
- Use TodoWrite to maintain task continuity
- Reference the handoff document in commits
- Document any deviations from original plan
- Consider creating a new handoff when done
Validate Before Acting:
- Never assume handoff state matches current state
- Verify all file references still exist
- Check for breaking changes since handoff
- Confirm patterns are still valid
Common Scenarios
Scenario 1: Clean Continuation
- All changes from handoff are present
- No conflicts or regressions
- Clear next steps in action items
- Proceed with recommended actions
Scenario 2: Diverged Codebase
- Some changes missing or modified
- New related code added since handoff
- Need to reconcile differences
- Adapt plan based on current state
Scenario 3: Incomplete Handoff Work
- Tasks marked as "in_progress" in handoff
- Need to complete unfinished work first
- May need to re-understand partial implementations
- Focus on completing before new work
Scenario 4: Stale Handoff
- Significant time has passed
- Major refactoring has occurred
- Original approach may no longer apply
- Need to re-evaluate strategy
Example Interaction Flow
User: /resume_handoff specification/feature/handoffs/handoff-0.md
Assistant: Let me read and analyze that handoff document...
[Reads handoff completely]
[Spawns research tasks]
[Waits for completion]
[Reads identified files]
I've analyzed the handoff from [date]. Here's the current situation...
[Presents analysis]
Shall I proceed with implementing the webhook validation fix, or would you like to adjust the approach?
User: Yes, proceed with the webhook validation
Assistant: This is a bugfix task, so I'll route to the `spark` agent.
[Uses Task tool with subagent_type="spark" and prompt containing:
- The webhook validation fix task
- Key learnings from handoff
- Relevant file:line references
- Patterns to follow]
[Waits for spark agent to complete]
The spark agent has completed the webhook validation fix. Moving to the next task...
1---2name: resume-handoff3description: Resume work from handoff document with context analysis and validation4---5
6# Resume work from a handoff document
7
8You are tasked with resuming work from a handoff document through an interactive process. These handoffs contain critical context, learnings, and next steps from previous work sessions that need to be understood and continued.
9
10## Initial Response
11
12When this command is invoked:
13
141. **If the path to a handoff document was provided**:
15 - If a handoff document path was provided as a parameter, skip the default message
16 - Immediately read the handoff document FULLY
17 - Immediately read any research or plan documents that it links to under `thoughts/shared/plans` or `thoughts/shared/research`. do NOT use a sub-agent to read these critical files.
18 - Begin the analysis process by ingesting relevant context from the handoff document, reading additional files it mentions
19 - Then propose a course of action to the user and confirm, or ask for clarification on direction.
20
212. **If a ticket number (like ENG-XXXX) was provided**:
22 - locate the most recent handoff document for the ticket. Tickets will be located in `thoughts/shared/handoffs/ENG-XXXX` where `ENG-XXXX` is the ticket number. e.g. for `ENG-2124` the handoffs would be in `thoughts/shared/handoffs/ENG-2124/`. **List this directory's contents.**
23 - There may be zero, one or multiple files in the directory.
24 - **If there are zero files in the directory, or the directory does not exist**: tell the user: "I'm sorry, I can't seem to find that handoff document. Can you please provide me with a path to it?"
25 - **If there is only one file in the directory**: proceed with that handoff
26 - **If there are multiple files in the directory**: using the date and time specified in the file name (it will be in the format `YYYY-MM-DD_HH-MM-SS` in 24-hour time format), proceed with the _most recent_ handoff document.
27 - Immediately read the handoff document FULLY
28 - Immediately read any research or plan documents that it links to under `thoughts/shared/plans` or `thoughts/shared/research`; do NOT use a sub-agent to read these critical files.
29 - Begin the analysis process by ingesting relevant context from the handoff document, reading additional files it mentions
30 - Then propose a course of action to the user and confirm, or ask for clarification on direction.
31
323. **If no parameters provided**, respond with:
33```
34I'll help you resume work from a handoff document. Let me find the available handoffs.
35
36Which handoff would you like to resume from?
37
38Tip: You can invoke this command directly with a handoff path: `/resume_handoff `thoughts/shared/handoffs/ENG-XXXX/YYYY-MM-DD_HH-MM-SS_ENG-XXXX_description.md`
39
40or using a ticket number to resume from the most recent handoff for that ticket: `/resume_handoff ENG-XXXX`
41```
42
43Then wait for the user's input.
44
45## Process Steps
46
47### Step 1: Read and Analyze Handoff
48
491. **Read handoff document completely**:
50 - Use the Read tool WITHOUT limit/offset parameters
51 - Extract all sections:
52 - Task(s) and their statuses
53 - Recent changes
54 - Learnings
55 - Artifacts
56 - Action items and next steps
57 - Other notes
58
592. **Spawn focused research tasks**:
60 Based on the handoff content, spawn parallel research tasks to verify current state:
61
62 ```
63 Task 1 - Gather artifact context:
64 Read all artifacts mentioned in the handoff.
65 1. Read feature documents listed in "Artifacts"
66 2. Read implementation plans referenced
67 3. Read any research documents mentioned
68 4. Extract key requirements and decisions
69 Use tools: Read
70 Return: Summary of artifact contents and key decisions
71 ```
72
733. **Wait for ALL sub-tasks to complete** before proceeding
74
754. **Read critical files identified**:
76 - Read files from "Learnings" section completely
77 - Read files from "Recent changes" to understand modifications
78 - Read any new related files discovered during research
79
80### Step 2: Synthesize and Present Analysis
81
821. **Present comprehensive analysis**:
83 ```
84 I've analyzed the handoff from [date] by [researcher]. Here's the current situation:
85
86 **Original Tasks:**
87 - [Task 1]: [Status from handoff] → [Current verification]
88 - [Task 2]: [Status from handoff] → [Current verification]
89
90 **Key Learnings Validated:**
91 - [Learning with file:line reference] - [Still valid/Changed]
92 - [Pattern discovered] - [Still applicable/Modified]
93
94 **Recent Changes Status:**
95 - [Change 1] - [Verified present/Missing/Modified]
96 - [Change 2] - [Verified present/Missing/Modified]
97
98 **Artifacts Reviewed:**
99 - [Document 1]: [Key takeaway]
100 - [Document 2]: [Key takeaway]
101
102 **Recommended Next Actions:**
103 Based on the handoff's action items and current state:
104 1. [Most logical next step based on handoff]
105 2. [Second priority action]
106 3. [Additional tasks discovered]
107
108 **Potential Issues Identified:**
109 - [Any conflicts or regressions found]
110 - [Missing dependencies or broken code]
111
112 Shall I proceed with [recommended action 1], or would you like to adjust the approach?
113 ```
114
1152. **Get confirmation** before proceeding
116
117### Step 3: Create Action Plan
118
1191. **Use TodoWrite to create task list**:
120 - Convert action items from handoff into todos
121 - Add any new tasks discovered during analysis
122 - Prioritize based on dependencies and handoff guidance
123
1242. **Present the plan**:
125 ```
126 I've created a task list based on the handoff and current analysis:
127
128 [Show todo list]
129
130 Ready to begin with the first task: [task description]?
131 ```
132
133### Step 4: Route to Specialist Agent
134
135**CRITICAL: Do NOT implement directly. Always spawn via Task tool.**
136
1371. **Analyze task type and select specialist agent**:
138
139 **Leads (can spawn workers):**
140 | Agent | Domain | Use For |
141 |-------|--------|---------|
142 | `kraken` | implement | Large features, new systems, major components |
143 | `architect` | plan | Feature design, system architecture, implementation planning |
144 | `phoenix` | plan | Refactoring plans, migrations, codebase restructuring |
145 | `herald` | deploy | Releases, deployments, publishing |
146 | `maestro` | orchestrate | Complex multi-agent workflows |
147
148 **Workers (focused specialists):**
149 | Agent | Domain | Use For |
150 |-------|--------|---------|
151 | `spark` | implement | Quick fixes, patches, minor tweaks |
152 | `scribe` | document | Documentation, guides, explanations |
153 | `sleuth` | debug | Bug investigation, tracing, root cause analysis |
154 | `aegis` | debug | Security audits, vulnerability scanning |
155 | `profiler` | debug | Performance optimization, bottleneck analysis |
156 | `arbiter` | validate | Unit tests |
157 | `atlas` | validate | E2E/integration tests |
158 | `oracle` | research | External docs, best practices, how-to |
159 | `scout` | research | Codebase exploration, finding existing code |
160 | `pathfinder` | research | Repository structure analysis |
161 | `plan-reviewer` | review | Feature plan review, design validation |
162 | `plan-reviewer` | review | Migration review, refactoring validation |
163 | `chronicler` | session | Session analysis, history summaries |
164
1652. **Spawn the specialist via Task tool**:
166 ```
167 Use Task tool with:
168 - subagent_type: [selected agent from above]
169 - prompt: [task description + relevant handoff context + learnings]
170 ```
171
1723. **Include handoff context in the prompt**:
173 - Key learnings from the handoff
174 - File references with line numbers
175 - Patterns to follow
176 - Pitfalls to avoid
177
1784. **Wait for agent completion**, then proceed to next task
179
180## Guidelines
181
1821. **Be Thorough in Analysis**:
183 - Read the entire handoff document first
184 - Verify ALL mentioned changes still exist
185 - Check for any regressions or conflicts
186 - Read all referenced artifacts
187
1882. **Be Interactive**:
189 - Present findings before starting work
190 - Get buy-in on the approach
191 - Allow for course corrections
192 - Adapt based on current state vs handoff state
193
1943. **Leverage Handoff Wisdom**:
195 - Pay special attention to "Learnings" section
196 - Apply documented patterns and approaches
197 - Avoid repeating mistakes mentioned
198 - Build on discovered solutions
199
2004. **Track Continuity**:
201 - Use TodoWrite to maintain task continuity
202 - Reference the handoff document in commits
203 - Document any deviations from original plan
204 - Consider creating a new handoff when done
205
2065. **Validate Before Acting**:
207 - Never assume handoff state matches current state
208 - Verify all file references still exist
209 - Check for breaking changes since handoff
210 - Confirm patterns are still valid
211
212## Common Scenarios
213
214### Scenario 1: Clean Continuation
215- All changes from handoff are present
216- No conflicts or regressions
217- Clear next steps in action items
218- Proceed with recommended actions
219
220### Scenario 2: Diverged Codebase
221- Some changes missing or modified
222- New related code added since handoff
223- Need to reconcile differences
224- Adapt plan based on current state
225
226### Scenario 3: Incomplete Handoff Work
227- Tasks marked as "in_progress" in handoff
228- Need to complete unfinished work first
229- May need to re-understand partial implementations
230- Focus on completing before new work
231
232### Scenario 4: Stale Handoff
233- Significant time has passed
234- Major refactoring has occurred
235- Original approach may no longer apply
236- Need to re-evaluate strategy
237
238## Example Interaction Flow
239
240```
241User: /resume_handoff specification/feature/handoffs/handoff-0.md
242Assistant: Let me read and analyze that handoff document...
243
244[Reads handoff completely]
245[Spawns research tasks]
246[Waits for completion]
247[Reads identified files]
248
249I've analyzed the handoff from [date]. Here's the current situation...
250
251[Presents analysis]
252
253Shall I proceed with implementing the webhook validation fix, or would you like to adjust the approach?
254
255User: Yes, proceed with the webhook validation
256Assistant: This is a bugfix task, so I'll route to the `spark` agent.
257
258[Uses Task tool with subagent_type="spark" and prompt containing:
259 - The webhook validation fix task
260 - Key learnings from handoff
261 - Relevant file:line references
262 - Patterns to follow]
263
264[Waits for spark agent to complete]
265
266The spark agent has completed the webhook validation fix. Moving to the next task...
267```