ac-handoff-creator
The AC Handoff Creator captures and packages session state, progress metrics, key decisions, and next actions into a structured JSON format for seamless continuation in subsequent sessions. Use this skill when concluding work sessions, transitioning between team members, or preserving project context to prevent progress loss and ensure continuity across interrupted workflows.
git clone --depth 1 https://github.com/majiayu000/claude-skill-registry /tmp/ac-handoff-creator && cp -r /tmp/ac-handoff-creator/skills/agent/ac-handoff-creator ~/.claude/skills/ac-handoff-creatorSKILL.md
# 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-compactor` for summaries
- Loads: By next session via `ac-state-tracker`
## API Reference
See `scripts/handoff_creator.py` for full implementation.Use when you need to install the embedded robot agents into either .cursor/agents or .claude/agents, selecting the destination interactively and copying the embedded agent definitions from project assets. This should trigger for requests such as Install embedded agents; Bootstrap .cursor/agents; Bootstrap .claude/agents; Copy robot agents. Part of cursor-rules-java project
Use when you need to generate an AGENTS.md file for a Java repository — covering project conventions, tech stack, file structure, commands, Git workflow, and contributor boundaries — through a modular, step-based interactive process that adapts to your specific project needs. This should trigger for requests such as Create AGENTS.md; Update AGENTS.md file; Add agent instructions. Part of cursor-rules-java project
>
Generated skill from request: trinity auto-boot validator
Create your OpenAI Agents SDK skill in one prompt, then learn to improve it throughout the chapter
Create your OpenAI Agents SDK skill in one prompt, then learn to improve it throughout the chapter
Create your Google Agent Development Kit skill in one prompt, then learn to improve it throughout the chapter