← ClaudeAtlas

continuumlisted

Cross-agent session continuity. Reads and maintains a portable project-memory ledger in `.aicontext/` so any AI coding agent (Claude Code, Codex, Antigravity, Windsurf, Gemini) can resume exactly where another left off. Use at the START of a coding session to catch up on project state; BEFORE ending or handing off a session; when SWITCHING between AI agents or recovering from a hit usage limit; when the user asks "where are we", "catch me up", "save progress", "checkpoint", or "what were we doing"; or to recover lost context.
AnasNafees1802/continuum · ★ 4 · AI & Automation · score 67
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