From handoff
Write a HANDOFF.md file for another agent to continue the conversation. Use when switching to a new session and need to pass context to the next agent.
How this command is triggered — by the user, by Claude, or both
Slash command
/handoff:handoffThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Handoff
Write a `/docs/handoffs/{YYYY-MM-DD_HH-MM-SS_description}/HANDOFF.md` file in the current working directory for another agent to continue this conversation.
## Workflow
### 1. Gather Context
Before writing, collect:
- Current git branch and commit hash
- Repository name
- Summary of tasks worked on and their statuses
- Key files modified
- Important learnings and patterns discovered
### 2. Write Handoff Document
Create the file using this template structure:
### 3. Confirm Handoff
After writing, confirm the file location and summarize what was captured.
## Guidelines
-...Write a /docs/handoffs/{YYYY-MM-DD_HH-MM-SS_description}/HANDOFF.md file in the current working directory for another agent to continue this conversation.
Before writing, collect:
Create the file using this template structure:
---
date: [Current date and time with timezone in ISO format]
researcher: Claude
git_commit: [Current commit hash]
branch: [Current branch name]
repository: [Repository name]
topic: "[Feature/Task Name] Implementation Strategy"
tags: [implementation, strategy, relevant-component-names]
status: in_progress
last_updated: [Current date in YYYY-MM-DD format]
last_updated_by: Claude
type: implementation_strategy
---
# Handoff: {very concise description}
## Task(s)
{description of the task(s) worked on, with status: completed, in-progress, or planned}
## Critical References
{2-3 most important file paths for specs, architecture docs, or design decisions. Leave blank if none.}
## Recent Changes
{files modified in file:line syntax}
## Learnings
{important patterns, root causes, or insights the next agent should know}
## Artifacts
{exhaustive list of files produced or updated}
## Action Items & Next Steps
{list of next steps for the next agent}
## Other Notes
{additional context, file locations, or useful information}
After writing, confirm the file location and summarize what was captured.
npx claudepluginhub linehaul-ai/linehaulai-claude-marketplace --plugin handoff/handoffCreates a handoff document summarizing git state, workflow artifacts from .agents/, session context, tasks, phase, critical files, and next steps; saves to .agents/handoff-YYYY-MM-DD-HH-MM-slug.md
/create_handoffCreates a Markdown handoff document with YAML frontmatter, summarizing tasks, status, references, changes, learnings, and artifacts for transferring work to another session.
/createGenerates a HANDOFF.md file with project goal, completed tasks, failed approaches, key decisions, current state via git, and step-by-step resume instructions for any AI coding agent.
/preclearWrites a handoff document to docs/handoff.md summarizing current project state, decisions, tasks, issues, and next steps before context clear.
/handoffCreates a detailed handoff plan summarizing conversation, technical details, code, decisions, and next steps for continuing work in a new session.
/handoffCaptures full session state into a structured handoff document for clean context transfer between sessions. Also supports including brief custom notes.