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/kbichave/skillsWrote 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/kbichave/skills/prompt-reviewer)<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.
<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>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.00092 | $0.00848 |
| Opus 5 | $0.00046 | $0.00424 |
| Sonnet 5 | $0.00018 | $0.00170 |
| Haiku 4.5 | $0.00009 | $0.00085 |
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.
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 infix. No URL → no currency finding.
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.
- 5d ago Changed 2077fddacc8d
- 10d ago First seen · 65 lines · 92 tokens per session scan A f3f18263e208
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.
Other agents, from other repositories
context-delegate
Context Gatherer & External LLM Prompt Generator.
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.
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.
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…
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.…
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.