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/howells/arc/agents-mdgit clone --depth 1 https://github.com/howells/arcWhat 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.01113 | $0.01113 |
| Opus 5 | $0.00557 | $0.00557 |
| Sonnet 5 | $0.00223 | $0.00223 |
| Haiku 4.5 | $0.00111 | $0.00111 |
Grade A, and why
arc AGENTS.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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Arc
The full arc from idea to shipped code, shipped as a plugin for Claude Code, Codex, and Cursor. CONTEXT.md is the canonical product definition, domain language, and operating boundary - read it before changing workflow behaviour. Treat this file as contributor guidance, not a competing definition.
Shape
- Each skill in
skills/<name>/SKILL.mdis one/arc:<name>command, routed by a thincommands/<name>.md. Never fork behaviour between the two. - Commands:
/arc:ideate,/arc:review,/arc:implement,/arc:testing,/arc:audit,/arc:improve,/arc:refactor,/arc:commit,/arc:release,/arc:launch,/arc:vision. - Canonical flow is
ideate -> (review) -> implement.audit,improve,commit,release, andrefactorare cross-cutting and available anytime. - Skills draw on
agents/(subagents),references/(domain knowledge, catalogued inreferences/index.md),rules/,disciplines/(methodologies), andtemplates/(output structures). skills/using-arc/is the session control plane;skills/detail/is internal toimplement. Neither has a command router.- Site work is isolated under
site/with its own Next.js scripts. rules/is Arc's internal corpus, loaded selectively by workflows. It's shipped in the plugin payload but never injected as always-on Cursor rules -tests/test-cursor-plugin.shenforces that.
Gotchas
- Rebuild the Codex mirror after any change to
skills/,agents/,references/,rules/,disciplines/,templates/,scripts/, orcommands/. Runpnpm build:codex. The pre-commit hook andtests/test-codex-mirror.shboth fail on a stale mirror, and the failure names the diffing file rather than the real cause. plugins/arc/is generated. Never edit it by hand -scripts/build-codex-plugin.shoverwrites it wholesale.- Version bumps touch five manifests. Use
bash scripts/bump-version.sh <version>, never a manual edit: it updatespackage.json,.claude-plugin/,.codex-plugin/,.cursor-plugin/(plugin and marketplace), and the generatedplugins/arc/.codex-plugin/. Verify withbash scripts/bump-version.sh --check. A post-commit hook auto-bumps the patch version and amends content commits. - Adding a skill needs more than a
SKILL.md. It also needs acommands/<name>.mdrouter, a.agents/skills/<name>symlink, and entries in the plugin manifests -tests/test-skill-loading.shhardcodes the expected skill list and fails on any unexpected directory. - Agents are not skills. Every file in
agents/*/*.mdkeeps its own<arc_runtime>and unconditionally loadsreferences/subagent-safety.md. That's deliberate: agents are dispatched as subagents and skipusing-arcvia its<SUBAGENT-STOP>block, so those local blocks are their only path grounding and injection defence.tests/test-xml-tags.shenforces tag containment for agents but not for skills, for the same reason. - Skills must stay self-sufficient.
audit,improve, andrefactorcarrycontext: forkand run isolated; command routers also invoke skills cold. Don't centralise a skill's<arc_runtime>intousing-arc- path resolution would silently break. - Adding a required reference to a skill means the file must exist and the skill must say when to read it.
tests/test-agents-and-refs.shchecks the first half.
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.
- yesterday First seen · 49 lines · 1,113 tokens per session scan A 672cf26fd5d6
arc AGENTS.md is an instructions file published in the GitHub repository howells/arc (25 stars, last pushed 17d ago), licensed MIT. It adds 1,113 tokens to every session, about $0.0056 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
agents AGENTS.md
Instructions for cloudflare/agents, covering agents.md, project overview, repository structure, nested agents.md files and setup.
heym CLAUDE.md
Claude Code instructions for heymrun/heym, covering claude.md - combative directive ⚠️, 1. mandatory: load agents.md immediately ⚠️, 2. my ironclad rules, 3. session startup protocol and 4. alert system.
gem-team AGENTS.md
Instructions for mubaidr/gem-team, covering agents.md, project overview, key features, setup commands and install apm (agent package manager).
Codex-Workflows AGENTS.md
Instructions for robzilla1738/Codex-Workflows, covering agent instructions, project shape, commands, distribution rules and runtime rules.
specs-driven-development-spring-angular frontend-code.instructions.md
Frontend code guardrails for Angular implementation, testing, and accessibility.
engineering-skills CLAUDE.md
Instructions for int2t05/engineering-skills, covering claude.md, conventions and skill discovery.