Handoff
Compacts the current conversation into a handoff document so another agent can continue the work. Use when handing off to another agent, starting a new session, or passing work context to another developer.From its SKILL.md
npx -y skills add tyecode/skills --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.3 KB, 258 tokens by cl100k_base, as published. Nobody here has run it
Skill: handoff
When to Use This Skill
Use this skill when:
- User wants to hand off work to another agent
- Continuing work in a new session
- Passing work to another developer
Guidelines
Write a handoff document as a markdown file and save it to /tmp/handoff.md — not the current workspace.
Required sections
# Handoff
## What was done
Brief summary of completed work.
## What's remaining
Ordered list of next steps.
## Key decisions
Decisions made and the reasoning behind them — so the next agent doesn't re-litigate them.
## Suggested skills
Which skills the next agent should have loaded (e.g. `git-workflow`, `tdd`).
## References
Links or paths to relevant files, PRs, issues, or docs — do not duplicate their content here.
Rules
- Do not duplicate content already in PRDs, plans, ADRs, issues, or commits — reference by path instead.
- Redact sensitive info (API keys, passwords, PII).
- Keep it short enough that a fresh agent can read it in one pass — if it exceeds one page, you're including too much detail.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.