ワンクリックで
pickup
Resume work from a handoff document. Use when the user says 'pickup' or wants to start a new session from a previous handoff file.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Resume work from a handoff document. Use when the user says 'pickup' or wants to start a new session from a previous handoff file.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Query Claude Code conversation history and session data using SQL. Use when analyzing past conversations, token usage, tool patterns, agent activity, or extracting insights from session logs. Triggers on requests about session history, conversation analysis, usage statistics, or cc-query.
Creates detailed handoff documents for the current session. Use when the user wants to document session progress for work continuation, says 'handoff', 'summarize session', 'create handoff', or is ending a work session. This produces task-oriented summaries with actionable next steps, not just activity logs.
| name | pickup |
| description | Resume work from a handoff document. Use when the user says 'pickup' or wants to start a new session from a previous handoff file. |
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.