review

review is a skill for Claude Code from hmcts/agentic-plugins-marketplace. It costs 28 tokens per session (627 once invoked), scanned A, original, MIT.

A structured code-review process for the current Git branch, which is the line of development containing the changes. It runs several review passes and combines their findings.

In plain words
What is it for?
Reviewing branch changes, checking available reviewers, running parallel review passes, and producing a combined report.
Why use it?
It helps identify code-quality and merge risks before changes are integrated into the main codebase.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery.

Part of the code-review plugin — 1 skill shipped together

Good fit Reviewing branch changes, checking available reviewers, running parallel review passes, and producing a combined report.

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

Made for: Claude Code.

Or install code-review, the plugin that ships this one along with the rest of its 1 skill.

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 review

README.md
[![agentmods](https://agentmods.dev/badge/skills/hmcts/agentic-plugins-marketplace/review.svg)](https://agentmods.dev/skills/hmcts/agentic-plugins-marketplace/review)
Your own site
<a href="https://agentmods.dev/skills/hmcts/agentic-plugins-marketplace/review"><img src="https://agentmods.dev/badge/skills/hmcts/agentic-plugins-marketplace/review.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 627 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.00028 $0.00627
Opus 5 $0.00014 $0.00313
Sonnet 5 $0.00006 $0.00125
Haiku 4.5 $0.00003 $0.00063

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

Security

Grade A, and why

review 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 8d 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/skills/code-review/skills/review/SKILL.md · 74 lines

How it starts

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

Run a comprehensive review of the current branch by orchestrating three review passes in parallel, then aggregating their findings.

Step 0 — check optional reviewers are installed

Run the following to check which plugins are available:

claude plugin list --json 2>/dev/null | python3 -c "
import json,sys
installed = {p['id'] for p in json.loads(sys.stdin.read()).get('installed', [])}
for pid in ['pr-review-toolkit@claude-plugins-official','code-review@claude-plugins-official']:
    print('ok' if pid in installed else 'missing', pid)
"

For any plugin reported as missing, tell the user:

To get the full 3-reviewer report, install the missing plugin(s) and reload:

/plugin install <name>@claude-plugins-official
/reload-plugins

Continuing with the reviewer(s) that are available.

Do not block the review — proceed with whichever reviewers are present. The diff review always runs regardless.

Step 1 — run all three reviews in parallel

Invoke all three of the following simultaneously using the Agent tool (one agent per review), passing the same PR or branch context to each:

  1. Diff review — run git diff main...HEAD, then for each changed file assess:

    • Correctness — does the logic do what it claims?
    • Security — injection, XSS, auth bypass, secrets-in-code?
    • Performance — N+1 queries, blocking calls, memory leaks?
    • Readability — confusing names, missing context, overly complex logic?
    • Tests — are changes covered? Are existing tests likely to break?
  2. PR Review Toolkit — invoke the pr-review-toolkit:review-pr skill using the Skill tool. Skip if not installed (noted in Step 0).

  3. Official code-review — invoke the code-review:code-review skill using the Skill tool. Skip if not installed (noted in Step 0).

Step 2 — aggregate findings

Collect results from all three passes and deduplicate. Present a single unified report:

Must fix

Blockers that should prevent merge (any finding rated critical/blocker across any reviewer).

Read the full file on GitHub · 74 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. 8d ago First seen · 74 lines · 28 tokens per session scan A 4d48b38d39c7

Subscribe to this mod's changes

review is a skill published in the GitHub repository hmcts/agentic-plugins-marketplace (3 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 627 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.