원클릭으로
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.