# Continuity

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

- Skill: `majiayu000/continuity-3` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/continuity-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/continuity-3/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/continuity-3

---


# 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.
```bash
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.
```bash
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.
```bash
python3 scripts/continuity.py ledger read-latest
python3 scripts/continuity.py handoff read-latest
```

