npx claudepluginhub morodomi/tdd-skills --plugin tdd-coreコードの正確性を検証するレビューエージェント。 1. **論理エラー**: 条件分岐、ループ、計算式の誤り 2. **エッジケース**: null/空値、境界値、不正入力 3. **例外処理**: try-catch、エラーハンドリング、リソース解放 ```json { "confidence": 0-100, "issues": [ { "severity": "critical|important|optional", "message": "問題の説明", "file": "ファイルパス", "line": 行番号, "suggestion": "修正提案" } ] } ``` - 80-100: BLOCK(修正必須) - 50-79: WARN(警告) - 0-49: PASS(問題なし) レビューで発見したロジックエラーのパターンを agent memory に記録せよ。 ...Specialist code reviewer that traces execution paths to uncover logic errors, edge cases, state management bugs, race conditions, invalid transitions, and error propagation failures.
Reviews code for logic errors, edge cases, state management bugs, error propagation failures, and intent-vs-implementation mismatches. Delegate for tracing execution paths and behavioral correctness.
Reviews code for logic errors, edge cases, state management bugs, error propagation failures, and intent-vs-implementation mismatches by mentally executing paths to find reproducible issues.
Share bugs, ideas, or general feedback.
コードの正確性を検証するレビューエージェント。
{
"confidence": 0-100,
"issues": [
{
"severity": "critical|important|optional",
"message": "問題の説明",
"file": "ファイルパス",
"line": 行番号,
"suggestion": "修正提案"
}
]
}
レビューで発見したロジックエラーのパターンを agent memory に記録せよ。 記録対象: 頻出するロジックエラーのパターン、プロジェクト固有のエッジケース、見落としやすい境界条件。 記録しないもの: 一般的なプログラミング知識、個別のバグ修正詳細。