From agent-kit
Use when ending a session with work still in flight - dump session state to .agents/handoff.md (target, git state, files, changes, dead ends, next step) so any agent on any tool can resume cold after /clear, a tool switch, or a new chat.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-kit:handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Invoked manually via `/handoff` when the user wants to checkpoint, or auto-invoked when this description matches their intent. Write a minimal `.agents/handoff.md` so a fresh agent can resume. **Be brief.** Bullets, not prose. Skip empty sections. Create `.agents/` if it doesn't exist.
Invoked manually via /handoff when the user wants to checkpoint, or auto-invoked when this description matches their intent. Write a minimal .agents/handoff.md so a fresh agent can resume. Be brief. Bullets, not prose. Skip empty sections. Create .agents/ if it doesn't exist.
git rev-parse --abbrev-ref HEAD && git log -1 --oneline && git status --short
.agents/handoff.md using the schema below. mkdir -p .agents first. Overwrite if it exists.First line: _Generated: <ISO-8601 UTC>_
Required (always write):
## Target — one sentence: what the user wants.## Current State — branch, last commit, dirty/clean.## Next Step — exact command or file:line. "Continue" is not a next step.Optional (write only if non-empty; omit the heading entirely if empty):
## Files Under Work — table | path | status | purpose | when 2+ files in flight.## Changes Made — bullets when work is partially done.## Attempts & Dead Ends — bullets with verbatim error string when something failed.## Open Questions — bullets when something is unresolved.## Context Pointers — bullets when PRs/tickets/threads matter.After writing, stop. Wait for /clear + /handoff-resume.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub egor-xyz/agent-kit --plugin agent-kit