resume-handoff▌
parcadei/continuous-claude-v3 · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
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.
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/plansorthoughts/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-XXXXwhereENG-XXXXis the ticket number. e.g. forENG-2124the handoffs would be inthoughts/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-SSin 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/plansorthoughts/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.
- locate the most recent handoff document for the ticket. Tickets will be located in
-
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 krakenimplement Large features, new systems, major components architectplan Feature design, system architecture, implementation planning phoenixplan Refactoring plans, migrations, codebase restructuring heralddeploy Releases, deployments, publishing maestroorchestrate Complex multi-agent workflows Workers (focused specialists):
Agent Domain Use For sparkimplement Quick fixes, patches, minor tweaks scribedocument Documentation, guides, explanations sleuthdebug Bug investigation, tracing, root cause analysis aegisdebug Security audits, vulnerability scanning profilerdebug Performance optimization, bottleneck analysis arbitervalidate Unit tests atlasvalidate E2E/integration tests oracleresearch External docs, best practices, how-to scoutresearch Codebase exploration, finding existing code pathfinderresearch Repository structure analysis plan-reviewerreview Feature plan review, design validation plan-reviewerreview Migration review, refactoring validation chroniclersession 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...
How to use resume-handoff on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add resume-handoff
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches resume-handoff from GitHub repository parcadei/continuous-claude-v3 and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate resume-handoff. Access the skill through slash commands (e.g., /resume-handoff) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★44 reviews- ★★★★★Carlos Li· Dec 28, 2024
resume-handoff has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Ganesh Mohane· Dec 20, 2024
Keeps context tight: resume-handoff is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sofia Malhotra· Dec 20, 2024
resume-handoff fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Camila Dixit· Nov 19, 2024
Keeps context tight: resume-handoff is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Sakshi Patil· Nov 11, 2024
resume-handoff has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Advait Ghosh· Nov 11, 2024
Registry listing for resume-handoff matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Advait Gill· Oct 10, 2024
resume-handoff is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Chaitanya Patil· Oct 2, 2024
Solid pick for teams standardizing on skills: resume-handoff is focused, and the summary matches what you get after install.
- ★★★★★Arya Gonzalez· Oct 2, 2024
resume-handoff reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Amelia Abbas· Sep 21, 2024
resume-handoff is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 44