Handoff

Compact the current conversation into a handoff document for another agent to pick up.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/handoff-2, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/productivity/handoff/skills/handoff#main ~/.claude/skills/handoff-2

For one project only, change the path to .claude/skills/handoff-2. This skill also uses handoff-XXXXXX.md, setup.py, handoff_template_generator.py, redaction_linter.py, handoff_self_check.py, skill_recommender.py — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Handoff

Show the full text198 lines
namedescriptionlicenseargument-hintmetadata
handoffCompact the current conversation into a handoff document for another agent to pick up. Save to a user-configured location (OS temp, home folder, or per-project .handoff/), redact secrets before write, suggest skills for the next session, and auto-load the latest handoff on the next SessionStart. First-run setup asks where to save so the project folder never gets cluttered. Use when the user says 'hand this off', 'handoff doc', 'summarize this for a new session', 'compact this conversation', 'I'm ending this session', 'pick this up later', or any variation signaling intent to pass work to a fresh agent. Also trigger on implicit signals: the user announcing they're switching machines, ending the day mid-task, or context is growing long without a natural stopping point.MITWhat will the next session be used for? version: 1.0.0 voice: "Matt Pocock — no-duplication, reference-existing-artifacts, tailored to next-session focus inspired_by: "https://github.com/mattpocock/skills/tree/main/skills/productivity/handoff

Handoff

Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS — not the current workspace.

Include a "suggested skills" section in the document, which suggests skills that the agent should invoke.

Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.

Redact any sensitive information, such as API keys, passwords, or personally identifiable information.

If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.

Invocation Triggers

Explicit phrases (any of):

  • "hand this off"
  • "handoff doc"
  • "summarize this for a new session"
  • "compact this conversation"
  • "I'm ending this session"
  • "pick this up later"
  • "wrap this up for tomorrow"
  • "save this for the next session"

Implicit signals (no phrase, but the intent is unmistakable):

  • User announces they're switching machines or stopping for the day mid-task
  • Conversation context is growing long without a natural stopping point
  • User says "let me come back to this" or "I'll continue this later"

When you detect an implicit trigger, propose the handoff before running it: "Want me to write a handoff for the next session?" — never run it silently.

First-Run Setup

On first invocation, the skill asks where to save handoffs so the project folder never gets cluttered. Setup is offered once via "Run setup now? (Y/n)" — answering N uses OS-temp defaults for this run and never re-prompts. The user can rerun setup any time via /cs:handoff-setup.

See references/configuration.md for the full config field reference.

Output Path

The save location is read from the user's config (~/.config/handoff/config.json, or the project-local .handoff/config.json if present). When no config exists and the user declined setup, fall back to:

mktemp -t handoff-XXXXXX.md

Read the file before you write to it.

Section Template

The handoff doc has five sections. Use these exact headers:

  • Goal of next session — from the user's argument, or inferred from the most recent thread of the conversation.
  • State of play — what's done, what's in flight, what's blocked. Reference artifacts, do not paste them.
  • Open decisions — what the next agent must decide before continuing.
  • Skills to use — concrete list of 3-5 skills the next session should invoke, each with a one-line why.
  • Artifacts — paths/URLs to PRDs, plans, ADRs, issues, branches, PRs. Do not duplicate their contents.

See references/handoff_structure.md for a worked example.

The Agent's Job

Filling in the five sections is the agent's job, not the script's. Follow references/handoff_prompt.md as a mandatory checklist:

For each topic discussed in the conversation, decide explicitly: include in State of play / log as an Open decision / drop with reason.

Free-handing the summary leads to rosy progress reports and dropped blockers. The checklist prevents that.

Anti-Patterns

Matt's no-duplication discipline made concrete:

  • Do not paste the diff. Reference the branch or PR.
  • Do not retype the PRD. Link to its path.
  • Do not summarise what's already in the commit message. Link to the commit hash.
  • Do not list 20 skills. Pick the 3-5 the next session actually needs.
  • Do not narrate every message in the conversation. Compress to State + Decisions.

