From cc-query
Resume work from a handoff document. Use when the user says 'pickup' or wants to start a new session from a previous handoff file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cc-query:pickupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Resume work from a handoff document created by the `/handoff` skill.
Resume work from a handoff document created by the /handoff skill.
If the user provided a path, use it. Otherwise, find the most recent handoff file:
ls -t handoff--*.md 2>/dev/null | head -1
If no handoff files found, ask the user for a path.
Read the handoff file. Extract:
Use AskUserQuestion to ask what to work on next. Present 2-4 options derived from the handoff:
Based on user selection, read referenced files from the "Files of Interest" table to restore working context. Focus on files with e (edit) operations as they represent active work.
If the handoff includes a "Key Conversation Flow" or "Longest Messages" table, use the retrieval script to get full content for important items:
${CLAUDE_PLUGIN_ROOT}/skills/pickup/scripts/get-content.sh <id> [type] [session_id]
# Tool calls (toolu_*): type not needed, session_id is arg 2
# Messages: type required (U=human, T=thinking, A=assistant), session_id is arg 3
The session ID is in the handoff header.
Summarize the selected task and relevant context, then proceed with implementation.
npx claudepluginhub dannycoates/cc-query --plugin cc-queryLoads, validates, and resumes handoff documents from .hatch3r/handoffs/active/ with schema, integrity, expiry, and git_ref drift checks before surfacing content as user-tier context.
Use when resuming work from a previous session that reached context threshold, or when a handoff summary exists. Reads handoff state and markdown to restore context, todos, and continue seamlessly.
Writes or updates structured handoff documents (HANDOFF.md) with Goal, First Action, Context, Progress, successes, failures, and next steps for resuming work with a fresh agent.