ac-handoff-creator
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
npx skills add majiayu000/claude-skill-registry --skill ac-handoff-creator-adaptationio-skrillz-3 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AC Handoff Creator Create handoff packages for seamless session transitions. ## Purpose Packages all necessary context and state for the next session to seamlessly continue work, ensuring no progress is lost between sessions. ## Quick Start ```python from scripts.handoff_creator import HandoffCreator creator = HandoffCreator(project_dir) handoff = await creator.create_handoff() ``` ## Handoff Package ```json { "id": "handoff-20240115-103000", "timestamp": "2024-01-15T10:30:00Z", "session_number": 5, "progress": { "features_completed": 25, "features_total": 50, "current_feature": "api-003", "percentage": 50.0 }, "context": { "summary": "Implementing REST API endpoints", "key_decisions": ["Using FastAPI", "JWT auth"], "blockers": [] }, "next_actions": [ "Complete api-003 implementation", "Run tests for api module" ], "files_modified": [ "src/api/routes.py", "tests/test_api.py" ] } ``` ## Workflow 1. **Capture**: Current state and progress 2. **Summarize**: Session accomplishments 3. **Extract**: Key context and decisions 4. **Plan**: Next actions for continuation 5. **Save**: Package for next session ## Integration - Used by: `ac-session-manager` at session end - Uses: `ac-context-
- Purpose
- Quick Start
- Handoff Package
- Workflow
- Integration
- API Reference
What does the ac-handoff-creator skill do?
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ac-handoff-creator-adaptationio-skrillz-3 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
