EveryDev.ai
Subscribe
Home
Tools

3,985+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Continuity
    Continuity icon

    Continuity

    Agent Memory

    Durable project-state manager for AI sessions that tracks decisions, constraints, and rejected paths in git-backed markdown files across Claude Code, Cursor, and any MCP host.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT license. No cost to use, modify, or distribute.

    Engagement

    Available On

    CLI
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryMCP ServersAI Coding Assistants

    Alternatives

    ai-memoryAgentMemoryKnowl
    Developer
    vikcena01vikcena01 builds open-source developer tooling focused on AI…

    Listed Sep 2026

    About Continuity

    Continuity is an open-source Claude Code plugin and MCP server that preserves project state across AI sessions — not as a conversation log, but as a structured, git-versioned record of decisions, constraints, rejected alternatives, and open questions. Built by Vikash and released under the MIT license, it targets developers running long-running AI-assisted projects in Claude Code, Cursor, or any tool that speaks MCP.

    What It Is

    Continuity solves a specific problem: when a new AI session starts, the model has no memory of what was decided, what was ruled out, or why. Rather than replaying chat history, Continuity maintains a set of plain markdown "claim" files under .continuity/claims/ (or a named central directory for tools without a project working directory). Each claim carries a type, status, confidence level, and provenance, and the entire store is committed to git on every change — making git log the event log, git revert the rollback mechanism, and git blame the audit trail.

    The README explicitly distinguishes Continuity from memory tools: "A memory tool answers 'what did we talk about?' Continuity answers a different question: 'what is true about this project now, and what must not be touched?'"

    How the Two Storage Modes Work

    Continuity ships two storage modes behind a single API:

    • Repo mode — state lives at <repo>/.continuity/, discovered by walking up from the working directory. Suited for editor and agent tools like Claude Code that have a project cwd.
    • Central mode — state lives at ~/.continuity/projects/<name>/, addressed by project name. Suited for hosts like plain Claude Desktop that have no project cwd.

    Both modes expose the same CLI verbs and MCP tools, so the workflow is identical regardless of host.

    The Claim Model and CLI

    Claims are short, typeable IDs (e.g., d1k3, c2m9) composed of a type prefix, sequence number, and two-character collision-safe suffix. The suffix prevents merge conflicts when two developers record the same-numbered claim concurrently. Key CLI verbs include:

    • continuity init — start a project with a mission statement
    • continuity record-decision / record-constraint / reject — capture state
    • continuity freeze — lock an invariant; overriding a frozen claim requires a second deliberate --unfreeze
    • continuity resume — emit the compact state a new session receives (a deterministic projection, no LLM in the read path)
    • continuity why — show what a decision replaced and why
    • continuity resolve — the only way to close a claim; reason is mandatory
    • continuity review — semantic diff of what was autonomously captured, with --accept to mark it reviewed

    Claude Code Plugin Capabilities

    When installed as a Claude Code plugin, Continuity adds capabilities beyond the base MCP server:

    • A SessionStart hook that auto-injects resume_context on new, resumed, or post-compact sessions — no manual prompt needed
    • A Stop hook that runs an end-of-turn capture check so decisions are recorded without anyone remembering to ask; two independent guards prevent hook loops
    • Slash commands /resume, /freeze, /why

    The repo also ships .claude/settings.json registering these hooks against the committed dist/, so a collaborator who clones the repo gets auto-resume and auto-capture without installing anything separately.

    Architecture and Trust Model

    The resume context is a deterministic projection of the claim files — no LLM is involved in the read path. Every claim carries confidence (confirmed / tentative / unverified) and provenance (manual vs. auto-captured), so a fresh session can calibrate trust rather than accepting all state blindly. A reconciler behind every batch capture handles deduplication, lineage-preserving supersession, and a frozen-guard that parks contradicting claims as needs_review instead of silently applying them.

    The claim-file schema is versioned (schema: 1). Older claims without a schema field are treated as version 1 and migrated forward in memory without rewriting files. Claims written by a newer, unknown schema version are refused loudly rather than half-parsed.

    Current Status: v1.5

    The README describes the current release as v1.5, featuring a deterministic core, CLI, MCP server, Claude Code plugin, versioned claim files, collision-safe IDs, fuzzy lookup, a budgeted resume projection, git-backed event log, and 211 assertions across eleven test suites. The repository was last pushed in September 2026. Known open limits tracked as claims in the repo's own .continuity/ include: the Stop-hook capture check is throttled to at most once per 10 seconds (so a decision settled in a very fast exchange can be missed), and reliable status extraction from messy sessions remains an open technical risk.

    Continuity - 1

    Community Discussions

    Be the first to start a conversation about Continuity

    Share your experience with Continuity, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT license. No cost to use, modify, or distribute.

    • Full CLI with all verbs
    • MCP server for Claude Desktop and other MCP hosts
    • Claude Code plugin with SessionStart and Stop hooks
    • Git-backed claim storage
    • Zero runtime dependencies

    Capabilities

    Key Features

    • Git-backed project state in plain markdown files
    • Two storage modes: repo mode and central/named-project mode
    • Deterministic resume context projection (no LLM in read path)
    • Claim confidence and provenance tracking
    • Frozen invariants with deliberate unfreeze requirement
    • Autonomous capture via Claude Code Stop hook
    • SessionStart hook for auto-resume on new/resumed/post-compact sessions
    • Slash commands: /resume, /freeze, /why
    • Collision-safe short claim IDs with type prefix and suffix
    • Reconciler with deduplication and lineage-preserving supersession
    • Versioned claim-file schema with forward migration
    • CLI verbs: init, record-decision, record-constraint, reject, freeze, resume, why, resolve, review
    • MCP server with named-project support for Claude Desktop
    • Zero runtime dependencies
    • 211 assertions across eleven test suites

    Integrations

    Claude Code
    Claude Desktop
    Cursor
    Any MCP-compatible host
    Git
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Continuity and help others make informed decisions.

    Developer

    vikcena01

    vikcena01 builds open-source developer tooling focused on AI session continuity and project-state management. The flagship project, Continuity, provides git-backed durable state for long-running AI-assisted development across Claude Code, Cursor, and MCP-compatible hosts. The work emphasizes deterministic, human-reviewable state over opaque memory systems.

    Read more about vikcena01
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    ai-memory icon

    ai-memory

    Long-term memory for AI coding agents that persists context across sessions and enables seamless handoffs between different agent CLIs like Claude Code, Codex, and Cursor.

    AgentMemory icon

    AgentMemory

    Persistent memory engine for AI coding agents that captures every session, recalls context in milliseconds, and runs locally with zero external databases.

    Knowl icon

    Knowl

    Persistent memory for AI coding agents that retires stale facts automatically, storing typed knowledge locally with provenance, supersession history, and MCP integration.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    152 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    256 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    873 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions