Agent skill
claude-session-handoff
Recover working context from a prior Claude Code session by reading its JSONL conversation log and turning it into a clean handoff for Codex or another agent. Use when the user wants Codex to continue where Claude left off in the same repo, asks you to get up to speed on previous work, wants to resume a Claude thread after an interruption or outage, or needs help finding and summarizing the relevant file in ~/.claude/projects/.
Install this agent skill to your Project
npx add-skill https://github.com/buddyh/agent-skills/tree/main/claude-session-handoff
SKILL.md
Claude Session Handoff
Recover the state of a prior Claude Code session, then confirm what actually exists in the current workspace before continuing.
Workflow
1. Find the right session
Default to the current project path unless the user gives a specific JSONL file.
For the common handoff case, do not search every Claude transcript first. Bias toward the current repo, the most recent top-level session, and recent activity.
Run the helper script:
python3 scripts/claude_session_handoff.py --project-path "$PWD"
Useful variants:
python3 scripts/claude_session_handoff.py --project-path "$PWD" --list
python3 scripts/claude_session_handoff.py --project-path "$PWD" --date YYYY-MM-DD
python3 scripts/claude_session_handoff.py --session /path/to/session.jsonl
python3 scripts/claude_session_handoff.py --recent 10
python3 scripts/claude_session_handoff.py --project-path "$PWD" --date YYYY-MM-DD --contains "anchor phrase" --from-match
Use these defaults:
- Start with the current repo and the newest top-level session.
- If the user implies "today", resolve that to the exact local date and pass
--date YYYY-MM-DD. - Read the last meaningful turns first. Do not read the entire transcript by default.
- Use
--listwhen multiple Claude sessions exist for the same project and you want the candidate set before choosing one. - Use
--recentwhen the repo moved and the storedcwdno longer matches the current path.
2. Read only the meaningful turns
The helper script already filters the noisy parts, but keep these rules in mind:
- Ignore
subagents/files unless the user explicitly wants delegated-session context. - Ignore local-command pseudo-messages such as
<local-command-caveat>,<command-name>, and<local-command-stdout>. - Ignore assistant messages that are only
[thinking]or other non-user-visible placeholders. - Treat images as context markers, not text that needs verbatim transcription.
Default to the most recent meaningful turns only. Large transcripts should be narrowed before you read deeply.
If the session is large and the user wants a specific earlier point, ask for one anchor only:
- a distinctive phrase
- a short quoted line
- an approximate time
Prefer phrase matching over line numbers. Use --contains "anchor phrase" --from-match to jump to the relevant point without reading the full transcript.
3. Reconstruct the handoff
Summarize the session in this order:
- The user's original goal
- The options, decisions, or constraints already discussed
- What actually happened in the session
- What did not happen yet
- The exact next step
Call out failures explicitly. If the session ended on an API error, tool error, overload, or interrupted command, say so instead of implying the work completed.
4. Verify the workspace separately
A Claude session log tells you conversation state, not code state. Confirm the actual workspace before continuing:
- Check whether the repo exists and whether it is a git repository
- Inspect the file tree with
lsorrg --files - Run
git status --shortwhen git is present - Read the touched files or run targeted verification when the session claims code was written
If the workspace is empty or unchanged, say that explicitly. Do not infer implementation from discussion alone.
For interrupted-session recovery, assume the last discussed change may not have landed until you verify it in the workspace.
5. Report back concisely
Your handoff should usually include:
- The selected session file
- Whether the prior session was exploratory or implementation-focused
- Whether any code or files exist in the current workspace
- The unresolved next step
If you used an anchor phrase, also include the matched timestamp and make clear that the summary starts from that point rather than from the beginning of the session.
Resources
scripts/
claude_session_handoff.py: Find relevant Claude Code session files, filter meaningful user and assistant turns, and print a compact handoff-oriented summary
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
app-screenshots
Screenshot every view/screen of an app for marketing, product sites, and documentation. Use when asked to "screenshot the app", "capture all views", "get marketing screenshots", "screenshot every screen", or "product shots". Works with macOS native apps (screencapture), web apps (Puppeteer/Playwright), and Electron apps.
alexa-cli
Control Amazon Echo/Alexa devices via the `alexacli` CLI. Use when the user asks to speak/announce on Echo devices, send voice commands to Alexa, control smart home devices, list Alexa devices, or trigger routines.
agent-comms
Send messages to other Claude Code or Codex sessions via tmux. Hand off complex debugging context, get second opinions, share detailed technical findings across sessions.
transcribe-and-analyze
Transcribe audio and video from URLs (YouTube, direct media links) using WhisperKit locally. Optionally analyze transcripts with AI when explicitly requested. Use when users provide URLs to media content and request transcription or speech-to-text conversion.
deep-dive
Deep dive on any topic. Decomposes into subtopics, researches each in parallel with thorough source gathering, then synthesizes into a comprehensive report (4,000-10,000+ words, 40-100+ sources). Scales depth dynamically based on topic complexity. Use when asked for a deep dive, deep research, comprehensive analysis, or thorough investigation of a topic.
todoist-cli
Manage Todoist tasks via the `todoist` CLI. Use when the user asks to add tasks, complete tasks, list today's tasks, search tasks, manage projects/labels/sections, or interact with Todoist in any way.
Didn't find tool you were looking for?