mcpbeat

Ac Handoff Creator

majiayu000/claude-skill-registry-ac-handoff-creator-adaptationio-skrillz-4-ac-handoff-creator

Create handoff packages for session transitions. Use when ending sessions, preparing for continuation, saving session state, or creating resumable context.

This is a copy. The original lives at majiayu000/ac-handoff-creator.

617 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
532
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/majiayu000/claude-skill-registry --skill ac-handoff-creator

What comes with it

836 bytes besides the instruction
metadata.json

The instruction itself

7 sections, as written by the author

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-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.

How to use it

Copy the folder

Take majiayu000/claude-skill-registry-ac-handoff-creator-adaptationio-skrillz-4-ac-handoff-creator from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.