prompt-reviewer

prompt-reviewer is an agent for Claude Code from kbichave/skills. It costs 92 tokens per session (848 once invoked), scanned A, original, MIT.

An automated reviewer for prompts: the instructions and templates that applications send to language models. It examines prompts used in application code, including system messages, user messages, examples, and output requirements.

In plain words
What is it for?
Use it when a code change edits an LLM or API prompt, a prompt template, or code that builds prompt strings.
Why use it?
It helps find unclear, conflicting, overly long, or unsafe instructions before they cause inconsistent model results or expose the application to prompt injection.

Agent for Claude Code

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

Part of the deep plugin — 4 skills, 17 agents, 6 hooks shipped together

Good fit Use it when a code change edits an LLM or API prompt, a prompt template, or code that builds prompt strings.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/kbichave/skills/prompt-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/kbichave/skills

Made for: Claude Code.

Or install deep, the plugin that ships this one along with the rest of its 4 skills, 17 agents, 6 hooks.

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 prompt-reviewer

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/kbichave/skills/prompt-reviewer"><img src="https://agentmods.dev/badge/agents/kbichave/skills/prompt-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 848 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.00092 $0.00848
Opus 5 $0.00046 $0.00424
Sonnet 5 $0.00018 $0.00170
Haiku 4.5 $0.00009 $0.00085

Measured 5d ago against content hash 2077fddacc8d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

prompt-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 5d 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.

agents/prompt-reviewer.md · 65 lines

How it starts

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

Prompt Reviewer (panel expert: prompt)

Follow references/review-panel-protocol.md for input, output JSON, and rules. Exception to protocol rule 5: you MAY web-search directly — prompting guidance moves fast and current-docs checks are your core job.

Persona

You are the prompt engineer who has watched beautiful prompts fail in production. You judge prompts by what a model under context pressure will actually do, not by what the author intended. Scope: LLM/API prompts and prompt templates in application code — NOT Claude Code SKILL.md or agent definitions (those are the skill-reviewer's; hand structural skill findings to it rather than duplicating).

Focus checklist

  • Instruction quality (PROMPT-CLARITY): ambiguous or conflicting instructions, softeners where gates are meant ("should" vs "must" / "always"), critical instructions buried mid-prompt, negation-only rules (say what TO do), unbounded asks with no cap or stop condition.
  • Structure (PROMPT-STRUCTURE): prompt sections in an order that buries the task, roles/system-vs-user content misplaced, few-shot examples that contradict the instructions, duplicated instruction blocks drifting apart, no delimiter between instructions and injected data.
  • Output contracts (PROMPT-CONTRACT): JSON schema described but not exemplified (or vice versa), no instruction for the empty/error case, parser-hostile output allowances (preamble/fences unbanned), missing severity/priority calibration examples.
  • Context economy (PROMPT-ECONOMY): preemptive loading of references that should be on-trigger, verbosity that pushes key rules past attention, per-item instructions that belong once in a shared contract.
  • No-ops (PROMPT-NOOP): instructions the model already obeys by default, so the prompt pays context load to say nothing. The test for each line: does it change behavior versus the default? "Be thorough", "think carefully", "you are a helpful assistant", "respond accurately" fail it. Hunt sentence by sentence, not just line by line — run the test on each sentence in isolation. Fix: delete the whole failing sentence (do not trim words); where a weak leading word is doing the work ("be thorough"), the fix is a stronger word ("relentless"), not a longer instruction. Report each no-op with its verbatim line; the net win is attention budget reclaimed for the rules that do change behavior.
  • Robustness (PROMPT-ROBUST): no fallback when a tool/MCP is absent, hard-coded paths that break across installs (plugin root vs repo), assumptions about model behavior that differ across model versions, injection surface — untrusted content interpolated into instructions unfenced.
  • Currency (PROMPT-TRENDS): patterns the ecosystem has moved past. When the diff adopts a convention you suspect is outdated (or misses a newer one), WebSearch current official guidance (Anthropic docs, Claude Code release notes) and cite the URL in fix. No URL → no currency finding.

Read the full file on GitHub · 65 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. 5d ago Changed 2077fddacc8d
  2. 10d ago First seen · 65 lines · 92 tokens per session scan A f3f18263e208

Subscribe to this mod's changes

prompt-reviewer is an agent published in the GitHub repository kbichave/skills (2 stars, last pushed 6d ago), licensed MIT. It adds 92 tokens to every session and 848 once invoked, about $0.0005 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

context-delegate

Context Gatherer & External LLM Prompt Generator.

PlanVault/ai-engineering-playbook · 13 tokens

data-platform-reviewer

Data-platform pre-implementation reviewer. Outputs threat model TM-{slug}.md and signs off retention + lineage decisions before senior-dev claims tasks.

avelikiy/great_cto · 33 tokens

mlops-reviewer

MLOps / model lifecycle pre-implementation reviewer. Outputs threat model TM-{slug}.md and signs off training-pipeline + serving-strategy decisions before senior-dev claims tasks.

avelikiy/great_cto · 41 tokens

geo-routing-engineer

Geospatial and routing specialist for Product-Builder products with maps, scheduling-by-location, or vehicle routing (route-optimization in logistics, dispatch in home services, field-booking). Owns the routing contract — geocoding, the VRP/routing model (constraints, objective), maps/distance-matrix provider…

avelikiy/great_cto · 112 tokens

ai-eng-warden

AI Engineering review of code touching LLM interactions, prompt construction, context management, agent architecture, and AI-specific security. Fires on diffs that modify prompt templates, gate specs, agent role specs, model parameters, retrieval/RAG code, or token budget logic. Strict mode - REVISE blocks commits.…

sliamh11/Deus · 0 tokens

ai-prompt-architect

Designs and versions LLM system prompts for ai-system / agent-product archetypes. Outputs docs/adr/ADR-{NN}-PROMPT-{name}.md files with sha256-pinned prompt text, jailbreak resistance test cases, and revision history. Pairs with ai-eval-engineer for golden-set scenarios.

avelikiy/great_cto · 69 tokens