See references/deduplication_discipline.md for the full list.

Redaction

Before saving, the linter scans the draft for secrets and PII. In strict mode (default) it blocks save on findings; in warn mode it flags inline and saves anyway.

Redact:

  • API keys, OAuth tokens, JWT tokens
  • Passwords and DB connection strings
  • -----BEGIN ... PRIVATE KEY----- blocks
  • .env-style KEY=value lines containing secrets
  • Email addresses, phone numbers, names of unrelated third parties
  • Internal URLs containing tokens or session IDs

See references/redaction_checklist.md for the full pattern list and manual-review steps for what regex cannot catch.

SessionStart Auto-Load

When the plugin is installed, a SessionStart hook scans the configured save location for the most recent handoff (within the retention window) and surfaces it to the new session as <handoff_from_previous_session> data. The next agent reads it as context, not as instructions — suggested actions must be verified against current state before executing.

Disable per-session with HANDOFF_SESSIONSTART=0.

SessionEnd Reminder

A paired SessionEnd hook checks whether a recent handoff exists when the session is ending. If none does (or the most recent is older than 30 minutes), it prints a one-line reminder so the user is prompted to write one before context is lost.

The hook cannot prompt interactively or block session end — it surfaces text in the session log.

Disable per-session with HANDOFF_SESSIONEND=0.

Refreshing an Existing Handoff

When work continues past the original handoff time, refresh in place instead of creating a new file:

python3 scripts/handoff_template_generator.py --refresh --goal "<updated goal>"

Prints the path of the most recent handoff. The agent edits it directly. Keeps the save location uncluttered and ensures the SessionStart hook always loads the up-to-date version.

Tools

Tool Purpose
setup.py First-run Q&A — save location, retention, redaction strictness, git-context, recommender scope.
handoff_template_generator.py Writes the 5-section scaffold at the configured path. --refresh reuses the most recent handoff instead of creating a new file.
redaction_linter.py Scans the draft for secrets/PII before save. Exit 1 on findings in strict mode.
handoff_self_check.py Fidelity check — flags empty Goal, State bullets without artifacts, missing Decisions when git is dirty, too few/many Skills, inline content in Artifacts. Run before the linter.
skill_recommender.py Suggests 3-5 skills for the next session based on goal text + repo scan.
cleanup.py Deletes scaffolds older than the retention window. mtime-guarded — never deletes a handoff the user edited.
config_loader.py Shared helper: read project config → global config → defaults.

Slash Commands

  • /cs:handoff [optional next-session description] — generate the handoff.
  • /cs:handoff-setup — reconfigure save location, retention, redaction.

Agent

cs-handoff-author — Matt-voice persona orchestrating the skill. Terse, no-duplication, references-not-copies.

Examples

Example 1 — explicit invocation with a goal
User: /cs:handoff "finish wiring the redaction linter and open a draft PR"

The skill walks the mandatory checklist, generates a 5-section scaffold, fills it from the conversation, runs the redaction linter, and saves to the configured location. See assets/example_handoff.md for a complete worked example.

Example 2 — implicit trigger
User: I'm packing up for the day, let me come back to this tomorrow.

Detect the implicit signal. Propose before running: "Want me to write a handoff for the next session?" — never silently. On confirmation, proceed as Example 1 with an inferred goal.

Example 3 — first-run setup
User: /cs:handoff "ship the migration"
Skill: Run setup now? (Y/n)
User: Y
[setup walks 5 questions: save location, retention, redaction strictness, git context, recommender scope]
Skill: Config saved to ~/.config/handoff/config.json. Continuing with handoff for: ship the migration.

If the user answers N, the skill writes a sentinel and uses defaults (OS temp dir, 7-day retention, strict redaction). The prompt never re-appears.

Example 4 — SessionStart auto-load

