reviewer

reviewer is a skill for Claude Code from amirlehmam/wmux. It costs 34 tokens per session (1,034 once invoked), scanned B, original, MIT.

A review procedure for completed wmux orchestrations, where several coding agents have worked on one task in stages.

In plain words
What is it for?
It helps collect agent reports, inspect all changes, run tests, fix small issues, and produce a final review report.
Why use it?
It checks the combined changes for consistency and catches minor problems before the work is considered finished.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery.

Part of the wmux-orchestrator plugin — 3 skills, 1 command, 1 agent, 4 hooks shipped together

Good fit It helps collect agent reports, inspect all changes, run tests, fix small issues, and produce a final review report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/amirlehmam/wmux/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 amirlehmam/wmux --skill reviewer
Clone the repo
git clone --depth 1 https://github.com/amirlehmam/wmux

Made for: Claude Code.

Or install wmux-orchestrator, the plugin that ships this one along with the rest of its 3 skills, 1 command, 1 agent, 4 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 reviewer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/amirlehmam/wmux/reviewer"><img src="https://agentmods.dev/badge/skills/amirlehmam/wmux/reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,034 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Agent Snooping · line 13
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
How audits are shown
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.00034 $0.01034
Opus 5 $0.00017 $0.00517
Sonnet 5 $0.00007 $0.00207
Haiku 4.5 $0.00003 $0.00103

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

Security

Grade B, and why

reviewer scanned grade B with 1 finding 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 9d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

PLUGIN_ROOT=$(find "$HOME/.claude/plugins/cache/wmux-orchestrator" -name "plugin.json" -path "*/.claude-plugin/*" 2>/dev/null | sort -V | tail -1 | sed 's|/.claude-plugin/plugin.json||')
resources/wmux-orchestrator/skills/reviewer/SKILL.md · 147 lines

How it starts

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

Orchestration Reviewer

You are the reviewer for a completed wmux orchestration. Multiple agents have worked on a task in parallel waves. Your job is to verify consistency, fix minor issues, and produce a final report.

Step 0: Resolve Plugin Root

PLUGIN_ROOT=$(find "$HOME/.claude/plugins/cache/wmux-orchestrator" -name "plugin.json" -path "*/.claude-plugin/*" 2>/dev/null | sort -V | tail -1 | sed 's|/.claude-plugin/plugin.json||')
echo "PLUGIN_ROOT=$PLUGIN_ROOT"

Use $PLUGIN_ROOT for all script references below.

Step 1: Gather Context

Read the aggregated results:

ORCH_DIR=$(bash -c "source \"$PLUGIN_ROOT/scripts/orchestration-state.sh\" && find_active_orch")
cat "$ORCH_DIR/all-results.md" 2>/dev/null

If the file doesn't exist, aggregate manually:

bash "$PLUGIN_ROOT/scripts/collect-results.sh" "$ORCH_DIR"

Also read the orchestration state to understand the task and wave structure:

cat "$ORCH_DIR/state.json"

Step 2: Review the Changeset

  1. Run git diff to see ALL changes made by all agents
  2. Run git diff --stat for a file-level overview
  3. For each modified file, read it and verify:
    • No syntax errors
    • Imports are correct (no missing imports, no imports of deleted symbols)
    • Types are consistent across files
    • No duplicate or conflicting changes

Step 3: Check Cross-Agent Consistency

This is the most critical step. Agents worked in isolation — their changes must be compatible:

  1. Type compatibility: If Agent A changed an interface and Agent B uses it, verify Agent B's usage matches the new interface
  2. Import chains: Verify all import paths resolve correctly
  3. No orphaned code: Check that removed exports aren't still imported elsewhere
  4. No duplicate implementations: Ensure two agents didn't implement the same thing differently

Step 4: Run Tests

If the project has tests, run them:

npm test 2>&1 || true

Record test results. If tests fail:

  • Analyze the failure
  • If it's a minor fix (missing import, typo, type mismatch), fix it directly using Edit
  • If it's a major issue, document it in the review report for the user

Read the full file on GitHub · 147 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. 9d ago First seen · 147 lines · 34 tokens per session scan B f0f15a070ab5

Subscribe to this mod's changes

reviewer is a skill published in the GitHub repository amirlehmam/wmux (373 stars, last pushed yesterday), licensed MIT. It adds 34 tokens to every session and 1,034 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.