oren198/Strata

Shared Memory for Agent Fleets

Python

0

633 commits

updated Sep 22, 2026

See the code

See what people are saying

README

Strata

Strata gives a fleet of AI coding agents shared memory. Agents working the same project write what they learn to a scope and read what other agents already wrote — and every write is checked by an LLM judge before it lands, so one agent's mistake never corrupts what the rest of the fleet reads.

Core concepts

  • Fleet — the whole set of scopes and agents sharing one Strata memory.
  • Scope — one node agents bind to and read/write; scopes are grouped into ordered strata (e.g. architecture → backend → tests).
  • Contribution — one write to a scope: a proposed directive (binding) or context (non-binding).
  • Judge — the LLM that reviews every contribution and decides whether, and how, it's admitted.
  • Record — the append-only audit trail of everything ever contributed and judged, per scope.

Scoping — which memory an agent binds to and reads/writes — is a discipline boundary for well-behaved agents, not a security boundary; a harness sandbox's own file-access rules are the enforcement layer against an adversarial agent.

For the full theory and vocabulary, see docs/philosophy.md (why Strata exists, why naive sharing fails) and CONTEXT.md (the canonical glossary every part of the codebase uses — 23 terms, no synonyms).


Install and run

pipx install strata-mem      # strata + strata-mcp on PATH, in an isolated env
cd your-project
strata register               # wires memory into this project

strata is a local-first Python service: SQLite + markdown storage, an embedded MCP mode that needs no backend running, file-canonical fleet.yaml, and an optional read-only browser Console. The Quick start below is the one supported first run; everything deeper — architecture decisions, the Console UI, upgrade notes — lives under docs/ and is linked from the relevant section.


Quick start: two agents, one memory

The first run this release is built around: two terminals on one machine, a Claude Code session and a Codex session bound to the same scope. One session learns something and writes it back; the judge admits or declines it, with a reason you can read; the other session acts on it next time. You can see what the fleet believes, where each belief came from, and what was kept out.

The engine is embedded — the MCP server applies migrations and opens storage itself on first use, so nothing needs to run in the background. strata start exists for one reason, the Console (step 7); agents never depend on it.

1. Prerequisites

  • Python 3.11 or newer (strata-mem declares requires-python >=3.11). Check: python3 --version. On an older interpreter the install refuses rather than half-installing — checked on Python 3.10.12: pip install stops with ERROR: Package 'strata-mem' requires a different Python: 3.10.12 not in '>=3.11', and pipx install --python <3.10 interpreter> stops with "The Python you named does not satisfy '>=3.11'". pipx builds the isolated env from the interpreter pipx itself runs on, so that is the one that must be 3.11+. No Python 3.11+? See No Python 3.11+ globally?.
  • Claude Code and Codex CLI, both installed and logged in (claude and codex on your PATH). The register step below wires whichever it finds; this quickstart wires both.
  • A judge API key. The judge is an LLM you point at any endpoint that speaks the Anthropic Messages API — get an Anthropic key at https://console.anthropic.com/, or use a router/proxy/self-hosted gateway that speaks that API (see Environment variables).

2. Install

pipx install strata-mem      # strata + strata-mcp on PATH, in an isolated env

pipx is the supported install. pip install strata-mem inside a Python 3.11+ virtualenv also gives you working strata and strata-mcp commands (checked with python3.11 -m venv + pip install); then run strata from that environment, or put its bin/ on PATH, because the registered hooks call bare strata. uv was not checked, so nothing is claimed for it. If another strata is already on your PATH (an older pipx install, say), see Troubleshooting.

3. Register — wiring both harnesses

mkdir strata-demo && cd strata-demo
git init                       # a project root needs a marker (.git, pyproject.toml, ...)
strata register --harness claude-code --harness codex

strata register is idempotent and strictly additive. With those flags it wires both harnesses whether or not it can detect them (without flags it wires every harness it finds). It creates .strata/ (config, a one-scope fleet.yaml, the database directory), appends a # Strata block to .gitignore, and then:

  • Claude Code: copies the Strata skills into .claude/skills/, adds the strata server to .mcp.json, and installs the freshness Stop hook under .claude/.
  • Codex: merges the strata MCP server and the same Stop hook into Codex's own config, $CODEX_HOME/config.toml (default ~/.codex/config.toml — a machine-level file, not a per-project one), and seeds this project's AGENTS.md with a short memory-moves block.

Strict mode is on by default — a session that read fleet memory and wrote nothing back is reminded at its end to contribute or close out (at most twice) — and strata register --no-strict turns it off.

In an interactive terminal strata register also asks what the first scope's memory is for (one line; Enter skips it). Scripts pass --description "..."; a non-interactive run never asks. It is written to fleet.yaml as the scope's description:.

See What strata register does for the full list.

4. Set your judge API key

The default judge is qwen/qwen3-235b-a22b-2507 on OpenRouter, so the key is an OpenRouter key (openrouter.ai/keys). To judge with Anthropic instead, use an Anthropic key — see Choosing a judge.

Put it in a .env file at the project root. strata register already adds .env to .gitignore, and every entry point (the MCP server, the CLI and the Console backend) loads it:

JUDGE_API_KEY=sk-or-...

strata register offers to capture the key for you and writes JUDGE_MODEL and JUDGE_BASE_URL beside it, so the .env states which judge the key is for.

With Codex, use the .env file, not an export. Codex starts its MCP server with only the [mcp_servers.strata.env] table from its own config, not your shell's environment, so an exported key never reaches it and Codex's contributions go unjudged. The project .env is how the key reaches Codex's server. For Claude Code alone, export JUDGE_API_KEY=sk-... in the shell you launch it from also works.

(The older ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY names still work as a deprecated fallback — see Environment variables.)

Without a key, reads work, but a contribution is recorded with no verdict: the tool returns an error saying the scope-manager cannot judge without a key, and the contribution shows in strata record as "judge errored". Once a key is set (restart the harness so the server sees it), strata_rejudge gives it its verdict.

5. The fleet: keep the one scope

.strata/fleet.yaml is seeded with one scope, g_root. Keep it: one scope is a complete, working setup, and it is what both terminals bind to. With exactly one scope, an unset STRATA_AGENT_SCOPE auto-binds to it, so you export nothing for either harness. Grow the fleet later, when real roles emerge (edit .strata/fleet.yaml and validate with strata bootstrap, or edit it in the Console); binding becomes an explicit choice once there are two or more scopes — see Binding past one scope.

Give each scope a one-line description: in fleet.yaml — what its memory is for. The judge measures relevance against it: material "outside this scope's stated purpose" is declined, and the decline reason quotes the purpose. Without a description the judge may use what the scope already holds as an implied purpose, but only once there is enough of it to tell what the scope is about (about 50 words of summary and directives; STRATA_IMPLIED_PURPOSE_MIN_WORDS); a scope with an empty summary is judged exactly as before, with no relevance rule at all. strata doctor warns once per scope that has no description, and the Console shows it in the scope header ("no description" when unset).

6. Two terminals, same project

Terminal 1 — Claude Code

cd strata-demo
claude

What to expect the first time in Claude Code (verified on Claude Code 2.1.278):

  • It asks whether you trust this folder — choose Yes, I trust this folder (the highlighted default is No, exit).
  • It then reports "New MCP server found in this project: strata". The highlighted default is Continue without using this MCP server. Pick Use this MCP server (or Use this and all future MCP servers in this project) instead: accepting the default gives you a memory-blind session with no Strata tools.

Terminal 2 — Codex

cd strata-demo
codex

What to expect the first time in Codex (all verified on codex-cli 0.153.4):

  • Codex asks whether to trust the directory — continue.
  • It then shows "Hooks need review" for the Strata Stop hook. Choose Trust all and continue. Codex does not run a hook until it is trusted; until then (and always under codex exec) the turn-end reminder never fires. The trust is remembered.
  • Leave STRATA_AGENT_SESSION_ID blank in Codex's config (register ships it blank). Each Codex session gets its own id automatically, and the hook lands on the same id as the MCP server; exporting a value would reach the hook but not the server and split one session in two.
  • Set default_tools_approval_mode = "approve" under [mcp_servers.strata] in ~/.codex/config.toml (or answer every per-tool prompt with Allow). Under codex exec an MCP call that is not approved is refused, so without this codex exec gets no Strata tools; in the interactive codex, cancelling the prompts does the same. Either way that is a memory-blind session. The interactive prompts are Allow, Allow for this session, Always allow or Cancel; "Always allow" is remembered per tool, so each Strata tool asks once, and the config key covers all of them at once.

Codex's workspace-write sandbox mounts .git/refs read-only, so a Codex session cannot create git tags or refs itself (observed on codex-cli 0.153.4 under codex exec -s workspace-write: git tag failed inside the sandbox). Have another session, or you, do the tagging.

In Claude Code the session-start hook tells the agent to read its perspective first; in Codex the seeded AGENTS.md does. In both, the agent has these tools: strata_read_perspective, strata_contribute, strata_session_closeout, and their read-only siblings.

A way to run the demo: in terminal 1, ask Claude Code to read the perspective, then state one decision or lesson worth keeping and contribute it. Watch the judge's verdict come back. Then, in terminal 2, start a Codex session and ask it about that topic — it reads the same scope.

7. See what the fleet believes

From the project directory:

strata stats writeback     # write-back rate by harness: who contributed, who closed out, who stayed silent
strata summary g_root      # what the scope currently holds
strata record g_root       # every contribution and its judgment, with reasons
strata start               # serve the Console at http://127.0.0.1:8000/ui/index.html

strata stats writeback counts ended sessions by default (--include-open adds the rest); its output says what write-back rate and accounted for mean.

In the Console (strata start; see Console), three read-only views show the demo's claims: View as (exactly what an agent bound to the scope receives — the perspective), Record (the full contribution record with each judgment and its reasoning) and Turned down (everything the judge declined, with the reason). Stop it with Ctrl+C — nothing else depends on it.

Binding past one scope

With two or more scopes, binding is explicit and delivered differently per harness. Claude Code inherits it from your shell, so export it before claude:

export STRATA_AGENT_SCOPE=g_root         # scope ID from your fleet.yaml
export STRATA_AGENT_SKILL=strata-worker  # optional — a skill is not required
claude

Codex does not inherit your shell for its MCP server; it reads STRATA_AGENT_SCOPE / STRATA_AGENT_SKILL from the literal env table under [mcp_servers.strata.env] in its config.toml. Either way it is the same identity. Or run strata launch for Claude Code — it validates the scope, resolves the skill, generates a session ID and starts the harness already bound (strata launch). strata launch does not launch Codex.

Troubleshooting

SymptomFix
Anything looks broken and you're not sure whyRun strata doctor first — it checks config, DB, fleet.yaml, harness wiring, and agent binding in one pass and names the fix for each failure.
Hooks or skills behave like an older StrataAn older strata is first on your PATH (say a pipx 1.10.5) and the registered hooks call bare strata. Check which -a strata and strata --version. Run strata doctor from the install you registered with — its strata on PATH check compares the strata on PATH with the install recorded by strata register (path and version) and fails loudly on a mismatch. (An older strata doctor has no such check, so it will not warn you: if the output has no strata on PATH line, the strata you ran is older than the check.)
strata: command not foundpipx install strata-mem didn't complete, or your shell hasn't picked up the new PATH entry — open a new shell, or run pipx ensurepath.
The agent never mentions Strata / has no Strata toolsThe harness didn't load the wiring: in Claude Code run /mcp and look for strata; in Codex run codex mcp list. Re-run strata register from the project root and restart the harness.
Codex: the turn-end reminder never appearsThe hook is not trusted yet — start codex (not codex exec) and choose Trust all and continue at "Hooks need review".
claude exits immediately with a binding errorWith one scope in the fleet an unset STRATA_AGENT_SCOPE auto-binds; this only fires once the fleet has 2+ scopes and none is chosen, or the scope/skill isn't in .strata/fleet.yaml. The error names which.
A contribution comes back with scope_manager_failure / unjudgedYour judge API key is missing or invalid. Check step 4.
Want to start over with a fresh DBrm -f .strata/strata.db && rm -rf .strata/summaries/ — the next session re-creates them.

What the demo shows

From one recorded run on 2026-09-19: strata build f4e7272 (release/v1.12.0-mvp, installed non-editably into a fresh virtualenv), codex-cli 0.153.4, Claude Code 2.1.278, and the judge qwen/qwen3-235b-a22b-2507 via OpenRouter. Every verdict below is that judge's — qwen is also the default judge as of 1.13.0 (see Choosing a judge for every judge measured since, including claude-haiku-4.5). The samples are small and scripted — one lesson per direction — so read them as "it happened", not as rates.

Codex → Claude CodePASS 1/1A lesson given only to Codex ("release tags use the prefix rel-, never v") was contributed and admitted as context by the judge. A fresh Claude Code session, asked only to tag the release, read it from shared memory, created rel-1.0.0 (not v1.0.0) and said why: "the project's shared memory says the maintainers' release tags always start with rel- and never v."
Claude Code → CodexPASS 1/1"The version lives only in VERSION.txt as a plain semver string" was contributed by Claude Code and admitted as a directive. A fresh Codex session read that directive from shared memory, searched the usual version-file locations before writing, and wrote only VERSION.txt = 2.1.0.
Junk kept outGiven a task that also included an irrelevant aside ("parking is validated at the front desk"), the agent did the real task, contributed only the relevant policy, and said it did not save the parking note because it is not about the project. That is the agent declining to contribute; the judge never saw it. Judge side, measured with the demo eval on the shipped judge build (f4e7272) with the qwen judge (two live runs): every plain-junk item was declined (7 of 7: trivia, chit-chat, unsupported claims), but the judge admitted 2 of 72 hard adversarial items (1.12 measurement). On the 1.13 engine, measured against the 84-item J4 adversarial set, the judge admitted 1 of 84 (j4-822) — a restricting directive held by the scope's own summary that the judge did not yet weigh; see Choosing a judge and ADR 0016 D5. Known limit, tracked in issue #209: the retirement backstop — the judge is asked to state the changed circumstance for any retirement — is advisory: no judge we measured honours a required tool field reliably (qwen never filled it, even when the re-ask quoted the contribution back), so a bare removal request can still retire a directive (#209). Another scope's material relayed with an oblique origin ("the people who own the account records mentioned…") is no longer an open limit: ADR 0016 closed it as not a defect — that is admissible hearsay, not a leak — and #212 tracks the remaining attribution gap (D5, above). claude-haiku-4.5 is now measured; it is no longer the default judge (see Choosing a judge). In the operator rehearsal (same build line, same judge), the Codex agent contributed an irrelevant office note ("the office coffee machine is broken") and the judge admitted it as context. Where a scope states a purpose (description in fleet.yaml) the judge declines material outside it — the office-note case above is declined 3/3 with a purpose set, and 0 of 11 items in that class are admitted. Where a scope states no purpose and has little or no memory yet, nothing changed: such a note is still admitted (10 of 11 in that class), and filtering it relies on the agent (#210).
Never-stored honesty, supersessionBoth PASS in the live demo eval (python -m strata_evals.demo) on the same build and judge.
Write-back rate (strata stats writeback)Every session in the run contributed — 3 of 3 in one repository and 2 of 2 in the other (Claude Code 2/2 and Codex 1/1 in the first, one each in the second) — with strict mode on. A small scripted sample, not a population rate.
Where the evidence livesThe strata-evals repository, results/m4-cross-harness-2026-09-19.md (commit a264895), with the raw transcripts, the Console JSON and the strata stats writeback output.

Out of the MVP

