continuumlisted
Install: claude install-skill AnasNafees1802/continuum
# Continuum — Cross-Agent Session Continuity
Continuum keeps project context continuous across *any* AI coding agent by storing a small,
structured memory ledger in the repo at **`.aicontext/`**. That folder is the source of truth.
The full spec lives in **`.aicontext/PROTOCOL.md`** — read it if you need detail.
**On Claude Code this is partly automated.** Hooks fire the three moments for you: `SessionStart`
runs the catch-up, `PreCompact` prompts a handoff before context is lost, and `Stop` gives one
gentle reminder if you changed files but never saved. A helper CLI does the mechanical bookkeeping
(timestamps, `manifest.json`, git-drift checks, transcript reconstruction, journal rotation) so you
never hand-edit JSON or guess a date. **You still write the prose** — the good STATE/JOURNAL content
is your judgment; the script only handles mechanics. If the hooks didn't run (another agent, hooks
disabled), just follow the three moments manually as below.
### The helper CLI
Installed at `.claude/skills/continuum/bin/continuum.{ps1,sh}` (project) or `~/.continuum/bin/`
(global, shared by every agent's hooks). Run the one matching the platform:
- Windows: `powershell -ExecutionPolicy Bypass -File <path>\continuum.ps1 <command>`
- macOS/Linux: `bash <path>/continuum.sh <command>`
Commands: `save` (stamp manifest at end of a handoff), `import` (reconstruct a missed handoff from
the transcript), `status` / `doctor` (health + drift/gap report), `compact` (rotate old journal
entries