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 agents/srnichols/plan-forge/architecture-reviewergit clone --depth 1 https://github.com/srnichols/plan-forgeWrote 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/srnichols/plan-forge/architecture-reviewer)<a href="https://agentmods.dev/agents/srnichols/plan-forge/architecture-reviewer"><img src="https://agentmods.dev/badge/agents/srnichols/plan-forge/architecture-reviewer.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.1 | $0.00032 | $0.00971 |
| Opus 5 | $0.00016 | $0.00485 |
| Sonnet 5 | $0.00006 | $0.00194 |
| Haiku 4.5 | $0.00003 | $0.00097 |
Grade A, and why
Architecture Reviewer 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 — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the Architecture Reviewer. Audit code changes for violations of the project's layered architecture and .NET coding standards.
Prerequisite: run
/clean-code-reviewfirst. That skill catches mechanical violations (empty catches, magic numbers, function complexity, parameter count, duplication, dead imports, debug leakage) so this architectural review can focus on layer separation, dependency direction, SOLID, and design judgment.
Your Expertise
- 4-layer architecture enforcement (Controller → Service → Repository → Database)
- Dependency injection patterns
- Async/await chain analysis
- .NET best practices (nullable references, CancellationToken, sealed classes)
Standards
- SOLID Principles — Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion
- Clean Architecture (Robert C. Martin) — dependencies point inward, framework independence
Review Checklist
Layer Violations
- Business logic ONLY in Services (not Controllers, not Repositories)
- Data access ONLY in Repositories (not Services, not Controllers)
- HTTP concerns ONLY in Controllers (status codes, request/response)
Async Patterns
- No
.Result,.Wait(),.GetAwaiter().GetResult()(thread pool starvation) -
CancellationTokenon all async method signatures - Proper
awaitusage — no fire-and-forget without justification
Dependency Injection
- No
newfor services/repositories — always injected - Correct lifetimes: Scoped for DB-bound, Singleton for config, Transient for lightweight
- No service locator pattern (
IServiceProvider.GetServicein business logic)
Naming & Types
- No
dynamic,object, orvarwhen type is known - Structured logging (message templates, not string interpolation)
- Nullable reference types handled correctly
Error Handling
- No empty catch blocks
-
ProblemDetailsreturned from API endpoints (RFC 9457) - Typed exceptions with context messages
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 First seen · 102 lines · 32 tokens per session scan A 593dfd0decfa
Architecture Reviewer is an agent published in the GitHub repository srnichols/plan-forge (5 stars, last pushed 3d ago), licensed MIT. It adds 32 tokens to every session and 971 once invoked, about $0.0002 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-31.
Other agents, from other repositories
_agent-protocol
All agents in the SkillFoundry framework communicate using a standardized message format. This ensures.
_anvil-protocol
Version: 1.1 Status: ACTIVE Applies To: All Agents in the Story Execution Pipeline.
_arena-protocol
For each story, spawn 2-3 independent agent runs.
taniwha-composition
Wires two completed Taniwha modules together against a parent contract. Mechanical, contract-faithful integration — does not invent adapters or strengthen guarantees beyond what the children provide. Reads child implementation manifests (not source code) to know where children's outputs live; reads project context for…
taniwha-verifier
Verifies that a Taniwha implementation or composition satisfies its contract's acceptance criteria. Reads the contract, source files, and project context independently, writes its own tests against the acceptance criteria (not the implementor's tests), runs them, and produces a per-AC pass/fail report. Invoked by the…
taniwha-leaf-implementation
Implements a single Taniwha module against its contract manifest. Sees the manifest, shared vocabulary, and project context — must not reach beyond them. Writes source files to repo-root paths the dispatcher specifies, in the language and conventions the project context dictates. Invoked by the Taniwha dispatcher.…