skills/session-handoff/SKILL.md
List and resume previous coding agent sessions by loading their context into the current session. Use when the user wants to (1) see previous sessions for the current directory with summaries, (2) continue work from a previous session by loading its full conversation context, (3) recover work from an interrupted session, or (4) transfer context between sessions. Supports Claude Code and Codex sessions.
npx skillsauth add pitzcarraldo/skills session-handoffInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Load previous coding agent session context into the current conversation to continue work seamlessly.
~/.claude/history.jsonl~/.codex/sessions/YYYY/MM/<id>/When user asks to see previous sessions:
# Run the list script
python3 .agents/skills/session-handoff/scripts/list_sessions.py
Output format:
Agent Session ID Last Active Summary
claude abc123... 2025-01-20 14:30 작업 내용 요약...
codex def456... 2025-01-19 09:15 다른 작업 내용...
When user specifies a session to continue (e.g., "세션 abc123 이어하기"):
For Claude Code sessions:
~/.claude/history.jsonlsessionIdFor Codex sessions:
~/.codex/sessions/YYYY/MM/<session-id>/state.jsonmessages arrayWhen resuming, present the loaded context clearly:
# 세션 핸드오프 완료
**세션 ID**: <session-id>
**Agent**: <agent-type>
**마지막 활동**: <timestamp>
## 이전 대화 내용
<formatted conversation history>
---
이어서 작업하겠습니다. 무엇을 도와드릴까요?
cwd)sessionId - group and deduplicatestate.jsondevelopment
Review a tech spec document written in the team's Notion template format (Summary, Background, Goals, Non-Goals, Plan, Measuring Impact, Security/Privacy/Risks, Other Considerations, Milestones, Open Questions). Use when the user asks to "테크 스펙 리뷰", "tech spec 리뷰", "스펙 문서 리뷰", "이 스펙 봐줘", or provides a Notion/Google Docs/Markdown tech spec link or file and asks for feedback, critique, or readiness check before sharing with the team.
tools
Draft a daily standup from the current user's Slack, GitHub, Linear, and Google Calendar activity. Use when the user asks to create, prepare, or summarize a standup/status update from connected app activity; to collect a user's work for a date; or to verify whether Slack, GitHub, Linear, and Google Calendar connectors/MCP tools are available before drafting a standup.
development
Pre-push CodeRabbit review-fix loop. Runs local CodeRabbit review, fixes valid issues, and repeats until clean so the branch passes CodeRabbit review on push with no additional comments. Use when the user says "review and fix", "review loop", or wants to ensure the branch is CodeRabbit-clean before pushing.
tools
This skill should be used when the user asks to "rename branch", "change branch name", "update branch name based on changes", or wants to create a meaningful branch name based on the changes.