handoff
Handoff — save state to pause, resume, or transfer work. Use when: "handoff", "pause here", "continue later".
Open source Open in the app JSON README (API)
About
Handoff — save state to pause, resume, or transfer work. Use when: "handoff", "pause here", "continue later".
Details
- Kind
- Plugins
- Topic
- No topic detected
- Publisher
- cskwork
- Origin
- gemini
- Category
- ferramentas
- Version
- 0.1.0
- Stars
- 1
- Last push
- 2026-08-21T14:43:14Z
- Repository state
- ativo
- Language
- JavaScript
- License
- MIT
- Added
- 2026-08-30 14:13:39
- Updated
- 2026-08-30 14:13:39
- Origin id
cskwork/handoff-skill
README
<p align="center"><img src="logo.png" width="120" alt="logo" /></p> # Handoff Skill Handoff Skill creates a durable state packet for coding agents. It captures what is true now, what changed, what was verified, and the exact plan a later agent should follow. - Public repo: https://github.com/cskwork/handoff-skill - Landing page: https://cskwork.github.io/handoff-skill/ ## Use Cases - Stop a task without losing implementation state. - Resume work in a fresh session. - Transfer a task to another coding agent. - Give QA or review agents a precise continuation brief. - Preserve decisions, rejected options, and verification evidence. ## Install From this repository: ```bash ./install.sh ``` Manual install: ```bash mkdir -p "$HOME/.agents/skills/handoff" cp skill/SKILL.md "$HOME/.agents/skills/handoff/SKILL.md" ``` ## Test ```bash npm test ``` The test validates the skill metadata, required workflow sections, handoff template coverage, and text hygiene. ## Package If you have the global `skill-creator` scripts installed: ```bash python -m scripts.package_skill "$(pwd)/skill" ``` ## Output Contract A good handoff packet includes: - Goal and latest request. - Current workspace, branch, running sessions, and artifacts. - Completed work with evidence. - Decisions and rejected options. - Files changed and untouched relevant files. - Remaining implementation plan with completion criteria. - Verification plan. - Risks, assumptions, suggested skills, resume prompt, and redactions. ## GitHub Pages The landing page lives in `docs/`. Enable GitHub Pages with source `main` and folder `/docs`.