claude-all-hands 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/.claude/agents/code-simplifier.md +52 -0
  2. package/.claude/agents/curator.md +189 -245
  3. package/.claude/agents/documentor.md +147 -0
  4. package/.claude/agents/planner.md +123 -166
  5. package/.claude/agents/researcher.md +58 -41
  6. package/.claude/agents/surveyor.md +81 -0
  7. package/.claude/agents/worker.md +74 -0
  8. package/.claude/commands/audit-docs.md +94 -0
  9. package/.claude/commands/continue.md +120 -0
  10. package/.claude/commands/create-docs.md +100 -0
  11. package/.claude/commands/create-skill.md +107 -0
  12. package/.claude/commands/create-specialist.md +111 -0
  13. package/.claude/commands/curator-audit.md +4 -0
  14. package/.claude/commands/debug.md +183 -0
  15. package/.claude/commands/plan.md +199 -102
  16. package/.claude/commands/validate.md +11 -0
  17. package/.claude/commands/whats-next.md +106 -134
  18. package/.claude/envoy/envoy +11 -14
  19. package/.claude/envoy/package-lock.json +1388 -0
  20. package/.claude/envoy/package.json +29 -0
  21. package/.claude/envoy/src/cli.ts +126 -0
  22. package/.claude/envoy/src/commands/base.ts +216 -0
  23. package/.claude/envoy/src/commands/gemini.ts +999 -0
  24. package/.claude/envoy/src/commands/git.ts +639 -0
  25. package/.claude/envoy/src/commands/index.ts +73 -0
  26. package/.claude/envoy/src/commands/knowledge.ts +187 -0
  27. package/.claude/envoy/src/commands/perplexity.ts +129 -0
  28. package/.claude/envoy/src/commands/plan/core.ts +134 -0
  29. package/.claude/envoy/src/commands/plan/findings.ts +446 -0
  30. package/.claude/envoy/src/commands/plan/gates.ts +672 -0
  31. package/.claude/envoy/src/commands/plan/index.ts +135 -0
  32. package/.claude/envoy/src/commands/plan/lifecycle.ts +648 -0
  33. package/.claude/envoy/src/commands/plan/plan-file.ts +138 -0
  34. package/.claude/envoy/src/commands/plan/prompts.ts +285 -0
  35. package/.claude/envoy/src/commands/plan/protocols.ts +166 -0
  36. package/.claude/envoy/src/commands/repomix.ts +99 -0
  37. package/.claude/envoy/src/commands/tavily.ts +220 -0
  38. package/.claude/envoy/src/commands/xai.ts +168 -0
  39. package/.claude/envoy/src/lib/design.ts +41 -0
  40. package/.claude/envoy/src/lib/feedback-schemas.ts +154 -0
  41. package/.claude/envoy/src/lib/findings.ts +215 -0
  42. package/.claude/envoy/src/lib/gates.ts +572 -0
  43. package/.claude/envoy/src/lib/git.ts +132 -0
  44. package/.claude/envoy/src/lib/index.ts +188 -0
  45. package/.claude/envoy/src/lib/knowledge.ts +594 -0
  46. package/.claude/envoy/src/lib/markdown.ts +75 -0
  47. package/.claude/envoy/src/lib/observability.ts +262 -0
  48. package/.claude/envoy/src/lib/paths.ts +130 -0
  49. package/.claude/envoy/src/lib/plan-io.ts +117 -0
  50. package/.claude/envoy/src/lib/prompts.ts +231 -0
  51. package/.claude/envoy/src/lib/protocols.ts +314 -0
  52. package/.claude/envoy/src/lib/repomix.ts +133 -0
  53. package/.claude/envoy/src/lib/retry.ts +138 -0
  54. package/.claude/envoy/src/lib/watcher.ts +167 -0
  55. package/.claude/envoy/tsconfig.json +21 -0
  56. package/.claude/hooks/scripts/scan_agents.py +62 -0
  57. package/.claude/hooks/scripts/scan_commands.py +50 -0
  58. package/.claude/hooks/scripts/scan_skills.py +46 -70
  59. package/.claude/hooks/scripts/validate_artifacts.py +128 -0
  60. package/.claude/hooks/startup.sh +26 -24
  61. package/.claude/protocols/bug-discovery.yaml +55 -0
  62. package/.claude/protocols/debugging.yaml +51 -0
  63. package/.claude/protocols/discovery.yaml +53 -0
  64. package/.claude/protocols/implementation.yaml +84 -0
  65. package/.claude/settings.json +37 -97
  66. package/.claude/skills/brainstorming/SKILL.md +54 -0
  67. package/.claude/skills/commands-development/SKILL.md +630 -0
  68. package/.claude/skills/commands-development/references/arguments.md +252 -0
  69. package/.claude/skills/commands-development/references/patterns.md +796 -0
  70. package/.claude/skills/commands-development/references/tool-restrictions.md +376 -0
  71. package/.claude/skills/discovery-mode/SKILL.md +108 -0
  72. package/.claude/skills/hooks-development/SKILL.md +332 -0
  73. package/.claude/skills/hooks-development/references/command-vs-prompt.md +269 -0
  74. package/.claude/skills/hooks-development/references/examples.md +658 -0
  75. package/.claude/skills/hooks-development/references/hook-types.md +463 -0
  76. package/.claude/skills/hooks-development/references/input-output-schemas.md +469 -0
  77. package/.claude/skills/hooks-development/references/matchers.md +470 -0
  78. package/.claude/skills/hooks-development/references/troubleshooting.md +587 -0
  79. package/.claude/skills/implementation-mode/SKILL.md +171 -0
  80. package/.claude/skills/research-tools/SKILL.md +35 -33
  81. package/.claude/skills/skills-development/SKILL.md +192 -0
  82. package/.claude/skills/skills-development/references/api-security.md +226 -0
  83. package/.claude/skills/skills-development/references/be-clear-and-direct.md +531 -0
  84. package/.claude/skills/skills-development/references/common-patterns.md +595 -0
  85. package/.claude/skills/skills-development/references/core-principles.md +437 -0
  86. package/.claude/skills/skills-development/references/executable-code.md +175 -0
  87. package/.claude/skills/skills-development/references/iteration-and-testing.md +474 -0
  88. package/.claude/skills/skills-development/references/recommended-structure.md +168 -0
  89. package/.claude/skills/skills-development/references/skill-structure.md +372 -0
  90. package/.claude/skills/skills-development/references/use-xml-tags.md +466 -0
  91. package/.claude/skills/skills-development/references/using-scripts.md +113 -0
  92. package/.claude/skills/skills-development/references/using-templates.md +112 -0
  93. package/.claude/skills/skills-development/references/workflows-and-validation.md +510 -0
  94. package/.claude/skills/skills-development/templates/router-skill.md +73 -0
  95. package/.claude/skills/skills-development/templates/simple-skill.md +33 -0
  96. package/.claude/skills/skills-development/workflows/add-reference.md +96 -0
  97. package/.claude/skills/skills-development/workflows/add-script.md +93 -0
  98. package/.claude/skills/skills-development/workflows/add-template.md +74 -0
  99. package/.claude/skills/skills-development/workflows/add-workflow.md +120 -0
  100. package/.claude/skills/skills-development/workflows/audit-skill.md +138 -0
  101. package/.claude/skills/skills-development/workflows/create-domain-expertise-skill.md +605 -0
  102. package/.claude/skills/skills-development/workflows/create-new-skill.md +191 -0
  103. package/.claude/skills/skills-development/workflows/get-guidance.md +121 -0
  104. package/.claude/skills/skills-development/workflows/upgrade-to-router.md +161 -0
  105. package/.claude/skills/skills-development/workflows/verify-skill.md +204 -0
  106. package/.claude/skills/subagents-development/SKILL.md +325 -0
  107. package/.claude/skills/subagents-development/references/context-management.md +567 -0
  108. package/.claude/skills/subagents-development/references/debugging-agents.md +714 -0
  109. package/.claude/skills/subagents-development/references/error-handling-and-recovery.md +502 -0
  110. package/.claude/skills/subagents-development/references/evaluation-and-testing.md +374 -0
  111. package/.claude/skills/subagents-development/references/orchestration-patterns.md +591 -0
  112. package/.claude/skills/subagents-development/references/subagents.md +508 -0
  113. package/.claude/skills/subagents-development/references/writing-subagent-prompts.md +517 -0
  114. package/.claude/statusline.sh +24 -0
  115. package/bin/cli.js +110 -72
  116. package/package.json +1 -1
  117. package/.claude/agents/explorer.md +0 -62
  118. package/.claude/agents/parallel-worker.md +0 -121
  119. package/.claude/commands/curation-fix.md +0 -92
  120. package/.claude/commands/new-branch.md +0 -36
  121. package/.claude/commands/parallel-discovery.md +0 -69
  122. package/.claude/commands/parallel-orchestration.md +0 -99
  123. package/.claude/commands/plan-checkpoint.md +0 -37
  124. package/.claude/envoy/commands/__init__.py +0 -1
  125. package/.claude/envoy/commands/base.py +0 -95
  126. package/.claude/envoy/commands/parallel.py +0 -439
  127. package/.claude/envoy/commands/perplexity.py +0 -86
  128. package/.claude/envoy/commands/plans.py +0 -451
  129. package/.claude/envoy/commands/tavily.py +0 -156
  130. package/.claude/envoy/commands/vertex.py +0 -358
  131. package/.claude/envoy/commands/xai.py +0 -124
  132. package/.claude/envoy/envoy.py +0 -122
  133. package/.claude/envoy/pyrightconfig.json +0 -4
  134. package/.claude/envoy/requirements.txt +0 -2
  135. package/.claude/hooks/capture-queries.sh +0 -3
  136. package/.claude/hooks/scripts/enforce_planning.py +0 -118
  137. package/.claude/hooks/scripts/enforce_rg.py +0 -34
  138. package/.claude/hooks/scripts/validate_skill.py +0 -81
  139. package/.claude/skills/claude-envoy-curation/SKILL.md +0 -162
  140. package/.claude/skills/claude-envoy-usage/SKILL.md +0 -46
  141. package/.claude/skills/command-development/SKILL.md +0 -206
  142. package/.claude/skills/command-development/examples/simple-commands.md +0 -212
  143. package/.claude/skills/command-development/references/frontmatter-reference.md +0 -221
  144. package/.claude/skills/hook-development/SKILL.md +0 -127
  145. package/.claude/skills/hook-development/examples/command-hooks.md +0 -301
  146. package/.claude/skills/hook-development/examples/prompt-hooks.md +0 -114
  147. package/.claude/skills/hook-development/references/event-reference.md +0 -226
  148. package/.claude/skills/repomix-extraction/SKILL.md +0 -91
  149. package/.claude/skills/skill-development/SKILL.md +0 -168
  150. package/.claude/skills/skill-development/examples/complete-skill-examples.md +0 -281
  151. package/.claude/skills/skill-development/references/progressive-disclosure.md +0 -141
  152. package/.claude/skills/skill-development/references/writing-style.md +0 -180
  153. package/.claude/skills/skill-development/scripts/validate-skill.sh +0 -144
  154. package/.claude/skills/specialist-builder/SKILL.md +0 -327
  155. package/.claude/skills/specialist-builder/docs/agent-catalog.md +0 -28
  156. package/.claude/skills/specialist-builder/examples/complete-agent-examples.md +0 -206
  157. package/.claude/skills/specialist-builder/references/system-prompt-patterns.md +0 -281
  158. package/.claude/skills/specialist-builder/references/triggering-examples.md +0 -162
  159. package/.claude/skills/specialist-builder/scripts/validate-agent.sh +0 -137
  160. /package/.claude/{envoy/claude-envoy.py → skills/claude-envoy-patterns/SKILL.md} +0 -0
