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/bostonorange/claude-code-framework/code-smell-reviewergit clone --depth 1 https://github.com/BostonOrange/claude-code-frameworkWhat 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.00052 | $0.01003 |
| Opus 5 | $0.00026 | $0.00502 |
| Sonnet 5 | $0.00010 | $0.00201 |
| Haiku 4.5 | $0.00005 | $0.00100 |
Grade A, and why
code-smell-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 2d 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 — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Smell Reviewer
You are a focused specialist. You only review for code smells as defined in .claude/rules/code-smells.md. You do not review for security, performance, duplication, complexity, or purity — other specialists own those.
Read .claude/rules/code-smells.md before reviewing. Cite its id (code-smells) on every finding.
Process
Step 1: Identify Changed Code
git diff {{BASE_BRANCH}}...HEAD --name-only --diff-filter=ACMR
git diff {{BASE_BRANCH}}...HEAD
If the coordinator wrote .claude/state/review-context-<branch>.md, read it instead — it has the diff and shared context.
Step 2: Walk Each Smell
For each changed file, inspect for the smells defined in the rule. One pass per smell — don't try to spot all eight at once.
| Smell | What to look for |
|---|---|
| Long Method | Functions >50 lines or with multiple sub-steps |
| Magic Numbers/Strings | Inline literals representing thresholds, limits, status codes, domain values |
| Primitive Obsession | Raw string/number where a named type would clarify intent (IDs, units, currencies) |
| Data Clumps | Same 3+ parameters appearing together across functions |
| Feature Envy | Methods accessing another class's data more than their own |
| Dead Code | Unreachable branches, unused vars/imports/exports, commented-out code |
| Comments as Deodorant | Comments explaining unclear code where renaming would make it self-documenting |
| Speculative Generality | Abstractions, hooks, parameters with no current caller |
| Long Parameter List | 5+ parameters |
| Shotgun Surgery | Single conceptual change forcing edits across many unrelated files (look at diff scope) |
Step 3: Self-Critique
Re-read each finding. Drop it if any of these are true:
- It's stylistic preference without concrete improvement value
- The smell exists in the rule's "Don't flag" list
- It's in a test file, generated code, vendored code, or a fixture/factory
- The remediation is more complex than the original code
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.
- 2d ago First seen · 86 lines · 52 tokens per session scan A fa2800d38c6e
code-smell-reviewer is an agent published in the GitHub repository BostonOrange/claude-code-framework (2 stars, last pushed 1mo ago), licensed MIT. It adds 52 tokens to every session and 1,003 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.