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/azrtydxb/procoder/gogit clone --depth 1 https://github.com/azrtydxb/procoderWhat 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.00924 | $0.00924 |
| Opus 5 | $0.00462 | $0.00462 |
| Sonnet 5 | $0.00185 | $0.00185 |
| Haiku 4.5 | $0.00092 | $0.00092 |
Grade A, and why
procoder go.instructions.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 — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go in procoder
Procoder is a Go CLI plus an agent layer. cmd/procoder/main.go is the
dispatch and every domain lives under internal/<domain>/. The rules
below are not style preferences — each one is here because breaking it
produced a defect that shipped.
No silent green
The rule the whole tool is built on: a check that could not run must never read as one that passed.
- A tool that is absent, a file that could not be read, a scanner that crashed — each is reported as NOT checked, naming the reason, and it fails the gate exactly as a real finding would.
- Never return
nilfindings on an error path.if err != nil { return nil }is the shape that hides a whole domain. - An empty result is not a clean result. If a check scanned zero files, say so; do not print "0 finding(s)", which is what a clean scan prints.
- When a tool fails, quote its last line of stderr, not its first. Scanners log progress first and the reason they gave up last, so the first line produced "dependencies were NOT checked: Starting filesystem walk for root: /" — alarming, and not the reason. Fall back to the exit status only when stderr is empty.
P-CONTROL: the binary prints, the agent writes
No command may modify a file in the repository it is checking.
procoder format prints the formatted result for review. The one
exception is procoder's own state under .procoder/, written by
controllers that say so, and --save/--yes flags where writing is the
whole point of the flag.
Paths and arguments
- A command taking paths must honour them.
procoder security <dir>scanned the change set and ignored its argument, so a person who named a directory was told "0 finding(s)" about files nobody opened. - Expand a directory argument to its files. Checks that work file by file silently do nothing with an unexpanded directory.
- Resolve relative paths against the repository root, not the process
directory — procoder can be run from a subdirectory, and
gitx.ChangedFileshands out absolute paths, so mixing the two makes a check scan nothing. - A flag a command does not implement is a usage error (exit 2), never a
path. Every flag lives in
knownFlagsincmd/procoder/flags.go, and a test holds that table against the literals main.go compares.
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 · 88 lines · 924 tokens per session scan A 2c9912b095e7
procoder go.instructions.md is an instructions file published in the GitHub repository azrtydxb/procoder (196 stars, last pushed 2d ago), licensed Apache-2.0. It adds 924 tokens to every session, about $0.0046 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
sdlc-quality AGENTS.md
Instructions for zircote-plugins/sdlc-quality, covering agents.md - openai codex guidelines, project identity, quick context, agent guidelines and 1. understand the domain model.
sdlc-quality copilot-instructions.md
Instructions for zircote-plugins/sdlc-quality, covering copilot instructions for sdlc plugin, project overview, repository structure, key conventions and rfc 2119 terminology.
high-quality-projects-skill AGENTS.md
AGENTS.md instructions for RandyNorthrup/high-quality-projects-skill, covering agents.md, the two workflows, resolving paths, what is in here and non-negotiables when using this package.
code-discipline-skills AGENTS.md
Instructions for eliranpv11/code-discipline-skills, covering code discipline, priority order, 1. think before coding, 2. verify reality before acting and 3. simplicity first.
high-quality-projects-skill copilot-instructions.md
Copilot instructions for RandyNorthrup/high-quality-projects-skill: This repository provides two vendor-neutral workflows for holding a codebase to production standards.
arbiterx CLAUDE.md
Instructions for NeelPrime/arbiterx, covering arbiterx engineering rules, setup, rules (always enforced), never generate and quality gate.