Continuous Claude v3 is a Python-based, MIT-licensed project that provides context management and multi-agent orchestration for Claude Code, aiming to maintain state across sessions and optimize token usage.
Collecting history — the radar snapshots this repo daily. The trend line appears after 3 days of data (1 so far).
What it is
Continuous Claude v3 is a persistent, learning, multi-agent development environment built on Claude Code. It provides context management via ledgers and handoffs, MCP execution without context pollution, and agent orchestration with isolated context windows.
How it works
The project combines Skills (109), Agents (32), and Hooks (30) to enable a continuity loop across sessions: load context, track changes, and save state with learnings. It uses a Memory System and Continuity System to recall and preserve information between sessions. The architecture emphasizes TLDR Code Analysis for token savings and a coordination layer to manage sub-sessions.
Getting started
Prerequisites
- Python 3.11+
- uv package manager
- Docker (for PostgreSQL)
- Claude Code CLI
Installation
# Clone
git clone https://github.com/parcadei/Continuous-Claude-v3.git
cd Continuous-Claude-v3/opc
# Run setup wizard (12 steps)
uv run python -m scripts.setup.wizard
Note: The pyproject.toml is in opc/. Always run uv commands from the opc/ directory.
Uninstall
cd Continuous-Claude-v3/opc
uv run python -m scripts.setup.wizard --uninstall
What it does
- Archives current setup to ~/.claude-v3.archived.<timestamp>
- Restores the most recent backup from ~/.claude.backup.*
- Preserves user data (history.jsonl, mcp_config.json, .env, projects.json, file-history/, projects/)
- Removes CC-v3 additions (hooks, skills, agents, rules)
Remote Database Setup
Default runs PostgreSQL locally via Docker. Remote setup steps include enabling the vector extension and applying the schema, plus configuring CONTINUOUS_CLAUDE_DB_URL in ~/.claude/settings.json or exporting it in the environment.
First Session
# Start Claude Code
claude
# Try a workflow
> /workflow
First Session Commands
| Command | What it does |
|---------|--------------|
| `/workflow` | Goal-based routing (Research/Plan/Build/Fix) |
| `/fix bug <description>` | Investigate and fix a bug |
| `/build greenfield <feature>` | Build a new feature from scratch |
| `/explore` | Understand the codebase |
| `/premortem` | Risk analysis before implementation |






