← スキル一覧に戻る

ac-handoff-creator
by adaptationio
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: ac-handoff-creator description: Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.
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
from scripts.handoff_creator import HandoffCreator
creator = HandoffCreator(project_dir)
handoff = await creator.create_handoff()
Handoff Package
{
"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.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です