From 16201c87014df430e837630853a6709c86399f59 Mon Sep 17 00:00:00 2001 From: fullsend-code <278716306+fullsend-ai-coder[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 15:42:09 +0000 Subject: [PATCH] fix(#4060): reduce sub-agent dispatch for mechanical dep bumps Add a dispatch examples table row for dependency version bumps (lockfile + manifest only) that dispatches only the always-included sub-agents (correctness + style-conventions). Add a cross-reference from section 3c (dispatch) to section 3e (scope constraints) so that when triage classifies a change as "mechanical/value-only", the orchestrator suppresses conditional triggers (security, intent-coherence, docs-currency, cross-repo-contracts) and dispatches only the always-included sub-agents. Closes #4060 --- .../scaffold/fullsend-repo/skills/pr-review/SKILL.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/internal/scaffold/fullsend-repo/skills/pr-review/SKILL.md b/internal/scaffold/fullsend-repo/skills/pr-review/SKILL.md index 68e16b945e..274c710ab0 100644 --- a/internal/scaffold/fullsend-repo/skills/pr-review/SKILL.md +++ b/internal/scaffold/fullsend-repo/skills/pr-review/SKILL.md @@ -275,6 +275,14 @@ complex PR that triggers all conditions legitimately needs all 6. schemas, or CLI args are modified. Skip entirely for PRs that don't touch public API surface. +**Mechanical/value-only override:** When triage classifies a change as +"mechanical/value-only" per the scope constraint table in section 3e +(e.g., digest bumps, version bumps, hash swaps, URL updates, feature +flag toggles), dispatch only the always-included sub-agents +(`correctness` + `style-conventions`) and suppress all conditional +triggers (`security`, `intent-coherence`, `docs-currency`, +`cross-repo-contracts`). + **Dispatch examples:** | PR type | Agents dispatched | @@ -286,6 +294,7 @@ complex PR that triggers all conditions legitimately needs all 6. | Large refactor across packages | correctness, style-conventions, intent-coherence, docs-currency | | CI/CD pipeline change | correctness, security, style-conventions, intent-coherence | | DB migration + API change | correctness, security, style-conventions, cross-repo-contracts, docs-currency | +| Dependency version bump (lockfile + manifest only) | correctness, style-conventions | #### 3d. Prepare context packages