Out of the MVP: multi-human teams (the hosted memfleet platform, Phase B), cloud, retrieval sophistication, dashboard metrics, a third harness beyond Claude Code and Codex, and per-user profile state.


Adding Strata to an existing project

The Quick start commands work on an existing project unchanged — no clone of this repo and no change to your project's Python runtime:

pipx install strata-mem    # install strata in an isolated env; puts strata + strata-mcp on PATH
cd /path/to/your/project
strata register              # idempotent: creates .strata/, seeds fleet.yaml, wires every harness it finds

PyPI distribution name vs. import/CLI names. The Strata engine is published to PyPI as strata-mem (the name strata was already taken by an unrelated, dormant package; see ADR 0009 for the decision). Everything you actually type stays strata: import strata in Python, and the strata / strata-mcp console scripts on your PATH. Only the pipx install / pip install argument differs.

What strata register does

strata register is strictly additive — it never overwrites files you've already edited.

By default it wires every harness it finds on this machine: it detects Claude Code (the claude binary on PATH, or a ~/.claude directory) and Codex CLI (the codex binary, or ~/.codex) independently, and wires whichever of those are present — one or both. Pass --harness claude-code or --harness codex (repeatable) to narrow to specific harnesses instead of detecting. If neither is detected (a bare CI machine, a container), it wires Claude Code anyway, with the notice no harness detected on this machine — wiring claude-code (the default) — today's behavior, unchanged.

The common setup runs once regardless of which harnesses are resolved:

  1. Creates .strata/ directory and config.toml (relative paths, portable workspace).
  2. Appends a # Strata block to .gitignore (ignores the DB and venv, never fleet.yaml).
  3. Seeds .strata/fleet.yaml from a minimal template (1 scope, ready to edit).

Then, per resolved harness:

  • claude-code — copies the strata, strata-worker, and strata-inspect skills to .claude/skills/; merges a strata entry into the project root's .mcp.json mcpServers block — the file Claude Code actually reads for project-scoped MCP servers (.claude/settings.json has no mcpServers key in its schema); installs the freshness Stop-hook (copies .claude/hooks/strata-stop-hook and merges a hooks.Stop entry into .claude/settings.json, which IS the right place for hooks — see Memory-freshness Stop-hook). If an earlier Strata release had written the mcpServers.strata entry into .claude/settings.json (a location Claude Code never reads for MCP servers), register migrates it into .mcp.json and prints a "moved" line; a hand-edited legacy entry is left in place with a note instead.
  • codex — merges Strata into Codex CLI's own config.toml and seeds AGENTS.md with a short memory-moves block — see Using Strata with Codex CLI.

Run it again at any time — it skips everything that already exists and reports what it kept. Every step is additive: your own mcpServers, hooks, skills, AGENTS.md content, and fleet.yaml are never overwritten.

.mcp.json is not gitignored by register: in Claude Code's model it's meant to be committable, shared team config, and a plain strata register's entry carries an empty env (binding comes from process env / auto-bind, not a value baked into the file), so there is nothing project-specific or secret in it — it is safe to commit as-is. The one exception is --bootstrap-venv: that flag points command at an absolute, machine-local .strata/.venv/bin/strata-mcp path, which is NOT portable across machines/checkouts — if your team uses --bootstrap-venv, treat .mcp.json as machine-local (don't commit that version) rather than shared.

After registration

# The seeded fleet has one scope — open your harness straight away, no
# exports needed: an unset STRATA_AGENT_SCOPE auto-binds to the fleet's
# only scope.
claude

Growing the fleet past one scope turns binding into an explicit choice:

# Edit your fleet to match your team, then validate it
$EDITOR .strata/fleet.yaml
strata bootstrap

# Bind: same identity for every harness, delivered differently — see
# "Binding past one scope" in the Quick start above. For Claude Code, that's exports
# in the shell that opens it:
export STRATA_AGENT_SCOPE=g_root         # scope ID from your fleet.yaml
export STRATA_AGENT_SKILL=strata-worker  # optional — a skill is not required

# Open your harness — the MCP server validates the binding at startup
claude

The MCP server starts with strata-mcp (on your PATH from pipx). It reads .strata/config.toml automatically — no STRATA_DB_PATH or STRATA_FLEET_CONFIG env vars needed, and it applies pending migrations itself on first use — there is nothing separate to start. If binding is ambiguous (2+ scopes and none chosen) or wrong (scope unknown, skill not permitted), the server exits immediately with an actionable message.

Want to look at memory in a browser instead of (or alongside) working in your harness? Run strata start — see Console. It's optional and nothing else depends on it.

Something not working? Run strata doctor — it checks your project config, DB, fleet.yaml, harness wiring (MCP entry, Stop hook, skills/config), agent binding env vars, and that the strata on your PATH is the install that registered the project, in one pass, entirely offline (no backend needs to be running), and tells you exactly what to fix.

.strata/config.toml vs .strata-role

Two per-project files, two independent jobs:

  • .strata/config.toml — storage paths (DB, fleet YAML, summaries dir). Created by strata register. Machine-oriented; says where memory lives.
  • .strata-role — an optional default (scope, skill) binding for strata launch (see below). Created by hand, committed to git; says who you are by default.

Neither implies the other: you can have storage configured with no default role (strata launch prompts interactively), or a role file pointing at a scope that resolves storage from config.toml as usual.

Checking for skill updates

After pipx upgrade strata-mem, run:

strata register                # self-updates anything stale, in place
strata register --diff         # preview first: shows what would change, writes nothing

That's the whole story — no need to unregister first. Register self-updates each managed artifact (skills, the freshness hook script, the AGENTS.md block) in place when it's still exactly what a current or past strata register wrote and was never hand-edited; anything you've customised is left untouched and reported, never silently overwritten.

Memory-freshness Stop-hook

Reading fleet memory and never writing back lets a scope's memory quietly go stale. strata register wires a Claude Code Stop hook that closes that loop at each turn end. It is engine-owned (shipped as package data, installed like the skills) and strictly additive — your own Stop hooks are left untouched.

How it works. At every turn end the hook reads the session's mechanical read/contribute counters (the .strata/sessions/ state files — no judge, no memory write). When a session has read fleet memory (from its first read) and recorded nothing back — no strata_contribute call (any verdict) and no strata_session_closeout — the gate opens, from the session's first read. What happens then depends on the mode:

  • Strict (blocking) mode — the default. The hook blocks the stop with an instruction naming both exits — contribute what you learned, or call strata_session_closeout(reason) if nothing is worth keeping — then lets the agent proceed. It blocks at most twice per session: a first reminder, and a blunter "last reminder" only if the agent made no strata tool call at all after the first. It never blocks a third time, so it cannot loop (that cap — kept in the session's state — is what guarantees it, not the harness's stop_hook_active flag, which a later turn resets). No evaluator is spawned. The setting is per project, [freshness] strict in .strata/config.toml, so every harness's hook reads the same answer (Codex's own config.toml is global to the machine, so it cannot hold a per-project switch). strata register writes strict = true; strata register --no-strict writes false, and a plain re-register never undoes that. STRATA_FRESHNESS_STRICT=1/0 overrides the file. Each session's state records whether it ran strict, and strata stats writeback reports the write-back rate split by that, so any percentage states the enforcement behind it.

  • Background modestrata register --no-strict. The hook does not block your prompt. It spawns a detached, headless evaluator and returns immediately. The evaluator reads the session transcript tail and decides whether the session produced a memory-worthy outcome: if so it drafts a contribution and submits it through the normal judged path — the scope-manager gates admission exactly as it does for a contribution you write yourself; if not, it records a mechanical decline. Either outcome resets the session's counters, so you are nudged at most once per stale stretch, never per turn. The evaluator is best-effort: no .strata project, no session state, no API key, or any error all degrade to a silent no-op. It never writes memory without judgment — only the decline is mechanical.

At most one evaluator runs per session at a time (a lockfile beside the session state, with a stale-lock TTL), and the gate is always checked before spawning.

Session identity without any export. Session state is keyed by STRATA_AGENT_SESSION_ID. On the zero-export single-scope quickstart above, nothing sets it — so the MCP server keys the session by the deterministic fallback sess_auto_<parent pid> (its parent is the harness process), and the hook finds the same session with no IPC: it tries its own parent pid and then walks up its ancestors to the nearest one that has a session record. The walk is needed because Claude Code runs the hook as /bin/sh -c 'sh <script>' and that outer shell survives, so the hook's direct parent is the shell, not the claude process the server hangs off (found live in M3; before it, the strict hook never found a Claude Code session on this path). Codex runs the hook as a direct child of the same codex process as its server, so the first step already matches there. Empty string counts as unset here too (Codex's registered config ships a literal empty STRATA_AGENT_SESSION_ID). An explicit STRATA_AGENT_SESSION_ID skips all of this and is used as-is. (Reused pids are an edge case for any pid-derived id; a new connection that finds a record from an earlier server pid archives it and starts fresh.)

Windows: session-state counters are not cross-process locked. The MCP server and the detached evaluator both read-modify-write the same .strata/sessions/ state file. On POSIX each update takes an advisory fcntl.flock on a per-session <session_id>.json.lock file, so concurrent updates serialize and no increment is lost. Windows has no fcntl, and Strata deliberately does not substitute msvcrt.locking (it locks byte ranges and cannot wait on another process, so emulating an advisory lock means a spin-and-retry loop — a wrong lock is worse than a documented absence of one) and pulls in no dependency for it. On Windows the update therefore runs unlocked: writes stay atomic, so a file is never torn or corrupted, but two simultaneous updates can lose one increment. Nothing judged or memory-bearing rides on these counters — they are the mechanical substrate for the read-time nudge and this hook — so the worst case is one nudge firing a turn early or a turn late.

Environment variables:

VariableEffect
STRATA_FRESHNESS_STRICT1 forces strict (blocking) mode, 0 forces background mode. Unset defers to the project's [freshness] strict (default on).
STRATA_SESSION_IDLE_WINDOW_SECONDS86400
STRATA_EVALUATOR_MODELOverrides the evaluator's drafting model (default claude-haiku-4-5-20251001). The scope-manager that judges the draft is unaffected.

Non-Claude-Code harnesses. The hook is a documented contract, not magic — this is the mechanism's honest limit. Any harness that can run a command at turn end can reproduce it:

  1. At each turn boundary, run strata freshness-hook, passing a JSON object on stdin with at least transcript_path (path to the session transcript) and stop_hook_active (whether the stop was already blocked once this turn).
  2. Set the session's identity env vars (STRATA_AGENT_SCOPE, STRATA_AGENT_SKILL, STRATA_AGENT_SESSION_ID) the same way the MCP server sees them — the hook keys the session state by STRATA_AGENT_SESSION_ID. Leaving it unset relies on this harness spawning the hook the same direct-child way Claude Code does (see "Session identity without any export" above); set it explicitly if that assumption doesn't hold for your harness.
  3. In background mode the command exits 0 and (when the gate is open) spawns the detached evaluator itself. In strict mode (the default) it prints a {"decision":"block","reason":"…"} JSON object on stdout that your harness must feed back to the agent and honour as a one-time block.

Harnesses that cannot run a turn-end command get none of this automatically — the substrate (the read/contribute counters, strata_session_stats, the read-time nudge) still works, but the turn-boundary evaluator does not fire without a hook to trigger it.

No Python 3.11+ globally? Use --bootstrap-venv

If pipx can't find Python 3.11+ (locked-down corporate environment), use:

strata register --bootstrap-venv

This creates .strata/.venv/ with strata installed, and updates .mcp.json to point at the absolute venv path. The .strata/.venv/ directory is gitignored automatically. Note: this downloads ~100MB of Python deps.

Using Strata with Codex CLI

strata register --harness codex

Plain strata register already wires Codex when it detects it on the machine (see What strata register does); use --harness codex to wire Codex specifically, regardless of what else is detected — for example on a machine that also has Claude Code installed but you only want the Codex wiring right now.

The Codex wiring does the same per-project setup as plain strata register (.strata/, fleet.yaml, .gitignore), but instead of (or in addition to, when both harnesses are resolved) wiring .mcp.json it merges Strata's config into the OpenAI Codex CLI's own config file — $CODEX_HOME/config.toml, which defaults to ~/.codex/config.toml. That is a user-level file, not a per-project one, matching how Codex's own codex mcp add manages it. Like strata register for Claude Code, the merge is strictly additive and idempotent: your existing config.toml — comments, other mcp_servers entries, everything — is left untouched, and re-running strata register --harness codex is a no-op.

It also seeds the project's AGENTS.md with a short, marker-fenced block — Codex has no skills mechanism equivalent to .claude/skills/, so this is where the same read-before-working / contribute-back / judged-verdict guidance lives for Codex sessions. A fresh AGENTS.md is created if none exists; an existing one keeps its own content byte-identical, with the Strata block appended. strata unregister --harness codex removes only that block, and only when it still byte-matches what the current or a past release of register wrote — content you added elsewhere in the file, or genuine edits inside the block itself, are reported and left in place.

What this gives you, and how confident to be in each part:

  • MCP config — verified, including a live read from inside Codex; the contribute → judged-verdict half is not yet run there. Codex CLI's support for [mcp_servers.<name>] in config.toml is verified hands-on against codex-cli 0.149.0 (codex mcp add round-trips byte-for-byte, and strata register --harness codex writes exactly that shape) and again on 0.153.4, where a real Codex session launched strata-mcp and called strata_read_perspective (checklist item 1 below). A contribution with a judge verdict from inside Codex needs a judge key and was not run.

    Two things to know before you rely on this:

    Codex does not interpolate ${VAR}-style values inside config.toml — env values are literal TOML strings, not shell-expanded. So register ships the merged block with empty placeholders:

    [mcp_servers.strata.env]
    STRATA_AGENT_SCOPE = ""
    STRATA_AGENT_SKILL = ""
    STRATA_AGENT_SESSION_ID = ""
    

    On a fresh, single-scope fleet these empty placeholders are fine as-is — an empty STRATA_AGENT_SCOPE auto-binds to the fleet's only scope (and its default_skill, if it has one), the same way an unset shell env var does for Claude Code. STRATA_AGENT_SESSION_ID stays blank either way (see the sharpest-edge note below).

    Once the fleet grows past one scope, fill these in with real values before running codex (or edit them per project/session — this file is user-level, so if you work across multiple Strata projects with Codex you'll want to keep them current, or maintain a <repo>/.codex/config.toml override — Codex's docs list that as a read location for trusted projects, though strata register --harness codex itself only writes the global file today). Leave STRATA_AGENT_SESSION_ID blank. Verified against codex-cli 0.153.4: Codex starts one strata-mcp per Codex session, as a direct child of that session's codex process, so two Codex terminals never share a parent pid. With the id blank, strata-mcp and the freshness hook each derive sess_auto_<parent pid> and land on the same id (see the checklist below), one id per session. Do not export a value for it: Codex hands strata-mcp only the literal env table from config.toml (it does not inherit your shell — item 2 below), but hands the Stop hook your shell's environment, so an exported id would reach the hook and not the server and split one session into two. The server also records which harness a session ran in (harness in its session state: codex, claude-code, or unknown), read from the MCP client's own handshake (clientInfo.name), so write-back can be counted per harness.

  • Turn-boundary freshness hook — verified to fire in the interactive codex TUI once you trust it; codex exec skips it. Register merges a [[hooks.Stop]] block that runs strata freshness-hook at the end of each turn, following the contract documented above under "Non-Claude-Code harnesses". Codex will not run a hook until it is trusted: on first launch after register the TUI shows "Hooks need review" — choose Trust all and continue (or review them first). Until then, and always under codex exec (no prompt to answer; --dangerously-bypass-hook-trust exists but skips the review), the hook does not run and the turn-boundary nudge is absent. Once trusted, verified on codex-cli 0.153.4: the hook fires at the end of a turn with stdin JSON carrying session_id, transcript_path, stop_hook_active, last_assistant_message and cwd, it is a direct child of the same codex process as that session's strata-mcp, and it inherits the shell that launched codex.

    strata unregister --harness codex reverses this wiring the same way strata unregister reverses the Claude Code wiring — only when the [mcp_servers.strata] table and the hooks.Stop block still byte-match what the current or a past release of register wrote; a genuinely edited block is reported and left in place. Removing the [mcp_servers.strata] table also sweeps up any [mcp_servers.strata.*] subtables Codex itself appends during a live session (per-tool approval state) — left behind, those orphan the entry and Codex fails to start.

