Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/agentweave/cortex/claude-mdgit clone --depth 1 https://github.com/agentweave/cortexWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00463 | $0.00463 |
| Opus 5 | $0.00231 | $0.00231 |
| Sonnet 5 | $0.00093 | $0.00093 |
| Haiku 4.5 | $0.00046 | $0.00046 |
Grade A, and why
cortex CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
Cortex
An open protocol and Claude Code plugin for coordinating AI agent teams through plain markdown files.
Project Structure
skills/ — Claude Code skills (the plugin)
setup/ — first-time setup
join/ — agent onboarding (worker + coordinator .cortex.md)
leave/ — agent offboarding
register/ — agent registration
docs/
protocol.md — standalone protocol spec (runtime-agnostic)
adapters/ — onboarding examples for Codex, Cursor, Gemini CLI, OpenCode
internal/ — specs and plans (gitignored)
.claude-plugin/
plugin.json — plugin metadata
marketplace.json — marketplace definition for installation
Key Concepts
- Team directory — a shared folder of markdown files where agents coordinate. Not part of this repo — created by /setup.
- Skills are prompts, not code — each SKILL.md is instructions that Claude Code follows. No runtime, no build step.
- Protocol vs plugin —
docs/protocol.mdis the universal spec. The skills are one implementation of it. - Coordinator vs Worker .cortex.md —
/joingenerates different protocols based on whether the agent slug ischief-of-staffor not. Both templates live inskills/join/SKILL.md.
Conventions
- Commit messages:
feat:,fix:,docs:,chore:prefixes - Skills are self-contained — each SKILL.md includes all templates inline rather than referencing external files
- Config lives at
~/.cortex/config.yaml, not in the repo - .cortex.md and CLAUDE.local.md are gitignored — they're generated per-agent, not part of the plugin
When Editing Skills
- Skill files are markdown with YAML frontmatter (
name,description,user_invocable,argument-hint) - Steps are numbered and sequential — renumber if you insert or remove steps
- Templates (agent notes, .cortex.md) are embedded inline with
{placeholder}syntax - After editing, reinstall the plugin to pick up changes:
claude plugins install cortex@agentweave --scope user
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 41 lines · 463 tokens per session scan A c64596e7955f
cortex CLAUDE.md is an instructions file published in the GitHub repository agentweave/cortex (12 stars, last pushed 4mo ago), licensed MIT. It adds 463 tokens to every session, about $0.0023 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
skill-based-architecture AGENTS.md
Instructions for WoJiSama/skill-based-architecture, covering agents.md, quick routing (survives context truncation), auto-triggers and red flags — stop.
research-os AGENTS.md
Instructions for lxinfei5/research-os, covering researchos — constitution, §0 what this is, §1 directory discipline, §2 half-life (innovation 1) — memory design and §3 behavior pillars (innovations 2–5).
markview CLAUDE.md
Instructions for paulhkang94/markview, covering markview — ai development guide, quick reference, architecture, mcp tools (for ai integration) and safety rules.
codex copilot-instructions.md
Instructions for bocan/codex, covering codex - ai coding instructions, architecture overview, mcp server architecture, critical commands and docker deployment.
grit AGENTS.md
Instructions for rtk-ai/grit, covering persistent memory (icm), recall (before starting work), store (after completing significant work) and other commands.
Cecil AGENTS.md
AGENTS.md instructions for Cecilapp/Cecil, covering cecil - agent instructions, start here, critical commands, architecture at a glance and coding conventions.