agent-handofflisted
Install: claude install-skill NITISH-R-G/skills-i-use
# Agent Handoff
**Distinct from `session-checkpoint`**: a checkpoint is a cheap, frequent, continuous safety net written throughout a session. A handoff is a deliberate, one-time, richer note written specifically because you *know* the next session will be a different tool, model, or provider picking this up cold — it can afford more context than a checkpoint, because it's written once, at a known transition point, not on a tight cadence.
## What makes a handoff different from just "a bigger checkpoint"
A handoff should anticipate that the next agent may have **zero shared context** with this session — not just a different tool, potentially a different underlying model with different tendencies, different tool-calling conventions, different strengths. Write it assuming the reader knows nothing about this specific conversation, only what's in `.memory/` generally.
## Handoff note structure
```markdown
# Handoff: 2026-08-01, ending session with Claude Code (credits exhausted mid-task)
## What this session accomplished
- Extracted TokenService from auth middleware (decisions/0012)
- Wrote unit tests for TokenService (all passing)
- Started but did NOT finish: migrating callers of the old inline refresh logic
## Exact current state
3 of 7 call sites migrated to TokenService. Remaining: UserController, AdminController,
the background refresh cron job. Migration pattern is in decisions/0012 — follow it exactly,
don't improvise a variant.
## Known open questions (not yet dec