A state pack is a curated collection of state files that work together as a coherent system for one operating mode. Unlike copying a single template, a pack gives you every file an agent in that role actually needs — the task queue, the safety rules, the snapshot, the approval gates — already cross-referenced and ready to instantiate. Pick the pack that matches your agent’s role, copy the files into your project directory, replace theDocumentation 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.
{{PLACEHOLDERS}}, and your agent has a complete state chain from day one.
Available packs
| Pack | Purpose | Files |
|---|---|---|
| developer | General coding agent | AGENTS, INIT, STATE, TODO, PLAN, SNAPSHOT, CHECKPOINT |
| backend | APIs, databases, auth, jobs | AGENTS, STATE, TODO, WARNING, CHECKPOINT |
| frontend | UI, routes, components | AGENTS, STATE, TODO, CHECKPOINT |
| researcher | Long-running research | AGENTS, STATE, TODO, MEMORY, KNOWLEDGE, LEARNINGS |
| judge | Evaluation and review | AGENTS, RUBRIC, CLAIMS, EVIDENCE, DECISION, RISKS |
| security | Risk and secrets control | AGENTS, THREAT_MODEL, WARNING, CHECKPOINT, INCIDENTS |
| ops | Infrastructure and production | AGENTS, INFRASTRUCTURE, RUNBOOK, WARNING, SNAPSHOT |
| orchestrator | Multi-agent coordination | AGENTS, TASKS, PLAN, EVENTS, SNAPSHOT, BINDING.schema.json |
| docs-writer | Documentation systems | AGENTS, TODO, STRUCTURE, STYLE |
Selection guide
| If your agent… | Use this pack |
|---|---|
| Writes code across the stack | developer |
| Owns APIs, databases, or backend services | backend |
| Owns UI, routes, or components | frontend |
| Gathers information over multiple sessions | researcher |
| Evaluates, reviews, or approves work | judge |
| Manages security, secrets, or incidents | security |
| Manages infrastructure or production | ops |
| Coordinates other agents | orchestrator |
| Writes or maintains documentation | docs-writer |
How to use a pack
Choose a pack
Match your agent’s primary responsibility to the pack in the selection guide above. If the agent straddles two roles, pick the pack that covers the riskiest operations — you can always add files from a second pack afterward.
Copy the files
Copy all files from the pack directory into your project directory. Keep the filenames as-is — AGENTS.md is the universal entry point, and the state chain is wired by filename convention.
Fill the placeholders
Every pack file contains
{{PLACEHOLDERS}} for values specific to your project. Replace them before pointing your agent at the files.| Placeholder | Meaning | Example |
|---|---|---|
{{PROJECT_NAME}} | Project or service name | auth-service |
{{DATE}} | Date stamp | 2026-06-29 |
{{READY_OR_BLOCKED}} | Status declaration | READY |
{{BRANCH}} | Current git branch | main |
{{BLOCKERS_OR_NONE}} | Active blockers or None | None |
Point your agent to the entry file
The entry file is whatever your runtime loads first:
AGENTS.md, CLAUDE.md, INIT.md, BOOT.md, or another adapter file. Configure your runtime to load that file at the start of each session.Combining packs
When an orchestrator agent coordinates multiple specialist agents, place the orchestrator pack at the root and each specialist pack in its own subdirectory. Each agent loads only its own state chain — agents never load sibling packs.TASKS.md to assign work. Each sub-agent reads its own AGENTS.md and follows its own state chain. Safety rules set at the root accumulate downward — a child pack cannot weaken a parent constraint.
Not a framework
Packs are markdown templates. They declare state; they do not enforce it. Your runtime, hooks, and review process handle enforcement. The pack gives you a wired starting point — the structure is in the files, not in code.
Pack pages
Developer
Coding agents with INIT, STATE, TODO, PLAN, SNAPSHOT, and CHECKPOINT.
Backend
API and service agents with WARNING gates for data-destructive operations.
Researcher
Long-running research with MEMORY, KNOWLEDGE, and LEARNINGS layers.
Orchestrator
Multi-agent coordination with TASKS, EVENTS, and machine-readable BINDING contracts.
Other Packs
Frontend, judge, security, ops, and docs-writer packs.
Tiers
Understand required, recommended, and optional file tiers before customizing a pack.