Continuity’s tiers are suggested starting templates, not requirements. They exist because different agents need different amounts of state — a simple task-runner needs almost nothing; a recursive multi-agent orchestrator needs the full inventory. Pick the smallest tier that gives your agent the continuity it actually requires, then add files only when your loop genuinely needs them.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/bitwikiorg/continuity/llms.txt
Use this file to discover all available pages before exploring further.
The four tiers
| Tier | File count | For |
|---|---|---|
| Minimum | 8 files | Simple agents with a single focused loop |
| Standard | 16 files | Most agents — adds memory, tools, planning |
| Full | 27 files | Operational agents with runtime discipline |
| Advanced | 30 files | Recursive multi-agent systems |
Minimum
The smallest configuration that produces a functional agent with persistent identity and task tracking. An agent booted on Minimum files can declare READY, remember who it is, and maintain a task list across sessions. Files:AGENTS, IDENTITY, SELF, SOUL, STATE, INIT, TODO, SNAPSHOT
AGENTS.md— bootloader, runtime parameters, project guardIDENTITY.md+SOUL.md+SELF.md— full identity stack (who, why, how)STATE.md— current operational truthINIT.md— 9-stage reconstitution procedureTODO.md— task indexSNAPSHOT.md— restoration anchor
Standard
The practical default for most agents. Adds the user model, memory, tools awareness, planning, and a learning layer on top of Minimum. Files: everything in Minimum, plusUSER, MEMORY, TOOLS, PLAN, CONTEXT, TASKS, LEARNINGS, HEARTBEAT
USER.md— model of the human operator; the agent adapts to the person it servesMEMORY.md— current memories and index tomemory/entriesTOOLS.md— capability registry and environment notesPLAN.md— intended sequence, phases, milestones (indexesproposals/)CONTEXT.md— per-turn operational snapshot (indexesjournal/)TASKS.md— system and housekeeping tasks separate from project workLEARNINGS.md— soft rules and insights from prior sessionsHEARTBEAT.md— periodic check protocol
Full
For agents operating in production environments with runtime discipline, safety constraints, and a broader capability surface. Adds infrastructure awareness, context budget management, safety gates, and a full boot/bootstrap path. Files: everything in Standard, plusINFRASTRUCTURE, POTENTIAL, CONTEXT_BUDGET, MISSIONS, BACKLOG, WARNING, BOOTSTRAP, KNOWLEDGE, EVENTS, ARTIFACTS, BOOT
INFRASTRUCTURE.md— live substrate inventory (services, endpoints)POTENTIAL.md— Structure / Potential / Void capability modelCONTEXT_BUDGET.md— prompt hygiene rules and context limitsMISSIONS.md— high-level priorities above the task layerBACKLOG.md— rolling inbox for pre-triage itemsWARNING.md— hard limits and pre-action checklistBOOTSTRAP.md— first-run identity discovery (self-destructing)KNOWLEDGE.md— catalog of knowledge documents (indexesknowledge/)EVENTS.md— recent event summary (indexeslogs/)ARTIFACTS.md— generated artifact inventory (indexesartifacts/)BOOT.md— lightweight CHECK → ACT → REPORT cycle for heartbeats
Advanced
For recursive multi-agent systems where one agent spawns and manages sub-agents with bounded delegated authority. Adds the approval gate, action reference, and machine-readable binding contract. Files: everything in Full, plusCHECKPOINT, AGENT_ACTIONS, BINDING.schema.json
CHECKPOINT.md— approval gate before irreversible actionsAGENT_ACTIONS.md— conceptual action reference for the recursive runtimeBINDING.schema.json— machine-readable binding contract; validates that declared mesh edges match the actual directory structure
Guidance: when to add a file
The tier table is a starting point — the real rule is simpler:Add a file only when your agent’s loop repeatedly reaches for state it doesn’t have.If the agent is frequently re-discovering the same facts, add
MEMORY.md. If it keeps losing track of which tools are available, add TOOLS.md. If it’s making irreversible operations without human review, add WARNING.md and CHECKPOINT.md. If it never needs to plan across multiple phases, leave PLAN.md out.
Sample configurations
The repository’ssamples/ directory contains concrete, pre-configured workspaces for common agent types — a minimal coding agent, a standard research agent, and a full operational agent. Browse the domain-specific state packs for pre-wired configurations you can copy and customize.
Minimum sample
Simple coding agent — 8 files: identity, boot, and task tracking only.
Standard sample
Research agent — 16 files: adds user model, memory, tools, planning, tasks, learnings, and heartbeat.
Full sample
Operational agent — 27 files: adds infrastructure, potential, context budget, missions, backlog, safety, knowledge, events, artifacts, and boot.
Packs overview
Domain-specific packs — developer, backend, researcher, judge, ops, orchestrator, and more.