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/spencermarx/open-code-review/claude-mdgit clone --depth 1 https://github.com/spencermarx/open-code-reviewWrote 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/spencermarx/open-code-review/claude-md)<a href="https://agentmods.dev/instructions/spencermarx/open-code-review/claude-md"><img src="https://agentmods.dev/badge/instructions/spencermarx/open-code-review/claude-md.svg" alt="Measured on agentmods" 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 | $0.01916 | $0.01916 |
| Opus 5 | $0.00958 | $0.00958 |
| Sonnet 5 | $0.00383 | $0.00383 |
| Haiku 4.5 | $0.00192 | $0.00192 |
Grade A, and why
open-code-review 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 today.
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 — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OpenSpec Instructions
These instructions are for AI assistants working in this project.
Always open @/openspec/AGENTS.md when the request:
- Mentions planning or proposals (words like proposal, spec, change, plan)
- Introduces new capabilities, breaking changes, architecture shifts, or big performance/security work
- Sounds ambiguous and you need the authoritative spec before coding
Use @/openspec/AGENTS.md to learn:
- How to create and apply change proposals
- Spec format and conventions
- Project structure and guidelines
Keep this managed block so 'openspec update' can refresh the instructions.
Code Conventions
- TypeScript only: Do not create raw
.jsor.mjsfiles unless they serve a config purpose (e.g.,vite.config.mjs,eslint.config.mjs). All project code, scripts, and utilities must be written in TypeScript. - Nx-native automation: Release process automation must use Nx extension points (e.g.,
VersionActions,preVersionCommand), not npm lifecycle scripts or standalone scripts. - Agent assets — edit source, then sync: Agent docs, skills, commands, references, and other agent-related files have their source of truth in
packages/agents/. ALWAYS edit them there, then runnx run cli:updateto write the changes out to the local project's.ocr/directory. Never hand-edit the generated.ocr/copies directly — they will be overwritten on the next sync and your edits will drift from source. - Shared layers live in
packages/shared/*, apps never depend on apps (CI-enforced):clianddashboardare application packages and MUST NOT depend on one another. This DAG is enforced by@nx/enforce-module-boundaries(rooteslint.config.mjs, keyed off each project'sscope:*tag) and gated in CI vianx run-many -t lint— an accidentaldashboard → cli(orshared → app) import fails the build, not just review. Code both apps need (persistence, domain/state, config, cross-platform utilities) lives in dedicated library packages underpackages/shared/*that each app depends on directly. The current shared packages are@open-code-review/platform(cross-platform/runtime utilities),@open-code-review/persistence(thenode:sqliteadapterdb+ workflowstatelifecycle +test-support+vendor-resume+ thenode:sqliteruntime preconditionruntime-checks— kept in one package becausedbandstatehave a mutually-recursive type cycle (db/types.ts↔state/types.ts); a package boundary between them would form a dependency cycle. The single-module-instance connection-cache singleton is a consequence of that co-location, not its root cause), and@open-code-review/config(runtime-config+team-config+models). - Shared packages are source-only, private, and inlined — never published: each
packages/shared/*package mirrorsplatformexactly —private: true,version 0.0.0, everyexportscondition (types/source/default) points at./src/*.ts(nobuild.mjs, nodist), and it is declared by its consumers as adevDependency: workspace:*(consumer-side rule). A shared package still declares its own runtime third-party deps in itsdependencies— they are inlined into the consumer's bundle, so they must resolve at build time. esbuild inlines the.tssource into each app's published bundle, so these packages are excluded from the release set (!packages/shared/*innx.json) and do not join the fixedcli+agentsrelease group. Do NOT give a shared package abuildtarget or adist— that machinery was removed in the cutover and must not return. - Graduation is by cause, not by count: a slice graduates from an app package into a
packages/shared/*package the moment it is consumed across a package boundary (by the other app, an e2e package, or another shared package) rather than only by its owning app's own code. There is no subpath-count trigger. A genuinely app-internal module stays in its app; the goal is to keep the dependency graph a DAG ofapp → shared → shared, neverapp → app.
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.
- today First seen · 72 lines · 1,916 tokens per session scan A 800e783b5b85
open-code-review CLAUDE.md is an instructions file published in the GitHub repository spencermarx/open-code-review (353 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 1,916 tokens to every session, about $0.0096 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
codemunch CLAUDE.md
Instructions for benmarte/codemunch, covering project rules, release checklist, 1. changelog, 2. version bump and 3. readme.
octowiz CLAUDE.md
Instructions for raelli/octowiz, covering octowiz, releasing & deploying, commands, agent skills and issue tracker.
embedded-systems-architect AGENTS.md
Instructions for Zachariah9420/embedded-systems-architect: This repository ships an agent skill for embedded-systems and edge-AI development work.
pbnz-skills AGENTS.md
AGENTS.md instructions for PBNZ/pbnz-skills, covering agents.md — pbnz-skills, start-here map — where things live and ground rules.
qa-orchestra CLAUDE.md
Claude Code instructions for Anasss/qa-orchestra, covering qa orchestra — claude code instructions, what this project is, quick start, 1. clone into your workspace and 2. fill in your project context.
agent-skills CLAUDE.md
Instructions for mindbox-cloud/agent-skills, covering agent-skills — developer guide for claude code, repository purpose, repository structure, how to add a new plugin and step 1 — create the directory structure.