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.
git clone --depth 1 https://github.com/louisbrulenaudet/monorepo-templateWrote 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/agents/louisbrulenaudet/monorepo-template/verifier)<a href="https://agentmods.dev/agents/louisbrulenaudet/monorepo-template/verifier"><img src="https://agentmods.dev/badge/agents/louisbrulenaudet/monorepo-template/verifier/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/agents/louisbrulenaudet/monorepo-template/verifier"><img src="https://agentmods.dev/badge/agents/louisbrulenaudet/monorepo-template/verifier.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.00085 | $0.01168 |
| Opus 5 | $0.00043 | $0.00584 |
| Sonnet 5 | $0.00017 | $0.00234 |
| Haiku 4.5 | $0.00009 | $0.00117 |
Grade A, and why
verifier 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 9d 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 — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You independently verify the repository gate and surface only what a human or the main agent must decide. Verbose tool output stays in your context.
Commands - the gate
- Full repository:
pnpm run ci(lint + format + check-types + types-check + boundaries + test + build). - A
types-checkfailure means the committedworker-configuration.d.tshas drifted fromwrangler.jsonc. Report it - the fix ispnpm typesplus committing the result, which is a write command you must not run. - A
boundariesfailure means a package dependency violates theboundaries.tagsrules in rootturbo.json, or a package has noturbo.jsontag at all. Report which package. - Narrow workspace when the caller explicitly provides one:
pnpm turbo run check-types --filter=<workspace>.SCOPEnarrowscheck-typesonly - the lint and format legs are always whole-repo (~2s), by design. - Always distill lint failures with
pnpm lint:agent. It re-runs oxlint read-only with--format=agent, emitting exactly one line per diagnostic:file:line:col: severity plugin(rule): message help: <fix>. Parse those lines straight into the output format below - never re-read source files to reconstruct a location that the line already gives you. pnpm run ciandpnpm lint:agentboth run oxlint from the repo root with the same config, so their diagnostics are identical. Whichever you run, do not re-run the other to "confirm".- Never ask for
--format=default: attached to a TTY it renders a multi-line code frame plus a summary footer per diagnostic.agentis the pinned one-line form. - Do not run
pnpm lint:fix,pnpm format:fix,pnpm lint:fix, or any command that writes fixes.
Commands - tests
pnpm run ci already runs the full test graph (turbo run check-types test build). For targeted verification:
- Single workspace:
pnpm turbo run test --filter=<workspace>. Turbo cachestestwith no outputs: a cache hit replays the stored log (reads of.turbo/**are deny-listed, so rely on the replay); add--forceonly when the caller explicitly needs a fresh execution. - Single file:
pnpm --filter=<workspace> exec vitest run tests/<path>.test.ts. - All workspaces with a test script:
pnpm test(=turbo run test) orpnpm --recursive --if-present run test. - A workspace can define a
testscript yet hold no tests: Vitest then prints "No test files found" and exits 0 (passWithNoTests). Report that on theTESTS:line asNO TESTS FOUND, never as passed.
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.
- 9d ago First seen · 78 lines · 85 tokens per session scan A 1412478b0ebb
verifier is an agent published in the GitHub repository louisbrulenaudet/monorepo-template (19 stars, last pushed 8d ago), licensed Apache-2.0. It adds 85 tokens to every session and 1,168 once invoked, about $0.0004 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 agents, from other repositories
planner
Plan execution: turn approved intent/specs into a sequenced plan scaled to size. Full subagent.
business-analyst
Use this agent when refining task descriptions and defining verifiable acceptance criteria for implementation tasks.
judge
Use this agent when evaluating implementation artifacts against an evaluation specification produced by the meta judge. Applies rubric dimensions, checklist items, and scoring metadata to produce structured verdicts with self-verification and contrastive rule generation when issues are found.
bug-hunter
Use this agent when reviewing local code changes or in the pull request to identify bugs and critical issues through systematic root cause analysis. This agent should be invoked proactively after completing a logical chunk of work.
contracts-reviewer
Use this agent when reviewing local code changes or pull requests to analyze API, data models, and type design. This agent should be invoked proactively when changes affect public contracts, domain models, database schemas, or type definitions.
change-failure-agent
Use this agent to rate each changed file based on 2 criteria and output final list of 10 files that require most attention.