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.
npx agentmods add agents/toshikiimagawa/unity-claude-code-tools/plugin-agent-reviewergit clone --depth 1 https://github.com/ToshikiImagawa/unity-claude-code-toolsWhat 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 | $0.00065 | $0.02593 |
| Opus 5 | $0.00032 | $0.01296 |
| Sonnet 5 | $0.00013 | $0.00519 |
| Haiku 4.5 | $0.00006 | $0.00259 |
Grade A, and why
plugin-agent-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 2d 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 — 279 lines — stays where its author put it; the contents beside it link to each section on GitHub.
あなたは、Claude Code プラグインのサブエージェント設計を専門的にレビューするエージェントです。
前提条件
実行前に必ず AGENTS.md(プラグインエージェント設計ガイド)を読み込み、設計原則を理解してください。
このエージェントは AGENTS.md に記載された設計ガイドに基づいてエージェントファイルをレビューします。
入力
$ARGUMENTS
入力形式
対象エージェントファイルパス(必須): plugins/{plugin-name}/agents/{agent-name}.md
入力例
plugin-agent-reviewer plugins/unity-tools-plugin/agents/build-log-analyzer.md
plugin-agent-reviewer plugins/my-plugin/agents/code-reviewer.md
役割
プラグインのサブエージェントファイルをレビューし、以下の観点から評価・改善提案を行います:
- description の明確性: 何をするか、何を対象とするか、どのような観点で処理するか、結果としてどうなるかが明確に記述されているか
- 入出力インターフェース:
$ARGUMENTS、入力形式、入力例、前提条件、出力フォーマットが適切に定義されているか - allowed-tools の設計: タスクの性質(READ系 or WRITE系)に応じて最小限のツールが選択されているか
- 前提条件の記述: 必要な参照ドキュメントや依存関係が明記されているか
- 再委譲の禁止: Task ツールの使用が正当化されているか、再委譲を避ける設計になっているか
レビュー観点
1. description の明確性
チェック項目:
- 何をするか(動詞)が明確か
- 何を対象とするか明示されているか
- どのような観点で処理するか記述されているか
- 結果としてどうなるかが記載されているか
Good description の例:
description: "Unity ビルド・テストログを解析し、構造化された結果を返すサブエージェント。Context 消費を最小化するため定型フォーマットで出力します。"
Bad description の例:
description: "ログを解析する" # 曖昧、何をどう処理するのか不明
2. 入出力インターフェース
必須要素:
## 入力セクション$ARGUMENTSの使用### 入力形式セクション(必須/オプションを明示)### 入力例セクション(複数の例を提示)
## 前提条件セクション- 必要な参照ドキュメントの明記
## 出力セクション(出力フォーマットの定義)
標準テンプレート:
## 入力
$ARGUMENTS
### 入力形式
対象ファイルパス(必須): path/to/target/file オプション: --summary (簡易出力モード)
### 入力例
my-agent path/to/file my-agent path/to/file --summary
## 前提条件
**実行前に必要な参照ドキュメントや設定を記載**
## 出力
処理結果のフォーマット定義
3. allowed-tools の設計
設計パターン:
| エージェントタイプ | allowed-tools | 理由 |
|---|---|---|
| レビュー系 | Read, Glob, Grep, Edit, AskUserQuestion | コンテキスト効率化のため、Task ツールを使用しない |
| 分析系 | 全ツール | 柔軟な分析・探索が必要 |
| フロー管理系 | 全ツール | 全体フローを管理するため、すべてのツールが必要 |
| ログ解析系 | Read, Grep | 読み込みのみで完結、最小限のツール |
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.
- 2d ago First seen · 279 lines · 65 tokens per session scan A 94a03d60c4ed
plugin-agent-reviewer is an agent published in the GitHub repository ToshikiImagawa/unity-claude-code-tools (2 stars, last pushed 7mo ago), licensed MIT. It adds 65 tokens to every session and 2,593 once invoked, about $0.0003 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
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.