speckit.reviewer

speckit.reviewer is a skill for Claude Code, Codex from wedabro/bro-skills. It costs 18 tokens per session (304 once invoked), scanned A, original, MIT.

A code-review procedure that compares implemented code with a written feature specification, project rules, and common security and performance practices.

In plain words
What is it for?
Use it to review source files and produce a report with a verdict, exact file and line references, issue severity, and suggested fixes. It does not fix the code.
Why use it?
It helps find missing requirements, weak error handling, security problems, slow database access, and other issues before approval.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to review source files and produce a report with a verdict, exact file and line references, issue severity, and suggested fixes. It does not fix the code.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wedabro/bro-skills/speckit.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.

Any agent
npx skills add wedabro/bro-skills --skill speckit.reviewer
Clone the repo
git clone --depth 1 https://github.com/wedabro/bro-skills

Made for: Claude Code, Codex.

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 speckit.reviewer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/wedabro/bro-skills/speckit.reviewer"><img src="https://agentmods.dev/badge/skills/wedabro/bro-skills/speckit.reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 304 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.00018 $0.00304
Opus 5 $0.00009 $0.00152
Sonnet 5 $0.00004 $0.00061
Haiku 4.5 $0.00002 $0.00030

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

Security

Grade A, and why

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

.agents/skills/speckit.reviewer/SKILL.md · 34 lines

What it actually says

🎯 Mission

Review implementation code → ensure correct spec, security, performance.

📥 Input

  • Source code (implemented files)
  • .agents/specs/[feature]/spec.md + plan.md
  • .agents/memory/constitution.md

📋 Protocol

  1. Spec Compliance: Does the code correctly implement all requirements in the spec?
  2. Error Handling: Does every API route have try-catch? Is return in the correct error format?
  3. Security: Find injection risks, missing auth checks, exposed secrets.
  4. Performance: Found N+1 queries, awaiting waterfalls, missing pagination.
  5. Constitution: Does the code violate any rules in constitution.md?
  6. Output: Verdict + table findings:
    | File:Line | Severity | Issue | Suggestion |
    |-----------|----------|-------|------------|
    | api/users.ts:45 | 🔴 | Missing auth | Add middleware |
    
  7. Verdict: ✅ APPROVE or ❌ REQUEST CHANGES (with list to fix).

📤 Output

  • File: .agents/memory/review-report.md

🚫 Guard Rails

  • DO NOT fix the code yourself — only review and make suggestions.
  • Each finding MUST have a specific file:line.
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 · 34 lines · 18 tokens per session scan A 0973978d866a

Subscribe to this mod's changes

speckit.reviewer is a skill published in the GitHub repository wedabro/bro-skills (2 stars, last pushed 16d ago), licensed MIT. It adds 18 tokens to every session and 304 once invoked, about $0.0001 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 skills, from other repositories

junior-to-senior

Adversarial senior-engineer review for agent-generated plans, designs, and architectures. Treats the current output as junior work, constructs a senior reviewer whose domain expertise comes from live codebase research plus web research of current best practices, diagnoses altitude failures (too vague or too granular)…

display-design-studio/skills · 124 tokens

resolve-pr-comments

Evaluate, fix, answer, and reply to GitHub pull request review comments and conversation comments. Handles both change requests (fix or skip) and reviewer questions (explain using reasoning recalled from past Claude Code transcripts). Use when the user asks to "resolve PR comments", "fix review comments", "address PR…

tobihagemann/turbo · 95 tokens

map-codebase

Deep architecture report that fans out parallel inspections across different aspects of the codebase (structure, tech stack, APIs, patterns, data flow, dependencies, testing) and synthesizes findings into a comprehensive document at .turbo/codebase-map.md and .turbo/codebase-map.html. Use when the user asks to "map…

tobihagemann/turbo · 106 tokens

reply-to-pr-threads

Draft, confirm, and post replies to GitHub PR review threads. Handles per-category reply formatting, re-fetches thread resolution state so auto-resolved threads are skipped, and posts via GraphQL. Use when the user asks to "reply to PR threads", "post PR thread replies", or "draft PR reply messages".

tobihagemann/turbo · 71 tokens

answer-reviewer-questions

For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to "answer reviewer questions", "draft answers to PR questions", or "explain reviewer questions".

tobihagemann/turbo · 48 tokens

codex-review

Run AI-powered code review using the codex CLI. Use when the user asks to "codex review", "run codex review", or "review a commit with codex".

tobihagemann/turbo · 41 tokens