handoff
Handoff - Session Cycling
Hand off your current session while preserving work context.
Triggers
| Command | Action |
|---|---|
ho |
Auto-detect mode (create or resume) |
ho [message] |
Create handoff with context notes |
ho create |
Force CREATE mode |
ho resume |
Force RESUME mode |
ho resume <track> |
Resume specific track |
/conductor-finish |
Complete track (extract learnings, archive, handoff) |
Aliases: ho, /handoff, /conductor-handoff
When to Use
- Context getting full (approaching token limit)
- Finished a logical chunk of work
- Need a fresh perspective on a problem
- Session cycling requested
Quick Start
# Simple handoff
ho
# With context notes
ho "Found bug in auth.go line 145"
# Resume in new session
ho resume
What Persists vs Resets
| Persists | Resets |
|---|---|
Beads state (bd) |
Conversation context |
| Git state | TodoWrite items |
| Handoff files | In-memory state |
| Agent Mail messages |
Implementation
See references for detailed workflows:
- create.md - CREATE mode (9 steps)
- resume.md - RESUME mode (9 steps)
- template.md - Handoff file template
Auto-Detect Logic
IF first_message AND recent_handoff_exists(<7d)
→ RESUME mode
ELSE IF handoff_exists(>=7d)
→ WARN "Stale handoff" → CREATE mode
ELSE
→ CREATE mode
Directory Structure
conductor/handoffs/
├── <track-id>/
│ ├── index.md # Log of all handoffs
│ └── YYYY-MM-DD_HH-MM_*.md # Individual handoffs
└── general/
└── index.md
Agent Mail Integration
- Subject:
[HANDOFF:<trigger>] <track> - <context> - Thread:
handoff-<track_id> - Search:
search_messages(query="HANDOFF")
Error Handling
| Scenario | Action |
|---|---|
| Agent Mail unavailable | Markdown-only |
bd unavailable |
Skip Beads sync |
| Stale handoff (>7d) | Warn, suggest fresh start |
| No handoffs found | Suggest /handoff create |
Related Skills
- tracking - Issue tracking
- maestro-core - Workflow routing
More from reinamaccredy/maestro
conductor
Implementation execution for context-driven development. Trigger with ci, /conductor-implement, or /conductor-* commands. Use when executing tracks with specs/plans. For design phases, see designing skill. For session handoffs, see handoff skill.
10maestro-revert
Git-aware revert of track, phase, or individual task. Safely undoes implementation with plan state rollback.
9maestro-new-track
Create a new feature/bug track with spec and implementation plan. Interactive interview generates requirements spec, then phased TDD plan. Use when starting work on a new feature, bug fix, or chore.
8init
Generates AGENTS.md and CLAUDE.md files using the WHAT/WHY/HOW framework. Explores the codebase and produces minimal (<100 line) context files with progressive disclosure.
8maestro-setup
Scaffolds project context (product, tech stack, coding guidelines, product guidelines, workflow) and initializes track registry. Use for first-time project onboarding.
7tracking
>
7