RE

Analyzes handoff documentation to recover context and resume pending project tasks.

Install

mkdir -p .claude/skills/resume-handoff && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1118" && unzip -o skill.zip -d .claude/skills/resume-handoff && rm skill.zip

Installs to .claude/skills/resume-handoff

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Resume work from handoff document with context analysis and validation
70 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Read a handoff document fully
  • Read linked research or plan documents
  • Analyze context from the handoff document
  • Propose a course of action to the user
  • Create a task list using TodoWrite
  • Route tasks to a specialist agent

How it works

The skill reads a handoff document and any linked research, analyzes the content, and then proposes a course of action or creates a task list.

Inputs & outputs

You give it
A path to a handoff document or a ticket number (e.g., ENG-XXXX)
You get back
A proposed course of action, a task list, or a routed task to a specialist agent

When to use resume-handoff

  • Resume work from previous session
  • Analyze project handoff for task completion
  • Load ticket context for development

About this skill

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:

  1. 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.
  2. 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.
  3. 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

  1. 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
  2. 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
    
  3. Wait for ALL sub-tasks to complete before proceeding

  4. 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

  1. 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?
    
  2. Get confirmation before proceeding

Step 3: Create Action Plan

  1. 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
  2. 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.

  1. Analyze task type and select specialist agent:

    Leads (can spawn workers):

    AgentDomainUse For
    krakenimplementLarge features, new systems, major components
    architectplanFeature design, system architecture, implementation planning
    phoenixplanRefactoring plans, migrations, codebase restructuring
    heralddeployReleases, deployments, publishing
    maestroorchestrateComplex multi-agent workflows

    Workers (focused specialists):

    AgentDomainUse For
    sparkimplementQuick fixes, patches, minor tweaks
    scribedocumentDocumentation, guides, explanations
    sleuthdebugBug investigation, tracing, root cause analysis
    aegisdebugSecurity audits, vulnerability scanning
    profilerdebugPerformance optimization, bottleneck analysis
    arbitervalidateUnit tests
    atlasvalidateE2E/integration tests
    oracleresearchExternal docs, best practices, how-to
    scoutresearchCodebase exploration, finding existing code
    pathfinderresearchRepository structure analysis
    plan-reviewerreviewFeature plan review, design validation
    plan-reviewerreviewMigration review, refactoring validation
    chroniclersessionSession analysis, history summaries
  2. Spawn the specialist via Task tool:

    Use Task tool with:
    - subagent_type: [selected agent from above]
    - prompt: [task description + relevant handoff context + learnings]
    
  3. Include handoff context in the prompt:

    • Key learnings from the handoff
    • File references with line numbers
    • Patterns to follow
    • Pitfalls to avoid
  4. Wait for agent completion, then proceed to next task

Guidelines

  1. 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
  2. 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
  3. Leverage Handoff Wisdom:

    • Pay special attention to "Learnings" section
    • Apply documented patterns and approaches
    • Avoid repeating mistakes mentioned
    • Build on discovered solutions
  4. 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
  5. 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
 - R

---

*Content truncated.*

When not to use it

  • When the handoff document is stale and major refactoring has occurred
  • When the codebase has diverged significantly from the handoff
  • When the handoff work is incomplete and needs re-understanding

Limitations

  • Cannot proceed if no handoff document is found for a given ticket number
  • Requires explicit confirmation from the user before proceeding with recommended actions
  • Does not implement tasks directly but routes them to specialist agents

How it compares

This workflow automates the analysis of handoff documents and related files, then proposes actions or creates a task list, unlike manually reviewing documents and planning next steps.

Compared to similar skills

resume-handoff side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
resume-handoff (this skill)36moNo flagsIntermediate
notion-meeting-intelligence66moNo flagsIntermediate
meeting-briefing26moNo flagsIntermediate
personal-assistant39moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

notion-meeting-intelligence

openai

Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.

656

meeting-briefing

anthropics

Prepare structured briefings for meetings with legal relevance and track resulting action items. Use when preparing for contract negotiations, board meetings, compliance reviews, or any meeting where legal context, background research, or action tracking is needed.

213

personal-assistant

ailabs-393

This skill should be used whenever users request personal assistance tasks such as schedule management, task tracking, reminder setting, habit monitoring, productivity advice, time management, or any query requiring personalized responses based on user preferences and context. On first use, collects comprehensive user information including schedule, working habits, preferences, goals, and routines. Maintains an intelligent database that automatically organizes and prioritizes information, keeping relevant data and discarding outdated context.

36

digital-brain

muratcankoylan

This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.

15

meeting-sync

amanaiproduct

Sync new Granola meetings to local Knowledge folder. Use during morning planning, when user asks "what should I do today", or asks to review/sync meetings.

13

my-skill-name

dadbodgeoff

Brief description of what this skill does and when to use it. Be specific about capabilities and use cases to help agents decide when to load this skill.

12

Search skills

Search the agent skills registry