File contents Reviewing Code
コードレビューコマンド共通のエージェント定義・起動ルール・結果フォーマット。
12 Review Agents
必ず12個すべてについて起動/スキップを判断し報告すること。
pr-review-toolkit(6個)
#
subagent_type
用途
起動条件
1
pr-review-toolkit:code-reviewer
コード品質、バグ検出
常に
2
pr-review-toolkit:comment-analyzer
コメント正確性
常に
3
pr-review-toolkit:pr-test-analyzer
テストカバレッジ
テストファイル変更時
4
pr-review-toolkit:silent-failure-hunter
サイレントエラー
常に
5
pr-review-toolkit:type-design-analyzer
型設計
型定義変更時
6
pr-review-toolkit:code-simplifier
コード簡素化
常に
カスタム(6個)
#
subagent_type
用途
起動条件
7
code:reinvention-checker
車輪の再発明
新規関数/クラス追加時
8
code:codebase-alignment-checker
整合性・ドメイン・依存関係
常に
9
code:rules-checker
プロジェクト固有ルール
skills/rules/存在時
10
code:code-quality-advisor
AI臭・可読性・デッドコード
常に
11
code:security-checker
セキュリティ脆弱性
常に
12
code:performance-checker
パフォーマンス問題
常に
オプション(1個)
#
subagent_type
用途
起動条件
13
code:copilot-codex-reviewer
Beast Mode式Codexレビュー
引数にcopilot指定時
起動ルール
並列実行 : 引数にparallelがあれば全エージェントを単一メッセージで起動
スキップ報告 : 条件を満たさない場合は理由を明示
起動前報告 : エージェント起動前に起動状況テーブルを表示
Copilotオプション : 引数にcopilotがあれば13番目のエージェントも起動(12個と並列実行可能)
結果フォーマット
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[REVIEW TYPE] REVIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
## 起動エージェント: X/12
| エージェント | ステータス | 理由 |
|-------------|-----------|------|
| code-reviewer | 完了 | - |
| pr-test-analyzer | スキップ | テストファイルなし |
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CRITICAL (X件)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
### [agent-name] 問題タイトル
📍 `path/to/file.ts:42`
問題のコード
💡 **修正案**: 具体的な修正
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
IMPORTANT (X件)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
### [agent-name] 問題タイトル
📍 `path/to/file.ts:42`
...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
SUGGESTIONS (X件)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
### [agent-name] 提案タイトル
📍 `path/to/file.ts:42`
...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GOOD PRACTICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
- [agent-name] 良い点 in `path/to/file.ts`
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ACTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. 🔴 [agent] 要約
2. 🟠 [agent] 要約
3. 🟡 [agent] 要約
必須ルール
すべての指摘に [agent-name] を付与
ファイルパスは path:line 形式
12個全てについて起動/スキップを報告
結果統合ルール(truncation防止)
オーケストレーターは各エージェントの結果をそのまま 出力する。
禁止:
エージェント結果の要約・省略
「同様の指摘が複数あります」等のまとめ
指摘数の丸め(「約10件」ではなく「12件」)
重複排除による指摘の削除
必須:
全CRITICAL/IMPORTANTを個別に列挙
各指摘のファイル:行番号を保持
エージェント名の帰属を維持
スコア閾値未満の指摘は除外してよいが、閾値以上は全て出力
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: ryugen04-dotfiles-review 3 description: Reviewing Code 4 --- 5 6 # Reviewing Code 7 8 コードレビューコマンド共通のエージェント定義・起動ルール・結果フォーマット。 9 10 ## 12 Review Agents 11 12 **必ず12個すべてについて起動/スキップを判断し報告すること。** 13 14 ### pr-review-toolkit(6個) 15 16 | # | subagent_type | 用途 | 起動条件 | 17 |---|---------------|------|----------| 18 | 1 | `pr-review-toolkit:code-reviewer` | コード品質、バグ検出 | 常に | 19 | 2 | `pr-review-toolkit:comment-analyzer` | コメント正確性 | 常に | 20 | 3 | `pr-review-toolkit:pr-test-analyzer` | テストカバレッジ | テストファイル変更時 | 21 | 4 | `pr-review-toolkit:silent-failure-hunter` | サイレントエラー | 常に | 22 | 5 | `pr-review-toolkit:type-design-analyzer` | 型設計 | 型定義変更時 | 23 | 6 | `pr-review-toolkit:code-simplifier` | コード簡素化 | 常に | 24 25 ### カスタム(6個) 26 27 | # | subagent_type | 用途 | 起動条件 | 28 |---|---------------|------|----------| 29 | 7 | `code:reinvention-checker` | 車輪の再発明 | 新規関数/クラス追加時 | 30 | 8 | `code:codebase-alignment-checker` | 整合性・ドメイン・依存関係 | 常に | 31 | 9 | `code:rules-checker` | プロジェクト固有ルール | skills/rules/存在時 | 32 | 10 | `code:code-quality-advisor` | AI臭・可読性・デッドコード | 常に | 33 | 11 | `code:security-checker` | セキュリティ脆弱性 | 常に | 34 | 12 | `code:performance-checker` | パフォーマンス問題 | 常に | 35 36 ### オプション(1個) 37 38 | # | subagent_type | 用途 | 起動条件 | 39 |---|---------------|------|----------| 40 | 13 | `code:copilot-codex-reviewer` | Beast Mode式Codexレビュー | 引数に`copilot`指定時 | 41 42 ## 起動ルール 43 44 1. **並列実行**: 引数に`parallel`があれば全エージェントを単一メッセージで起動 45 2. **スキップ報告**: 条件を満たさない場合は理由を明示 46 3. **起動前報告**: エージェント起動前に起動状況テーブルを表示 47 4. **Copilotオプション**: 引数に`copilot`があれば13番目のエージェントも起動(12個と並列実行可能) 48 49 ## 結果フォーマット 50 51 ``` 52 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 53 [REVIEW TYPE] REVIEW 54 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55 56 ## 起動エージェント: X/12 57 | エージェント | ステータス | 理由 | 58 |-------------|-----------|------| 59 | code-reviewer | 完了 | - | 60 | pr-test-analyzer | スキップ | テストファイルなし | 61 62 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63 CRITICAL (X件) 64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65 66 ### [agent-name] 問題タイトル 67 📍 `path/to/file.ts:42` 68 問題のコード 69 💡 **修正案**: 具体的な修正 70 71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 72 IMPORTANT (X件) 73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 74 75 ### [agent-name] 問題タイトル 76 📍 `path/to/file.ts:42` 77 ... 78 79 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 80 SUGGESTIONS (X件) 81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 82 83 ### [agent-name] 提案タイトル 84 📍 `path/to/file.ts:42` 85 ... 86 87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 88 GOOD PRACTICES 89 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 90 91 - [agent-name] 良い点 in `path/to/file.ts` 92 93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 94 ACTIONS 95 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 96 97 1. 🔴 [agent] 要約 98 2. 🟠 [agent] 要約 99 3. 🟡 [agent] 要約 100 ``` 101 102 ## 必須ルール 103 104 - **すべての指摘に `[agent-name]` を付与** 105 - **ファイルパスは `path:line` 形式** 106 - **12個全てについて起動/スキップを報告** 107 108 ## 結果統合ルール(truncation防止) 109 110 オーケストレーターは各エージェントの結果を**そのまま**出力する。 111 112 **禁止:** 113 - エージェント結果の要約・省略 114 - 「同様の指摘が複数あります」等のまとめ 115 - 指摘数の丸め(「約10件」ではなく「12件」) 116 - 重複排除による指摘の削除 117 118 **必須:** 119 - 全CRITICAL/IMPORTANTを個別に列挙 120 - 各指摘のファイル:行番号を保持 121 - エージェント名の帰属を維持 122 - スコア閾値未満の指摘は除外してよいが、閾値以上は全て出力 123 124 --- 125 > Converted and distributed by [TomeVault](https://tomevault.io/claim/ryugen04) — claim your Tome and manage your conversions. 126 <!-- tomevault:4.0:skill_md:2026-04-13 -->
tomevault-io/skills-registry/tree/main/ryugen04--dotfiles--review commit ce9bb6a975
Frequently asked questions How do I install the Ryugen04 Dotfiles Review skill? Run npx skillmds@latest add tomevault-io/ryugen04-dotfiles-review in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Ryugen04 Dotfiles Review skill do? Reviewing Code It is listed under Coding & Dev Tools on SkillMD.
Is Ryugen04 Dotfiles Review safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Ryugen04 Dotfiles Review? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Ryugen04 Dotfiles Review free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Ryugen04 Dotfiles Review? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.