Continuity

Manage session continuity (Ledgers and Handoffs). Use this to save state before clearing context or ending a session.

majiayu000 bc05650 2 files · 1.3 KB Updated 567 repo stars

File contents

Continuity System

Use this skill to manage long-term memory artifacts.

Create a Ledger (In-Session State)

Save the current state of your work before clearing context.

python3 scripts/continuity.py ledger create "Title of work" "Description of current state, working files, and next steps"

Create a Handoff (Between-Session State)

Create a summary for the next session/agent.

python3 scripts/continuity.py handoff create "Title of handoff" "Summary of what was done, what is left, and key decisions"

Read Latest

Retrieve the most recent context.

python3 scripts/continuity.py ledger read-latest
python3 scripts/continuity.py handoff read-latest

majiayu000/claude-skill-registry-data/tree/main/design/continuity commit bc05650b82

Frequently asked questions

npx skillmds add majiayu000/continuity-3