CONTINUITY
БесплатноНе проверенProvides session persistence, crash recovery, decision tracking, and context compression for AI assistants, enabling seamless multi-session continuity.
Описание
Provides session persistence, crash recovery, decision tracking, and context compression for AI assistants, enabling seamless multi-session continuity.
README
Session State Persistence for AI Systems
License TypeScript MCP LobeHub
Crashes lose seconds, not hours. Every AI instance picks up exactly where the last one left off.
The Problem
AI assistants are stateless by design. Every session starts fresh. This is fine for one-off questions but catastrophic for multi-session projects where architectural decisions compound and context is everything.
- Sessions crash, hit token limits, or end — and the next one starts blind
- Architectural decisions get re-debated from scratch
- Completed work gets forgotten; hours vanish into reconstruction
- The same problems get solved repeatedly across different codebases
The Solution
8 tools that handle session persistence, crash recovery, decision tracking, and context compression. Plug CONTINUITY into Claude Desktop (or any MCP-compatible client) and session continuity becomes automatic.
It's the difference between a collaborator who remembers your project and one who asks "so what are we working on?" every morning.
Tools
| Tool | Purpose |
|---|---|
continuity_save_session |
Generate structured handoff at session end |
continuity_load_session |
Resume from last session with compressed context |
continuity_checkpoint |
Lightweight state save every 3-5 operations |
continuity_recover_crash |
Detect crash and auto-recover from last checkpoint |
continuity_log_decision |
Record architectural decisions with rationale + alternatives |
continuity_query_decisions |
Search decision history to prevent re-debates |
continuity_compress_context |
Smart context compression (20K tokens → 1K) |
continuity_handoff_quality |
Validate handoff completeness before saving |
Installation
Prerequisites
- Node.js >= 18
- Claude Desktop or any MCP-compatible client
Setup
git clone https://github.com/duke-of-beans/CONTINUITY.git
cd CONTINUITY
npm install --include=dev
npm run build
Configure Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"CONTINUITY": {
"command": "node",
"args": ["/path/to/CONTINUITY/dist/index.js"],
"env": {
"CONTINUITY_DATA_DIR": "/path/to/your/.continuity"
}
}
}
}
Restart Claude Desktop. You'll see 8 new tools available.
Configuration
CONTINUITY_DATA_DIR controls where state is stored. Defaults to ~/.continuity.
.continuity/
├── config.json # Settings (auto-generated with defaults)
├── state.db # SQLite database
├── sessions/ # JSON state snapshots + markdown handoffs
└── decisions/ # JSONL decision log
Usage
Session Lifecycle
Session Start:
→ continuity_recover_crash() # Check for unclean shutdown
→ continuity_load_session() # Load last session context
During Work:
→ continuity_checkpoint() # Every 3-5 tool calls
→ continuity_log_decision() # When architectural choices are made
Session End:
→ continuity_handoff_quality() # Validate completeness
→ continuity_save_session() # Generate handoff for next session
Decision Registry
Stop re-debating the same architectural choices:
continuity_log_decision({
workspace: "my-project",
category: "architectural",
decision: "Use PostgreSQL over Neo4j",
rationale: "Simpler ops, graph extension covers graph needs",
alternatives: ["Neo4j", "DGraph", "ArangoDB"],
impact: "high",
revisit_trigger: "If graph queries exceed 10K nodes/sec"
})
Later, in any new session:
continuity_query_decisions({ keyword: "database", workspace: "my-project" })
// → Returns the decision with full rationale, preventing re-debate
Crash Recovery
continuity_recover_crash({ workspace: "my-project" })
// → Detects unclean shutdown
// → Returns last checkpoint with active files, next steps, recovery context
// → Zero context loss if checkpoints were regular
Architecture
Storage Layer
├── SQLite (state.db) → Checkpoints, session records, fast queries
├── JSONL (decisions.jsonl) → Append-only architectural decision log
└── JSON (sessions/*.json) → Full session state snapshots + markdown handoffs
Tool Modules
├── session-tools.ts → save, load, checkpoint, crash recovery
├── decision-tools.ts → log + query architectural decisions
└── utility-tools.ts → compression, handoff validation
Server
└── mcp-server.ts → MCP SDK wiring, tool registration, error handling
Works With
Compatible with Claude Desktop, Cursor, and any MCP-compatible client. Designed to compose with other MCP servers — any server can trigger checkpoints via the standard tool interface.
License
MIT — Use it, fork it, build on it.
Author
Установка CONTINUITY
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/duke-of-beans/CONTINUITYFAQ
CONTINUITY MCP бесплатный?
Да, CONTINUITY MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для CONTINUITY?
Нет, CONTINUITY работает без API-ключей и переменных окружения.
CONTINUITY — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить CONTINUITY в Claude Desktop, Claude Code или Cursor?
Открой CONTINUITY на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare CONTINUITY with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
