Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
62
73%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.claude/skills/ac-handoff-creator/SKILL.mdThe canonical home for this skill is ac-handoff-creator in fernandezbaptiste/Skrillz
Create handoff packages for seamless session transitions.
Packages all necessary context and state for the next session to seamlessly continue work, ensuring no progress is lost between sessions.
from scripts.handoff_creator import HandoffCreator
creator = HandoffCreator(project_dir)
handoff = await creator.create_handoff(){
"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"
]
}ac-session-manager at session endac-context-compactor for summariesac-state-trackerSee scripts/handoff_creator.py for full implementation.
93ed392
Canonical home
since Sep 12, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.