On the next session, the SessionStart hook scans the configured save location, finds the most recent handoff, and surfaces it as <handoff_from_previous_session> data. The next agent reads it as context, not instructions.

Usage

Step Command
First-run setup /cs:handoff-setup (or answer Y on first /cs:handoff)
Generate a handoff /cs:handoff [goal]
Reconfigure later /cs:handoff-setup --reconfigure
Project-specific config /cs:handoff-setup --project
Disable SessionStart hook HANDOFF_SESSIONSTART=0 (per session)

Version: 1.0.0 Inspired by: Matt Pocock's handoff (MIT).

1---
2name: handoff
3description: "Compact the current conversation into a handoff document for another agent to pick up. Save to a user-configured location (OS temp, home folder, or per-project .handoff/), redact secrets before write, suggest skills for the next session, and auto-load the latest handoff on the next SessionStart. First-run setup asks where to save so the project folder never gets cluttered. Use when the user says 'hand this off', 'handoff doc', 'summarize this for a new session', 'compact this conversation', 'I'm ending this session', 'pick this up later', or any variation signaling intent to pass work to a fresh agent. Also trigger on implicit signals: the user announcing they're switching machines, ending the day mid-task, or context is growing long without a natural stopping point."
4license: MIT
5argument-hint: "What will the next session be used for?"
6metadata:
7 version: 1.0.0
8 voice: "Matt Pocock — no-duplication, reference-existing-artifacts, tailored to next-session focus"
9 inspired_by: "https://github.com/mattpocock/skills/tree/main/skills/productivity/handoff"
10---
11 
12# Handoff
13 
14Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS — not the current workspace.
15 
16Include a "suggested skills" section in the document, which suggests skills that the agent should invoke.
17 
18Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.
19 
20Redact any sensitive information, such as API keys, passwords, or personally identifiable information.
21 
22If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.
23 
24## Invocation Triggers
25 
26**Explicit phrases** (any of):
27- "hand this off"
28- "handoff doc"
29- "summarize this for a new session"
30- "compact this conversation"
31- "I'm ending this session"
32- "pick this up later"
33- "wrap this up for tomorrow"
34- "save this for the next session"
35 
36**Implicit signals** (no phrase, but the intent is unmistakable):
37- User announces they're switching machines or stopping for the day mid-task
38- Conversation context is growing long without a natural stopping point
39- User says "let me come back to this" or "I'll continue this later"
40 
41When you detect an implicit trigger, propose the handoff before running it: *"Want me to write a handoff for the next session?"* — never run it silently.
42 
43## First-Run Setup
44 
45On first invocation, the skill asks where to save handoffs so the project folder never gets cluttered. Setup is offered once via *"Run setup now? (Y/n)"* — answering N uses OS-temp defaults for this run and never re-prompts. The user can rerun setup any time via `/cs:handoff-setup`.
46 
47See [references/configuration.md](references/configuration.md) for the full config field reference.
48 
49## Output Path
50 
51The save location is read from the user's config (`~/.config/handoff/config.json`, or the project-local `.handoff/config.json` if present). When no config exists and the user declined setup, fall back to:
52 
53```bash
54mktemp -t handoff-XXXXXX.md
55```
56 
57Read the file before you write to it.
58 
59## Section Template
60 
61The handoff doc has five sections. Use these exact headers:
62 
63- **Goal of next session** — from the user's argument, or inferred from the most recent thread of the conversation.
64- **State of play** — what's done, what's in flight, what's blocked. Reference artifacts, do not paste them.
65- **Open decisions** — what the next agent must decide before continuing.
66- **Skills to use** — concrete list of 3-5 skills the next session should invoke, each with a one-line *why*.
67- **Artifacts** — paths/URLs to PRDs, plans, ADRs, issues, branches, PRs. Do not duplicate their contents.
68 
69See [references/handoff_structure.md](references/handoff_structure.md) for a worked example.
70 
71## The Agent's Job
72 
73Filling in the five sections is the agent's job, not the script's. Follow [references/handoff_prompt.md](references/handoff_prompt.md) as a mandatory checklist:
74 
75> For each topic discussed in the conversation, decide explicitly: *include in State of play / log as an Open decision / drop with reason.*
76 
77Free-handing the summary leads to rosy progress reports and dropped blockers. The checklist prevents that.
78 
79## Anti-Patterns
80 
81Matt's no-duplication discipline made concrete:
82 
83- **Do not paste the diff.** Reference the branch or PR.
84- **Do not retype the PRD.** Link to its path.
85- **Do not summarise what's already in the commit message.** Link to the commit hash.
86- **Do not list 20 skills.** Pick the 3-5 the next session actually needs.
87- **Do not narrate every message in the conversation.** Compress to State + Decisions.
88 
89See [references/deduplication_discipline.md](references/deduplication_discipline.md) for the full list.
90 
91## Redaction
92 
93Before saving, the linter scans the draft for secrets and PII. In strict mode (default) it blocks save on findings; in warn mode it flags inline and saves anyway.
94 
95Redact:
96- API keys, OAuth tokens, JWT tokens
97- Passwords and DB connection strings
98- `-----BEGIN ... PRIVATE KEY-----` blocks
99- `.env`-style `KEY=value` lines containing secrets
100- Email addresses, phone numbers, names of unrelated third parties
101- Internal URLs containing tokens or session IDs
102 
103See [references/redaction_checklist.md](references/redaction_checklist.md) for the full pattern list and manual-review steps for what regex cannot catch.
104 
105## SessionStart Auto-Load
106 
107When the plugin is installed, a `SessionStart` hook scans the configured save location for the most recent handoff (within the retention window) and surfaces it to the new session as `<handoff_from_previous_session>` data. The next agent reads it as context, not as instructions — suggested actions must be verified against current state before executing.
108 
109Disable per-session with `HANDOFF_SESSIONSTART=0`.
110 
111## SessionEnd Reminder
112 
113A paired `SessionEnd` hook checks whether a recent handoff exists when the session is ending. If none does (or the most recent is older than 30 minutes), it prints a one-line reminder so the user is prompted to write one before context is lost.
114 
115The hook cannot prompt interactively or block session end — it surfaces text in the session log.
116 
117Disable per-session with `HANDOFF_SESSIONEND=0`.
118 
119## Refreshing an Existing Handoff
120 
121When work continues past the original handoff time, refresh in place instead of creating a new file:
122 
123```bash
124python3 scripts/handoff_template_generator.py --refresh --goal "<updated goal>"
125```
126 
127Prints the path of the most recent handoff. The agent edits it directly. Keeps the save location uncluttered and ensures the SessionStart hook always loads the up-to-date version.
128 
129## Tools
130 
131| Tool | Purpose |
132|---|---|
133| `setup.py` | First-run Q&A — save location, retention, redaction strictness, git-context, recommender scope. |
134| `handoff_template_generator.py` | Writes the 5-section scaffold at the configured path. `--refresh` reuses the most recent handoff instead of creating a new file. |
135| `redaction_linter.py` | Scans the draft for secrets/PII before save. Exit 1 on findings in strict mode. |
136| `handoff_self_check.py` | Fidelity check — flags empty Goal, State bullets without artifacts, missing Decisions when git is dirty, too few/many Skills, inline content in Artifacts. Run before the linter. |
137| `skill_recommender.py` | Suggests 3-5 skills for the next session based on goal text + repo scan. |
138| `cleanup.py` | Deletes scaffolds older than the retention window. mtime-guarded — never deletes a handoff the user edited. |
139| `config_loader.py` | Shared helper: read project config → global config → defaults. |
140 
141## Slash Commands
142 
143- `/cs:handoff [optional next-session description]` — generate the handoff.
144- `/cs:handoff-setup` — reconfigure save location, retention, redaction.
145 
146## Agent
147 
148`cs-handoff-author` — Matt-voice persona orchestrating the skill. Terse, no-duplication, references-not-copies.
149 
150## Examples
151 
152### Example 1 — explicit invocation with a goal
153 
154```
155User: /cs:handoff "finish wiring the redaction linter and open a draft PR"
156```
157 
158The skill walks the mandatory checklist, generates a 5-section scaffold, fills it from the conversation, runs the redaction linter, and saves to the configured location. See `assets/example_handoff.md` for a complete worked example.
159 
160### Example 2 — implicit trigger
161 
162```
163User: I'm packing up for the day, let me come back to this tomorrow.
164```
165 
166Detect the implicit signal. Propose before running: *"Want me to write a handoff for the next session?"* — never silently. On confirmation, proceed as Example 1 with an inferred goal.
167 
168### Example 3 — first-run setup
169 
170```
171User: /cs:handoff "ship the migration"
172Skill: Run setup now? (Y/n)
173User: Y
174[setup walks 5 questions: save location, retention, redaction strictness, git context, recommender scope]
175Skill: Config saved to ~/.config/handoff/config.json. Continuing with handoff for: ship the migration.
176```
177 
178If the user answers N, the skill writes a sentinel and uses defaults (OS temp dir, 7-day retention, strict redaction). The prompt never re-appears.
179 
180### Example 4 — SessionStart auto-load
181 
182On the next session, the SessionStart hook scans the configured save location, finds the most recent handoff, and surfaces it as `<handoff_from_previous_session>` data. The next agent reads it as context, not instructions.
183 
184## Usage
185 
186| Step | Command |
187|---|---|
188| First-run setup | `/cs:handoff-setup` (or answer Y on first `/cs:handoff`) |
189| Generate a handoff | `/cs:handoff [goal]` |
190| Reconfigure later | `/cs:handoff-setup --reconfigure` |
191| Project-specific config | `/cs:handoff-setup --project` |
192| Disable SessionStart hook | `HANDOFF_SESSIONSTART=0` (per session) |
193 
194---
195 
196**Version:** 1.0.0
197**Inspired by:** [Matt Pocock's handoff](https://github.com/mattpocock/skills/tree/main/skills/productivity/handoff) (MIT).
198 

Discussion

Alternatives

Also in Process docsSee all 58 in Operations →
On call handoff patternsMaster on-call shift handoffs with context transfer, escalation procedures, and documentation. Use this skill when transitioning on-call responsibilities between engineers and ensuring the incoming responder has full situational awareness, when writing a shift summary that captures active incidents, ongoing investigations, and recent changes, when handing off mid-incident so a fresh engineer can take over the incident commander role without losing context, when onboarding a new engineer to the on-call rotation for the first time, or when auditing and improving the quality of existing handoff processes across teams.Infrastructure & ops · MITFinancial Due Diligence SkillGenerate a financial due diligence checklist and analysis framework for any investment, acquisition, or partnership. Use when asked for a due diligence checklist, M&A financial review, investment analysis framework, or vendor financial assessment. Produces a document request list, key analytical questions, red flags checklist, and a summarised financial health assessment.Business & ops · MITOffsite Planner SkillPlan a team offsite that earns its cost — the purpose split (connection vs. decisions vs. planning, weighted on purpose), the agenda that alternates work and air, the logistics runbook, and the follow-through that makes Monday different from before. Use when asked plan our team offsite, design two days for the team, make this offsite not a waste, or what do we actually do at the offsite. Produces the purpose weighting, the day designs, the logistics checklist, and the commitments-capture that survives re-entry.Business & ops · MITOn-Call Runbook SkillWrite an on-call runbook for a service — covering alert definitions, escalation paths, common incident responses, and on-call handoff procedures. Use when asked to write an on-call guide, create alert runbooks, document escalation procedures, or prepare an on-call handoff document. Produces a structured on-call runbook with per-alert response procedures, escalation matrix, diagnostic commands, and handoff template.Business & ops · MIT