Writes or updates structured handoff documents (HANDOFF.md) with Goal, First Action, Context, Progress, successes, failures, and next steps for resuming work with a fresh agent.
From toolboxnpx claudepluginhub leejuoh/claude-code-zero --plugin toolboxThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Write or update a handoff document so the next agent with fresh context can continue this work.
$0: base path for the handoff document (optional, defaults to project root)
handoffs, ., docs/handoffs$1: filename (optional, defaults to HANDOFF.md)
auth.md, refactor-notes.md| Input | Result |
|---|---|
/handoff | HANDOFF.md |
/handoff handoffs | handoffs/HANDOFF.md |
/handoff handoffs auth.md | handoffs/auth.md |
/handoff . auth.md | auth.md |
$0 is empty and $1 is empty → HANDOFF.md$0 is provided and $1 is empty → $0/HANDOFF.md$0 is . and $1 is provided → $1$0 and $1 are provided → $0/$1