coding-os
The coding-os server provides AI agents with a comprehensive set of tools for project management, cognitive learning and memory, metrics and health monitoring, documentation retrieval, knowledge graph analysis, retrieval optimization, and agent supervision. You can:
Manage Health & Observability: Check system health, record and query agent performance metrics, track trends, and retrieve logs.
Implement Memory & Learning: Record observations, search for past experiences and learned patterns, extract new patterns, validate them, and promote to rules, with features like timeline and digest.
Orchestrate Supervision & Routing: Classify prompts, supervise multi-agent workflows with backtrack logging and evidence bundles, dispatch sub-agents, and route to optimal models/skills.
Manage Tasks (Scrumban): Create, search, and move tasks on a board, manage dependencies, view history, conduct standups and retrospectives, and link to external issues.
Retrieve Documentation (RAG): Perform semantic and lexical searches, read doc headers, and filter by frontmatter.
Optimize Retrieval Quality: Cite retrievals, adjust priorities based on learning, and evaluate precision.
Analyze Code (Knowledge Graph): Query symbols, analyze impact, trace execution, find references/paths, detect similar code, dead code, and more.
Includes a Django project template and skill set, scaffolding a new project with agent setup and workflow.
Provides nextjs-react skills for Next.js development, loading relevant rules when editing React components in a Next.js project.
Provides an adapter for OpenAI Codex, enabling the same kernel with workflow, hooks, and skills in Codex CLI.
Loads React-specific skills and rules when working on React components, providing targeted coding guidance.
Provides Spring Boot skills for building Spring applications, with stack-specific patterns and best practices.
Includes a WordPress skill for WordPress-specific coding patterns, rules, and workflows.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@coding-oscreate a new project for my Django app and set up the task board"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
coding-os
Coding OS — the cognitive operating system that gives AI agents memory, structure, and discipline. Teaches AI agents how to think (thinking_os) and how to code (workflow, hooks, skills, rules) — agent-agnostic so the same kernel serves Claude Code and OpenAI Codex without rewriting. Modular by design: take only what you need — even just the knowledge graph (
--profile lite --enable-module graph).Website: https://coding-os.dev · Community: https://community.coding-os.dev

