ac-handoff-creator
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
Best use case
ac-handoff-creator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
Teams using ac-handoff-creator should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ac-handoff-creator/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ac-handoff-creator Compares
| Feature / Agent | ac-handoff-creator | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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.Related Skills
workflow-creator
Meta-skill for designing and creating Antigravity workflows. Interviews user, proposes optimal structure, checks for duplicates, and ensures workflows integrate with existing skills.
u01954-handoff-contracting-for-accessibility-services
Operate the "Handoff Contracting for accessibility services" capability in production for accessibility services workflows. Use when mission execution explicitly requires this capability and outcomes must be reproducible, policy-gated, and handoff-ready.
skills-creator
Creates new Claude Code skills in the .claude/skills/ directory. Specializes in designing well-structured, effective skills through thorough requirements gathering. Use when the user wants to create a new skill, command, agent, or automation.
skill-creator
Create new skills following a structured 4-phase workflow. Use when you need to build reusable agent skills with proper validation.
Skill Builder / Creator
Create high-quality skills with modular structure, progressive disclosure, and token-efficient design.
art-icon-creator
This skill should be used when creating artistic icon variations from images. It generates 10 different greyscale icon styles from a single image source, automatically compressing to under 20KB with high contrast appearance. Supports both URL and local file inputs.
animation-creator
CSS animation and transition creator. Generates optimized @keyframes, transitions, and transform sequences with performance best practices and motion accessibility. Use when adding animations, transitions, or micro-interactions.
Suno Song Creator
This skill should be used when the user asks to "create a Suno prompt", "write a Suno song", "generate music with Suno", "help me with Suno", "make a song prompt", "create lyrics for Suno", "build a music prompt", or mentions Suno AI music generation. Provides comprehensive guidance for creating professional Suno prompts using advanced prompting strategies, structured formatting within 1000 character limit (NO blank lines between sections), parameter optimization, genre-specific techniques, interactive questioning with efficient project name collection, automated artist/song research via sub-agent (web fetching + pattern extraction), automatic file export to organized project directories, AI-slop avoidance for authentic human-centered lyrics, copyright-safe style descriptions that avoid artist/album/song names, character counting utilities for accurate verification, and optional independent quality review via sub-agent for professional assessment.
subagents-creator
Guide for defining and using Claude subagents effectively. Use when (1) creating new subagent types, (2) learning how to delegate work to specialized subagents, (3) improving subagent delegation prompts, (4) understanding subagent orchestration patterns, or (5) debugging ineffective subagent usage.
skill-creator-ms
Guide for creating effective skills for AI coding agents working with Azure SDKs and Microsoft Foundry services. Use when creating new skills or updating existing skills.
power-agent-creator
This skill should be used when users want to create powerful AI agents comparable to Claude Code or sonph-code. It provides battle-tested system prompts, masterfully-crafted tool implementations, and the simple but powerful agent loop pattern. Use this skill when users ask to build coding agents, AI assistants with tools, or any autonomous agent that needs file operations, code execution, search, and task management capabilities. The key insight is that customization requires only ONE HumanMessage after the SystemPrompt.
metric-creator
Create new Fair-Forge metrics with proper structure, schema, tests, and fixtures. Use when adding a new evaluation metric to fair-forge.