review-plugin-agent

review-plugin-agent is a command for Claude Code from ToshikiImagawa/unity-claude-code-tools. It costs 49 tokens per session (1,804 once invoked), scanned A, original, MIT.

A review command for checking agent instruction files against the repository's design guidelines. An agent is a specialised helper that performs a defined task for the coding assistant.

In plain words
What is it for?
Use it to review agent files individually, inspect every agent in a plugin, or audit all plugin agents in the repository.
Why use it?
It finds design problems and suggests improvements before those helpers are used across a project. It can review one or more files, or all agents in one or more plugins.

Command for Claude Code

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.

agentmods
npx agentmods add commands/toshikiimagawa/unity-claude-code-tools/review-plugin-agent
Clone the repo
git clone --depth 1 https://github.com/ToshikiImagawa/unity-claude-code-tools

Made for: Claude Code.

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-plugin-agent

README.md
[![agentmods](https://agentmods.dev/badge/commands/toshikiimagawa/unity-claude-code-tools/review-plugin-agent.svg)](https://agentmods.dev/commands/toshikiimagawa/unity-claude-code-tools/review-plugin-agent)
Your own site
<a href="https://agentmods.dev/commands/toshikiimagawa/unity-claude-code-tools/review-plugin-agent"><img src="https://agentmods.dev/badge/commands/toshikiimagawa/unity-claude-code-tools/review-plugin-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,804 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00049 $0.01804
Opus 5 $0.00024 $0.00902
Sonnet 5 $0.00010 $0.00361
Haiku 4.5 $0.00005 $0.00180

Measured 3d ago against content hash fccac64d7216, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

review-plugin-agent 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 3d 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.

.claude/commands/review-plugin-agent.md · 219 lines

How it starts

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

Review Plugin Agent - エージェント設計レビュー

プラグインのサブエージェントファイルをレビューし、AGENTS.md の設計ガイドに基づいた改善提案を提供します。

入力

$ARGUMENTS

入力形式

/review-plugin-agent {エージェントファイルパス} [オプション]
/review-plugin-agent --all [プラグイン名]

オプション

  • --all: 指定されたプラグインの全エージェントをレビュー(プラグイン名省略時は全プラグイン)

入力例

# 特定のエージェントをレビュー
/review-plugin-agent plugins/unity-tools-plugin/agents/build-log-analyzer.md

# 複数のエージェントをレビュー
/review-plugin-agent plugins/unity-tools-plugin/agents/build-log-analyzer.md plugins/unity-tools-plugin/agents/test-runner.md

# 特定プラグインの全エージェントをレビュー
/review-plugin-agent --all unity-tools-plugin

# 全プラグインの全エージェントをレビュー
/review-plugin-agent --all

処理フロー

1. 引数の解析

入力から以下を判定:

  • レビュー対象ファイルパス(1つまたは複数)
  • --all オプションの有無
  • プラグイン名の指定(--all オプション時)

2. 対象エージェントファイルの特定

個別ファイル指定時:

  • 指定されたファイルパスを対象リストに追加

--all オプション指定時:

  • プラグイン名指定あり: plugins/{プラグイン名}/agents/*.md をすべて対象
  • プラグイン名指定なし: plugins/*/agents/*.md をすべて対象

3. plugin-agent-reviewer エージェントを呼び出し

各対象エージェントファイルに対して、plugin-agent-reviewer エージェントを呼び出してレビューを実行:

Task: plugin-agent-reviewer
prompt: "{エージェントファイルパス}"

4. レビュー結果の統合

複数のエージェントをレビューした場合、結果を統合して出力:

## 一括レビュー結果

### レビュー対象

- `{ファイルパス1}`
- `{ファイルパス2}`
- ...

### 評価サマリー

| エージェント         | description | 入出力 | allowed-tools | 前提条件 | 再委譲禁止 | 総合評価   |
|:----------------|:------------|:-----|:--------------|:-----|:------|:-------|
| `{エージェント名1}` | 良好          | 良好   | 改善推奨          | 良好   | 良好    | 良好     |
| `{エージェント名2}` | 改善推奨        | 良好   | 要修正           | 良好   | 良好    | 改善推奨   |
| `{エージェント名3}` | 要修正         | 改善推奨 | 良好            | 要修正  | 良好    | 要修正    |

### 個別レビュー結果

#### {エージェント名1}

{plugin-agent-reviewer からの詳細レビュー結果}

---

#### {エージェント名2}

{plugin-agent-reviewer からの詳細レビュー結果}

---

### 全体的な推奨アクション

1. {共通する改善点1}
2. {共通する改善点2}
3. {共通する改善点3}

実装ステップ

ステップ1: 引数解析

1. $ARGUMENTS を解析
2. ファイルパスとオプションを分離
3. --all オプションの有無を判定
4. プラグイン名の指定を確認

ステップ2: 対象ファイルリストの作成

if --all オプションあり:
  if プラグイン名指定あり:
    Glob: plugins/{プラグイン名}/agents/*.md
  else:
    Glob: plugins/*/agents/*.md
else:
  指定されたファイルパスをリスト化

Read the full file on GitHub · 219 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. 3d ago First seen · 219 lines · 49 tokens per session scan A fccac64d7216

Subscribe to this mod's changes

review-plugin-agent is a command published in the GitHub repository ToshikiImagawa/unity-claude-code-tools (2 stars, last pushed 7mo ago), licensed MIT. It adds 49 tokens to every session and 1,804 once invoked, about $0.0002 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.