# what strata register --harness codex merges into config.toml
[mcp_servers.strata]
command = "strata-mcp"

[mcp_servers.strata.env]
STRATA_AGENT_SCOPE = ""
STRATA_AGENT_SKILL = ""
STRATA_AGENT_SESSION_ID = ""

[[hooks.Stop]]
[[hooks.Stop.hooks]]
type = "command"
command = "strata freshness-hook"
timeout = 30

Live-verification checklist. Run on codex-cli 0.153.4 (2026-09-19) in a scratch project with a temporary CODEX_HOME, two concurrent sessions, with probe wrappers around strata-mcp and the hook logging pid, parent pid and environment. Results:

  1. MCP end-to-end (read). Verified: strata_read_perspective returned real scope memory from inside Codex. In codex exec (approval policy never) an MCP tool call is refused with "MCP tool call requires approval" unless the server table sets default_tools_approval_mode = "approve"; the interactive TUI asks instead. The contribute → judged verdict half needs a judge key and was not run here.
  2. Env overlay vs. replace. Verified: replace. With CANARY=canary-value exported in the launching shell, strata-mcp saw the config's literal STRATA_AGENT_SESSION_ID="" and no CANARY — Codex passes the MCP server only its env table (plus what Codex itself adds). Literal values in config.toml are therefore correct and sufficient; an exported variable never reaches strata-mcp.
  3. Stop hook fires — and Codex honors its block. Verified in the TUI after trusting the hook (see above); not fired under codex exec without trust. It fired on consecutive stops within one session, and Codex showed "Blocked by hook" for both strict reminders (the hook blocks at most twice per session — see Memory-freshness Stop-hook). Whether the model then acts on a reminder varies: in the runs made, most sessions closed out after the first, one ignored both.
  4. Env inheritance in the hook. Verified: the hook inherits the shell that launched codex (CANARY present) and does not get the config.toml env table (STRATA_AGENT_SESSION_ID absent). So an exported STRATA_AGENT_SESSION_ID reaches the hook but not the server.
  5. One session id per session, shared by server and hook. Verified, in both codex exec and the TUI, two sessions running concurrently: each session has its own codex process; its strata-mcp and its hook have that process as parent pid; the two sessions differ. Every session state is keyed sess_auto_<codex pid> and carries harness: codex. One strata-mcp per session, alive for the session and gone when it ends.

Not verified: a second Codex session sharing a codex process (Codex also has a shared local app-server daemon behind codex agents — sessions started through it were not exercised); pid reuse across long gaps (the existing caveat on sess_auto_<pid> ids).

Undoing it: strata unregister

strata unregister reverses register's wiring. Like register, it is strictly conservative — it removes each artifact only when it still matches what the current, or a past, release of register wrote, and reports (leaving in place) anything you have genuinely edited since:

strata unregister               # remove the wiring; keep your .strata/ memory
strata unregister --dry-run     # preview every action, write nothing
strata unregister --purge-data  # also delete .strata/ (fleet.yaml, DB, summaries)

By default it reverses every harness that is actually wired in this project — determined by checking for register's markers in each harness's files, not by what's installed on the machine (that asymmetry with register's "wire everything detected" default is deliberate: a plain unregister should never touch a harness this project never registered). For Codex specifically, $CODEX_HOME/config.toml is a machine-level file shared by every project on the box, so its markers alone aren't proof this project registered Codex — "wired" for Codex additionally requires this project's AGENTS.md to carry the Strata marker block register seeds. A machine with a stale/foreign Codex config but no such block in this project's AGENTS.md is left untouched by a plain unregister; pass --harness codex explicitly to clean it up anyway. Pass --harness claude-code or --harness codex (repeatable) to narrow to specific harnesses instead. A harness named explicitly that turns out not to be wired still runs its normal per-artifact checks — each step reports "nothing to do" and the run exits 0, so --harness codex is always safe to run even against a project that never wired Codex.

