Skip to content

Commit 931b9e5

Browse files
fix: remove explicit tools field from all plugin agent definitions
Plugin agents may not reliably receive tools listed in their frontmatter (known Claude Code platform issue). Per docs, omitting the tools field causes agents to inherit all tools from the parent conversation, which is the more reliable pattern used by most public Claude Code agents. Removes tools: [Bash, Read, Glob, Grep] from all 8 agent definitions and the build-review-agents.sh generator script. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 27ef6ed commit 931b9e5

9 files changed

+0
-9
lines changed

plugins/dso/agents/code-reviewer-deep-arch.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-deep-arch
33
model: opus
4-
tools: [Bash, Read, Glob, Grep]
54
description: Deep-tier architectural reviewer (Opus): synthesizes specialist findings, assesses systemic risk, produces unified verdict across all dimensions.
65
---
76
<!-- content-hash: a3821eb8570327748980abce1eb951e42d77a7124d9c4783998686cbcf8df87c -->

plugins/dso/agents/code-reviewer-deep-correctness.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-deep-correctness
33
model: sonnet
4-
tools: [Bash, Read, Glob, Grep]
54
description: Deep-tier correctness specialist (Sonnet A): focused exclusively on functionality — correctness, edge cases, error handling, security, efficiency.
65
---
76
<!-- content-hash: 697a53b74017c751c2335fe41dfab4d3cbef5c400328df02a740f4e18a426361 -->

plugins/dso/agents/code-reviewer-deep-hygiene.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-deep-hygiene
33
model: sonnet
4-
tools: [Bash, Read, Glob, Grep]
54
description: Deep-tier hygiene/design specialist (Sonnet C): focused on code_hygiene, object_oriented_design, and readability.
65
---
76
<!-- content-hash: ab37e802464c2e1d9f13faec61379057e0cb239f5abe1b9d919d1cea041e4bec -->

plugins/dso/agents/code-reviewer-deep-verification.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-deep-verification
33
model: sonnet
4-
tools: [Bash, Read, Glob, Grep]
54
description: Deep-tier verification specialist (Sonnet B): focused exclusively on testing_coverage — test presence, quality, edge case coverage, mock correctness.
65
---
76
<!-- content-hash: fbb90133ae452c7d81aca2e428c0adcbcc7787e70d7e3a32d12f6e76889878c8 -->

plugins/dso/agents/code-reviewer-light.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-light
33
model: haiku
4-
tools: [Bash, Read, Glob, Grep]
54
description: Light-tier code reviewer: single-pass, highest-signal checklist for fast feedback on low-to-medium-risk changes.
65
---
76
<!-- content-hash: 30cd0f00eb5fa1ace0a539d071ce5617745e5437cb9ca092218d1d407532c33b -->

plugins/dso/agents/code-reviewer-standard.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: code-reviewer-standard
33
model: sonnet
4-
tools: [Bash, Read, Glob, Grep]
54
description: Standard-tier code reviewer: comprehensive review across all five scoring dimensions for moderate-to-high-risk changes.
65
---
76
<!-- content-hash: b5aa6016cb0c19a0a810de2397e034a12eb69f702ed6b3541493e96d39431fdb -->

plugins/dso/agents/complexity-evaluator.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: complexity-evaluator
33
model: haiku
4-
tools: [Bash, Read, Glob, Grep]
54
description: Classifies a ticket as TRIVIAL/MODERATE/COMPLEX (or SIMPLE/MODERATE/COMPLEX for epics) using a 5-dimension rubric.
65
---
76

plugins/dso/agents/conflict-analyzer.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: conflict-analyzer
33
model: sonnet
4-
tools: [Bash, Read, Glob, Grep]
54
---
65

76
# Conflict Analyzer

plugins/dso/scripts/build-review-agents.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ for delta_file in "${DELTA_FILES[@]}"; do
159159
---
160160
name: code-reviewer-${tier}
161161
model: ${model}
162-
tools: [Bash, Read, Glob, Grep]
163162
description: ${description}
164163
---
165164
<!-- content-hash: ${content_hash} -->

0 commit comments

Comments
 (0)