From dx
Write or update a handoff document so the next agent with fresh context can continue this work. Use when ending a long session, switching tasks, or preparing for another agent to continue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dx:handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Write or update a handoff document so the next agent with fresh context can continue this work efficiently.
Write or update a handoff document so the next agent with fresh context can continue this work efficiently.
The document MUST include all of the following sections. If a section has no content, write "None" — do not omit the section.
# Handoff — [Brief Task Title]
> Last updated: [date] by [agent/human]
## Goal
What we're trying to accomplish. Include the business/user motivation, not just the technical task.
## Architecture & Context
- Tech stack and key frameworks involved
- Relevant project structure (key directories, config files)
- Important constraints or conventions (e.g., i18n, server components only)
## Current Progress
What's been done so far. Use checkboxes:
- [x] Completed items
- [ ] Incomplete items
## Key Decisions & Trade-offs
Decisions made during this session and WHY. This prevents the next agent from re-debating settled questions.
## What Worked
Approaches that succeeded — so the next agent can build on them.
## What Didn't Work
Approaches that failed and WHY — so they're not repeated.
## Known Issues & Risks
Bugs, edge cases, or risks discovered but not yet addressed.
## Key File Map
| File | Role |
|------|------|
| path/to/file | Brief description |
## Environment & Dependencies
Any setup steps, env vars, or dependencies the next agent needs to know about.
## Next Steps
Clear, ordered action items for continuing. Be specific enough that someone with zero prior context can start immediately.
1. First thing to do
2. Second thing to do
useAuth hook where concurrent refresh token calls caused logout — see src/hooks/useAuth.ts:42" is actionable.Save as HANDOFF.md in the project root and tell the user the file path so they can start a fresh conversation with Read HANDOFF.md as the first message.
npx claudepluginhub mxclover/claude-code-tipsCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.