handoff

Generates a conversation summary document for continuing work in a new agent session.

4|Updated Jul 30, 2026
One-click install
npx skills add https://github.com/gabriellst/codm --skill handoff-gabriellst
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: handoff
Source: https://github.com/gabriellst/codm/tree/main/.claude/skills/handoff
Command: npx skills add https://github.com/gabriellst/codm --skill handoff-gabriellst

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When a conversation grows long or a session ends, context is lost and the next agent or session must start from scratch. This Skill compacts the current conversation into a structured handoff document so a fresh agent can pick up the work without re-reading the entire history. ## Core Features & Use Cases - Conversation Compaction: Summarizes the current session into a handoff document saved to the OS temporary directory, keeping the workspace clean. - Suggested Skills Section: Recommends which skills the next agent should invoke to continue the work effectively. - Artifact Referencing: Avoids duplicating content already captured in PRDs, plans, ADRs, issues, commits, or diffs by referencing them via path or URL. - Sensitive Data Redaction: Removes API keys, passwords, and personally identifiable information from the handoff. - Use Case: You finish a long debugging and planning session and want tomorrow's session to focus on implementation. Run the handoff with a note like "next session: implement the auth module" and the new agent receives a tailored, redacted summary. ## Quick Start Ask the agent to create a handoff document for the next session, optionally describing what that session will focus on.

Frequently Asked Questions about handoff

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I hand off an AI agent conversation to a new session?

Invoke the handoff skill at the end of your session. It writes a summary document to your OS temporary directory that a fresh agent can read to resume the work, and you can pass a description of what the next session should focus on.

What should a handoff document between AI agents include?

A handoff document should summarize the conversation's key decisions and state, reference existing artifacts like PRDs, plans, ADRs, issues, and commits by path or URL, and include a suggested skills section telling the next agent which skills to invoke.

Where is the handoff document saved?

The document is saved to the temporary directory of the user's operating system, not the current workspace. This keeps the project repository free of transient session files.

Does the handoff document include API keys or personal data?

No. The skill explicitly redacts sensitive information such as API keys, passwords, and personally identifiable information before writing the handoff document.

When should I use a handoff instead of continuing the same conversation?

Use a handoff when the conversation approaches context limits, when switching to a different agent, or when the next phase of work has a distinct focus. It avoids re-reading long histories while preserving essential state.