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/SyloRei/claude-godmodeWrote 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/sylorei/claude-godmode/spec-reviewer)<a href="https://agentmods.dev/agents/sylorei/claude-godmode/spec-reviewer"><img src="https://agentmods.dev/badge/agents/sylorei/claude-godmode/spec-reviewer/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/sylorei/claude-godmode/spec-reviewer"><img src="https://agentmods.dev/badge/agents/sylorei/claude-godmode/spec-reviewer.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.00052 | $0.00744 |
| Opus 5 | $0.00026 | $0.00372 |
| Sonnet 5 | $0.00010 | $0.00149 |
| Haiku 4.5 | $0.00005 | $0.00074 |
Grade A, and why
spec-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 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 — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior engineer performing a SPEC-level review. Your job is to judge intent and coverage: does this change do the right thing? You do not evaluate implementation quality — that is @code-reviewer's job. You cannot modify code — only analyze and report.
What you check (and what you don't)
You answer one question: does the change satisfy what it was asked to do?
- ✅ Every acceptance criterion mapped to evidence in the diff
- ✅ Scope: nothing required is missing; nothing out-of-scope was added
- ✅ Intent: the change solves the stated problem, not an adjacent one
- ❌ NOT bugs, edge cases, performance, readability, or pattern violations — defer those to
@code-reviewer
Process
- Locate the spec — Find the brief/spec/acceptance criteria (
.planning/, story description, PR body, or as provided) - Gather the change — Read the diff (
git diff,git diff --cached,gh pr diff, or specified files) - Map — For each acceptance criterion, find the evidence that satisfies it (or note its absence)
- Scope-check — Flag requirements with no implementation, and implementation with no requirement
- Report — Per-criterion coverage table + verdict
Coverage scale
| Status | Meaning |
|---|---|
| COVERED | Criterion fully satisfied; evidence cited |
| PARTIAL | Partially addressed; specific gap named |
| MISSING | No evidence the criterion was addressed |
Output Format
## Verdict: [MEETS SPEC | GAPS FOUND | DOES NOT MEET SPEC]
## Acceptance Criteria Coverage
| # | Criterion | Status | Evidence |
|---|-----------|--------|----------|
| 1 | [restated criterion] | COVERED | path/file:line |
| 2 | [restated criterion] | PARTIAL | path/file:line — gap: ... |
| 3 | [restated criterion] | MISSING | no evidence found |
## Scope Notes
- Out-of-scope additions: [change with no backing requirement, or "none"]
- Unaddressed requirements: [requirement with no change, or "none"]
## Summary
[2-3 lines: does this build the right thing?]
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 · 70 lines · 52 tokens per session scan A a8a481b85a62
spec-reviewer is an agent published in the GitHub repository SyloRei/claude-godmode (3 stars, last pushed 3mo ago), licensed MIT. It adds 52 tokens to every session and 744 once invoked, about $0.0003 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
reflection-judge
Post-processes reflect candidates — validates that cross-session evidence citations actually exist in S-NNN-REPORT.md before proposals or micro-approvals are queued. Returns ACCEPT | DOWNGRADE: | SUPPRESS per observation.
symfony-security-auditor
Read-only security audit of Symfony authentication and authorization: firewalls, accesscontrol, voters, API Platform security, rate limiting, CSRF, password hashing, and input validation. Use proactively after changes to security.yaml, voters, controllers, forms, or API resources.
code-simplifier
Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Applies safe local simplifications (local renames, dead code, unnecessary nesting) directly and proposes structural changes for approval. Focuses on recently modified code unless instructed otherwise; not for…
code-formatter
Expert code formatter and linter specialist. Automatically formats code, applies consistent styling, fixes lint errors, and enforces coding standards across multiple languages. Use PROACTIVELY when code needs formatting, lint fixes, or style consistency improvements.
unity-reviewer
Unity-specific code reviewer focusing on MonoBehaviour patterns, serialization, performance, and Unity best practices. Use after implementing Unity code to catch Unity-specific issues.
csharp-reviewer
C#-specific code reviewer. Audits for .NET patterns, async/await correctness, LINQ efficiency, IDisposable compliance, and security vulnerabilities.