ac-handoff-creator
π―Skillfrom adaptationio/skrillz
Generates comprehensive handoff packages capturing session progress, context, and next actions for seamless workflow continuity.
Installation
npx skills add https://github.com/adaptationio/skrillz --skill ac-handoff-creatorSkill Details
Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
Overview
# 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
- Capture: Current state and progress
- Summarize: Session accomplishments
- Extract: Key context and decisions
- Plan: Next actions for continuation
- Save: Package for next session
Integration
- Used by:
ac-session-managerat session end - Uses:
ac-context-compactorfor summaries - Loads: By next session via
ac-state-tracker
API Reference
See scripts/handoff_creator.py for full implementation.
More from this repository10
Performs comprehensive analysis of code, skills, processes, and data to extract actionable insights, identify patterns, and drive data-driven improvements.
Automatically diagnoses and resolves Auto-Claude installation, configuration, and runtime issues across different platforms and environments.
Authenticates and configures xAI Grok API access using Twitter/X account credentials, enabling seamless integration with OpenAI-compatible SDK methods.
Retrieve and integrate xAI Grok sentiment with financial data APIs to generate comprehensive market insights and analysis.
xai-crypto-sentiment skill from adaptationio/skrillz
Retrieves comprehensive financial market data including stocks, forex, crypto, and technical indicators using the Twelve Data API.
Enables real-time Twitter/X searches using Grok API to extract insights, track trends, monitor accounts, and analyze social discussions.
Enables autonomous agents to search X, web, execute code, and analyze documents with server-side tool management.
Optimizes Claude AI performance by reducing token usage, managing API costs, and improving build speed through intelligent model and context selection.
Automates comprehensive installation and setup of Auto-Claude across Windows, macOS, Linux, and WSL with multi-platform support and dependency management.