Handoff
🧿 Minimal but effective AI agent skill definitions in 100 lines or less.
npx -y skills add kimtth/agent-skill-100-lines-or-less --skill handoffAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 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.
What its author says it does
Copied from the file, not written here
Use when: write a handoff so another session or agent can resume work without context loss.
SKILL.md
1.0 KB, 183 tokens by cl100k_base, as published. Nobody here has run it
Goal: capture enough state that the next worker continues immediately.
Use for:
- ending a session with work in progress
- passing a task to another agent or teammate
- checkpointing before a risky or long-running step
Workflow:
- State the goal and current status in two sentences.
- List what is done and verified, with evidence.
- List what remains, in priority order.
- Record key decisions and the reasons behind them.
- Note blockers, open questions, and known risks.
- Point to the exact files, branches, and commands involved.
Handoff contents:
- objective and acceptance criteria
- done vs. remaining
- decisions and rejected alternatives
- blockers and next concrete action
Rules:
- write for someone with zero prior context
- link specifics, not vague references
- separate verified facts from assumptions
- make the very next step unambiguous