@@ -0,0 +1,325 @@
1
+ ---
2
+ name: subagents-development
3
+ description: Expert guidance for creating, refining, and auditing Claude Code subagents and the Task tool. Use when working with subagents, setting up agent configurations, understanding how agents work, or using the Task tool to launch specialized agents.
4
+ ---
5
+
6
+ <objective>
7
+ Subagents are specialized Claude instances that run in isolated contexts with focused roles and limited tool access. This skill teaches you how to create effective subagents, write strong system prompts, configure tool access, and orchestrate multi-agent workflows using the Task tool.
8
+
9
+ Subagents enable delegation of complex tasks to specialized agents that operate autonomously without user interaction, returning their final output to the main conversation.
10
+ </objective>
11
+
12
+ <quick_start>
13
+ <workflow>
14
+ 1. Run `/agents` command
15
+ 2. Select "Create New Agent"
16
+ 3. Choose project-level (`.claude/agents/`) or user-level (`~/.claude/agents/`)
17
+ 4. Define the subagent:
18
+ - **name**: lowercase-with-hyphens
19
+ - **description**: When should this subagent be used?
20
+ - **tools**: Optional comma-separated list (inherits all if omitted)
21
+ - **model**: Optional (`sonnet`, `opus`, `haiku`, or `inherit`)
22
+ - **skills**: **CRITICAL** - comma-separated skills to auto-load (dictates capabilities)
23
+ 5. Write the system prompt (the subagent's instructions)
24
+ </workflow>
25
+
26
+ <example>
27
+ ```markdown
28
+ ---
29
+ name: code-reviewer
30
+ description: Expert code reviewer. Use proactively after code changes to review for quality, security, and best practices.
31
+ tools: Read, Grep, Glob, Bash
32
+ model: sonnet
33
+ skills: code-review-patterns
34
+ ---
35
+
36
+ <role>
37
+ You are a senior code reviewer focused on quality, security, and best practices.
38
+ </role>
39
+
40
+ <focus_areas>
41
+ - Code quality and maintainability
42
+ - Security vulnerabilities
43
+ - Performance issues
44
+ - Best practices adherence
45
+ </focus_areas>
46
+
47
+ <output_format>
48
+ Provide specific, actionable feedback with file:line references.
49
+ </output_format>
50
+ ```
51
+ </example>
52
+ </quick_start>
53
+
54
+ <file_structure>
55
+ | Type | Location | Scope | Priority |
56
+ |------|----------|-------|----------|
57
+ | **Project** | `.claude/agents/` | Current project only | Highest |
58
+ | **User** | `~/.claude/agents/` | All projects | Lower |
59
+ | **Plugin** | Plugin's `agents/` dir | All projects | Lowest |
60
+
61
+ Project-level subagents override user-level when names conflict.
62
+ </file_structure>
63
+
64
+ <configuration>
65
+ <field name="name">
66
+ - Lowercase letters and hyphens only
67
+ - Must be unique
68
+ </field>
69
+
70
+ <field name="description">
71
+ - Natural language description of purpose
72
+ - Include when Claude should invoke this subagent
73
+ - Used for automatic subagent selection
74
+ </field>
75
+
76
+ <field name="tools">
77
+ - Comma-separated list: `Read, Write, Edit, Bash, Grep`
78
+ - If omitted: inherits all tools from main thread
79
+ - Use `/agents` interface to see all available tools
80
+ </field>
81
+
82
+ <field name="model">
83
+ - `sonnet`, `opus`, `haiku`, or `inherit`
84
+ - `inherit`: uses same model as main conversation
85
+ - If omitted: defaults to configured subagent model (usually sonnet)
86
+ </field>
87
+
88
+ <field name="skills" critical="true">
89
+ **CRITICAL FOR AGENT CAPABILITIES**
90
+ - Comma-separated list of skill names to auto-load: `skill1, skill2`
91
+ - Skills are loaded into subagent's context automatically at start
92
+ - **Dictates what domain expertise the agent has access to**
93
+ - Without skills, agent operates with no specialized knowledge
94
+ - Example: `skills: research-tools, discovery-mode`
95
+ </field>
96
+
97
+ <field name="permissionMode">
98
+ - Controls how subagent handles permission requests
99
+ - Values: `default`, `acceptEdits`, `bypassPermissions`, `plan`, `ignore`
100
+ - If omitted: uses `default` permission handling
101
+ </field>
102
+ </configuration>
103
+
104
+ <execution_model>
105
+ <critical_constraint>
106
+ **Subagents are black boxes that cannot interact with users.**
107
+
108
+ Subagents run in isolated contexts and return their final output to the main conversation. They:
109
+ - ✅ Can use tools like Read, Write, Edit, Bash, Grep, Glob
110
+ - ✅ Can access MCP servers and other non-interactive tools
111
+ - ❌ **Cannot use AskUserQuestion** or any tool requiring user interaction
112
+ - ❌ **Cannot present options or wait for user input**
113
+ - ❌ **User never sees subagent's intermediate steps**
114
+
115
+ The main conversation sees only the subagent's final report/output.
116
+ </critical_constraint>
117
+
118
+ <workflow_design>
119
+ **Designing workflows with subagents:**
120
+
121
+ Use **main chat** for:
122
+ - Gathering requirements from user (AskUserQuestion)
123
+ - Presenting options or decisions to user
124
+ - Any task requiring user confirmation/input
125
+ - Work where user needs visibility into progress
126
+
127
+ Use **subagents** for:
128
+ - Research tasks (API documentation lookup, code analysis)
129
+ - Code generation based on pre-defined requirements
130
+ - Analysis and reporting (security review, test coverage)
131
+ - Context-heavy operations that don't need user interaction
132
+
133
+ **Example workflow pattern:**
134
+ ```
135
+ Main Chat: Ask user for requirements (AskUserQuestion)
136
+
137
+ Subagent: Research API and create documentation (no user interaction)
138
+
139
+ Main Chat: Review research with user, confirm approach
140
+
141
+ Subagent: Generate code based on confirmed plan
142
+
143
+ Main Chat: Present results, handle testing/deployment
144
+ ```
145
+ </workflow_design>
146
+ </execution_model>
147
+
148
+ <system_prompt_guidelines>
149
+ <principle name="be_specific">
150
+ Clearly define the subagent's role, capabilities, and constraints.
151
+ </principle>
152
+
153
+ <principle name="use_pure_xml_structure">
154
+ Structure the system prompt with pure XML tags. Remove ALL markdown headings from the body.
155
+
156
+ ```markdown
157
+ ---
158
+ name: security-reviewer
159
+ description: Reviews code for security vulnerabilities
160
+ tools: Read, Grep, Glob, Bash
161
+ model: sonnet
162
+ ---
163
+
164
+ <role>
165
+ You are a senior code reviewer specializing in security.
166
+ </role>
167
+
168
+ <focus_areas>
169
+ - SQL injection vulnerabilities
170
+ - XSS attack vectors
171
+ - Authentication/authorization issues
172
+ - Sensitive data exposure
173
+ </focus_areas>
174
+
175
+ <workflow>
176
+ 1. Read the modified files
177
+ 2. Identify security risks
178
+ 3. Provide specific remediation steps
179
+ 4. Rate severity (Critical/High/Medium/Low)
180
+ </workflow>
181
+ ```
182
+ </principle>
183
+
184
+ <principle name="task_specific">
185
+ Tailor instructions to the specific task domain. Don't create generic "helper" subagents.
186
+
187
+ ❌ Bad: "You are a helpful assistant that helps with code"
188
+ ✅ Good: "You are a React component refactoring specialist. Analyze components for hooks best practices, performance anti-patterns, and accessibility issues."
189
+ </principle>
190
+ </system_prompt_guidelines>
191
+
192
+ <subagent_xml_structure>
193
+ Subagent.md files are system prompts consumed only by Claude. Like skills and slash commands, they should use pure XML structure for optimal parsing and token efficiency.
194
+
195
+ <recommended_tags>
196
+ Common tags for subagent structure:
197
+
198
+ - `<role>` - Who the subagent is and what it does
199
+ - `<constraints>` - Hard rules (NEVER/MUST/ALWAYS)
200
+ - `<focus_areas>` - What to prioritize
201
+ - `<workflow>` - Step-by-step process
202
+ - `<output_format>` - How to structure deliverables
203
+ - `<success_criteria>` - Completion criteria
204
+ - `<validation>` - How to verify work
205
+ </recommended_tags>
206
+
207
+ <intelligence_rules>
208
+ **Simple subagents** (single focused task):
209
+ - Use role + constraints + workflow minimum
210
+ - Example: code-reviewer, test-runner
211
+
212
+ **Medium subagents** (multi-step process):
213
+ - Add workflow steps, output_format, success_criteria
214
+ - Example: api-researcher, documentation-generator
215
+
216
+ **Complex subagents** (research + generation + validation):
217
+ - Add all tags as appropriate including validation, examples
218
+ - Example: mcp-api-researcher, comprehensive-auditor
219
+ </intelligence_rules>
220
+
221
+ <critical_rule>
222
+ **Remove ALL markdown headings (##, ###) from subagent body.** Use semantic XML tags instead.
223
+
224
+ Keep markdown formatting WITHIN content (bold, italic, lists, code blocks, links).
225
+
226
+ For XML structure principles and token efficiency details, see @skills/create-agent-skills/references/use-xml-tags.md - the same principles apply to subagents.
227
+ </critical_rule>
228
+ </subagent_xml_structure>
229
+
230
+ <invocation>
231
+ <automatic>
232
+ Claude automatically selects subagents based on the `description` field when it matches the current task.
233
+ </automatic>
234
+
235
+ <explicit>
236
+ You can explicitly invoke a subagent:
237
+
238
+ ```
239
+ > Use the code-reviewer subagent to check my recent changes
240
+ ```
241
+
242
+ ```
243
+ > Have the test-writer subagent create tests for the new API endpoints
244
+ ```
245
+ </explicit>
246
+ </invocation>
247
+
248
+ <management>
249
+ <using_agents_command>
250
+ Run `/agents` for an interactive interface to:
251
+ - View all available subagents
252
+ - Create new subagents
253
+ - Edit existing subagents
254
+ - Delete custom subagents
255
+ </using_agents_command>
256
+
257
+ <manual_editing>
258
+ You can also edit subagent files directly:
259
+ - Project: `.claude/agents/subagent-name.md`
260
+ - User: `~/.claude/agents/subagent-name.md`
261
+ </manual_editing>
262
+ </management>
263
+
264
+ <reference>
265
+ **Core references**:
266
+
267
+ **Subagent usage and configuration**: [references/subagents.md](references/subagents.md)
268
+ - File format and configuration
269
+ - Model selection (Sonnet 4.5 + Haiku 4.5 orchestration)
270
+ - Tool security and least privilege
271
+ - Prompt caching optimization
272
+ - Complete examples
273
+
274
+ **Writing effective prompts**: [references/writing-subagent-prompts.md](references/writing-subagent-prompts.md)
275
+ - Core principles and XML structure
276
+ - Description field optimization for routing
277
+ - Extended thinking for complex reasoning
278
+ - Security constraints and strong modal verbs
279
+ - Success criteria definition
280
+
281
+ **Advanced topics**:
282
+
283
+ **Evaluation and testing**: [references/evaluation-and-testing.md](references/evaluation-and-testing.md)
284
+ - Evaluation metrics (task completion, tool correctness, robustness)
285
+ - Testing strategies (offline, simulation, online monitoring)
286
+ - Evaluation-driven development
287
+ - G-Eval for custom criteria
288
+
289
+ **Error handling and recovery**: [references/error-handling-and-recovery.md](references/error-handling-and-recovery.md)
290
+ - Common failure modes and causes
291
+ - Recovery strategies (graceful degradation, retry, circuit breakers)
292
+ - Structured communication and observability
293
+ - Anti-patterns to avoid
294
+
295
+ **Context management**: [references/context-management.md](references/context-management.md)
296
+ - Memory architecture (STM, LTM, working memory)
297
+ - Context strategies (summarization, sliding window, scratchpads)
298
+ - Managing long-running tasks
299
+ - Prompt caching interaction
300
+
301
+ **Orchestration patterns**: [references/orchestration-patterns.md](references/orchestration-patterns.md)
302
+ - Sequential, parallel, hierarchical, coordinator patterns
303
+ - Sonnet + Haiku orchestration for cost/performance
304
+ - Multi-agent coordination
305
+ - Pattern selection guidance
306
+
307
+ **Debugging and troubleshooting**: [references/debugging-agents.md](references/debugging-agents.md)
308
+ - Logging, tracing, and correlation IDs
309
+ - Common failure types (hallucinations, format errors, tool misuse)
310
+ - Diagnostic procedures
311
+ - Continuous monitoring
312
+ </reference>
313
+
314
+ <success_criteria>
315
+ A well-configured subagent has:
316
+
317
+ - Valid YAML frontmatter (name matches file, description includes triggers)
318
+ - **Skills field specified** - auto-loads domain expertise critical for agent capabilities
319
+ - Clear role definition in system prompt
320
+ - Appropriate tool restrictions (least privilege)
321
+ - XML-structured system prompt with role, approach, and constraints
322
+ - Description field optimized for automatic routing
323
+ - Successfully tested on representative tasks
324
+ - Model selection appropriate for task complexity (Sonnet for reasoning, Haiku for simple tasks)
325
+ </success_criteria>