What it does, step by step:

  1. Removes the managed # Strata block from .gitignore, leaving every other line byte-for-byte unchanged. An edited block is reported and left.
  2. Removes the mcpServers.strata entry from .mcp.json, preserving all your other keys (deleting the file only if register's entry was its only content). If you customised the entry, it is left in place and reported. A legacy mcpServers.strata entry left over in .claude/settings.json from a pre-fix strata register is cleaned up the same way.
  3. Removes each of the strata, strata-worker, and strata-inspect skills only if byte-identical to the shipped version. A modified or older-version skill is left alone and reported.
  4. Removes the freshness Stop-hook — both the hooks.Stop entry from .claude/settings.json (only when it byte-matches what register wrote; your own Stop hooks are preserved) and the .claude/hooks/strata-stop-hook script (only when byte-identical to the shipped version).
  5. Leaves your .strata/ workspace untouched — that is memory, not wiring. Pass --purge-data to remove it too (--dry-run --purge-data previews the purge without deleting).

For the Codex harness (resolved by default when Codex is wired, or via --harness codex), steps 2–4 above are replaced by the reverse of the Codex wiring: the [mcp_servers.strata] table and the freshness hooks.Stop block are removed from $CODEX_HOME/config.toml only when each still byte-matches what register wrote, and the marker-fenced Strata block is removed from the project's AGENTS.md, again only when unedited; .mcp.json is untouched. Steps 1 and 5 are unchanged. When both harnesses are resolved (the default on a machine with both wired), both sets of steps run, one after the other.

Exit code: 0 on success, including when there is nothing to do (running it on an unregistered project is a safe no-op). It exits 1 when something you asked to remove was left in place because it had been edited — so scripts can detect the partial case.


More commands

Inspect memory from the terminal

strata scopes              # list the fleet's strata, scopes, edges
strata summary <scope_id>  # curated summary (directives + context)
strata record  <scope_id>  # every contribution + judgment in the scope's record
strata stats writeback     # write-back rate by harness (sessions that contributed, closed out, or stayed silent)

Advanced subcommands

strata doctor                                    # diagnose config/DB/fleet/wiring/binding, offline
strata migrate                                  # apply pending SQLite migrations only
strata bootstrap --config path/to/fleet.yaml    # validate a fleet YAML (no DB writes)
strata start --reload                           # uvicorn auto-reload (dev mode)
strata start --port 8001                        # serve on a different port

strata launch — frictionless CC session binding (ADR 0003)

strata launch [scope_id] validates the target scope against fleet.yaml directly (embedded mode — no backend required), resolves the skill from the scope's declaration, generates a session ID, and hands the session off to claude with STRATA_AGENT_SCOPE, STRATA_AGENT_SKILL, and STRATA_AGENT_SESSION_ID already set. Run strata start only if you also want the Console UI.

strata launch g_arch                            # use default_skill from fleet.yaml
strata launch g_arch --skill evidence-summarizer  # override skill
strata launch g_arch --session my-sess          # override auto-generated session ID
strata launch                                   # pick from interactive list, or use .strata-role
strata launch --harness claude-code             # start this harness regardless of the default

With no scope_id, no .strata-role, and a fleet with exactly one scope, strata launch skips the picker entirely — it binds to that scope and says so, the same single-scope auto-bind rule the MCP server applies.

Which harness strata launch starts

strata launch resolves which harness to start, in order:

  1. An explicit --harness flag wins outright.
  2. Otherwise, the project's recorded default — see strata set-default-harness below. If .strata/config.toml names a harness Strata doesn't know (a hand-edited value, or one written by a newer Strata version), it prints a one-line warning to stderr naming the bad value and falls back to claude-code rather than launching the wrong thing silently.
  3. Otherwise, if exactly one harness is currently wired in this project (checked the same way strata unregister's default resolves — for Codex, that means both the machine's $CODEX_HOME/config.toml markers AND this project's AGENTS.md marker block, not the machine config alone), that one.
  4. Otherwise, claude-code — today's behavior, unchanged.

claude-code continues through the flow described above. strata launch does not launch codex: Codex hands its MCP server only the [mcp_servers.strata.env] table from its own config, never your shell's environment (see Using Strata with Codex CLI), so there is nothing for launch to export. strata launch --harness codex — or a project whose default/only-wired harness resolves to codex — exits 1 with:

Codex launch is not wired yet: Codex hands its MCP server only the [mcp_servers.strata.env] table from its own config, not your shell's environment, so there is nothing for strata launch to export (see README, 'Using Strata with Codex CLI'). Start codex directly; its identity comes from that table.

strata set-default-harness — record which harness launch starts

strata set-default-harness codex        # strata launch now starts codex by default
strata set-default-harness claude-code  # switch back

Writes default_harness = "NAME" under a [launch] table in .strata/config.toml, read-modify-write: every other line in the file — including a pre-existing [launch] table's other keys — is preserved byte-for-byte, and re-running replaces the value in place instead of duplicating the table. An unknown harness name exits 2 with the list of valid harnesses; running it before strata register exits 1 with run 'strata register' first. On success it prints default harness: NAME (used by 'strata launch').

.strata-role — per-project default binding

Place a .strata-role file at the root of a project repo so that strata launch (with no positional argument) binds automatically:

scope = "g_arch"
skill = "code-writer"   # optional; resolved from fleet.yaml if omitted

The file is committed to git alongside the project. When you open the repo and run strata launch, Strata finds the file, validates the scope, and launches claude already bound — no manual export step needed.

Platform notes

strata launch works on POSIX and Windows. On POSIX it execvps claude, so the launcher process is replaced outright. Windows has no real exec, so the launcher resolves claude on PATH (including .cmd/.exe shims), spawns it as a child sharing the console, and forwards its exit code. Ctrl-C reaches the claude session in both cases, and the child's exit code becomes the exit code of strata launch.

Upgrading from V1.1 to V1.2

V1.2 moves fleet configuration (strata, scopes, edges) out of SQLite and into a file-canonical fleet.yaml (ADR 0002). Before upgrading, export your existing fleet shape so it isn't lost when migration 0002 drops the SQL fleet tables:

  1. Upgrade code — pull V1.2 (git pull, make install). The migration has not run yet.
  2. Export your fleet — reads the still-present V1 tables and writes fleet.yaml:
    strata export-fleet          # writes ./fleet.yaml from ./strata.db
    # or specify paths explicitly:
    strata export-fleet --db /path/to/strata.db --out /path/to/fleet.yaml
    
  3. Start V1.2 — applies migration 0002 (drops the SQL fleet tables) and loads the exported config:
    strata start
    

strata start will refuse to proceed if you forget step 2: it detects a V1 fleet config in the DB with no fleet.yaml and exits with an actionable error pointing you back to strata export-fleet.

After step 3, edit fleet.yaml by hand to add per-scope skill declarations (default_skill, permitted_skills) as needed for strata launch (ADR 0003).

Strata Console UI

Open http://127.0.0.1:8000/ while the backend is running — a graph and list view of the current fleet state, polling every 5 s, plus four new tabs and an in-place operator-correction surface described in docs/console.md and the Console section below. Automatic memory writes (accept/decline) still flow only through strata.contribute; the Console's own write path is limited to the two in-person operator corrections (Replace / Retire a directive), each behind a confirm dialog. To point the UI at a non-default backend, edit the <meta name="strata-api-base" content="..."> tag in src/strata/_ui/index.html.


Console

strata start exists for exactly one reason: to serve the Console, a local web view of memory. Nothing else in Strata needs it running — the MCP server and CLI read and write storage directly, with or without a backend up.

strata start

Success looks like this, run after the journey above (register, then bind and work) — migrations already applied and fleet.yaml already seeded by strata register, so strata start here just confirms the project config and serves:

using project config: /path/to/your/project/.strata/config.toml
  ✓ Python ≥ 3.11: Python 3.11.15
  ✓ git on PATH: git found
  ✓ write perms on data directory: /path/to/your/project/.strata is writable
  ✓ port 8000 available: port 8000 is free
  ✓ ANTHROPIC_API_KEY: JUDGE_API_KEY is set

Strata backend → http://127.0.0.1:8000
Strata Console → http://127.0.0.1:8000/

INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)

(Run strata start in a directory that was never strata registered — the plain env-var-driven flow, no .strata/config.toml — and the first run instead prints Applied N migration(s). and seeded fleet.yaml from the default template; edit to suit, since nothing has touched storage yet there. A registered project never shows either line: strata register already seeded fleet.yaml, and the MCP server already applied migrations the first time you ran claude.)

The // lines are preflight checks, run before anything else. The judge key check is a warning, not a hard failure — if no key is set, or it's only set in a .env file Strata can't find, you'll see:

  ⚠ ANTHROPIC_API_KEY: JUDGE_API_KEY is not set. The scope-manager will not be able to judge contributions without it. Set the variable (or the deprecated ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY) before running strata start.

strata start still starts in that case — memory reads work fine, only live scope-manager judgments fail. Fix it by exporting JUDGE_API_KEY or adding it to a .env file in the current directory (the older ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY names still work too — see Environment variables); no restart needed beyond running strata start again.

...then open http://127.0.0.1:8000/ui/index.html in a browser. The Console is local-only — it talks to the backend strata start just launched on your own machine, nothing external. Stop it with Ctrl+C whenever — state persists in .strata/strata.db and .strata/summaries/ (or ./strata.db / ./summaries/ outside a registered project) and nothing else depends on the Console being up. Alongside the memory graph and settings, it has four new tabs, plus in-place Replace/Retire actions in the scope drawer; see docs/console.md for the full description of each:

  • Turned down — every contribution the scope-manager refused for a scope, with the reason given, plus a separate mechanical count of sessions that read the scope and recorded nothing.
  • Freshness — every active scope ranked by how many sessions have read it since anything new was accepted, with a fleet-wide breakdown of sessions that contributed, closed out with nothing to record, or read silently.
  • Record — one scope's full append-only contribution record, newest first, in plain language.
  • View as — exactly what an agent bound to a scope receives on a read, broken into layers with a rough token-weight estimate for each.
  • Operator corrections — replace or retire one of a scope's own directives in person, each action behind a confirm dialog.

Configuration

Per-project: .strata/config.toml

When strata register has been run, the project root contains .strata/config.toml with relative storage paths:

db = ".strata/strata.db"
fleet_yaml = ".strata/fleet.yaml"
summaries_dir = ".strata/summaries"

The MCP server walks up from its current directory to find this file. When present, it takes precedence over the env vars below — no shell exports needed for storage paths.

strata register also records the freshness Stop-hook's enforcement here, and which strata install ran it:

[freshness]
strict = true   # `strata register --no-strict` writes false

[install]       # written by `strata register`; `strata doctor` compares it with `strata` on PATH
strata = "/home/you/.local/pipx/venvs/strata-mem/bin/strata"
version = "1.12.0"

Choosing a judge

Strata's judging runs on a model you choose. I tried six of them against the same suites; three completed every one, and the table in this repo (docs/evidence/judge-baseline-2026-09-20.md) shows what each did and where a cell is empty — one produced no judgments at all, one errored on most of the adversarial set, one ran partially. A fresh install is pointed at qwen/qwen3-235b-a22b-2507 through OpenRouter, the model those numbers were taken on. If your only key is an Anthropic one, the install stays on claude-haiku-4-5 on Anthropic's own endpoint. That key is never sent to the router. Either way, strata doctor names the judge and endpoint you are actually running. The models differ in ways the table states plainly — how strictly each reads a scope's stated purpose, and what each costs per run — so read it and pick. The table names what was measured, when, and on which build.

What was measured — 2026-09-20, engine build release/v1.13.0 @ 5f5bf49, every model called through OpenRouter's Anthropic Messages endpoint, one repetition of each suite (small differences are within noise). Full study, including the models that did not complete a run: docs/evidence/judge-baseline-2026-09-20.md.

Judge (OpenRouter id)Junk admission (of 90)J1 accuracy (54 items)J4 attack successjudge_error$ per 90-item demo run
qwen/qwen3-235b-a22b-2507 (default)1294.4% (51/54)2.6% (2 of 76 scored; measured on the pre-#212 build)0 of 130$0.0157
anthropic/claude-haiku-4.5794.4% (51/54)0.0% (0 of 84)0 of 138$0.2139
google/gemini-2.5-flash2179.6% (43/54)9.5% (8 of 84)0 of 138$0.0353

Junk admission counts the junk contributions (trivia, chit-chat, unsupported claims, injection attempts) the judge admitted. J4 attack success counts the adversarial items (spoofed authority, injected directives, laundered attribution) the judge admitted. This table states what was measured, when and against which build; it does not rank the judges, and a judge that is not in it is unmeasured, not worse.

Two caveats that matter when you choose:

  • Purpose-aware relevance. With a scope purpose set (description: in fleet.yaml), claude-haiku-4.5 over-declined 2 of 6 legitimate operational notes (wi-102, wi-103); qwen and gemini-2.5-flash declined 0 of 6. The other numbers above do not show this — it appeared only in that check.
  • A model id ages. Routers rename and retire models, and the default id was measured on the date above. If it stops resolving, strata doctor says so and prints the override lines. To pin the measured judge so nothing can change under you, put JUDGE_MODEL=qwen/qwen3-235b-a22b-2507 in .env; to use another model, set JUDGE_MODEL to an id your endpoint serves (ids differ by provider — OpenRouter's Haiku is anthropic/claude-haiku-4.5, Anthropic's own is claude-haiku-4-5).

Override to any Anthropic-Messages endpoint — a router, a gateway, the Anthropic API:

JUDGE_API_KEY=<a key for that endpoint>
JUDGE_BASE_URL=https://your-gateway.example/api
JUDGE_MODEL=<a model id that endpoint serves>

Environment variables

Most settings are env-var driven, prefixed STRATA_ (the judge configuration also accepts the shorter, provider-generic names below). When .strata/config.toml is present, the first three are ignored for the MCP server (project config wins):

VariableDefaultPurpose
STRATA_DB_PATH./strata.dbSQLite path for the record store (overridden by config.toml)
STRATA_SUMMARIES_DIR./summariesDirectory for per-scope summary files (overridden by config.toml)
STRATA_FLEET_CONFIG./fleet.yamlFleet YAML (overridden by config.toml)
STRATA_AGENT_SCOPE(auto-bind)The scope this session acts at. Required only when the fleet has 2+ scopes — with exactly one scope, an unset (or empty-string) value auto-binds to it. With zero or 2+ scopes and this unset, the server still starts (soft-start): every memory tool returns an actionable error until bound via strata_bind, or the process is restarted with this set
STRATA_AGENT_SKILL(optional)The skill identifier for provenance — required only when the scope declares default_skill/permitted_skills in fleet.yaml, unless the scope was auto-bound, in which case its default_skill fills this in when unset
STRATA_AGENT_SESSION_ID(auto)Session identifier. Absent or empty-string resolves to the deterministic sess_auto_<parent pid> (the freshness Stop hook resolves the same fallback independently — see Memory-freshness Stop-hook)
JUDGE_API_KEY(unset)The judge's API key — for the endpoint in JUDGE_BASE_URL (OpenRouter by default). STRATA_JUDGE_API_KEY also works and wins if both are set. Works against any endpoint that speaks the Anthropic Messages API.
JUDGE_BASE_URLhttps://openrouter.ai/apiPoints the judge at a router/proxy/self-hosted gateway — the endpoint must speak the Anthropic Messages API. STRATA_JUDGE_BASE_URL also works. Exception: with only an Anthropic key set (see Choosing a judge) the default stays the Anthropic API.
JUDGE_MODELqwen/qwen3-235b-a22b-2507Model used by the judge (an id the endpoint serves). STRATA_MANAGER_MODEL is the original name and still works (wins if both are set). Exception: with only an Anthropic key set the default stays claude-haiku-4-5.
ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY(unset)Deprecated, kept as a working fallback: used only when JUDGE_API_KEY is unset. On its own it keeps claude-haiku-4-5 on the Anthropic API.
STRATA_FRESHNESS_STRICT(unset)1/0 forces the freshness Stop-hook strict (blocking) or background; unset defers to the project's [freshness] strict, default on (details)
STRATA_EVALUATOR_MODELclaude-haiku-4-5-20251001 on the Anthropic API, otherwise the judge's modelModel the freshness evaluator drafts with (the judge is unaffected)

A local .env file is loaded automatically for every name above.

STRATA_BACKEND_URL was removed in 1.5.0. The CLI inspection commands (scopes / summary / record) now read the record and summary stores directly, like every other embedded-mode consumer (ADR 0004 Decision 1) — no backend needs to be running.


Project layout

README.md                # This file
CONTEXT.md               # Canonical glossary (23 terms — single source of vocabulary)
docs/
  philosophy.md          # Theoretical foundations — why Strata exists
  ROADMAP.md             # Enduring principles + sequenced direction (post-V1.2)
  adr/
    0001-v1-architecture.md
    0002-fleet-config-source-of-truth.md
    0003-strata-launch-cc-binding.md
src/strata/              # Python backend package
  app.py                 # FastAPI app + endpoints (serves _ui/ at /ui)
  settings.py            # pydantic-settings config
  record_store.py        # SQLite repository (append-only record + fleet config)
  summary_store.py       # Markdown on-disk scope summaries
  scope_manager.py       # LLM judgment layer (Anthropic tool use)
  bootstrap.py           # YAML fleet config loader/applier
  mcp/
    server.py            # FastMCP stdio server; operates directly on RecordStore + SummaryStore
  _skills/               # Canonical skill files vendored as package data
    strata/Skill.md      # CC skill: orientation / first-time use
    strata-worker/Skill.md  # CC skill: parametric worker — reads STRATA_AGENT_SCOPE/SKILL
    strata-inspect/Skill.md # CC skill: read-only browser
  _migrations/           # SQLite schema migrations (package data)
  _templates/            # Starter fleet.yaml templates (package data)
  _ui/                   # Strata Console (package data; no build step — Babel-standalone)
    index.html           # Entry point; served at /ui/index.html
    app.jsx              # Root app, backend polling, read-only state
    atoms.jsx            # Shared UI atoms (Icon, Field, Toast, Modal …)
    graph.jsx            # Force-directed scope graph
    scope-detail.jsx     # Scope drill-in: backend summary + scope info
    settings.jsx         # Settings screen (display prefs + fleet read-only view)
    tweaks-panel.jsx     # Floating tweaks panel
    store.js             # API client (fetch /scopes, /scopes/{id}/summary)
    atlas.css            # Atlas design system tokens + component classes
  project_config.py      # .strata/config.toml walk-up loader (ADR 0005 Decision 2)
.claude/
  skills/
    strata/              # CC skill (copy used in Strata-repo sessions)
    strata-worker/       # CC skill (copy used in Strata-repo sessions)
    strata-inspect/      # CC skill (copy used in Strata-repo sessions)
.mcp.json.example        # Example .mcp.json (the shape `strata register` writes)
tests/                   # pytest suite
src/strata/_templates/   # Bundled starter fleets (dev-team.yaml is the default seed;
                          #   minimal.yaml/research-group.yaml/support-org.yaml also ship)
Makefile                 # Common tasks (install / test / lint / run / migrate / bootstrap / smoke)
pyproject.toml           # Project metadata + deps + ruff/pytest config

Running Strata in Claude Code

The MCP server operates directly on the SQLite record store and summary files (ADR 0004 Decision 1, "embedded mode"). The FastAPI backend is the Console UI layer; running strata start is required only to view the UI. The agent loop — contributions, scope-manager judgments, perspective reads — works whether the backend is up or down.

Entitlement-scoped reads (ADR 0006 D3/D4): strata_read_perspective, strata_read_scope_summary, and strata_read_scope_record default to your bound scope (STRATA_AGENT_SCOPE) when called with no scope_id. An explicit scope_id for strata_read_scope_summary reaches your bound scope, its inter-stratum ancestors, and any scope referenced by a scope on that chain via a reference edge — at any stratum distance, per ADR 0010 (context surface); strata_read_scope_record and strata_read_perspective's target stay chain-only — records audit the authority that binds you, and a perspective composes your own chain, not a peer's. strata_read_perspective itself composes those same chain-referenced scopes in as labelled, non-binding peer_reference layers (binding: false) alongside the chain's self/ancestor layers (binding: true) — a referenced scope's directives inform the reader but never bind them. Unreferenced scopes and descendants stay refused everywhere. This supersedes the old HTTP-parity note for strata_read_scope_record: it now loads the fleet on every call to run this check, so reading your own scope's record while it has no rows still returns the empty record shape ({"contributions": [], "judgments": []}), but a scope outside your entitled surface raises instead of silently returning an empty record.

For a foreign project: use strata register (see Adding Strata to an existing project above). The steps below are for developing on Strata itself.

1. Start the backend (optional — Console UI only)

strata start

The backend is only required if you want the browser Console UI at http://127.0.0.1:8000/. MCP tool calls work with or without it.

2. Register the MCP server in Claude Code

After running strata register, .mcp.json at the repo root already contains the correct mcpServers.strata entry — that's the file Claude Code actually reads for project-scoped MCP servers, not .claude/settings.json. This applies to the Strata repo itself too: without a discoverable .strata/config.toml the MCP server still starts (soft-start, ADR 0005 D5 dated addendum), but every memory tool stays gated with an actionable error naming the missing config until one exists and the server is restarted — so for developing on Strata run strata register once from the repo root — it is strictly additive, and the created .strata/ workspace is gitignored. The .mcp.json entry it merges is:

{
  "mcpServers": {
    "strata": {
      "command": "strata-mcp",
      "env": {}
    }
  }
}

The seeded fleet has one scope, so an unset STRATA_AGENT_SCOPE auto-binds to it (see Binding past one scope) — nothing to export before launching claude. Once you add scopes, set STRATA_AGENT_SCOPE and STRATA_AGENT_SKILL in the shell before launching. Storage paths are read from .strata/config.toml.

STRATA_AGENT_SKILL is a skill identifier recorded in provenance and validated against the scope's permitted_skills in fleet.yaml (when that list is set and there's a mismatch, the server still starts — soft-start — but every memory tool stays gated until bound to a permitted skill via strata_bind). It does not select a Claude Code skill file — the same generic CC skill (strata-worker) works for any role at any scope.

3. Invoke a skill

The repo ships three CC skills under .claude/skills/:

SkillWhat it does
/strataFirst-time orientation: shows the fleet, helps you pick a role, points you to the next skill. Use once.
/strata-workerBinds the current CC session as a worker at STRATA_AGENT_SCOPE. Reads the perspective, contributes observations as context, contributes decisions as directive, cites memory back to you. The main skill you'll use.
/strata-inspectRead-only browser. Use when you want to look around without acting.

4. Worked example (multi-session)

Three terminals, three different roles, one shared Strata:

# Terminal 1 — backend
strata start

# Terminal 2 — architect (skills must be permitted for the scope in fleet.yaml;
# the dev-team template permits code-writer + evidence-summarizer here)
STRATA_AGENT_SCOPE=g_arch     STRATA_AGENT_SKILL=code-writer   \
STRATA_AGENT_SESSION_ID=sess_arch  claude
# Then in the CC session:  /strata-worker

# Terminal 3 — backend developer
STRATA_AGENT_SCOPE=g_backend  STRATA_AGENT_SKILL=code-writer   \
STRATA_AGENT_SESSION_ID=sess_dev   claude
# Then in the CC session:  /strata-worker

Each session contributes to the same backend. The developer captures implementation patterns as context; the architect ratifies recurring patterns into directives that bind everyone below. Watch the state evolve in http://127.0.0.1:8000/ (the Console UI) or run strata summary g_arch from a fourth terminal.

Several terminals on one machine are safe, even without the backend running. Every claude session above talks to its own strata-mcp process, and two of those processes — or a process and the optional Console backend — can end up contributing to the same scope at the same time. Each holds its own per-scope lock file under .strata/.locks/ for the moment it takes to append a contribution and, separately, for the moment it takes to judge one — the OS enforces that only one process holds a given lock file at a time, so two contributions to the same scope can never interleave and leave the summary out of sync with the record (ADR 0012). Nothing extra to start or configure: the lock files are created on demand next to your strata.db, so this holds whether or not strata start is running. (Windows: strata-mcp still serializes concurrent contributions inside one process; across processes it does not — see ADR 0012.)


Developing

Working on Strata itself (not just using it) needs a clone of this repo, not a pipx install:

git clone https://github.com/oren198/Strata.git
cd Strata
make install        # editable install + dev extras (pip install -e ".[dev]")

If you prefer an isolated virtual environment first:

python3 -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
make install

Run the tests

make test         # full suite (scope-manager mocked — no API key needed)
make smoke        # end-to-end smoke (bootstrap → contribute → summary)
make lint         # ruff check + ruff format --check

To run the (skipped-by-default) integration test that hits the real Anthropic API:

STRATA_RUN_INTEGRATION=1 ANTHROPIC_API_KEY=... pytest tests/test_scope_manager.py -v

The original make targets (make migrate, make bootstrap, make run, make test, make lint, make smoke) all still work against a repo clone and are the fastest path when hacking on Strata itself.


Git workflow

  • main — the last verified version of Strata.
  • dev — the integration branch. All feature work merges here first.
  • feature/* — branched from dev, merged back into dev via PR.
  • Releases are PRs from devmain.

Architecture decisions

ADRs live under docs/adr/. Each captures a hard-to-reverse decision with context, alternatives, and consequences. The future direction — principles plus the next horizons — is in docs/ROADMAP.md.

Current ADRs:

  • 0001 — V1 architecture: local Python backend, SQLite + markdown storage, Claude Code as the initial agent runtime, scope-manager hosted as backend-spawned LLM judgment calls (see Environment variables for today's provider-generic judge configuration).
  • 0002 — Fleet config source of truth: fleet.yaml is canonical; SQLite holds only contributions and judgments; scope lifecycle (active/archived); per-scope skill declarations.
  • 0003 — strata launch CC binding: frictionless (scope, skill, session_id) binding via a single CLI command that validates, resolves, and execvps claude.
  • 0004 — H2 foundations: embedded mode (MCP server direct-store access), manager composition, lazy refresh, bounded summaries.
  • 0005 — Brownfield install: strata register two-command onboarding, per-project .strata/config.toml discovery, strata-mcp console script, skills as package data, honest provenance enforcement.

License

See LICENSE.

Contributors

oren198

460 commits

claude

162 commits

orihatav

11 commits

oren198/Strata

Shared Memory for Agent Fleets

Python

0

633 commits

updated Sep 22, 2026

See the code

See what people are saying

README

Strata

Strata gives a fleet of AI coding agents shared memory. Agents working the same project write what they learn to a scope and read what other agents already wrote — and every write is checked by an LLM judge before it lands, so one agent's mistake never corrupts what the rest of the fleet reads.

Core concepts

  • Fleet — the whole set of scopes and agents sharing one Strata memory.
  • Scope — one node agents bind to and read/write; scopes are grouped into ordered strata (e.g. architecture → backend → tests).
  • Contribution — one write to a scope: a proposed directive (binding) or context (non-binding).
  • Judge — the LLM that reviews every contribution and decides whether, and how, it's admitted.
  • Record — the append-only audit trail of everything ever contributed and judged, per scope.

Scoping — which memory an agent binds to and reads/writes — is a discipline boundary for well-behaved agents, not a security boundary; a harness sandbox's own file-access rules are the enforcement layer against an adversarial agent.

For the full theory and vocabulary, see docs/philosophy.md (why Strata exists, why naive sharing fails) and CONTEXT.md (the canonical glossary every part of the codebase uses — 23 terms, no synonyms).


Install and run

pipx install strata-mem      # strata + strata-mcp on PATH, in an isolated env
cd your-project
strata register               # wires memory into this project

strata is a local-first Python service: SQLite + markdown storage, an embedded MCP mode that needs no backend running, file-canonical fleet.yaml, and an optional read-only browser Console. The Quick start below is the one supported first run; everything deeper — architecture decisions, the Console UI, upgrade notes — lives under docs/ and is linked from the relevant section.


Quick start: two agents, one memory

The first run this release is built around: two terminals on one machine, a Claude Code session and a Codex session bound to the same scope. One session learns something and writes it back; the judge admits or declines it, with a reason you can read; the other session acts on it next time. You can see what the fleet believes, where each belief came from, and what was kept out.

The engine is embedded — the MCP server applies migrations and opens storage itself on first use, so nothing needs to run in the background. strata start exists for one reason, the Console (step 7); agents never depend on it.

1. Prerequisites

  • Python 3.11 or newer (strata-mem declares requires-python >=3.11). Check: python3 --version. On an older interpreter the install refuses rather than half-installing — checked on Python 3.10.12: pip install stops with ERROR: Package 'strata-mem' requires a different Python: 3.10.12 not in '>=3.11', and pipx install --python <3.10 interpreter> stops with "The Python you named does not satisfy '>=3.11'". pipx builds the isolated env from the interpreter pipx itself runs on, so that is the one that must be 3.11+. No Python 3.11+? See No Python 3.11+ globally?.
  • Claude Code and Codex CLI, both installed and logged in (claude and codex on your PATH). The register step below wires whichever it finds; this quickstart wires both.
  • A judge API key. The judge is an LLM you point at any endpoint that speaks the Anthropic Messages API — get an Anthropic key at https://console.anthropic.com/, or use a router/proxy/self-hosted gateway that speaks that API (see Environment variables).

2. Install

pipx install strata-mem      # strata + strata-mcp on PATH, in an isolated env

pipx is the supported install. pip install strata-mem inside a Python 3.11+ virtualenv also gives you working strata and strata-mcp commands (checked with python3.11 -m venv + pip install); then run strata from that environment, or put its bin/ on PATH, because the registered hooks call bare strata. uv was not checked, so nothing is claimed for it. If another strata is already on your PATH (an older pipx install, say), see Troubleshooting.

3. Register — wiring both harnesses

mkdir strata-demo && cd strata-demo
git init                       # a project root needs a marker (.git, pyproject.toml, ...)
strata register --harness claude-code --harness codex

strata register is idempotent and strictly additive. With those flags it wires both harnesses whether or not it can detect them (without flags it wires every harness it finds). It creates .strata/ (config, a one-scope fleet.yaml, the database directory), appends a # Strata block to .gitignore, and then:

  • Claude Code: copies the Strata skills into .claude/skills/, adds the strata server to .mcp.json, and installs the freshness Stop hook under .claude/.
  • Codex: merges the strata MCP server and the same Stop hook into Codex's own config, $CODEX_HOME/config.toml (default ~/.codex/config.toml — a machine-level file, not a per-project one), and seeds this project's AGENTS.md with a short memory-moves block.

Strict mode is on by default — a session that read fleet memory and wrote nothing back is reminded at its end to contribute or close out (at most twice) — and strata register --no-strict turns it off.

In an interactive terminal strata register also asks what the first scope's memory is for (one line; Enter skips it). Scripts pass --description "..."; a non-interactive run never asks. It is written to fleet.yaml as the scope's description:.

See What strata register does for the full list.

4. Set your judge API key

The default judge is qwen/qwen3-235b-a22b-2507 on OpenRouter, so the key is an OpenRouter key (openrouter.ai/keys). To judge with Anthropic instead, use an Anthropic key — see Choosing a judge.

Put it in a .env file at the project root. strata register already adds .env to .gitignore, and every entry point (the MCP server, the CLI and the Console backend) loads it:

JUDGE_API_KEY=sk-or-...

strata register offers to capture the key for you and writes JUDGE_MODEL and JUDGE_BASE_URL beside it, so the .env states which judge the key is for.

With Codex, use the .env file, not an export. Codex starts its MCP server with only the [mcp_servers.strata.env] table from its own config, not your shell's environment, so an exported key never reaches it and Codex's contributions go unjudged. The project .env is how the key reaches Codex's server. For Claude Code alone, export JUDGE_API_KEY=sk-... in the shell you launch it from also works.

(The older ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY names still work as a deprecated fallback — see Environment variables.)

Without a key, reads work, but a contribution is recorded with no verdict: the tool returns an error saying the scope-manager cannot judge without a key, and the contribution shows in strata record as "judge errored". Once a key is set (restart the harness so the server sees it), strata_rejudge gives it its verdict.

5. The fleet: keep the one scope

.strata/fleet.yaml is seeded with one scope, g_root. Keep it: one scope is a complete, working setup, and it is what both terminals bind to. With exactly one scope, an unset STRATA_AGENT_SCOPE auto-binds to it, so you export nothing for either harness. Grow the fleet later, when real roles emerge (edit .strata/fleet.yaml and validate with strata bootstrap, or edit it in the Console); binding becomes an explicit choice once there are two or more scopes — see Binding past one scope.

Give each scope a one-line description: in fleet.yaml — what its memory is for. The judge measures relevance against it: material "outside this scope's stated purpose" is declined, and the decline reason quotes the purpose. Without a description the judge may use what the scope already holds as an implied purpose, but only once there is enough of it to tell what the scope is about (about 50 words of summary and directives; STRATA_IMPLIED_PURPOSE_MIN_WORDS); a scope with an empty summary is judged exactly as before, with no relevance rule at all. strata doctor warns once per scope that has no description, and the Console shows it in the scope header ("no description" when unset).

6. Two terminals, same project

Terminal 1 — Claude Code

cd strata-demo
claude

What to expect the first time in Claude Code (verified on Claude Code 2.1.278):

  • It asks whether you trust this folder — choose Yes, I trust this folder (the highlighted default is No, exit).
  • It then reports "New MCP server found in this project: strata". The highlighted default is Continue without using this MCP server. Pick Use this MCP server (or Use this and all future MCP servers in this project) instead: accepting the default gives you a memory-blind session with no Strata tools.

Terminal 2 — Codex

cd strata-demo
codex

What to expect the first time in Codex (all verified on codex-cli 0.153.4):

  • Codex asks whether to trust the directory — continue.
  • It then shows "Hooks need review" for the Strata Stop hook. Choose Trust all and continue. Codex does not run a hook until it is trusted; until then (and always under codex exec) the turn-end reminder never fires. The trust is remembered.
  • Leave STRATA_AGENT_SESSION_ID blank in Codex's config (register ships it blank). Each Codex session gets its own id automatically, and the hook lands on the same id as the MCP server; exporting a value would reach the hook but not the server and split one session in two.
  • Set default_tools_approval_mode = "approve" under [mcp_servers.strata] in ~/.codex/config.toml (or answer every per-tool prompt with Allow). Under codex exec an MCP call that is not approved is refused, so without this codex exec gets no Strata tools; in the interactive codex, cancelling the prompts does the same. Either way that is a memory-blind session. The interactive prompts are Allow, Allow for this session, Always allow or Cancel; "Always allow" is remembered per tool, so each Strata tool asks once, and the config key covers all of them at once.

Codex's workspace-write sandbox mounts .git/refs read-only, so a Codex session cannot create git tags or refs itself (observed on codex-cli 0.153.4 under codex exec -s workspace-write: git tag failed inside the sandbox). Have another session, or you, do the tagging.

In Claude Code the session-start hook tells the agent to read its perspective first; in Codex the seeded AGENTS.md does. In both, the agent has these tools: strata_read_perspective, strata_contribute, strata_session_closeout, and their read-only siblings.

A way to run the demo: in terminal 1, ask Claude Code to read the perspective, then state one decision or lesson worth keeping and contribute it. Watch the judge's verdict come back. Then, in terminal 2, start a Codex session and ask it about that topic — it reads the same scope.

7. See what the fleet believes

From the project directory:

strata stats writeback     # write-back rate by harness: who contributed, who closed out, who stayed silent
strata summary g_root      # what the scope currently holds
strata record g_root       # every contribution and its judgment, with reasons
strata start               # serve the Console at http://127.0.0.1:8000/ui/index.html

strata stats writeback counts ended sessions by default (--include-open adds the rest); its output says what write-back rate and accounted for mean.

In the Console (strata start; see Console), three read-only views show the demo's claims: View as (exactly what an agent bound to the scope receives — the perspective), Record (the full contribution record with each judgment and its reasoning) and Turned down (everything the judge declined, with the reason). Stop it with Ctrl+C — nothing else depends on it.

Binding past one scope

With two or more scopes, binding is explicit and delivered differently per harness. Claude Code inherits it from your shell, so export it before claude:

export STRATA_AGENT_SCOPE=g_root         # scope ID from your fleet.yaml
export STRATA_AGENT_SKILL=strata-worker  # optional — a skill is not required
claude

Codex does not inherit your shell for its MCP server; it reads STRATA_AGENT_SCOPE / STRATA_AGENT_SKILL from the literal env table under [mcp_servers.strata.env] in its config.toml. Either way it is the same identity. Or run strata launch for Claude Code — it validates the scope, resolves the skill, generates a session ID and starts the harness already bound (strata launch). strata launch does not launch Codex.

Troubleshooting

SymptomFix
Anything looks broken and you're not sure whyRun strata doctor first — it checks config, DB, fleet.yaml, harness wiring, and agent binding in one pass and names the fix for each failure.
Hooks or skills behave like an older StrataAn older strata is first on your PATH (say a pipx 1.10.5) and the registered hooks call bare strata. Check which -a strata and strata --version. Run strata doctor from the install you registered with — its strata on PATH check compares the strata on PATH with the install recorded by strata register (path and version) and fails loudly on a mismatch. (An older strata doctor has no such check, so it will not warn you: if the output has no strata on PATH line, the strata you ran is older than the check.)
strata: command not foundpipx install strata-mem didn't complete, or your shell hasn't picked up the new PATH entry — open a new shell, or run pipx ensurepath.
The agent never mentions Strata / has no Strata toolsThe harness didn't load the wiring: in Claude Code run /mcp and look for strata; in Codex run codex mcp list. Re-run strata register from the project root and restart the harness.
Codex: the turn-end reminder never appearsThe hook is not trusted yet — start codex (not codex exec) and choose Trust all and continue at "Hooks need review".
claude exits immediately with a binding errorWith one scope in the fleet an unset STRATA_AGENT_SCOPE auto-binds; this only fires once the fleet has 2+ scopes and none is chosen, or the scope/skill isn't in .strata/fleet.yaml. The error names which.
A contribution comes back with scope_manager_failure / unjudgedYour judge API key is missing or invalid. Check step 4.
Want to start over with a fresh DBrm -f .strata/strata.db && rm -rf .strata/summaries/ — the next session re-creates them.

What the demo shows

From one recorded run on 2026-09-19: strata build f4e7272 (release/v1.12.0-mvp, installed non-editably into a fresh virtualenv), codex-cli 0.153.4, Claude Code 2.1.278, and the judge qwen/qwen3-235b-a22b-2507 via OpenRouter. Every verdict below is that judge's — qwen is also the default judge as of 1.13.0 (see Choosing a judge for every judge measured since, including claude-haiku-4.5). The samples are small and scripted — one lesson per direction — so read them as "it happened", not as rates.

Codex → Claude CodePASS 1/1A lesson given only to Codex ("release tags use the prefix rel-, never v") was contributed and admitted as context by the judge. A fresh Claude Code session, asked only to tag the release, read it from shared memory, created rel-1.0.0 (not v1.0.0) and said why: "the project's shared memory says the maintainers' release tags always start with rel- and never v."
Claude Code → CodexPASS 1/1"The version lives only in VERSION.txt as a plain semver string" was contributed by Claude Code and admitted as a directive. A fresh Codex session read that directive from shared memory, searched the usual version-file locations before writing, and wrote only VERSION.txt = 2.1.0.
Junk kept outGiven a task that also included an irrelevant aside ("parking is validated at the front desk"), the agent did the real task, contributed only the relevant policy, and said it did not save the parking note because it is not about the project. That is the agent declining to contribute; the judge never saw it. Judge side, measured with the demo eval on the shipped judge build (f4e7272) with the qwen judge (two live runs): every plain-junk item was declined (7 of 7: trivia, chit-chat, unsupported claims), but the judge admitted 2 of 72 hard adversarial items (1.12 measurement). On the 1.13 engine, measured against the 84-item J4 adversarial set, the judge admitted 1 of 84 (j4-822) — a restricting directive held by the scope's own summary that the judge did not yet weigh; see Choosing a judge and ADR 0016 D5. Known limit, tracked in issue #209: the retirement backstop — the judge is asked to state the changed circumstance for any retirement — is advisory: no judge we measured honours a required tool field reliably (qwen never filled it, even when the re-ask quoted the contribution back), so a bare removal request can still retire a directive (#209). Another scope's material relayed with an oblique origin ("the people who own the account records mentioned…") is no longer an open limit: ADR 0016 closed it as not a defect — that is admissible hearsay, not a leak — and #212 tracks the remaining attribution gap (D5, above). claude-haiku-4.5 is now measured; it is no longer the default judge (see Choosing a judge). In the operator rehearsal (same build line, same judge), the Codex agent contributed an irrelevant office note ("the office coffee machine is broken") and the judge admitted it as context. Where a scope states a purpose (description in fleet.yaml) the judge declines material outside it — the office-note case above is declined 3/3 with a purpose set, and 0 of 11 items in that class are admitted. Where a scope states no purpose and has little or no memory yet, nothing changed: such a note is still admitted (10 of 11 in that class), and filtering it relies on the agent (#210).
Never-stored honesty, supersessionBoth PASS in the live demo eval (python -m strata_evals.demo) on the same build and judge.
Write-back rate (strata stats writeback)Every session in the run contributed — 3 of 3 in one repository and 2 of 2 in the other (Claude Code 2/2 and Codex 1/1 in the first, one each in the second) — with strict mode on. A small scripted sample, not a population rate.
Where the evidence livesThe strata-evals repository, results/m4-cross-harness-2026-09-19.md (commit a264895), with the raw transcripts, the Console JSON and the strata stats writeback output.

Out of the MVP

Out of the MVP: multi-human teams (the hosted memfleet platform, Phase B), cloud, retrieval sophistication, dashboard metrics, a third harness beyond Claude Code and Codex, and per-user profile state.


Adding Strata to an existing project

The Quick start commands work on an existing project unchanged — no clone of this repo and no change to your project's Python runtime:

pipx install strata-mem    # install strata in an isolated env; puts strata + strata-mcp on PATH
cd /path/to/your/project
strata register              # idempotent: creates .strata/, seeds fleet.yaml, wires every harness it finds

PyPI distribution name vs. import/CLI names. The Strata engine is published to PyPI as strata-mem (the name strata was already taken by an unrelated, dormant package; see ADR 0009 for the decision). Everything you actually type stays strata: import strata in Python, and the strata / strata-mcp console scripts on your PATH. Only the pipx install / pip install argument differs.

What strata register does

strata register is strictly additive — it never overwrites files you've already edited.

By default it wires every harness it finds on this machine: it detects Claude Code (the claude binary on PATH, or a ~/.claude directory) and Codex CLI (the codex binary, or ~/.codex) independently, and wires whichever of those are present — one or both. Pass --harness claude-code or --harness codex (repeatable) to narrow to specific harnesses instead of detecting. If neither is detected (a bare CI machine, a container), it wires Claude Code anyway, with the notice no harness detected on this machine — wiring claude-code (the default) — today's behavior, unchanged.

The common setup runs once regardless of which harnesses are resolved:

  1. Creates .strata/ directory and config.toml (relative paths, portable workspace).
  2. Appends a # Strata block to .gitignore (ignores the DB and venv, never fleet.yaml).
  3. Seeds .strata/fleet.yaml from a minimal template (1 scope, ready to edit).

Then, per resolved harness:

  • claude-code — copies the strata, strata-worker, and strata-inspect skills to .claude/skills/; merges a strata entry into the project root's .mcp.json mcpServers block — the file Claude Code actually reads for project-scoped MCP servers (.claude/settings.json has no mcpServers key in its schema); installs the freshness Stop-hook (copies .claude/hooks/strata-stop-hook and merges a hooks.Stop entry into .claude/settings.json, which IS the right place for hooks — see Memory-freshness Stop-hook). If an earlier Strata release had written the mcpServers.strata entry into .claude/settings.json (a location Claude Code never reads for MCP servers), register migrates it into .mcp.json and prints a "moved" line; a hand-edited legacy entry is left in place with a note instead.
  • codex — merges Strata into Codex CLI's own config.toml and seeds AGENTS.md with a short memory-moves block — see Using Strata with Codex CLI.

Run it again at any time — it skips everything that already exists and reports what it kept. Every step is additive: your own mcpServers, hooks, skills, AGENTS.md content, and fleet.yaml are never overwritten.

.mcp.json is not gitignored by register: in Claude Code's model it's meant to be committable, shared team config, and a plain strata register's entry carries an empty env (binding comes from process env / auto-bind, not a value baked into the file), so there is nothing project-specific or secret in it — it is safe to commit as-is. The one exception is --bootstrap-venv: that flag points command at an absolute, machine-local .strata/.venv/bin/strata-mcp path, which is NOT portable across machines/checkouts — if your team uses --bootstrap-venv, treat .mcp.json as machine-local (don't commit that version) rather than shared.

After registration

# The seeded fleet has one scope — open your harness straight away, no
# exports needed: an unset STRATA_AGENT_SCOPE auto-binds to the fleet's
# only scope.
claude

Growing the fleet past one scope turns binding into an explicit choice:

# Edit your fleet to match your team, then validate it
$EDITOR .strata/fleet.yaml
strata bootstrap

# Bind: same identity for every harness, delivered differently — see
# "Binding past one scope" in the Quick start above. For Claude Code, that's exports
# in the shell that opens it:
export STRATA_AGENT_SCOPE=g_root         # scope ID from your fleet.yaml
export STRATA_AGENT_SKILL=strata-worker  # optional — a skill is not required

# Open your harness — the MCP server validates the binding at startup
claude

The MCP server starts with strata-mcp (on your PATH from pipx). It reads .strata/config.toml automatically — no STRATA_DB_PATH or STRATA_FLEET_CONFIG env vars needed, and it applies pending migrations itself on first use — there is nothing separate to start. If binding is ambiguous (2+ scopes and none chosen) or wrong (scope unknown, skill not permitted), the server exits immediately with an actionable message.

Want to look at memory in a browser instead of (or alongside) working in your harness? Run strata start — see Console. It's optional and nothing else depends on it.

Something not working? Run strata doctor — it checks your project config, DB, fleet.yaml, harness wiring (MCP entry, Stop hook, skills/config), agent binding env vars, and that the strata on your PATH is the install that registered the project, in one pass, entirely offline (no backend needs to be running), and tells you exactly what to fix.

.strata/config.toml vs .strata-role

Two per-project files, two independent jobs:

  • .strata/config.toml — storage paths (DB, fleet YAML, summaries dir). Created by strata register. Machine-oriented; says where memory lives.
  • .strata-role — an optional default (scope, skill) binding for strata launch (see below). Created by hand, committed to git; says who you are by default.

Neither implies the other: you can have storage configured with no default role (strata launch prompts interactively), or a role file pointing at a scope that resolves storage from config.toml as usual.

Checking for skill updates

After pipx upgrade strata-mem, run:

strata register                # self-updates anything stale, in place
strata register --diff         # preview first: shows what would change, writes nothing

That's the whole story — no need to unregister first. Register self-updates each managed artifact (skills, the freshness hook script, the AGENTS.md block) in place when it's still exactly what a current or past strata register wrote and was never hand-edited; anything you've customised is left untouched and reported, never silently overwritten.

Memory-freshness Stop-hook

Reading fleet memory and never writing back lets a scope's memory quietly go stale. strata register wires a Claude Code Stop hook that closes that loop at each turn end. It is engine-owned (shipped as package data, installed like the skills) and strictly additive — your own Stop hooks are left untouched.

How it works. At every turn end the hook reads the session's mechanical read/contribute counters (the .strata/sessions/ state files — no judge, no memory write). When a session has read fleet memory (from its first read) and recorded nothing back — no strata_contribute call (any verdict) and no strata_session_closeout — the gate opens, from the session's first read. What happens then depends on the mode:

  • Strict (blocking) mode — the default. The hook blocks the stop with an instruction naming both exits — contribute what you learned, or call strata_session_closeout(reason) if nothing is worth keeping — then lets the agent proceed. It blocks at most twice per session: a first reminder, and a blunter "last reminder" only if the agent made no strata tool call at all after the first. It never blocks a third time, so it cannot loop (that cap — kept in the session's state — is what guarantees it, not the harness's stop_hook_active flag, which a later turn resets). No evaluator is spawned. The setting is per project, [freshness] strict in .strata/config.toml, so every harness's hook reads the same answer (Codex's own config.toml is global to the machine, so it cannot hold a per-project switch). strata register writes strict = true; strata register --no-strict writes false, and a plain re-register never undoes that. STRATA_FRESHNESS_STRICT=1/0 overrides the file. Each session's state records whether it ran strict, and strata stats writeback reports the write-back rate split by that, so any percentage states the enforcement behind it.

  • Background modestrata register --no-strict. The hook does not block your prompt. It spawns a detached, headless evaluator and returns immediately. The evaluator reads the session transcript tail and decides whether the session produced a memory-worthy outcome: if so it drafts a contribution and submits it through the normal judged path — the scope-manager gates admission exactly as it does for a contribution you write yourself; if not, it records a mechanical decline. Either outcome resets the session's counters, so you are nudged at most once per stale stretch, never per turn. The evaluator is best-effort: no .strata project, no session state, no API key, or any error all degrade to a silent no-op. It never writes memory without judgment — only the decline is mechanical.

At most one evaluator runs per session at a time (a lockfile beside the session state, with a stale-lock TTL), and the gate is always checked before spawning.

Session identity without any export. Session state is keyed by STRATA_AGENT_SESSION_ID. On the zero-export single-scope quickstart above, nothing sets it — so the MCP server keys the session by the deterministic fallback sess_auto_<parent pid> (its parent is the harness process), and the hook finds the same session with no IPC: it tries its own parent pid and then walks up its ancestors to the nearest one that has a session record. The walk is needed because Claude Code runs the hook as /bin/sh -c 'sh <script>' and that outer shell survives, so the hook's direct parent is the shell, not the claude process the server hangs off (found live in M3; before it, the strict hook never found a Claude Code session on this path). Codex runs the hook as a direct child of the same codex process as its server, so the first step already matches there. Empty string counts as unset here too (Codex's registered config ships a literal empty STRATA_AGENT_SESSION_ID). An explicit STRATA_AGENT_SESSION_ID skips all of this and is used as-is. (Reused pids are an edge case for any pid-derived id; a new connection that finds a record from an earlier server pid archives it and starts fresh.)

Windows: session-state counters are not cross-process locked. The MCP server and the detached evaluator both read-modify-write the same .strata/sessions/ state file. On POSIX each update takes an advisory fcntl.flock on a per-session <session_id>.json.lock file, so concurrent updates serialize and no increment is lost. Windows has no fcntl, and Strata deliberately does not substitute msvcrt.locking (it locks byte ranges and cannot wait on another process, so emulating an advisory lock means a spin-and-retry loop — a wrong lock is worse than a documented absence of one) and pulls in no dependency for it. On Windows the update therefore runs unlocked: writes stay atomic, so a file is never torn or corrupted, but two simultaneous updates can lose one increment. Nothing judged or memory-bearing rides on these counters — they are the mechanical substrate for the read-time nudge and this hook — so the worst case is one nudge firing a turn early or a turn late.

Environment variables:

VariableEffect
STRATA_FRESHNESS_STRICT1 forces strict (blocking) mode, 0 forces background mode. Unset defers to the project's [freshness] strict (default on).
STRATA_SESSION_IDLE_WINDOW_SECONDS86400
STRATA_EVALUATOR_MODELOverrides the evaluator's drafting model (default claude-haiku-4-5-20251001). The scope-manager that judges the draft is unaffected.

Non-Claude-Code harnesses. The hook is a documented contract, not magic — this is the mechanism's honest limit. Any harness that can run a command at turn end can reproduce it:

  1. At each turn boundary, run strata freshness-hook, passing a JSON object on stdin with at least transcript_path (path to the session transcript) and stop_hook_active (whether the stop was already blocked once this turn).
  2. Set the session's identity env vars (STRATA_AGENT_SCOPE, STRATA_AGENT_SKILL, STRATA_AGENT_SESSION_ID) the same way the MCP server sees them — the hook keys the session state by STRATA_AGENT_SESSION_ID. Leaving it unset relies on this harness spawning the hook the same direct-child way Claude Code does (see "Session identity without any export" above); set it explicitly if that assumption doesn't hold for your harness.
  3. In background mode the command exits 0 and (when the gate is open) spawns the detached evaluator itself. In strict mode (the default) it prints a {"decision":"block","reason":"…"} JSON object on stdout that your harness must feed back to the agent and honour as a one-time block.

Harnesses that cannot run a turn-end command get none of this automatically — the substrate (the read/contribute counters, strata_session_stats, the read-time nudge) still works, but the turn-boundary evaluator does not fire without a hook to trigger it.

No Python 3.11+ globally? Use --bootstrap-venv

If pipx can't find Python 3.11+ (locked-down corporate environment), use:

strata register --bootstrap-venv

This creates .strata/.venv/ with strata installed, and updates .mcp.json to point at the absolute venv path. The .strata/.venv/ directory is gitignored automatically. Note: this downloads ~100MB of Python deps.

Using Strata with Codex CLI

strata register --harness codex

Plain strata register already wires Codex when it detects it on the machine (see What strata register does); use --harness codex to wire Codex specifically, regardless of what else is detected — for example on a machine that also has Claude Code installed but you only want the Codex wiring right now.

The Codex wiring does the same per-project setup as plain strata register (.strata/, fleet.yaml, .gitignore), but instead of (or in addition to, when both harnesses are resolved) wiring .mcp.json it merges Strata's config into the OpenAI Codex CLI's own config file — $CODEX_HOME/config.toml, which defaults to ~/.codex/config.toml. That is a user-level file, not a per-project one, matching how Codex's own codex mcp add manages it. Like strata register for Claude Code, the merge is strictly additive and idempotent: your existing config.toml — comments, other mcp_servers entries, everything — is left untouched, and re-running strata register --harness codex is a no-op.

It also seeds the project's AGENTS.md with a short, marker-fenced block — Codex has no skills mechanism equivalent to .claude/skills/, so this is where the same read-before-working / contribute-back / judged-verdict guidance lives for Codex sessions. A fresh AGENTS.md is created if none exists; an existing one keeps its own content byte-identical, with the Strata block appended. strata unregister --harness codex removes only that block, and only when it still byte-matches what the current or a past release of register wrote — content you added elsewhere in the file, or genuine edits inside the block itself, are reported and left in place.

What this gives you, and how confident to be in each part:

  • MCP config — verified, including a live read from inside Codex; the contribute → judged-verdict half is not yet run there. Codex CLI's support for [mcp_servers.<name>] in config.toml is verified hands-on against codex-cli 0.149.0 (codex mcp add round-trips byte-for-byte, and strata register --harness codex writes exactly that shape) and again on 0.153.4, where a real Codex session launched strata-mcp and called strata_read_perspective (checklist item 1 below). A contribution with a judge verdict from inside Codex needs a judge key and was not run.

    Two things to know before you rely on this:

    Codex does not interpolate ${VAR}-style values inside config.toml — env values are literal TOML strings, not shell-expanded. So register ships the merged block with empty placeholders:

    [mcp_servers.strata.env]
    STRATA_AGENT_SCOPE = ""
    STRATA_AGENT_SKILL = ""
    STRATA_AGENT_SESSION_ID = ""
    

    On a fresh, single-scope fleet these empty placeholders are fine as-is — an empty STRATA_AGENT_SCOPE auto-binds to the fleet's only scope (and its default_skill, if it has one), the same way an unset shell env var does for Claude Code. STRATA_AGENT_SESSION_ID stays blank either way (see the sharpest-edge note below).

    Once the fleet grows past one scope, fill these in with real values before running codex (or edit them per project/session — this file is user-level, so if you work across multiple Strata projects with Codex you'll want to keep them current, or maintain a <repo>/.codex/config.toml override — Codex's docs list that as a read location for trusted projects, though strata register --harness codex itself only writes the global file today). Leave STRATA_AGENT_SESSION_ID blank. Verified against codex-cli 0.153.4: Codex starts one strata-mcp per Codex session, as a direct child of that session's codex process, so two Codex terminals never share a parent pid. With the id blank, strata-mcp and the freshness hook each derive sess_auto_<parent pid> and land on the same id (see the checklist below), one id per session. Do not export a value for it: Codex hands strata-mcp only the literal env table from config.toml (it does not inherit your shell — item 2 below), but hands the Stop hook your shell's environment, so an exported id would reach the hook and not the server and split one session into two. The server also records which harness a session ran in (harness in its session state: codex, claude-code, or unknown), read from the MCP client's own handshake (clientInfo.name), so write-back can be counted per harness.

  • Turn-boundary freshness hook — verified to fire in the interactive codex TUI once you trust it; codex exec skips it. Register merges a [[hooks.Stop]] block that runs strata freshness-hook at the end of each turn, following the contract documented above under "Non-Claude-Code harnesses". Codex will not run a hook until it is trusted: on first launch after register the TUI shows "Hooks need review" — choose Trust all and continue (or review them first). Until then, and always under codex exec (no prompt to answer; --dangerously-bypass-hook-trust exists but skips the review), the hook does not run and the turn-boundary nudge is absent. Once trusted, verified on codex-cli 0.153.4: the hook fires at the end of a turn with stdin JSON carrying session_id, transcript_path, stop_hook_active, last_assistant_message and cwd, it is a direct child of the same codex process as that session's strata-mcp, and it inherits the shell that launched codex.

    strata unregister --harness codex reverses this wiring the same way strata unregister reverses the Claude Code wiring — only when the [mcp_servers.strata] table and the hooks.Stop block still byte-match what the current or a past release of register wrote; a genuinely edited block is reported and left in place. Removing the [mcp_servers.strata] table also sweeps up any [mcp_servers.strata.*] subtables Codex itself appends during a live session (per-tool approval state) — left behind, those orphan the entry and Codex fails to start.

# what strata register --harness codex merges into config.toml
[mcp_servers.strata]
command = "strata-mcp"

[mcp_servers.strata.env]
STRATA_AGENT_SCOPE = ""
STRATA_AGENT_SKILL = ""
STRATA_AGENT_SESSION_ID = ""

[[hooks.Stop]]
[[hooks.Stop.hooks]]
type = "command"
command = "strata freshness-hook"
timeout = 30

Live-verification checklist. Run on codex-cli 0.153.4 (2026-09-19) in a scratch project with a temporary CODEX_HOME, two concurrent sessions, with probe wrappers around strata-mcp and the hook logging pid, parent pid and environment. Results:

  1. MCP end-to-end (read). Verified: strata_read_perspective returned real scope memory from inside Codex. In codex exec (approval policy never) an MCP tool call is refused with "MCP tool call requires approval" unless the server table sets default_tools_approval_mode = "approve"; the interactive TUI asks instead. The contribute → judged verdict half needs a judge key and was not run here.
  2. Env overlay vs. replace. Verified: replace. With CANARY=canary-value exported in the launching shell, strata-mcp saw the config's literal STRATA_AGENT_SESSION_ID="" and no CANARY — Codex passes the MCP server only its env table (plus what Codex itself adds). Literal values in config.toml are therefore correct and sufficient; an exported variable never reaches strata-mcp.
  3. Stop hook fires — and Codex honors its block. Verified in the TUI after trusting the hook (see above); not fired under codex exec without trust. It fired on consecutive stops within one session, and Codex showed "Blocked by hook" for both strict reminders (the hook blocks at most twice per session — see Memory-freshness Stop-hook). Whether the model then acts on a reminder varies: in the runs made, most sessions closed out after the first, one ignored both.
  4. Env inheritance in the hook. Verified: the hook inherits the shell that launched codex (CANARY present) and does not get the config.toml env table (STRATA_AGENT_SESSION_ID absent). So an exported STRATA_AGENT_SESSION_ID reaches the hook but not the server.
  5. One session id per session, shared by server and hook. Verified, in both codex exec and the TUI, two sessions running concurrently: each session has its own codex process; its strata-mcp and its hook have that process as parent pid; the two sessions differ. Every session state is keyed sess_auto_<codex pid> and carries harness: codex. One strata-mcp per session, alive for the session and gone when it ends.

Not verified: a second Codex session sharing a codex process (Codex also has a shared local app-server daemon behind codex agents — sessions started through it were not exercised); pid reuse across long gaps (the existing caveat on sess_auto_<pid> ids).

Undoing it: strata unregister

strata unregister reverses register's wiring. Like register, it is strictly conservative — it removes each artifact only when it still matches what the current, or a past, release of register wrote, and reports (leaving in place) anything you have genuinely edited since:

strata unregister               # remove the wiring; keep your .strata/ memory
strata unregister --dry-run     # preview every action, write nothing
strata unregister --purge-data  # also delete .strata/ (fleet.yaml, DB, summaries)

By default it reverses every harness that is actually wired in this project — determined by checking for register's markers in each harness's files, not by what's installed on the machine (that asymmetry with register's "wire everything detected" default is deliberate: a plain unregister should never touch a harness this project never registered). For Codex specifically, $CODEX_HOME/config.toml is a machine-level file shared by every project on the box, so its markers alone aren't proof this project registered Codex — "wired" for Codex additionally requires this project's AGENTS.md to carry the Strata marker block register seeds. A machine with a stale/foreign Codex config but no such block in this project's AGENTS.md is left untouched by a plain unregister; pass --harness codex explicitly to clean it up anyway. Pass --harness claude-code or --harness codex (repeatable) to narrow to specific harnesses instead. A harness named explicitly that turns out not to be wired still runs its normal per-artifact checks — each step reports "nothing to do" and the run exits 0, so --harness codex is always safe to run even against a project that never wired Codex.

What it does, step by step:

  1. Removes the managed # Strata block from .gitignore, leaving every other line byte-for-byte unchanged. An edited block is reported and left.
  2. Removes the mcpServers.strata entry from .mcp.json, preserving all your other keys (deleting the file only if register's entry was its only content). If you customised the entry, it is left in place and reported. A legacy mcpServers.strata entry left over in .claude/settings.json from a pre-fix strata register is cleaned up the same way.
  3. Removes each of the strata, strata-worker, and strata-inspect skills only if byte-identical to the shipped version. A modified or older-version skill is left alone and reported.
  4. Removes the freshness Stop-hook — both the hooks.Stop entry from .claude/settings.json (only when it byte-matches what register wrote; your own Stop hooks are preserved) and the .claude/hooks/strata-stop-hook script (only when byte-identical to the shipped version).
  5. Leaves your .strata/ workspace untouched — that is memory, not wiring. Pass --purge-data to remove it too (--dry-run --purge-data previews the purge without deleting).

For the Codex harness (resolved by default when Codex is wired, or via --harness codex), steps 2–4 above are replaced by the reverse of the Codex wiring: the [mcp_servers.strata] table and the freshness hooks.Stop block are removed from $CODEX_HOME/config.toml only when each still byte-matches what register wrote, and the marker-fenced Strata block is removed from the project's AGENTS.md, again only when unedited; .mcp.json is untouched. Steps 1 and 5 are unchanged. When both harnesses are resolved (the default on a machine with both wired), both sets of steps run, one after the other.

Exit code: 0 on success, including when there is nothing to do (running it on an unregistered project is a safe no-op). It exits 1 when something you asked to remove was left in place because it had been edited — so scripts can detect the partial case.


More commands

Inspect memory from the terminal

strata scopes              # list the fleet's strata, scopes, edges
strata summary <scope_id>  # curated summary (directives + context)
strata record  <scope_id>  # every contribution + judgment in the scope's record
strata stats writeback     # write-back rate by harness (sessions that contributed, closed out, or stayed silent)

Advanced subcommands

strata doctor                                    # diagnose config/DB/fleet/wiring/binding, offline
strata migrate                                  # apply pending SQLite migrations only
strata bootstrap --config path/to/fleet.yaml    # validate a fleet YAML (no DB writes)
strata start --reload                           # uvicorn auto-reload (dev mode)
strata start --port 8001                        # serve on a different port

strata launch — frictionless CC session binding (ADR 0003)

strata launch [scope_id] validates the target scope against fleet.yaml directly (embedded mode — no backend required), resolves the skill from the scope's declaration, generates a session ID, and hands the session off to claude with STRATA_AGENT_SCOPE, STRATA_AGENT_SKILL, and STRATA_AGENT_SESSION_ID already set. Run strata start only if you also want the Console UI.

strata launch g_arch                            # use default_skill from fleet.yaml
strata launch g_arch --skill evidence-summarizer  # override skill
strata launch g_arch --session my-sess          # override auto-generated session ID
strata launch                                   # pick from interactive list, or use .strata-role
strata launch --harness claude-code             # start this harness regardless of the default

With no scope_id, no .strata-role, and a fleet with exactly one scope, strata launch skips the picker entirely — it binds to that scope and says so, the same single-scope auto-bind rule the MCP server applies.

Which harness strata launch starts

strata launch resolves which harness to start, in order:

  1. An explicit --harness flag wins outright.
  2. Otherwise, the project's recorded default — see strata set-default-harness below. If .strata/config.toml names a harness Strata doesn't know (a hand-edited value, or one written by a newer Strata version), it prints a one-line warning to stderr naming the bad value and falls back to claude-code rather than launching the wrong thing silently.
  3. Otherwise, if exactly one harness is currently wired in this project (checked the same way strata unregister's default resolves — for Codex, that means both the machine's $CODEX_HOME/config.toml markers AND this project's AGENTS.md marker block, not the machine config alone), that one.
  4. Otherwise, claude-code — today's behavior, unchanged.

claude-code continues through the flow described above. strata launch does not launch codex: Codex hands its MCP server only the [mcp_servers.strata.env] table from its own config, never your shell's environment (see Using Strata with Codex CLI), so there is nothing for launch to export. strata launch --harness codex — or a project whose default/only-wired harness resolves to codex — exits 1 with:

Codex launch is not wired yet: Codex hands its MCP server only the [mcp_servers.strata.env] table from its own config, not your shell's environment, so there is nothing for strata launch to export (see README, 'Using Strata with Codex CLI'). Start codex directly; its identity comes from that table.

strata set-default-harness — record which harness launch starts

strata set-default-harness codex        # strata launch now starts codex by default
strata set-default-harness claude-code  # switch back

Writes default_harness = "NAME" under a [launch] table in .strata/config.toml, read-modify-write: every other line in the file — including a pre-existing [launch] table's other keys — is preserved byte-for-byte, and re-running replaces the value in place instead of duplicating the table. An unknown harness name exits 2 with the list of valid harnesses; running it before strata register exits 1 with run 'strata register' first. On success it prints default harness: NAME (used by 'strata launch').

.strata-role — per-project default binding

Place a .strata-role file at the root of a project repo so that strata launch (with no positional argument) binds automatically:

scope = "g_arch"
skill = "code-writer"   # optional; resolved from fleet.yaml if omitted

The file is committed to git alongside the project. When you open the repo and run strata launch, Strata finds the file, validates the scope, and launches claude already bound — no manual export step needed.

Platform notes

strata launch works on POSIX and Windows. On POSIX it execvps claude, so the launcher process is replaced outright. Windows has no real exec, so the launcher resolves claude on PATH (including .cmd/.exe shims), spawns it as a child sharing the console, and forwards its exit code. Ctrl-C reaches the claude session in both cases, and the child's exit code becomes the exit code of strata launch.

Upgrading from V1.1 to V1.2

V1.2 moves fleet configuration (strata, scopes, edges) out of SQLite and into a file-canonical fleet.yaml (ADR 0002). Before upgrading, export your existing fleet shape so it isn't lost when migration 0002 drops the SQL fleet tables:

  1. Upgrade code — pull V1.2 (git pull, make install). The migration has not run yet.
  2. Export your fleet — reads the still-present V1 tables and writes fleet.yaml:
    strata export-fleet          # writes ./fleet.yaml from ./strata.db
    # or specify paths explicitly:
    strata export-fleet --db /path/to/strata.db --out /path/to/fleet.yaml
    
  3. Start V1.2 — applies migration 0002 (drops the SQL fleet tables) and loads the exported config:
    strata start
    

strata start will refuse to proceed if you forget step 2: it detects a V1 fleet config in the DB with no fleet.yaml and exits with an actionable error pointing you back to strata export-fleet.

After step 3, edit fleet.yaml by hand to add per-scope skill declarations (default_skill, permitted_skills) as needed for strata launch (ADR 0003).

Strata Console UI

Open http://127.0.0.1:8000/ while the backend is running — a graph and list view of the current fleet state, polling every 5 s, plus four new tabs and an in-place operator-correction surface described in docs/console.md and the Console section below. Automatic memory writes (accept/decline) still flow only through strata.contribute; the Console's own write path is limited to the two in-person operator corrections (Replace / Retire a directive), each behind a confirm dialog. To point the UI at a non-default backend, edit the <meta name="strata-api-base" content="..."> tag in src/strata/_ui/index.html.


Console

strata start exists for exactly one reason: to serve the Console, a local web view of memory. Nothing else in Strata needs it running — the MCP server and CLI read and write storage directly, with or without a backend up.

strata start

Success looks like this, run after the journey above (register, then bind and work) — migrations already applied and fleet.yaml already seeded by strata register, so strata start here just confirms the project config and serves:

using project config: /path/to/your/project/.strata/config.toml
  ✓ Python ≥ 3.11: Python 3.11.15
  ✓ git on PATH: git found
  ✓ write perms on data directory: /path/to/your/project/.strata is writable
  ✓ port 8000 available: port 8000 is free
  ✓ ANTHROPIC_API_KEY: JUDGE_API_KEY is set

Strata backend → http://127.0.0.1:8000
Strata Console → http://127.0.0.1:8000/

INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)

(Run strata start in a directory that was never strata registered — the plain env-var-driven flow, no .strata/config.toml — and the first run instead prints Applied N migration(s). and seeded fleet.yaml from the default template; edit to suit, since nothing has touched storage yet there. A registered project never shows either line: strata register already seeded fleet.yaml, and the MCP server already applied migrations the first time you ran claude.)

The // lines are preflight checks, run before anything else. The judge key check is a warning, not a hard failure — if no key is set, or it's only set in a .env file Strata can't find, you'll see:

  ⚠ ANTHROPIC_API_KEY: JUDGE_API_KEY is not set. The scope-manager will not be able to judge contributions without it. Set the variable (or the deprecated ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY) before running strata start.

strata start still starts in that case — memory reads work fine, only live scope-manager judgments fail. Fix it by exporting JUDGE_API_KEY or adding it to a .env file in the current directory (the older ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY names still work too — see Environment variables); no restart needed beyond running strata start again.

...then open http://127.0.0.1:8000/ui/index.html in a browser. The Console is local-only — it talks to the backend strata start just launched on your own machine, nothing external. Stop it with Ctrl+C whenever — state persists in .strata/strata.db and .strata/summaries/ (or ./strata.db / ./summaries/ outside a registered project) and nothing else depends on the Console being up. Alongside the memory graph and settings, it has four new tabs, plus in-place Replace/Retire actions in the scope drawer; see docs/console.md for the full description of each:

  • Turned down — every contribution the scope-manager refused for a scope, with the reason given, plus a separate mechanical count of sessions that read the scope and recorded nothing.
  • Freshness — every active scope ranked by how many sessions have read it since anything new was accepted, with a fleet-wide breakdown of sessions that contributed, closed out with nothing to record, or read silently.
  • Record — one scope's full append-only contribution record, newest first, in plain language.
  • View as — exactly what an agent bound to a scope receives on a read, broken into layers with a rough token-weight estimate for each.
  • Operator corrections — replace or retire one of a scope's own directives in person, each action behind a confirm dialog.

Configuration

Per-project: .strata/config.toml

When strata register has been run, the project root contains .strata/config.toml with relative storage paths:

db = ".strata/strata.db"
fleet_yaml = ".strata/fleet.yaml"
summaries_dir = ".strata/summaries"

The MCP server walks up from its current directory to find this file. When present, it takes precedence over the env vars below — no shell exports needed for storage paths.

strata register also records the freshness Stop-hook's enforcement here, and which strata install ran it:

[freshness]
strict = true   # `strata register --no-strict` writes false

[install]       # written by `strata register`; `strata doctor` compares it with `strata` on PATH
strata = "/home/you/.local/pipx/venvs/strata-mem/bin/strata"
version = "1.12.0"

Choosing a judge

Strata's judging runs on a model you choose. I tried six of them against the same suites; three completed every one, and the table in this repo (docs/evidence/judge-baseline-2026-09-20.md) shows what each did and where a cell is empty — one produced no judgments at all, one errored on most of the adversarial set, one ran partially. A fresh install is pointed at qwen/qwen3-235b-a22b-2507 through OpenRouter, the model those numbers were taken on. If your only key is an Anthropic one, the install stays on claude-haiku-4-5 on Anthropic's own endpoint. That key is never sent to the router. Either way, strata doctor names the judge and endpoint you are actually running. The models differ in ways the table states plainly — how strictly each reads a scope's stated purpose, and what each costs per run — so read it and pick. The table names what was measured, when, and on which build.

What was measured — 2026-09-20, engine build release/v1.13.0 @ 5f5bf49, every model called through OpenRouter's Anthropic Messages endpoint, one repetition of each suite (small differences are within noise). Full study, including the models that did not complete a run: docs/evidence/judge-baseline-2026-09-20.md.

Judge (OpenRouter id)Junk admission (of 90)J1 accuracy (54 items)J4 attack successjudge_error$ per 90-item demo run
qwen/qwen3-235b-a22b-2507 (default)1294.4% (51/54)2.6% (2 of 76 scored; measured on the pre-#212 build)0 of 130$0.0157
anthropic/claude-haiku-4.5794.4% (51/54)0.0% (0 of 84)0 of 138$0.2139
google/gemini-2.5-flash2179.6% (43/54)9.5% (8 of 84)0 of 138$0.0353

Junk admission counts the junk contributions (trivia, chit-chat, unsupported claims, injection attempts) the judge admitted. J4 attack success counts the adversarial items (spoofed authority, injected directives, laundered attribution) the judge admitted. This table states what was measured, when and against which build; it does not rank the judges, and a judge that is not in it is unmeasured, not worse.

Two caveats that matter when you choose:

  • Purpose-aware relevance. With a scope purpose set (description: in fleet.yaml), claude-haiku-4.5 over-declined 2 of 6 legitimate operational notes (wi-102, wi-103); qwen and gemini-2.5-flash declined 0 of 6. The other numbers above do not show this — it appeared only in that check.
  • A model id ages. Routers rename and retire models, and the default id was measured on the date above. If it stops resolving, strata doctor says so and prints the override lines. To pin the measured judge so nothing can change under you, put JUDGE_MODEL=qwen/qwen3-235b-a22b-2507 in .env; to use another model, set JUDGE_MODEL to an id your endpoint serves (ids differ by provider — OpenRouter's Haiku is anthropic/claude-haiku-4.5, Anthropic's own is claude-haiku-4-5).

Override to any Anthropic-Messages endpoint — a router, a gateway, the Anthropic API:

JUDGE_API_KEY=<a key for that endpoint>
JUDGE_BASE_URL=https://your-gateway.example/api
JUDGE_MODEL=<a model id that endpoint serves>

Environment variables

Most settings are env-var driven, prefixed STRATA_ (the judge configuration also accepts the shorter, provider-generic names below). When .strata/config.toml is present, the first three are ignored for the MCP server (project config wins):

VariableDefaultPurpose
STRATA_DB_PATH./strata.dbSQLite path for the record store (overridden by config.toml)
STRATA_SUMMARIES_DIR./summariesDirectory for per-scope summary files (overridden by config.toml)
STRATA_FLEET_CONFIG./fleet.yamlFleet YAML (overridden by config.toml)
STRATA_AGENT_SCOPE(auto-bind)The scope this session acts at. Required only when the fleet has 2+ scopes — with exactly one scope, an unset (or empty-string) value auto-binds to it. With zero or 2+ scopes and this unset, the server still starts (soft-start): every memory tool returns an actionable error until bound via strata_bind, or the process is restarted with this set
STRATA_AGENT_SKILL(optional)The skill identifier for provenance — required only when the scope declares default_skill/permitted_skills in fleet.yaml, unless the scope was auto-bound, in which case its default_skill fills this in when unset
STRATA_AGENT_SESSION_ID(auto)Session identifier. Absent or empty-string resolves to the deterministic sess_auto_<parent pid> (the freshness Stop hook resolves the same fallback independently — see Memory-freshness Stop-hook)
JUDGE_API_KEY(unset)The judge's API key — for the endpoint in JUDGE_BASE_URL (OpenRouter by default). STRATA_JUDGE_API_KEY also works and wins if both are set. Works against any endpoint that speaks the Anthropic Messages API.
JUDGE_BASE_URLhttps://openrouter.ai/apiPoints the judge at a router/proxy/self-hosted gateway — the endpoint must speak the Anthropic Messages API. STRATA_JUDGE_BASE_URL also works. Exception: with only an Anthropic key set (see Choosing a judge) the default stays the Anthropic API.
JUDGE_MODELqwen/qwen3-235b-a22b-2507Model used by the judge (an id the endpoint serves). STRATA_MANAGER_MODEL is the original name and still works (wins if both are set). Exception: with only an Anthropic key set the default stays claude-haiku-4-5.
ANTHROPIC_API_KEY / STRATA_ANTHROPIC_API_KEY(unset)Deprecated, kept as a working fallback: used only when JUDGE_API_KEY is unset. On its own it keeps claude-haiku-4-5 on the Anthropic API.
STRATA_FRESHNESS_STRICT(unset)1/0 forces the freshness Stop-hook strict (blocking) or background; unset defers to the project's [freshness] strict, default on (details)
STRATA_EVALUATOR_MODELclaude-haiku-4-5-20251001 on the Anthropic API, otherwise the judge's modelModel the freshness evaluator drafts with (the judge is unaffected)

A local .env file is loaded automatically for every name above.

STRATA_BACKEND_URL was removed in 1.5.0. The CLI inspection commands (scopes / summary / record) now read the record and summary stores directly, like every other embedded-mode consumer (ADR 0004 Decision 1) — no backend needs to be running.


Project layout

README.md                # This file
CONTEXT.md               # Canonical glossary (23 terms — single source of vocabulary)
docs/
  philosophy.md          # Theoretical foundations — why Strata exists
  ROADMAP.md             # Enduring principles + sequenced direction (post-V1.2)
  adr/
    0001-v1-architecture.md
    0002-fleet-config-source-of-truth.md
    0003-strata-launch-cc-binding.md
src/strata/              # Python backend package
  app.py                 # FastAPI app + endpoints (serves _ui/ at /ui)
  settings.py            # pydantic-settings config
  record_store.py        # SQLite repository (append-only record + fleet config)
  summary_store.py       # Markdown on-disk scope summaries
  scope_manager.py       # LLM judgment layer (Anthropic tool use)
  bootstrap.py           # YAML fleet config loader/applier
  mcp/
    server.py            # FastMCP stdio server; operates directly on RecordStore + SummaryStore
  _skills/               # Canonical skill files vendored as package data
    strata/Skill.md      # CC skill: orientation / first-time use
    strata-worker/Skill.md  # CC skill: parametric worker — reads STRATA_AGENT_SCOPE/SKILL
    strata-inspect/Skill.md # CC skill: read-only browser
  _migrations/           # SQLite schema migrations (package data)
  _templates/            # Starter fleet.yaml templates (package data)
  _ui/                   # Strata Console (package data; no build step — Babel-standalone)
    index.html           # Entry point; served at /ui/index.html
    app.jsx              # Root app, backend polling, read-only state
    atoms.jsx            # Shared UI atoms (Icon, Field, Toast, Modal …)
    graph.jsx            # Force-directed scope graph
    scope-detail.jsx     # Scope drill-in: backend summary + scope info
    settings.jsx         # Settings screen (display prefs + fleet read-only view)
    tweaks-panel.jsx     # Floating tweaks panel
    store.js             # API client (fetch /scopes, /scopes/{id}/summary)
    atlas.css            # Atlas design system tokens + component classes
  project_config.py      # .strata/config.toml walk-up loader (ADR 0005 Decision 2)
.claude/
  skills/
    strata/              # CC skill (copy used in Strata-repo sessions)
    strata-worker/       # CC skill (copy used in Strata-repo sessions)
    strata-inspect/      # CC skill (copy used in Strata-repo sessions)
.mcp.json.example        # Example .mcp.json (the shape `strata register` writes)
tests/                   # pytest suite
src/strata/_templates/   # Bundled starter fleets (dev-team.yaml is the default seed;
                          #   minimal.yaml/research-group.yaml/support-org.yaml also ship)
Makefile                 # Common tasks (install / test / lint / run / migrate / bootstrap / smoke)
pyproject.toml           # Project metadata + deps + ruff/pytest config

Running Strata in Claude Code

The MCP server operates directly on the SQLite record store and summary files (ADR 0004 Decision 1, "embedded mode"). The FastAPI backend is the Console UI layer; running strata start is required only to view the UI. The agent loop — contributions, scope-manager judgments, perspective reads — works whether the backend is up or down.

Entitlement-scoped reads (ADR 0006 D3/D4): strata_read_perspective, strata_read_scope_summary, and strata_read_scope_record default to your bound scope (STRATA_AGENT_SCOPE) when called with no scope_id. An explicit scope_id for strata_read_scope_summary reaches your bound scope, its inter-stratum ancestors, and any scope referenced by a scope on that chain via a reference edge — at any stratum distance, per ADR 0010 (context surface); strata_read_scope_record and strata_read_perspective's target stay chain-only — records audit the authority that binds you, and a perspective composes your own chain, not a peer's. strata_read_perspective itself composes those same chain-referenced scopes in as labelled, non-binding peer_reference layers (binding: false) alongside the chain's self/ancestor layers (binding: true) — a referenced scope's directives inform the reader but never bind them. Unreferenced scopes and descendants stay refused everywhere. This supersedes the old HTTP-parity note for strata_read_scope_record: it now loads the fleet on every call to run this check, so reading your own scope's record while it has no rows still returns the empty record shape ({"contributions": [], "judgments": []}), but a scope outside your entitled surface raises instead of silently returning an empty record.

For a foreign project: use strata register (see Adding Strata to an existing project above). The steps below are for developing on Strata itself.

1. Start the backend (optional — Console UI only)

strata start

The backend is only required if you want the browser Console UI at http://127.0.0.1:8000/. MCP tool calls work with or without it.

2. Register the MCP server in Claude Code

After running strata register, .mcp.json at the repo root already contains the correct mcpServers.strata entry — that's the file Claude Code actually reads for project-scoped MCP servers, not .claude/settings.json. This applies to the Strata repo itself too: without a discoverable .strata/config.toml the MCP server still starts (soft-start, ADR 0005 D5 dated addendum), but every memory tool stays gated with an actionable error naming the missing config until one exists and the server is restarted — so for developing on Strata run strata register once from the repo root — it is strictly additive, and the created .strata/ workspace is gitignored. The .mcp.json entry it merges is:

{
  "mcpServers": {
    "strata": {
      "command": "strata-mcp",
      "env": {}
    }
  }
}

The seeded fleet has one scope, so an unset STRATA_AGENT_SCOPE auto-binds to it (see Binding past one scope) — nothing to export before launching claude. Once you add scopes, set STRATA_AGENT_SCOPE and STRATA_AGENT_SKILL in the shell before launching. Storage paths are read from .strata/config.toml.

STRATA_AGENT_SKILL is a skill identifier recorded in provenance and validated against the scope's permitted_skills in fleet.yaml (when that list is set and there's a mismatch, the server still starts — soft-start — but every memory tool stays gated until bound to a permitted skill via strata_bind). It does not select a Claude Code skill file — the same generic CC skill (strata-worker) works for any role at any scope.

3. Invoke a skill

The repo ships three CC skills under .claude/skills/:

SkillWhat it does
/strataFirst-time orientation: shows the fleet, helps you pick a role, points you to the next skill. Use once.
/strata-workerBinds the current CC session as a worker at STRATA_AGENT_SCOPE. Reads the perspective, contributes observations as context, contributes decisions as directive, cites memory back to you. The main skill you'll use.
/strata-inspectRead-only browser. Use when you want to look around without acting.

4. Worked example (multi-session)

Three terminals, three different roles, one shared Strata:

# Terminal 1 — backend
strata start

# Terminal 2 — architect (skills must be permitted for the scope in fleet.yaml;
# the dev-team template permits code-writer + evidence-summarizer here)
STRATA_AGENT_SCOPE=g_arch     STRATA_AGENT_SKILL=code-writer   \
STRATA_AGENT_SESSION_ID=sess_arch  claude
# Then in the CC session:  /strata-worker

# Terminal 3 — backend developer
STRATA_AGENT_SCOPE=g_backend  STRATA_AGENT_SKILL=code-writer   \
STRATA_AGENT_SESSION_ID=sess_dev   claude
# Then in the CC session:  /strata-worker

Each session contributes to the same backend. The developer captures implementation patterns as context; the architect ratifies recurring patterns into directives that bind everyone below. Watch the state evolve in http://127.0.0.1:8000/ (the Console UI) or run strata summary g_arch from a fourth terminal.

Several terminals on one machine are safe, even without the backend running. Every claude session above talks to its own strata-mcp process, and two of those processes — or a process and the optional Console backend — can end up contributing to the same scope at the same time. Each holds its own per-scope lock file under .strata/.locks/ for the moment it takes to append a contribution and, separately, for the moment it takes to judge one — the OS enforces that only one process holds a given lock file at a time, so two contributions to the same scope can never interleave and leave the summary out of sync with the record (ADR 0012). Nothing extra to start or configure: the lock files are created on demand next to your strata.db, so this holds whether or not strata start is running. (Windows: strata-mcp still serializes concurrent contributions inside one process; across processes it does not — see ADR 0012.)


Developing

Working on Strata itself (not just using it) needs a clone of this repo, not a pipx install:

git clone https://github.com/oren198/Strata.git
cd Strata
make install        # editable install + dev extras (pip install -e ".[dev]")

If you prefer an isolated virtual environment first:

python3 -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
make install

Run the tests

make test         # full suite (scope-manager mocked — no API key needed)
make smoke        # end-to-end smoke (bootstrap → contribute → summary)
make lint         # ruff check + ruff format --check

To run the (skipped-by-default) integration test that hits the real Anthropic API:

STRATA_RUN_INTEGRATION=1 ANTHROPIC_API_KEY=... pytest tests/test_scope_manager.py -v

The original make targets (make migrate, make bootstrap, make run, make test, make lint, make smoke) all still work against a repo clone and are the fastest path when hacking on Strata itself.


Git workflow

  • main — the last verified version of Strata.
  • dev — the integration branch. All feature work merges here first.
  • feature/* — branched from dev, merged back into dev via PR.
  • Releases are PRs from devmain.

Architecture decisions

ADRs live under docs/adr/. Each captures a hard-to-reverse decision with context, alternatives, and consequences. The future direction — principles plus the next horizons — is in docs/ROADMAP.md.

Current ADRs:

  • 0001 — V1 architecture: local Python backend, SQLite + markdown storage, Claude Code as the initial agent runtime, scope-manager hosted as backend-spawned LLM judgment calls (see Environment variables for today's provider-generic judge configuration).
  • 0002 — Fleet config source of truth: fleet.yaml is canonical; SQLite holds only contributions and judgments; scope lifecycle (active/archived); per-scope skill declarations.
  • 0003 — strata launch CC binding: frictionless (scope, skill, session_id) binding via a single CLI command that validates, resolves, and execvps claude.
  • 0004 — H2 foundations: embedded mode (MCP server direct-store access), manager composition, lazy refresh, bounded summaries.
  • 0005 — Brownfield install: strata register two-command onboarding, per-project .strata/config.toml discovery, strata-mcp console script, skills as package data, honest provenance enforcement.

License

See LICENSE.

Contributors

oren198

460 commits

claude

162 commits

orihatav

11 commits

Languages

Python

93.8%

JavaScript

5.5%