/fab:handoff — Session End
Creates structured handoffs for all in-progress work before ending a session. Ensures the next agent (or future you) can pick up seamlessly with zero prior context.
Session End Protocol
- •
Handoff each in-progress issue:
bashtd handoff <id> \ --done "What was completed" \ --remaining "Concrete next steps" \ --decision "Key choices made and why" \ --uncertain "Open questions needing investigation"
- •
Submit completed work:
td review <id>for any finished tasks - •
Summarize session progress:
- •Tasks completed (submitted for review)
- •Tasks in progress (with handoff created)
- •Blockers encountered
- •Key decisions made
Handoff Quality
Write handoffs for a future agent with zero prior context:
- •Be specific, not vague — "Implemented user model in
src/models/user.pywith email validation" not "Made progress on the model" - •Include file paths, function names, and concrete next steps
- •Document decisions with rationale so the next agent doesn't re-investigate
See references/coordination-rules.md for full coordination rules, handoff format, and multi-agent safety.