Borrowing it
Nothing to install: this file belongs to strikersam/autonomous-ai-agency. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/strikersam/autonomous-ai-agency/master/CLAUDE.mdgit clone --depth 1 https://github.com/strikersam/autonomous-ai-agencyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/strikersam/autonomous-ai-agency/claude-md)<a href="https://agentmods.dev/instructions/strikersam/autonomous-ai-agency/claude-md"><img src="https://agentmods.dev/badge/instructions/strikersam/autonomous-ai-agency/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/strikersam/autonomous-ai-agency/claude-md"><img src="https://agentmods.dev/badge/instructions/strikersam/autonomous-ai-agency/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What 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.1 | $0.05132 | $0.05132 |
| Opus 5 | $0.02566 | $0.02566 |
| Sonnet 5 | $0.01026 | $0.01026 |
| Haiku 4.5 | $0.00513 | $0.00513 |
Grade A, and why
autonomous-ai-agency 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 407 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md — Operating Manual
§1 and §2 are the binding ruleset for every AI agent working in this repository — Claude, Codex, Cursor, Aider, or anything else. Read them before changing code. §1 is repo-specific wiring; §2 is agent discipline, extracted verbatim into the production prompts of this repo's own agents. Everything after §2 is reference: facts about the system, not instructions.
The rules live here and nowhere else.
AGENTS.mdandENGINEERING_STANDARDS.mdhold reference material and point back to this section rather than restating it. If you find a rule duplicated somewhere, delete the copy — duplicated rules drift, and this repo has the scars to prove it (.claude/rules-archive/CONFLICTS.md).
Before opening a source file, query the knowledge graph — it costs a fraction of
a Read/Grep pass:
graphify query "how does model routing work"
graphify explain "AgentRunner"
graphify path "OnboardingScreen" "CompanyGraphStore"
cat graphify-out/GRAPH_REPORT.md # free overview: god nodes, communities
graphify update . # refresh after you change things
If graphify is missing: python -m pip install graphifyy && graphify install && graphify update .
1. The Rules
44 rules. They survive because an agent that had never read them would get this repo
wrong. Generally-good engineering practice is deliberately absent — it is assumed, not
legislated. See .claude/rules-archive/ for the audit that produced this list and the
308 statements it replaced.
A. Prime directive
- Do not change user-visible behaviour that was not requested. If a refactor could alter an output, capture the before/after and revert on any difference.
B. Wiring — where things must go
- All LLM/provider calls go through
packages/ai/router.py(ProviderManager). Never call a provider SDK or HTTP endpoint directly. - Every provider implements
generate,chat,stream,health,cost,limits. - Failover chain is NVIDIA NIM → TokenIn → Cerebras → Groq → Ollama — the
recommended_priorityinconfig/models.yaml, mirrored byRECOMMENDED_PROVIDER_PRIORITYinpackages/ai/brain_config.pyand overridable per deploy by that YAML. NVIDIA leads (not Ollama) because Ollama needsOLLAMA_BASE_URL, unset on the Render free tier.429→ failover plus exponential backoff;410→ permanent removal plus long cooldown;419→ skip that model only and try the next on the same provider. - Read environment variables only in config modules:
packages/ai/brain.py,packages/ai/brain_config.py,app_settings.py,packages/config/. Noos.environ.get()anywhere else. - Secrets are environment-only: never written to disk, never logged (not even partially), never in test files.
- Frontend HTTP goes through the shared axios instance in
frontend/src/api.js. No API calls elsewhere in the frontend. - One auth system:
get_current_user/get_optional_user,_require_adminfor admin surfaces,verify_api_keyfor the proxy surface,X-Service-Tokenfor Telegram→backend only. - One
BrainConfigmodel, inpackages/ai/brain_config.py. The scheduler decides and workers execute; workers emit events and never touch the UI.
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.
- 6d ago Changed · +13 tokens per session 1f90e88f729b
- 7d ago First seen · 407 lines · 5,119 tokens per session scan A c2438aaf1b4b
autonomous-ai-agency CLAUDE.md is an instructions file published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 5,132 tokens to every session, about $0.0257 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-09-03.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).