Marketplace

handoff

Hand off to a fresh session. Use when context is full, you've finished a logical chunk of work, or need a fresh perspective. Integrates with Maestro workflow.

$ 설치

git clone https://github.com/ReinaMacCredy/maestro /tmp/maestro && cp -r /tmp/maestro/.claude/skills/handoff ~/.claude/skills/maestro

// tip: Run this command in your terminal to install the skill


name: handoff description: > Hand off to a fresh session. Use when context is full, you've finished a logical chunk of work, or need a fresh perspective. Integrates with Maestro workflow. version: "1.0.0" author: "Adapted from Gas Town"

Handoff - Session Cycling

Hand off your current session while preserving work context.

Triggers

CommandAction
hoAuto-detect mode (create or resume)
ho [message]Create handoff with context notes
ho createForce CREATE mode
ho resumeForce RESUME mode
ho resume <track>Resume specific track

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

PersistsResets
Beads state (bd)Conversation context
Git stateTodoWrite items
Handoff filesIn-memory state
Agent Mail messages

Implementation

See references for detailed workflows:

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

ScenarioAction
Agent Mail unavailableMarkdown-only
bd unavailableSkip Beads sync
Stale handoff (>7d)Warn, suggest fresh start
No handoffs foundSuggest /handoff create

Related Skills