handoff · git:20260727.5a2073a · 2026-07-27 · sha256 2c0545a6ae73a25c
handoff git:20260727.5a2073aA
Immutable. This exact content is served forever at /api/v1/blob/2c0545a6ae73a25c.
---
name: handoff
description: Compress project context into HANDOFF.md with workflow state, analysis checkpoint, next gate, verification, current hypothesis, freshness anchors, optional gotcha references, and a resume packet for the next agent session.
---
# Handoff
## Purpose
Compress context into a launchpad for the next session. A handoff is not a transcript — it is durable state that lets a fresh agent continue safely without the full chat history.
A handoff is also not authoritative merely because the file exists. When Git state is available, establish freshness before trusting an existing `HANDOFF.md`.
## When to use
Use at the end of a session, before switching agents, or before pausing work.
When resuming from an existing handoff, apply the freshness check before using its status, next task, verification claims, or analysis checkpoint as current state.
## Inputs
- SPEC.md, PLAN.md, TODO.md, VERIFY.md
- Optional `GOTCHAS.md` when recurring project sharp edges have been recorded
- Active modes, current phase, next gate
- Analysis checkpoint when one exists: `FRESH | NOT_NEEDED | STALE | REQUIRED`
- Compatibility seams, invalid-if constraints, verify gate status, review-required items, next gate command when relevant
- Context risk level
- Active debugging hypothesis (if any)
- When relevant, carry loop state forward: iterations attempted, best known artifact,
rejected attempts, current feedback signal, remaining budget, stop condition, and
human review trigger.
- Branch, commit, dirty state
- Changed files, working/failing commands, unverified files
- Important decisions, open decisions, traps
- Freshness anchors when Git state is available: snapshot commit + workspace fingerprint
## Freshness rule
The bundled `scripts/handoff_freshness.py` helper lives inside this skill directory.
Resolve the active `handoff` skill directory, then use the helper to stamp and check
`HANDOFF.md`.
Status semantics:
- `PASS` — non-handoff repository state still matches the stamped snapshot.
- `STALE` — repository state changed after the handoff snapshot. Treat the handoff as advisory only, re-read live project state, and regenerate it before resuming.
- `REVIEW_REQUIRED` — freshness could not be established. Do not silently trust the handoff as current state.
The helper intentionally excludes `HANDOFF.md` itself from the workspace fingerprint so
editing or committing only the handoff does not invalidate its own snapshot.
If the helper cannot be executed, compare the recorded commit, dirty state, changed files,
and live Git status manually. Any mismatch or unresolved uncertainty is
`REVIEW_REQUIRED`, not an implicit pass.
A stale or unresolved handoff also invalidates trust in its recorded analysis checkpoint. Reconcile live state first, then re-evaluate whether analysis is `FRESH`, `NOT_NEEDED`, `STALE`, or `REQUIRED` for the one next task.
## Analysis checkpoint rule
A handoff should tell the next session whether `analyze-mini` is actually needed; it should not run analysis as a completion ritual.
Reuse the artifacts already being read for the handoff and classify the one next task:
- `FRESH` — a full analysis exists and its task-defining inputs still match current state.
- `NOT_NEEDED` — no current analysis trigger exists.
- `STALE` — a prior analysis exists but task-defining inputs changed.
- `REQUIRED` — a current trigger exists and full analysis should run before `build-one`.
Do not run `analyze-mini` merely because a handoff is being written.
Missing prior analysis is not itself a reason to mark `REQUIRED`. Use the triggers defined by `analyze-mini`: changed task-defining inputs, unresolved implementation-shaping choices, broken criterion-to-task-to-proof mapping, changed strategy after failure, or live-state changes discovered during resume reconciliation.
## Gotcha promotion rule
Keep one-off continuation traps in `HANDOFF.md`. Promote a trap to optional `GOTCHAS.md`
only when it is non-obvious, has a meaningful consequence, is likely to recur across
sessions or nearby tasks, and can be grounded in evidence.
A promoted gotcha should record a stable ID, trigger, consequence, safe path, evidence,
last verification, and active/resolved status. When it affects the next task, reference
the gotcha ID from the handoff instead of copying the whole entry.
Do not turn `GOTCHAS.md` into a generic bug log, TODO list, or folklore file. `BUGS.md`
owns active defects; `GOTCHAS.md` owns recurring sharp edges.
## Workflow
1. Read current artifacts first.
2. If an existing `HANDOFF.md` will be used for resume, check freshness before trusting it.
3. For the exactly one next task, perform the cheap analysis eligibility check using already-loaded artifacts. Record `FRESH`, `NOT_NEEDED`, `STALE`, or `REQUIRED`; do not invoke full analysis solely to improve the handoff.
4. Create or update HANDOFF.md starting with a **Resume Packet** block.
5. Record Workflow State (active modes, phase, loop, next gate, analysis checkpoint, context risk, hypothesis).
6. Record continuation guardrails when relevant: compatibility seams preserved, invalid-if constraints, verify gate status, review-required items, next gate command.
7. State the current goal in 1-2 sentences.
8. List completed slices + verification results.
9. List changed files with one-line purpose (flag unverified).
10. Record working commands, known failing commands, important decisions, open decisions, and traps.
11. Promote recurring evidence-backed traps to `GOTCHAS.md`; keep one-off session traps in the handoff.
12. If an active gotcha affects the next task, reference its ID and make `GOTCHAS.md` part of the read-first set. When generating a context packet for that continuation, prefer `--require-file GOTCHAS.md` so the dependency is explicit.
13. Name **exactly one** next recommended task + its verification command.
14. After the final non-handoff project edit, stamp the freshness anchors with the bundled helper.
15. Run the helper's `check` command. Only `PASS` should be treated as a fresh handoff when the helper is available.
16. Keep under 120 lines unless complexity requires more.
**Resume Packet example (place near top):**
```text
RESUME PACKET
* Goal: ...
* Workflow State: lean-mode active, next gate=build-one, risk=low
* Analysis: NOT_NEEDED — direct criterion -> task -> proof; no unresolved implementation choice
* Branch: main, Commit: abc123, Dirty: no
* Freshness: PASS, Snapshot: abc123, Workspace: sha256:...
* Gotchas: G1, G3 | none
* Next task: ...
* Verification: `python test_mini.py --slice=foo`
* Read first: HANDOFF.md, GOTCHAS.md (if present/referenced), SPEC.md, PLAN.md, VERIFY.md (if present), ANALYZE.md only when referenced, then changed files below
```
## Outputs
- HANDOFF.md with Resume Packet + Workflow State
- Analysis checkpoint for the exactly one next task
- Freshness anchors when Git state is available
- Optional references to active `GOTCHAS.md` entries that affect continuation
- Clear next task and verification path
- Continuation guardrails when relevant
## Success looks like
- A new agent can pick up the project from HANDOFF.md + core artifacts without rereading chat.
- All critical context (modes, risks, decisions, next gate) is in durable files.
- Exactly one next task is named.
- The next session knows whether analysis is `FRESH`, `NOT_NEEDED`, `STALE`, or `REQUIRED` without paying for a full analysis by default.
- A stale handoff cannot silently outrank live repository state.
- A recurring sharp edge that matters to future work is not buried only in a one-session handoff.
## Stop conditions
- Next session can continue without full chat history.
- No important context lives only in memory.
- Next task and verification command are explicit.
- Analysis need for the next task is classified without ritual invocation.
- Freshness is `PASS` when the bundled helper is available; otherwise unresolved freshness is surfaced as `REVIEW_REQUIRED`.
- Relevant promoted gotchas are referenced without duplicating their full contents.
## Anti-patterns
- Writing a chat transcript summary instead of state.
- Running `analyze-mini` solely to make the handoff look complete.
- Marking analysis `FRESH` after task-defining inputs changed.
- Marking analysis `REQUIRED` only because no previous analysis exists.
- Vague status ("mostly done").
- Omitting active modes, failing commands, or dirty state.
- Carrying multiple debug hypotheses forward.
- No explicit next gate or verification.
- Treating `HANDOFF.md` as current merely because it exists.
- Continuing from a `STALE` or `REVIEW_REQUIRED` handoff without reconciling live state.
- Burying a recurring evidence-backed sharp edge only in `HANDOFF.md`.
- Creating `GOTCHAS.md` for ordinary bugs, temporary failures, or generic reminders.