Skip to main content

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.

This section documents every file and directory in the Continuity system. Whether you are setting up a new agent, auditing an existing workspace, or trying to understand how state flows between files, this is the place to start. Files are organized into three classes — State, History, and Library — each with distinct mutability rules. The pages below cover each class in depth, plus the binding schema, template placeholders, and common anti-patterns.

The three-class ontology

Every file in Continuity belongs to exactly one class. The class determines where the file lives, how it changes over time, and what question it answers.
ClassWhereMutabilityWhat it answers
StateRoot .md filesOverwrite in placeWhat IS right now
HistoryNested dirs — append-onlyAppend, never modify old entriesWhat WAS at a point in time
LibraryNested dirs — curatedAdd, update, or remove as facts changeWhat is KNOWN
State holds one current value per concern. When a state file is overwritten, the old version is preserved in its paired history directory — no data is lost. History is time-bound and grows monotonically; old entries are never touched. Library is timeless and curated; facts can be corrected or retired.

State files — quick reference

FileClusterPurpose
IDENTITY.mdIdentityInstance identity, relationships, rebinding policy
SOUL.mdIdentityEssence, purpose, philosophy, constitution
SELF.mdIdentityOperating model, voice, hard invariants
USER.mdIdentityHuman / operator model
INIT.mdBoot9-stage reconstitution procedure
AGENTS.mdBootBootloader, runtime params, project guard
BOOT.mdBootOptional lightweight every-wake cycle
BOOTSTRAP.mdBootFirst-run identity discovery (self-destructing)
STATE.mdStateCurrent operational truth
CONTEXT.mdStatePer-turn operational snapshot
PLAN.mdStateIntended sequence, phases, milestones
TODO.mdStateTactical task index
TASKS.mdStateSystem and housekeeping tasks
SNAPSHOT.mdStateRestoration anchor
MEMORY.mdMemoryCurrent memories and index to entries
KNOWLEDGE.mdMemoryCatalog of knowledge documents
LEARNINGS.mdMemorySoft rules, insights gained
TOOLS.mdCapabilityCapability registry, environment notes
INFRASTRUCTURE.mdCapabilityLive substrate inventory
POTENTIAL.mdCapabilityStructure / potential / void model
CONTEXT_BUDGET.mdCapabilityPrompt hygiene and context limits
EVENTS.mdCapabilityRecent event summary
ARTIFACTS.mdCapabilityGenerated artifact inventory
WARNING.mdSafetyHard limits, pre-action checklist
CHECKPOINT.mdSafetyApproval gate before irreversible actions
AGENT_ACTIONS.mdRuntimeAction reference (conceptual)
BINDING.schema.jsonRuntimeMachine-readable binding contract
BACKLOG.mdStateRolling inbox for pre-triage
MISSIONS.mdStateHigh-level priorities
HEARTBEAT.mdStatePeriodic check protocol
AGENTS.promptinclude.mdMetaAuto-injection config
USAGE.mdMetaQuick start guide
CHANGELOG.mdMetaVersion history

History directories — quick reference

DirectoryNaming patternIndexed by
completed/YYYY-MM-DD-task-slug.mdTODO.md
journal/YYYY-MM-DD-turn-N.mdCONTEXT.md
reflections/YYYY-MM-DD-topic-slug.mdLEARNINGS.md
snapshots/YYYY-MM-DDTHH-MM-SS.mdSTATE.md
audits/YYYY-MM-DD-type-slug.mdSTATE.md, LEARNINGS.md
proposals/YYYY-MM-DD-topic-slug.mdPLAN.md
setup/YYYY-MM-DD-tool-name.mdTOOLS.md
artifacts/YYYY-MM-DD-name.extSTATE.md, ARTIFACTS.md

Library directories — quick reference

DirectoryNaming patternIndexed by
memory/namespace-topic-slug.mdMEMORY.md
knowledge/topic-slug.mdKNOWLEDGE.md

Pages in this section

State Files

Every root state file — what each one holds, which cluster it belongs to, and when to update it.

History Directories

The eight append-only directories that preserve everything that WAS — naming patterns, entry templates, and the never-modify rule.

Library Directories

The memory/ and knowledge/ curated stores — schema, namespaces, delivery types, and why they must stay separate.

Binding Schema

BINDING.schema.json field-by-field — the machine-readable contract for Advanced-tier recursive agent delegation.

Placeholders

Every {{UPPER_CASE}} template variable, example values, and the post-fill checklist.

Anti-Patterns

Behavioral patterns that cause real failures — epistemic, action, communication, maintenance, and state-file anti-patterns.

Build docs developers (and LLMs) love