Continuous-Claude-v3
Context management for Claude Code. Hooks maintain state via ledgers and handoffs. MCP execution without context pollution. Agent orchestration with isolated context windows.
claude mcp add --transport stdio parcadei-continuous-claude-v3 uvx parcadei-continuous-claude-v3 \ --env ENV="description or placeholder"
How to use
Continuous Claude v3 provides a persistent, learning multi-agent environment built around Claude Code. It orchestrates a suite of skills, workflows, and agents to maintain context across sessions, analyze code, and automate complex tasks with memory and continuity. The MCP integration helps you launch and manage the server, expose its capabilities to clients, and coordinate sub-sessions (skills, hooks, and agents) to tackle tasks like debugging, code analysis, and feature planning. Use the included tools to perform TLDR-style code analysis, automate common workflows, and leverage the memory system to recall learnings from prior sessions. The system emphasizes compounding knowledge: it extracts learnings from interactions, stores them, and uses them to inform future actions without losing important context when you resume later.
To interact with the server you’ll typically either run the MCP server via your preferred package manager (uv in this README’s workflow) or connect a client that can issue skill activations, agent prompts, and handoffs. The Skill Activation System automatically injects context to decide which skills and agents are relevant for a given request. You can request tasks like debugging a file, exploring a codebase, or performing a premortem analysis, and the system will propose a curated set of skills (e.g., create_handoff, fix, deb ug) and agents (e.g., scout, debugger) to execute the workflow. This makes it easier to describe intent naturally while still enabling direct access to commands when needed.
Usage typically involves describing your goal in natural language (e.g., “Fix the login bug in auth.py” or “Explore the codebase for security patterns”). The system interprets your request, activates critical skills, and coordinates a sequence of steps across agents to complete the task while preserving context for future sessions.
How to install
Prerequisites:
- Python 3.11+
- uv (package manager) https://github.com/astral-sh/uv
- Docker (for local PostgreSQL and containers)
- Claude Code CLI (if you plan to integrate Claude Code tooling)
Installation steps:
-
Clone the repository: git clone https://github.com/parcadei/Continuous-Claude-v3.git cd Continuous-Claude-v3/opc
-
Ensure prerequisites are installed and available in your environment. Verify Python and uv are ready: python --version uv --version
-
Run the setup wizard to configure the environment and MCP/server components: uv run python -m scripts.setup.wizard
-
During setup, the wizard will configure the local database (PostgreSQL via Docker by default), API keys, and clone necessary components. Follow the prompts to complete the configuration. The process will also install Claude Code integration components (32 agents, 109 skills, 30 hooks).
-
Start the server environment once setup completes. In most setups you will bring up the local services via uv and docker Compose as guided by the wizard, or run the specific startup command provided by the wizard output. If you need to uninstall later, you can run: cd Continuous-Claude-v3/opc uv run python -m scripts.setup.wizard --uninstall
-
Optional: If you’re using a remote database, adjust your environment variables or Docker Compose configuration as needed to point to your remote PostgreSQL instance, then rerun the setup or migrations as prompted by the wizard.
Additional notes
Notes and tips:
- The MCP configuration (mcp_config.json) is stored in the opc directory and is restored during backups. Keep a copy of your mcp_config.json and essential credentials in a secure location.
- The system uses a memory daemon to extract and surface learnings across sessions. Ensure you have persistent storage mounted for memory and history data to prevent data loss when restarting.
- If you encounter token-related issues, rely on the 5-layer code analysis and semantic indexing features to minimize token usage while preserving context.
- Environment variables commonly include API keys, database connection strings, and Claude Code integration settings. Do not expose these in public repos; use env files or secret management.
- For remote database setups, ensure Docker/PostgreSQL is accessible from the container network and that credentials are correctly configured in your environment.
- If you need to revert changes, the installer creates a timestamped archive of your ~/.claude directory and restores from backups when reinstalling.
Related MCP Servers
mcp-agent
Build effective agents using Model Context Protocol and simple workflow patterns
NagaAgent
A simple yet powerful agent framework for personal assistants, designed to enable intelligent interaction, multi-agent collaboration, and seamless tool integration.
copilot
A VSCode extension that lets you find and install Agent Skills and MCP Apps to use with GitHub Copilot, Claude Code, and Codex CLI.
c2sagent
C2S Agent is an lightweight AI Agent construction platform that provides configurable online Agents and MCP services, You can configure any HTTP request interface as an MCP tool. C2S Agent 是一个轻量级的AI Agent构建平台,提供在线可配置的Agent,MCP,您可以一个HTTP请求的接口配置成为一个MCP工具,Agent之间可以进行自交流。并提供了单端口多A2A服务,MCP服务的解决方案
mcp-rest-api
A TypeScript-based MCP server that enables testing of REST APIs through Cline. This tool allows you to test and interact with any REST API endpoints directly from your development environment.
cco
Real-time audit and approval system for Claude Code tool calls.