Handoff
Persist exact continuation state so a cold engineer can resume safely without relying on chat history or reconstructing hidden decisions.From its SKILL.md
npx -y skills add menot-you/n-soul --skill handoffAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 391 tokens by cl100k_base, as published. Nobody here has run it
Handoff
Use when work crosses sessions, owners, machines, or a human gate. A handoff is durable execution state, not a narrative diary. It must let a cold continuation see one active result, the first real blocker, and the exact next safe action without rereading chat.
Gather live truth
Read the current state before writing:
- repository and worktree path;
- branch, base, head commit, and dirty files;
- pull request, issue, check, and release state when present;
- active owner and exclusive touched surfaces;
- locked result, scope, constraints, and authority;
- completed work with observed verification;
- open work and first real blocker;
- failed approaches and why they were rejected;
- exact next safe action and stop conditions.
Do not trust an older handoff when live state is cheap to verify.
Write the durable record
Use this order:
- Result — observable state sought.
- Current state — exact branch, commit, worktree, candidate, and external artifacts.
- Ownership — allowed and forbidden surfaces.
- Decisions — locked choices and rationale.
- Completed — proof-backed facts only.
- Open — required gaps, ordered by dependency.
- Blocker — mechanism, owner, and what clears it.
- Next action — one command, file, or decision.
- Verification — commands and expected observations.
- Rollback and hazards — recovery path and actions not to repeat.
Use absolute paths and immutable identifiers where practical. Never copy secrets. Separate observed, inferred, and unverified claims.
Readback
Re-read the record as a cold continuation. It passes only if the next engineer can resume without asking where the work lives, what is safe to touch, what was proven, what remains blocked, or what happens next.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.