ie-simplicity-reviewer

ie-simplicity-reviewer is an agent for Claude Code from davidteren/intent-engineering. It costs 66 tokens per session (936 once invoked), scanned A, original, MIT.

A code-review agent that checks whether a solution has more structure, settings, or abstractions than its current problem needs. It applies ideas such as keeping things simple and avoiding work for hypothetical future requirements.

In plain words
What is it for?
Use it to review code or implementation plans, question speculative features and dependencies, and identify places where a simpler design would meet the stated requirements.
Why use it?
It helps expose unnecessary layers, one-use abstractions, unused options, and premature optimizations that make code harder to understand and maintain.

Agent for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: model in frontmatter; mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the intent-engineering plugin — 6 skills, 5 agents shipped together

Good fit Use it to review code or implementation plans, question speculative features and dependencies, and identify places where a simpler design would meet the stated requirements.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add davidteren/intent-engineering
Claude Code
/plugin install intent-engineering

Made for: Claude Code.

Or install intent-engineering, the plugin that ships this one along with the rest of its 6 skills, 5 agents.

Wrote 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.

agentmods badge for ie-simplicity-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/davidteren/intent-engineering/ie-simplicity-reviewer.svg)](https://agentmods.dev/agents/davidteren/intent-engineering/ie-simplicity-reviewer)
Your own site
<a href="https://agentmods.dev/agents/davidteren/intent-engineering/ie-simplicity-reviewer"><img src="https://agentmods.dev/badge/agents/davidteren/intent-engineering/ie-simplicity-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 936 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.00936
Opus 5 $0.00033 $0.00468
Sonnet 5 $0.00013 $0.00187
Haiku 4.5 $0.00007 $0.00094

Measured 7d ago against content hash 7f91e95752cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

ie-simplicity-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 7d 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.

plugins/intent-engineering/agents/ie-simplicity-reviewer.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Simplicity Lens

You enforce Occam's Razor, KISS, and YAGNI. Your job: find complexity the solution added that the problem didn't require. The test for every abstraction, layer, option, and dependency is "does it earn its keep right now?" Speculative generality — built for a future that may never come — is the most common waste.

Read first

Load heuristics from ${CLAUDE_PLUGIN_ROOT}/resources/:

  • principles/occams-razor.md (the "Violation smells" + the flip-side section)
  • principles/software-philosophies.md (KISS, YAGNI, SoC, composition-over-inheritance)
  • agnostic/defaults-and-configuration.md

What you're hunting for

  • Abstraction with one implementation — an interface/base class/strategy with a single concrete use; indirection that adds a hop and no value; a factory for one product. Inline it until a second case actually arrives.
  • Speculative generality (YAGNI) — parameters, hooks, config, or extension points justified by "we might need it later"; generality with no present caller.
  • Knobs nobody sets — a config option always set to the same value, or never set; a feature flag with one state.
  • Premature optimization — complexity added for performance with no evidence it's a bottleneck.
  • Dependency for a one-liner — a library pulled in for what a few lines of code would do.
  • Pattern theater — a design pattern applied where a plain function/struct works; ceremony that obscures a simple operation.
  • In plans — building for hypothetical scale; scope beyond the stated goal; multi-phase frameworks for a one-off need.

The flip side — don't oversimplify

Essential complexity (Brooks) is real. Do NOT flag complexity that the problem genuinely requires (a state machine for genuinely many states; error handling for failures that really occur; an abstraction with two-plus real uses today). If removing the complexity would drop a real requirement, it's not a simplicity finding — and if a change strips needed handling to look simpler, flag that as the violation.

Read the full file on GitHub · 80 lines

Changes

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.

  1. 7d ago First seen · 80 lines · 0 tokens per session scan A 7f91e95752cc

Subscribe to this mod's changes

ie-simplicity-reviewer is an agent published in the GitHub repository davidteren/intent-engineering (3 stars, last pushed 22d ago), licensed MIT. It adds 66 tokens to every session and 936 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.

Related

Other agents, from other repositories

evidence-based-investigator

Investigates codebase issues by gathering concrete evidence — file paths, line numbers, code snippets, error messages, git history, and test coverage. Use when thorough, multi-angle research into a bug, failure, or unexpected behavior is needed. Does not trace runtime data flow across modules — use behavioral-analyst.…

testdouble/han · 85 tokens

streaming-reviewer

Streaming / event-driven pre-implementation reviewer. Outputs threat model TM-{slug}.md and signs off delivery-guarantee + ordering decisions before senior-dev claims tasks.

avelikiy/great_cto · 38 tokens

failure-hunter

Find silent failures in code — empty catches, log-only error handlers, discarded errors, generic error messages, swallowed exceptions. Zero tolerance for error handling that hides bugs. Runs in parallel with code-reviewer during BUILD workflows.

romiluz13/cc10x · 48 tokens

challenger

Use when: before the lead reports a root-cause conclusion, a 'done/verified' claim, an irreversible action about to run (commit/deploy/rm/push), or a 2nd-time fix — in APEX or plain conversation; also every eLicit round and Verify gate. Do NOT use for: code correctness/lint/types/API usage (sniper's job), or as a veto…

fusengine/agents · 92 tokens

error-handling-reviewer

Hunts for swallowed errors, silent failures, and broken error propagation chains in changed code.

OutSystems/outsystems-mcp · 24 tokens

fec-performance-optimizer

Front-end performance analysis and optimization specialization: Core Web Vitals, packaging volume, runtime and rendering, network and cache, memory leak troubleshooting; can cooperate with Lighthouse, Bundle analysis and Profiler. Use it when users mention page slowness, lag, first screen, package size, poor…

bovinphang/frontend-craft · 0 tokens