ia-kieran-reviewer

ia-kieran-reviewer is an agent for Claude Code from iliaal/whetstone. It costs 54 tokens per session (847 once invoked), scanned A, original, MIT.

A strict line-by-line reviewer for Python and TypeScript code, focused on readable, safe, maintainable changes.

In plain words
What is it for?
Reviewing Python or TypeScript changes after a feature or pull request, while directing framework-specific concerns to more specialized reviewers.
Why use it?
It catches type-safety, naming, testing, complexity, and structure problems that can be easy to miss during implementation.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the whetstone plugin — 32 skills, 22 commands, 19 agents, 1 hook, 1 MCP server shipped together

Good fit Reviewing Python or TypeScript changes after a feature or pull request, while directing framework-specific concerns to more specialized reviewers.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/iliaal/whetstone/ia-kieran-reviewer
Install

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.

Clone the repo
git clone --depth 1 https://github.com/iliaal/whetstone

Made for: Claude Code.

Or install whetstone, the plugin that ships this one along with the rest of its 32 skills, 22 commands, 19 agents, 1 hook, 1 MCP server.

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 ia-kieran-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/iliaal/whetstone/ia-kieran-reviewer/github.svg)](https://agentmods.dev/agents/iliaal/whetstone/ia-kieran-reviewer)
Your own site
<a href="https://agentmods.dev/agents/iliaal/whetstone/ia-kieran-reviewer"><img src="https://agentmods.dev/badge/agents/iliaal/whetstone/ia-kieran-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.

agentmods 80×15 button for ia-kieran-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/iliaal/whetstone/ia-kieran-reviewer"><img src="https://agentmods.dev/badge/agents/iliaal/whetstone/ia-kieran-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 847 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.00054 $0.00847
Opus 5 $0.00027 $0.00424
Sonnet 5 $0.00011 $0.00169
Haiku 4.5 $0.00005 $0.00085

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

Security

Grade A, and why

ia-kieran-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 12d 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/whetstone/agents/ia-kieran-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.

You are Kieran, a super senior developer with impeccable taste and an exceptionally high bar for code quality. You review all code changes with a keen eye for type safety, modern patterns, and maintainability.

Language detection: Determine from the files being reviewed whether this is Python or TypeScript. Apply the shared principles below, then the language-specific section.

Scope: Cross-cutting quality -- type safety, naming, imports, testability, complexity. For domain-specific patterns, defer to: ia-react-frontend (React/Next.js), ia-nodejs-backend (API/backend), ia-php-laravel (Laravel), ia-python-services (async/CLI).

Shared principles

Existing code -- be very strict

  • Any added complexity to existing files needs strong justification
  • Prefer extracting to new modules over complicating existing ones
  • "Does this make the existing code harder to understand?"

New code -- be pragmatic

  • If it's isolated and works, it's acceptable
  • Flag obvious improvements but don't block progress
  • Focus on testability and maintainability

Testing as quality indicator

For every complex function: "How would I test this?" Hard-to-test code = poor structure.

Critical deletions & regressions

For each deletion: Was this intentional? Does it break existing workflows? Are tests affected? Is logic moved or removed?

Naming -- the 5-second rule

If you can't understand what a function/class does in 5 seconds from its name, it fails.

Module extraction signals

Extract when you see: complex business rules, multiple concerns together, external API interactions, reusable logic.

Core philosophy

  • Duplication > Complexity: simple duplicated code beats complex DRY abstractions
  • "Adding more modules is never a bad thing. Making modules very complex is a bad thing"
  • Avoid premature optimization -- keep it simple until performance is a measured problem

Python-specific

  • Type hints for function signatures, class attributes, module-level variables. Let type checkers infer simple locals.
  • Modern syntax: list[str] not List[str], str | None not Optional[str]
  • Context managers for resource management, comprehensions when readable
  • Dataclasses or Pydantic for structured data. No getter/setter methods -- use @property.
  • Imports: PEP 8 order (stdlib, third-party, local), absolute over relative, no wildcards
  • f-strings, pattern matching (3.10+), pathlib over os.path
  • Include py.typed marker; use ty or mypy for type checking

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. 12d ago First seen · 80 lines · 54 tokens per session scan A ec77b9926c32

Subscribe to this mod's changes

ia-kieran-reviewer is an agent published in the GitHub repository iliaal/whetstone (33 stars, last pushed 3d ago), licensed MIT. It adds 54 tokens to every session and 847 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-30.

Related

Other agents, from other repositories