You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/skills/maxsim-batch/SKILL.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,12 +89,34 @@ Agent Teams (available since Claude Code v2.1.32, Feb 2026) enable inter-agent c
89
89
90
90
**Current status:** Infrastructure is in place (env var, hooks). Workflow templates that invoke `TeamCreate`/`SendMessage` for Tier 2 patterns (competitive implementation, multi-reviewer code review, collaborative debugging) are planned but not yet implemented. All workflows currently use Tier 1 subagents. See PROJECT.md §7.2 for the full specification.
91
91
92
+
### Tier Selection Logic
93
+
94
+
MaxsimCLI chooses the tier automatically based on the workflow:
95
+
96
+
| Workflow | Tier | Reason |
97
+
|----------|------|--------|
98
+
| Phase execution (independent tasks) | Tier 1 (Subagents) | Tasks don't need to communicate |
- Competitive implementation with adversarial debate
94
108
- Multi-dimensional code review (security + performance + test coverage)
95
109
- Collaborative debugging with competing hypotheses
96
110
- Cross-layer feature work (frontend + backend + tests)
97
111
112
+
### Graceful Degradation
113
+
114
+
If Agent Teams are unavailable (env var `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS` not set, unsupported plan, or feature not yet stable), MaxsimCLI falls back to Tier 1 subagents for all workflows. Inform the user with this exact message:
115
+
116
+
> "Competitive mode: using Tier 1 subagents (Agent Teams not available or not required for this strategy). Each executor works independently; verifier selects the best result."
117
+
118
+
The user is informed but not blocked. All workflows remain fully functional via Tier 1.
119
+
98
120
## Limits
99
121
100
122
- Up to 30 parallel agents; typically 3-10 for manageable coordination
0 commit comments