Free, and staying that way. Apache-2.0, no paid tier, no telemetry, no gated features — the kernel you run is the whole thing. Sponsorship buys maintenance time, not access.
Right-sized by construction
Loading a whole skill catalogue into every prompt is how agents run out of context before they run out of task. coding-os narrows it twice.
At cos init — a project installs only the stacks it declares. A
WordPress project gets the wordpress skill and never sees go-patterns,
rails or spring-boot. Alongside them sit the stack-agnostic ones —
clean-code, testing-strategy, api-design, a11y, security-web —
which apply to any codebase.
On every turn — what is on disk is not what is in context. A generated
rules table maps file globs to skills, and the matching skill loads only
when you are about to write a file it governs. Editing a React component
loads nextjs-react; nothing else comes with it.
Three real installs, each from a cos init run, showing what the declared
stacks actually add on top of the seven stack-agnostic rules everyone gets:
Preset | Always-on rules | The stack-specific ones | Stack skills on disk |
| 8 |
|
|
| 9 |
|
|
| 11 |
|
|
In the WordPress install, zero files under .claude/ mention go-fiber,
rails or spring-boot, and the polyglot install has zero mentioning
WordPress anywhere. (Two governance contract docs do name other stacks — as
examples of the naming convention, not as instructions.) That is the difference
between a scoped install and a prompt directory that grows with every stack the
tool has ever supported.
What that actually costs — measured, not asserted. A scaffold writes 395–461
files; 9 to 12 of them ever enter the prompt. Running the real cos init
for all 21 shipped presets and summing only what is resident:
Project shape | Always-on tokens | Share of a 200k window |
| 12,704 | 6.4% |
| 12,738 | 6.4% |
| 13,158 | 6.6% |
| 13,972 | 7.0% |
uv run python src/scripts/context_budget.py --all-presetsThe spread across every profile is 12.7k–14.0k tokens, because 9,266 of those tokens are the stack-agnostic rules everyone gets and the per-stack overlays are only 199–1,171 each. Skills, slash commands, hooks and MCP tool schemas are not in that number — they load on demand.
Two things this figure is not: it is not free (7% of the window is 7% of the
window), and it is not the 15,634 tokens (7.8%) this meta-repo itself carries
— it pays for four kernel-only meta-* rules a consumer never receives
(uv run python src/scripts/context_budget.py --project . reproduces it). The
full accounting, the cache economics, and what is still unmeasured about
instruction density are in
context-budget.md.
Disable a module and its rules, tools and slash commands leave with it — see Modular by design.
Prerequisites
Tool | Min version | Why | macOS install |
Python | 3.10 | CLI, MCP server, extractors |
|
0.5 | Fast Python installer + tool runner |
| |
Bash | 4 | Hook scripts use 4.x features (macOS ships 3.2) |
|
Node.js | 20 | Only if rebuilding the Hub UI under |
|
Docker | 24 | Only for the Docker quickstart below |
|
| any | Optional — faster hook path. Both degrade to Python, so an image without them is fully enforced, just slower per tool call. | preinstalled on macOS |
Linux: replace brew install … with your distro's package manager
(apt, dnf, pacman). Windows: WSL 2 + the same Linux steps.
cos doctor --bootstrap checks all of the above, including whether the hook
layer has a JSON/stdin parser at all — without one every gate fails closed.
Related MCP server: SafeFlo
Install
Two paths to the same install — pick by preference, not capability. Both end
with the cos CLI on your PATH and the Hub reachable at
http://127.0.0.1:9188.
Path A — one command, then click
Preflights prerequisites, installs the CLI, and boots the Hub:
curl -fsSL https://raw.githubusercontent.com/kouroshez/coding-os/main/install.sh | bash
# …or, from a checkout: bash install.shThen open the Hub and press New project. The Composer picks a preset (or your own stack mix), asks one sentence about the project, and scaffolds it — docs, board, knowledge graph, and agent setup included. (ADR-0007)
Path B — native uv, scripted
# 1. Install the cos CLI globally, from PyPI
uv tool install coding-os # upgrade later: uv tool upgrade coding-os
# …or from a checkout, if you intend to work ON coding-os itself:
# git clone https://github.com/kouroshez/coding-os.git && cd coding-os
# uv tool install --editable . # upgrade later: git pull (editable is live)
# 2. Verify
cos --version # → coding-os, version X.Y.Z
cos doctor --bootstrap # preflight: python/bash/git/uv/sed prerequisites
cos doctor # full health sweep (must be all-green)
# 3. Spawn a new project, scaffolded with an agent + a stack
# --agent takes several at once: --agent claude,codex
cos init --agent claude --template django --name my-shop --yes
cd my-shop # adapter installer ran for you and wrote
# .claude/, .mcp.json, .coding-os/
# 4. Boot the multi-project Web Hub: graph + board + cognition + search
cos hub start # → http://127.0.0.1:9188Open http://127.0.0.1:9188 in your browser. You will see the
knowledge graph of my-shop, the Scrumban board, the cognition
trace timeline, and unified search across all retrieval layers.
The Hub is optional. The CLI-only loop is complete on its own: cd my-shop, open your agent (e.g. claude — MCP + hooks are already
wired), then cos daily / cos task-create / cos task-start — cos init
prints the exact first commands for your project. Every project ships its own
guide at docs/workflow/workflow-guide.md. For an existing repo, use
cos adopt instead of init.
For Codex, swap --agent claude for --agent codex (or pass
both — --agent claude,codex) — everything else is identical. Each agent's
installer is src/adapters/<agent>/install.sh; cos init runs it
for you and re-runs it on cos update.
Modular by design — take only what you need
coding-os is not all-or-nothing. The kernel (session lifecycle + safety) is
always on; everything else is a subsystem module you switch on or off:
docs · tasks (Scrumban) · graph · memory · cognition ·
observability · hub-extras · cicd. Named profiles curate the set, so
the agent's MCP tool surface stays as small as you want it.
Wanted just the knowledge graph? That is the entire install:
cos init --agent claude --name my-app --profile lite --enable-module graph --yeslite is kernel-only; core adds docs, tasks, graph and the Hub hooks;
standard (the recommended default) adds memory + observability; full is
everything. What each one actually delivers, from four cos init runs:
Profile | Modules off | Always-on rules | Skills on disk | Hooks that self-skip |
| 8 | 7 | 43 | 52 |
| 4 | 7 | 45 | 26 |
| 2 | 8 | 46 | 12 |
| 0 | 9 | 46 | 0 |
The gate is a derived allowlist (.coding-os/disabled-hook-scripts) that a
disabled hook reads when it sources cos-env.sh — so a module you turned off
costs nothing at runtime. The 14 safety-category hooks are never on that list,
at any profile — secret-blocking, destructive-command and branch guards cannot
be switched off by choosing a leaner install. Verify on your own project:
cos module list # what you ended up with
wc -l .coding-os/disabled-hook-scripts # what stopped firingStart lean and change your mind later — from the project root,
cos module enable memory. --profile and --disable-module are unioned:
they can only remove. --enable-module is the escape that keeps one on and
pulls its dependencies with it — passing the same id to both flags is an error,
not an override. cos init --help lists the live ids straight from
src/core/subsystems.yaml, cos module list shows what you ended up with, and
Hub Config → Modules — or the Composer's Advanced section at create
time — flips any of it later. Full model:
meta-project.md § subsystem modules.
Run with Docker (Hub layer; native for projects)
Architecture split — adopted because each layer wants a different deploy shape:
Layer | Runs where | Why |
Hub (web panel: graph · board · cognition · search) | Docker (production-shaped) | Reproducible build · isolated runtime · same image dev → CI → prod |
Consumer projects (each project's | Host (native) | Agent runtimes (Claude Code / Codex CLI) live on the host filesystem · |
The Hub container reads the host's projects via a read-only bind mount and the host's registry file, so every absolute path stays valid inside the container — no path translation.
Quickstart
docker compose up
# → http://127.0.0.1:9188By default, docker-compose.yml bind-mounts $HOME read-only at
the same path inside the container so cos registry scan ~ finds
every .coding-os/ directory below it. Hub state (SQLite, traces)
lives in the cos-state named volume and survives down / up.
Project auto-discovery, narrowing the mount for production, and manual
docker run (no compose): docs/engineering/hub-architecture.md § Docker
deployment.
MCP server wire-up (Claude / Codex)
cos init writes .mcp.json at the project root automatically. If
you ever need to register the MCP server manually (e.g. another tool
that reads MCP configs), this is the shape every adapter installs:
{
"mcpServers": {
"coding-os": { "command": "cos", "args": ["server-start"] }
}
}Verify the wire is live in your agent runtime:
Claude Code:
cos doctorshowsmcp.coding-os = ok; the CLI exposescos_*tools viaToolSearch("select:<tool>").Codex CLI:
codex --mcp-listlistscoding-os.
If the server isn't found, re-run bash src/adapters/<agent>/install.sh
from the project root, then restart the agent.
What it is
coding-os is a three-layer composition (DNA → mRNA → phenotype):
src/core/ ──► src/adapters/<agent>/ ──► src/templates/<stack>/ ──► consumer project
(DNA) (mRNA) (phenotype) (organism)Layer | What it owns |
| MCP server, hooks, rules, skills — agent-agnostic, stack-agnostic |
| Per-agent translation: |
| Per-stack overlays: 27 stacks, 11 CI-verified — |
| The |
Adding a new stack or a new agent is a pure YAML + Markdown change. No Python edits required.
What it does
Complexity Gate — classifies problems before acting (Cynefin: CLEAR / COMPLICATED / COMPLEX / CHAOTIC / CONFUSION).
Cognitive Cycle — CLASSIFY → ORIENT → PLAN → EXECUTE → VERIFY. The kernel rule (
src/core/rules/thinking_os.md) is always active; the deep skill loads only when the gate returns COMPLICATED or COMPLEX.Self-learning memory — SQLite-backed observations, metrics, and learned patterns across sessions (
cos_search,cos_learn_*).Hook enforcement — hooks gate writes, edits, prompts, sessions, and stops (exact count in
src/core/hooks/registry.yaml). Adapter parity matrix indocs/engineering/.Four-layer retrieval — agent memory (
cos_search) · doc RAG (cos_doc_search) · task graph (cos_task_*) · knowledge graph (cos_graph_*).Intent enforcement — when the user uses exhaustive vocabulary ("all" / "every" / "completely" / "until done", matched in English and one additional language), the Stop hook refuses premature "done" until an evidence bundle is recorded.
Upgrade path —
cos updatekeeps every consumer project in sync withcoding-oswithout touching user content.
The Web Hub (http://127.0.0.1:9188)
One FastAPI + Vite/React singleton serves every registered project through
/api/p/<slug>/* — cos hub start boots it, cos hub status reports health.
It is genuinely optional: the CLI loop is complete without it. What it adds is
one surface where the board, the knowledge graph, agent memory, live agent
presence and the hook stream are the same state the agent reads, not a
dashboard rendered beside it.

Hub home is the entry point: register an existing .coding-os/ folder, scan a
directory for them, or scaffold a new project from a preset. Each project card
carries the agents attached to it right now — the model each is running, the
complexity gate it recorded, and the role it holds in the current chain.
Overview — what the agent is doing, in one screen
Agents live, spend against budget, WIP against cap, and the hook stream as it
fires. block-dangerous-commands 15s ago is not a log line scraped after the
fact — it is the same enforcement record the gate wrote when it ran.

The board — Scrumban with enforced WIP
Seven columns; the three that gate flow carry a cap — in progress, testing,
emergency. 1 / 1 WIP is not decoration: cos task-move refuses to overfill a
capped column, so the board cannot drift from what is actually being worked on.
Columns holding nothing collapse to a labelled rail and hand their width to the
columns holding work — then expand back into full drop zones the moment you
start dragging a card.

Group by swimlane instead of flat, and open any card for its outcome contract, its lifecycle chips, and every commit that touched it with the real diff inline. The task is the pointer; the code is the evidence.
Chat — the agent, with the project already loaded
A session started here inherits the project's MCP server, hooks, rules and board. Pick the model, the reasoning effort, and which semantic role should answer; the quick actions under the composer are the openings that actually pay off — resume where we left off, map the subsystems, review my current changes.

Search — one query, four retrieval layers
Memory, docs, tasks and the graph answer the same query in parallel, each in its
own section with its own count. A layer still in flight shows …, never a zero —
an unanswered layer and an empty one are different facts, and a summary that
conflates them is worse than one that waits.

The graph — ask the codebase structurally
Sigma.js over the extracted code + doc graph. The left spine is containment, the
tabs switch between the blended overview, pure containment, dependencies and
detected communities, and the budget control decides how much of the graph to
draw. The badge is honest about coverage: it names the sample and the
whole-graph total, so a capped view can never read as a complete one. This is
the surface behind cos_graph_* — the reason an agent answers "who calls this?"
without grepping the tree.

Memory — the lessons, and how far each one has travelled
Agent memory is not a log. Every lesson carries a confidence and a tier, and it only becomes durable once separate sessions confirm it — so the page states the exact rule it enforces (≥70% confidence and three confirmations) and how many lessons have actually cleared it. Filter by type, source or confidence floor, and run the distillation loop on demand instead of waiting for the nightly one.

Diagnostics — every hook that fired, and why
The log tail is structured, not a text blob: filter by level floor, scope glob, message substring or a relative window, and follow it live. Alongside it sit the doctor probes, observability charts, and per-session cognition traces.

Modules — turn subsystems off and the tools go with them
The kernel is always on. Everything else is a switch, and disabling one gates
its MCP tools and self-skips its hooks. Owns is the blast radius of that
switch. Depends on is enforced, not advisory — tasks needs docs, so docs
cannot be disabled first, and the button that would break it is disabled with
the reason attached rather than failing after the click.

Also in the Hub: per-project Git and supervision settings, and a
Marketplace for community skills and stacks (rolling out).
Source: src/core/web/; UI: src/core/web/ui/ (make ui-dev for HMR).
Architecture
coding-os/
├── src/ # All importable code (Python src-layout)
│ ├── cli/ # Factory entrypoint (`cos` command)
│ ├── core/ # Agent-agnostic brain (DNA)
│ │ ├── thinking_os/ # MCP server: memory, learning, metrics, cognition
│ │ ├── graph_os/ # Polyglot knowledge graph (SQLite backend)
│ │ ├── board_os/ # Scrumban task system
│ │ ├── web/ # Hub UI + FastAPI backbone
│ │ ├── hooks/ # Hook scripts (SSOT: registry.yaml)
│ │ ├── rules/ # Always-active rules + auto-generated artifacts
│ │ ├── skills/ # Universal skills
│ │ └── scripts/ # Kernel-internal regen tooling
│ ├── adapters/ # Per-agent translation (mRNA, adapter.yaml manifests)
│ │ ├── claude/ # Claude Code adapter
│ │ └── codex/ # OpenAI Codex CLI/Desktop adapter
│ ├── templates/ # Per-stack scaffolds (phenotype, stack.yaml-driven)
│ │ ├── _base/ # Generic base + fragments/
│ │ ├── django/ # Django + DRF + PostgreSQL
│ │ ├── nextjs/ # Next.js + React + TypeScript + Tailwind
│ │ ├── fastapi/ # FastAPI + Pydantic + SQLAlchemy
│ │ ├── go/ # Go stdlib + chi router
│ │ ├── go-fiber/ # Go + Fiber v3
│ │ ├── react-native/ # React Native + Expo
│ │ ├── python/ # Python library / CLI / MCP server
│ │ ├── meta/ # Meta-stack (for coding-os contributors)
│ │ └── … # 27 stacks (11 CI-verified) — `cos list-stacks`
│ └── scripts/ # Maintenance + regen tooling
├── tests/ # cross-cutting tests
├── docs/ # Governance, engineering, playbooks, architecture
└── .coding-os/ # Per-project runtime state (gitignored)Command index (highlights · 99 cos subcommands total)
Project lifecycle init · adopt · setup · add-adapter · add-stack · update · materialize · eject
Modules module list · module enable · module disable (per-project surface control)
Diagnostics doctor · health · list-stacks · list-adapters · hooks-dir · hooks-log
Hub hub start · hub status · hub stop
Board board · task-create · task-start · task-move · task-done · daily · retro · wip
Cognition cognition trace · trace-replay · trace-summary
Supervision supervision show · enable · disable · set (per-role adapter/model/effort)
Graph 29 graph-* subcommands (build · find · deps · analysis · review);
22 mirror a cos_graph_* MCP tool one-for-one, enforced by a parity testFull catalogue with flows: docs/architecture/meta-project.md.
Slash commands (25 commands)
The cos CLI above is the factory. Inside an agent session you also get
slash commands — packaged workflows invoked by typing /: 11 workflow
commands (/board, /daily, /retro, /task, /classify, /compose,
/memory-search, /verify, /review, /diagnose, /new-project) and 14
/role-* commands (the semantic roles of the cognition chain). They ship in
.claude/commands/ (and .codex/commands/) and are version-controlled, so
every teammate gets them on clone. Day-to-day usage:
docs/workflow/workflow-guide.md.
MCP tools (cos_* family, all ok / fail envelope)
One MCP server (launched by .mcp.json → cos server-start) exposes every
cos_* tool across ten families: health, memory (cos_search), learning,
metrics, routing, docs (cos_doc_search), tasks (cos_task_*), graph
(cos_graph_*, 22 tools), cognition (cos_compose_chain), and retrieval.
Per-tool docs + envelope spec:
docs/governance/mcp-tool-inventory.md.
The knowledge graph — why it changes the economics
Most "AI coding" tools answer structural questions ("who calls this?", "what breaks if I rename it?", "where does this data flow?") by reading files until the agent guesses an answer. That burns tokens, slows the loop, and produces hallucinations the moment a caller lives in a file the agent didn't open.
coding-os ships a precomputed knowledge graph as the third retrieval
layer alongside memory and docs. Every commit refreshes 23 node kinds
(functions, methods, classes, modules, routes, MCP tools, docs,
headings, frontmatter, hooks, rules, skills, tasks, …) and 18 edge
types (contains, calls, imports, inherits_from,
handles_route, has_param_type, references_doc, is_decorated_by,
links_to, …). The agent then asks the graph — cos_graph_references,
cos_graph_impact, cos_graph_rename_plan — and gets a small,
high-confidence JSON envelope back.
Benchmark — graph envelope vs a competent agent, on public repos
The number to beat is not "read every matching file" — no sensible agent does that. It is what a good agent actually does: grep, then open a bounded window around the matches in the few highest-hit files. That is the default baseline, and every figure below is measured against it on public checkouts you can reproduce.
uv run --extra graph_os python src/core/graph_os/bench/third_party.py \
--repo https://github.com/django/django --ref 5.2 --queries 10Median savings over the highest-degree symbols per repo — --queries 10 on the
public checkouts, 8 on this one (min in brackets — the honest worst case):
Repo |
|
|
|
|
psf/requests @ v2.32.5 | 36 | 77.7% (41.9) | 24.2% (−53.8) | 74.8% (43.7) |
fastapi/fastapi @ 0.116.1 | 1,129 | 79.5% (−3.4) | −6.8% (−85.6) | 82.4% (11.0) |
django/django @ 5.2 | 2,818 | 76.8% (50.3) | 70.8% (18.5) | 77.1% (51.1) |
this repo | 3,317 | 79.7% (65.9) | 74.0% (64.7) | 79.7% (65.7) |
Read it as three findings, including the one that does not flatter us:
"Who calls this?" and "what does a rename touch?" are a consistent ~75–82% cheaper, across repos spanning two orders of magnitude in size. This is the robust win and the reason the graph-first rule exists.
A 3-hop blast radius is size-dependent, and on mid-size repos it can cost more than reading.
impactis +71–74% on django and this repo, +24% on requests, and −7% on fastapi. A wide transitive envelope is not free; reach fordepth=3when the codebase is large enough to make reading worse.Against bare
grepoutput alone on a small repo, the graph loses badly (−169% on requests). If match lines answer the question, they are the right tool. The graph earns its keep when you need the complete set.
That completeness is the part a token count cannot show. Every envelope carries
total_count and its own truncation flags, so the agent knows whether it has
the whole answer — grep never tells you what it missed. The harness enforces the
same discipline on itself: an envelope whose traversal was capped is reported as
incomplete and never scored as a saving. (The previous version of this table
did exactly that — it published "508 impacted, 98.3% saved" from a
walk_truncated envelope whose real count, at a sufficient budget, is 1,494.)
Method, the other two baselines, and the limits — including that highest-degree probe selection favours the graph — are in third-party-token-bench.md.
Coverage, budgets, health — the anti-hallucination contract
Every coverage-sensitive tool reports its own incompleteness
(total_count · result_truncated · walk_truncated — never silent),
all 23 node kinds answer end-to-end in 0–23 ms, cos_graph_doctor
sweeps stale nodes, and every Write/Edit re-indexes just the touched
file. The full contract — budget knobs, per-kind latency, Hub view
modes, and the probe-then-widen workflow — lives in
graph_os-queries.md § Coverage, budgets, and benchmarks.
Deep dive: docs/engineering/graph_os-queries.md · docs/engineering/graph-hallucination-cures.md · docs/governance/mcp-tool-inventory.md.
Supported agents
Agent | Hook coverage | Skills | MCP server | Notes |
Claude Code | Full for its native events ✅ | Native skills | ✅ | No native |
Codex CLI | Full for supported Codex events ✅ | Native agent skills | ✅ | Includes Bash, Read, |
Codex Desktop | Same project hook/config contract as Codex CLI ✅ | Native agent skills | ✅ | Project hooks require trust/review; Hub observability is native, while Hub interactive chat is still Claude-only. |
Parity matrix + reasoning: docs/engineering/adapter-parity.md (the 2026-04-25 workflow audit is a historical snapshot predating Codex parity).
Agent supervision — pick the model per role (opt-in)
Off by default. Turn it on and every role — the 11 in the canonical chain plus
the distiller, onboarder and repairer specialists — can run on its own
adapter, model, and reasoning effort: a cheap model reviewing, an expensive one
architecting. It works with a single adapter too, since routing across one
provider's own model tiers is the common case rather than a fallback.
cos supervision enable
cos supervision set --orchestrator-model claude-sonnet-5 # project default
cos supervision set --role reviewer --role-model claude-haiku-4-5 --role-effort low
cos supervision set --role architect --role-model claude-opus-4-8 --role-effort xhigh
cos supervision showWith more than one adapter installed, a role can cross runtimes entirely — review on Codex while architecture stays on Claude:
cos supervision set --role reviewer --role-adapter codexEligibility is probed, not declared: an adapter is offered for a role when
its dispatcher resolves at load time, so an adapter whose CLI or SDK is missing
is never silently routed to. Model catalogs come from adapter.yaml, and an
adapter that publishes none (Codex takes a freeform -m) accepts the model you
type. A new runtime is therefore configurable the day it is installed.
When a provider reports a rate limit, only the model pool that hit it goes into a persistent cooldown — providers meter each pool separately, so an exhausted Opus pool must not stop a reviewer running on Haiku. Recovery is one half-open probe, not a retry storm against a limit that cannot succeed.
Same policy from the Hub (Config → Settings), the CLI, or MCP — no Hub required. Disabled means disabled: no probe, no state write, no tokens.
Full contract: docs/engineering/agent-supervision.md · operator guide: docs/playbooks/agent-supervision-setup.md
Configuration
.coding-os.yaml at every project root:
version: "1.0"
agents: [claude, codex]
templates: [django, nextjs]
state_dir: .coding-os
code_extensions: [py, ts, tsx]
verify:
backend: "make lint-backend && make test-backend"
frontend: "cd src/frontend && npm run lint && npm test"
protected_files:
- "*/migrations/*.py"Adding a new stack (zero Python changes)
Create src/templates/<id>/stack.yaml plus skills, rules, and scaffold
docs — the CLI auto-discovers it (cos list-stacks), then
make manifest-regen && make regen-rules refreshes the derived
artifacts. The same pattern works for new adapters
(src/adapters/<id>/adapter.yaml + install.sh). Step-by-step:
docs/playbooks/template-authoring.md
· docs/playbooks/adapter-authoring.md.
Project structure (for contributors)
make verify-hooks # shellcheck + bash -n on every hook
make verify # matrix-targeted tests for what changed
make test-mcp # MCP self-test (cold start)
make docs-lint # markdown structure + link integrity
cos health # cross-project health summary
make manifest-regen # refresh src/core/scaffold_manifest.json
make regen-rules # refresh dimension-registry + skill-enforcementCI runs the matrix on every PR. See .github/workflows/ci.yml.
Documentation
Doc | What's in it |
Agent entry point — Core Loop, Critical Rules, Verification Matrix | |
Hexagonal design, DNA/mRNA/phenotype, propagation matrix | |
27 critical rules with rationale + repair steps | |
Per-tool spec + envelope contract | |
Domain routing, task protocol, memory contract | |
When to query the graph vs grep | |
Hub: FastAPI ↔ React SPA contract | |
Per-role adapter/model routing, capacity breaker, trigger modes | |
Hook authoring · adapter authoring · template authoring · MCP tool authoring | |
Claude SDK · Codex CLI integration | |
Setup, contribution loop, PR checklist | |
Vulnerability disclosure policy | |
Decision model, quality gates, becoming a maintainer | |
Honest constraints + the ratchets that shrink them | |
What 1.0 freezes + the deprecation ladder | |
Release notes |
Troubleshooting
Symptom | Cause | Fix |
|
|
|
| Adapter installer hasn't run for this project |
|
| Port 9188 busy (likely an old Hub still running) |
|
| macOS default bash 3.2 doesn't have associative arrays |
|
| Node.js missing or below 20 | Install Node ≥20 ( |
Docker build OOM on | Default Docker memory < 4 GB | Docker Desktop → Settings → Resources → bump memory to 4 GB+ |
| First-call schema not loaded (Claude defers MCP schemas) |
|
Codex hook is skipped | Project/hash trust is missing, the hooks feature is disabled, or the event/matcher is unsupported | Run |
Hub rejects the meta-repo checkout with | A stray | Update + restart Hub: |
Still stuck? Run cos doctor --verbose and open a
discussion
with the output attached.
Support / Community
If coding-os saves you time, a star helps others find it. These links also live in the Hub footer (never inside the new-project Composer).
★ Star / follow on GitHub: https://github.com/kouroshez/coding-os
Sponsor the project: https://github.com/sponsors/kouroshez · https://coding-os.dev/donate
Questions / ideas: https://github.com/kouroshez/coding-os/discussions
Community forum: https://community.coding-os.dev
License
Apache License 2.0 — see LICENSE. Copyright 2026 Kourosh Ebrahimzadeh and coding-os contributors.
Development began in April 2026; the full history is preserved in this repository. Release automation (release-please) starts at the 0.3.0 baseline (2026-05-20) — see CHANGELOG.md.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityCmaintenanceMCP server for sharing source-backed engineering memory across AI coding clients like Cursor and VS Code.301MIT
- AlicenseNot gradedqualityAmaintenanceLocal MCP server for Claude Code providing persistent memory, task planning, and agent coordination with full transparency and no network calls.2MIT
- AlicenseAqualityDmaintenanceThis MCP server enables remote control and management of Claude Code agents, allowing you to execute missions, configure agent personalities, and integrate with other MCP tools.7561MIT
- AlicenseNot gradedqualityAmaintenanceA 68-tool MCP server providing persistent memory, error tracking, decision logging, task orchestration, and multi-modal AI generation for coding agents like OpenCode and Claude Code.MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kouroshez/coding-os'
If you have feedback or need assistance with the MCP directory API, please join our Discord server