opencode-metis 0.1.0

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 (156) hide show
  1. package/README.md +140 -0
  2. package/dist/cli.cjs +63 -0
  3. package/dist/mcp-server.cjs +51 -0
  4. package/dist/plugin.cjs +4 -0
  5. package/dist/worker.cjs +224 -0
  6. package/opencode/agent/the-analyst/feature-prioritization.md +66 -0
  7. package/opencode/agent/the-analyst/market-research.md +77 -0
  8. package/opencode/agent/the-analyst/project-coordination.md +81 -0
  9. package/opencode/agent/the-analyst/requirements-analysis.md +77 -0
  10. package/opencode/agent/the-architect/compatibility-review.md +138 -0
  11. package/opencode/agent/the-architect/complexity-review.md +137 -0
  12. package/opencode/agent/the-architect/quality-review.md +67 -0
  13. package/opencode/agent/the-architect/security-review.md +127 -0
  14. package/opencode/agent/the-architect/system-architecture.md +119 -0
  15. package/opencode/agent/the-architect/system-documentation.md +83 -0
  16. package/opencode/agent/the-architect/technology-research.md +85 -0
  17. package/opencode/agent/the-chief.md +79 -0
  18. package/opencode/agent/the-designer/accessibility-implementation.md +101 -0
  19. package/opencode/agent/the-designer/design-foundation.md +74 -0
  20. package/opencode/agent/the-designer/interaction-architecture.md +75 -0
  21. package/opencode/agent/the-designer/user-research.md +70 -0
  22. package/opencode/agent/the-meta-agent.md +155 -0
  23. package/opencode/agent/the-platform-engineer/ci-cd-pipelines.md +109 -0
  24. package/opencode/agent/the-platform-engineer/containerization.md +106 -0
  25. package/opencode/agent/the-platform-engineer/data-architecture.md +81 -0
  26. package/opencode/agent/the-platform-engineer/dependency-review.md +144 -0
  27. package/opencode/agent/the-platform-engineer/deployment-automation.md +81 -0
  28. package/opencode/agent/the-platform-engineer/infrastructure-as-code.md +107 -0
  29. package/opencode/agent/the-platform-engineer/performance-tuning.md +82 -0
  30. package/opencode/agent/the-platform-engineer/pipeline-engineering.md +81 -0
  31. package/opencode/agent/the-platform-engineer/production-monitoring.md +105 -0
  32. package/opencode/agent/the-qa-engineer/exploratory-testing.md +66 -0
  33. package/opencode/agent/the-qa-engineer/performance-testing.md +81 -0
  34. package/opencode/agent/the-qa-engineer/quality-assurance.md +77 -0
  35. package/opencode/agent/the-qa-engineer/test-execution.md +66 -0
  36. package/opencode/agent/the-software-engineer/api-development.md +78 -0
  37. package/opencode/agent/the-software-engineer/component-development.md +79 -0
  38. package/opencode/agent/the-software-engineer/concurrency-review.md +141 -0
  39. package/opencode/agent/the-software-engineer/domain-modeling.md +66 -0
  40. package/opencode/agent/the-software-engineer/performance-optimization.md +113 -0
  41. package/opencode/command/analyze.md +149 -0
  42. package/opencode/command/constitution.md +178 -0
  43. package/opencode/command/debug.md +194 -0
  44. package/opencode/command/document.md +178 -0
  45. package/opencode/command/implement.md +225 -0
  46. package/opencode/command/refactor.md +207 -0
  47. package/opencode/command/review.md +229 -0
  48. package/opencode/command/simplify.md +267 -0
  49. package/opencode/command/specify.md +191 -0
  50. package/opencode/command/validate.md +224 -0
  51. package/opencode/skill/accessibility-design/SKILL.md +566 -0
  52. package/opencode/skill/accessibility-design/checklists/wcag-checklist.md +435 -0
  53. package/opencode/skill/agent-coordination/SKILL.md +224 -0
  54. package/opencode/skill/api-contract-design/SKILL.md +550 -0
  55. package/opencode/skill/api-contract-design/templates/graphql-schema-template.md +818 -0
  56. package/opencode/skill/api-contract-design/templates/rest-api-template.md +417 -0
  57. package/opencode/skill/architecture-design/SKILL.md +160 -0
  58. package/opencode/skill/architecture-design/examples/architecture-examples.md +170 -0
  59. package/opencode/skill/architecture-design/template.md +749 -0
  60. package/opencode/skill/architecture-design/validation.md +99 -0
  61. package/opencode/skill/architecture-selection/SKILL.md +522 -0
  62. package/opencode/skill/architecture-selection/examples/adrs/001-example-adr.md +71 -0
  63. package/opencode/skill/architecture-selection/examples/architecture-patterns.md +239 -0
  64. package/opencode/skill/bug-diagnosis/SKILL.md +235 -0
  65. package/opencode/skill/code-quality-review/SKILL.md +337 -0
  66. package/opencode/skill/code-quality-review/examples/anti-patterns.md +629 -0
  67. package/opencode/skill/code-quality-review/reference.md +322 -0
  68. package/opencode/skill/code-review/SKILL.md +363 -0
  69. package/opencode/skill/code-review/reference.md +450 -0
  70. package/opencode/skill/codebase-analysis/SKILL.md +139 -0
  71. package/opencode/skill/codebase-navigation/SKILL.md +227 -0
  72. package/opencode/skill/codebase-navigation/examples/exploration-patterns.md +263 -0
  73. package/opencode/skill/coding-conventions/SKILL.md +178 -0
  74. package/opencode/skill/coding-conventions/checklists/accessibility-checklist.md +176 -0
  75. package/opencode/skill/coding-conventions/checklists/performance-checklist.md +154 -0
  76. package/opencode/skill/coding-conventions/checklists/security-checklist.md +127 -0
  77. package/opencode/skill/constitution-validation/SKILL.md +315 -0
  78. package/opencode/skill/constitution-validation/examples/CONSTITUTION.md +202 -0
  79. package/opencode/skill/constitution-validation/reference/rule-patterns.md +328 -0
  80. package/opencode/skill/constitution-validation/template.md +115 -0
  81. package/opencode/skill/context-preservation/SKILL.md +445 -0
  82. package/opencode/skill/data-modeling/SKILL.md +385 -0
  83. package/opencode/skill/data-modeling/templates/schema-design-template.md +268 -0
  84. package/opencode/skill/deployment-pipeline-design/SKILL.md +579 -0
  85. package/opencode/skill/deployment-pipeline-design/templates/pipeline-template.md +633 -0
  86. package/opencode/skill/documentation-extraction/SKILL.md +259 -0
  87. package/opencode/skill/documentation-sync/SKILL.md +431 -0
  88. package/opencode/skill/domain-driven-design/SKILL.md +509 -0
  89. package/opencode/skill/domain-driven-design/examples/ddd-patterns.md +688 -0
  90. package/opencode/skill/domain-driven-design/reference.md +465 -0
  91. package/opencode/skill/drift-detection/SKILL.md +383 -0
  92. package/opencode/skill/drift-detection/reference.md +340 -0
  93. package/opencode/skill/error-recovery/SKILL.md +162 -0
  94. package/opencode/skill/error-recovery/examples/error-patterns.md +484 -0
  95. package/opencode/skill/feature-prioritization/SKILL.md +419 -0
  96. package/opencode/skill/feature-prioritization/examples/rice-template.md +139 -0
  97. package/opencode/skill/feature-prioritization/reference.md +256 -0
  98. package/opencode/skill/git-workflow/SKILL.md +453 -0
  99. package/opencode/skill/implementation-planning/SKILL.md +215 -0
  100. package/opencode/skill/implementation-planning/examples/phase-examples.md +217 -0
  101. package/opencode/skill/implementation-planning/template.md +220 -0
  102. package/opencode/skill/implementation-planning/validation.md +88 -0
  103. package/opencode/skill/implementation-verification/SKILL.md +272 -0
  104. package/opencode/skill/knowledge-capture/SKILL.md +265 -0
  105. package/opencode/skill/knowledge-capture/reference/knowledge-capture.md +402 -0
  106. package/opencode/skill/knowledge-capture/reference.md +444 -0
  107. package/opencode/skill/knowledge-capture/templates/domain-template.md +325 -0
  108. package/opencode/skill/knowledge-capture/templates/interface-template.md +255 -0
  109. package/opencode/skill/knowledge-capture/templates/pattern-template.md +144 -0
  110. package/opencode/skill/observability-design/SKILL.md +291 -0
  111. package/opencode/skill/observability-design/references/monitoring-patterns.md +461 -0
  112. package/opencode/skill/pattern-detection/SKILL.md +171 -0
  113. package/opencode/skill/pattern-detection/examples/common-patterns.md +359 -0
  114. package/opencode/skill/performance-analysis/SKILL.md +266 -0
  115. package/opencode/skill/performance-analysis/references/profiling-tools.md +499 -0
  116. package/opencode/skill/requirements-analysis/SKILL.md +139 -0
  117. package/opencode/skill/requirements-analysis/examples/good-prd.md +66 -0
  118. package/opencode/skill/requirements-analysis/template.md +177 -0
  119. package/opencode/skill/requirements-analysis/validation.md +69 -0
  120. package/opencode/skill/requirements-elicitation/SKILL.md +518 -0
  121. package/opencode/skill/requirements-elicitation/examples/interview-questions.md +226 -0
  122. package/opencode/skill/requirements-elicitation/examples/user-stories.md +414 -0
  123. package/opencode/skill/safe-refactoring/SKILL.md +312 -0
  124. package/opencode/skill/safe-refactoring/reference/code-smells.md +347 -0
  125. package/opencode/skill/security-assessment/SKILL.md +421 -0
  126. package/opencode/skill/security-assessment/checklists/security-review-checklist.md +285 -0
  127. package/opencode/skill/specification-management/SKILL.md +143 -0
  128. package/opencode/skill/specification-management/readme-template.md +32 -0
  129. package/opencode/skill/specification-management/reference.md +115 -0
  130. package/opencode/skill/specification-management/spec.py +229 -0
  131. package/opencode/skill/specification-validation/SKILL.md +397 -0
  132. package/opencode/skill/specification-validation/reference/3cs-framework.md +306 -0
  133. package/opencode/skill/specification-validation/reference/ambiguity-detection.md +132 -0
  134. package/opencode/skill/specification-validation/reference/constitution-validation.md +301 -0
  135. package/opencode/skill/specification-validation/reference/drift-detection.md +383 -0
  136. package/opencode/skill/task-delegation/SKILL.md +607 -0
  137. package/opencode/skill/task-delegation/examples/file-coordination.md +495 -0
  138. package/opencode/skill/task-delegation/examples/parallel-research.md +337 -0
  139. package/opencode/skill/task-delegation/examples/sequential-build.md +504 -0
  140. package/opencode/skill/task-delegation/reference.md +825 -0
  141. package/opencode/skill/tech-stack-detection/SKILL.md +89 -0
  142. package/opencode/skill/tech-stack-detection/references/framework-signatures.md +598 -0
  143. package/opencode/skill/technical-writing/SKILL.md +190 -0
  144. package/opencode/skill/technical-writing/templates/adr-template.md +205 -0
  145. package/opencode/skill/technical-writing/templates/system-doc-template.md +380 -0
  146. package/opencode/skill/test-design/SKILL.md +464 -0
  147. package/opencode/skill/test-design/examples/test-pyramid.md +724 -0
  148. package/opencode/skill/testing/SKILL.md +213 -0
  149. package/opencode/skill/testing/examples/test-pyramid.md +724 -0
  150. package/opencode/skill/user-insight-synthesis/SKILL.md +576 -0
  151. package/opencode/skill/user-insight-synthesis/templates/research-plan-template.md +217 -0
  152. package/opencode/skill/user-research/SKILL.md +508 -0
  153. package/opencode/skill/user-research/examples/interview-questions.md +265 -0
  154. package/opencode/skill/user-research/examples/personas.md +267 -0
  155. package/opencode/skill/vibe-security/SKILL.md +654 -0
  156. package/package.json +45 -0
@@ -0,0 +1,337 @@
1
+ # Example: Parallel Research Delegation
2
+
3
+ This example shows how to decompose a research task into parallel specialist activities.
4
+
5
+ ## Scenario
6
+
7
+ **User Request:** "Research competitive landscape for our B2B SaaS pricing strategy"
8
+
9
+ ## Task Decomposition
10
+
11
+ ```
12
+ Original Task: Research competitive landscape for B2B SaaS pricing
13
+
14
+ Activities Identified:
15
+ 1. Analyze Competitor A (Salesforce) pricing
16
+ - Expertise: Market research
17
+ - Output: Pricing analysis document
18
+ - Dependencies: None
19
+
20
+ 2. Analyze Competitor B (HubSpot) pricing
21
+ - Expertise: Market research
22
+ - Output: Pricing analysis document
23
+ - Dependencies: None
24
+
25
+ 3. Analyze Competitor C (Zendesk) pricing
26
+ - Expertise: Market research
27
+ - Output: Pricing analysis document
28
+ - Dependencies: None
29
+
30
+ 4. Synthesize competitive findings
31
+ - Expertise: Strategic analysis
32
+ - Output: Unified competitive strategy
33
+ - Dependencies: Activities 1, 2, 3
34
+
35
+ Execution Strategy: Mixed
36
+ - Parallel: Activities 1-3 (independent research)
37
+ - Sequential: Activity 4 (requires all results)
38
+
39
+ Reasoning: Each competitor analysis is independent. Synthesis must wait for all analyses to complete.
40
+ ```
41
+
42
+ ## Agent Prompts Generated
43
+
44
+ ### Agent 1: Salesforce Analysis
45
+
46
+ ```
47
+ FOCUS: Research Salesforce's B2B SaaS pricing strategy
48
+ - Identify all pricing tiers (Essentials, Professional, Enterprise, Unlimited)
49
+ - Map features to each tier
50
+ - Note promotional strategies and discounts
51
+ - Calculate price-per-user for each tier
52
+ - Identify what features drive tier upgrades
53
+
54
+ EXCLUDE:
55
+ - Don't analyze their technology stack or implementation
56
+ - Don't make pricing recommendations yet (synthesis phase)
57
+ - Don't compare to other competitors (separate analyses)
58
+ - Don't analyze Salesforce Platform (focus on CRM product)
59
+
60
+ CONTEXT: We're researching competitive landscape for our B2B SaaS pricing strategy.
61
+ - Target market: Mid-market companies (100-500 employees)
62
+ - Looking for pricing patterns and positioning insights
63
+ - Focus on transparent, public pricing only
64
+
65
+ OUTPUT: Structured analysis document including:
66
+ - Pricing Tiers Table (tier name, price, billing cycle)
67
+ - Feature Matrix by Tier (features mapped to each tier)
68
+ - Key Insights (3-5 bullet points about their strategy)
69
+ - Notable Patterns (what we can learn from their approach)
70
+ - Competitive Positioning (how they position each tier)
71
+
72
+ SUCCESS: Complete analysis with actionable data
73
+ - All publicly available tiers documented
74
+ - Features accurately mapped to tiers
75
+ - Insights are specific and evidence-based
76
+ - Patterns identified are relevant to our market
77
+
78
+ TERMINATION:
79
+ - Analysis complete with all sections filled
80
+ - Information not publicly available (document what's missing)
81
+ - Maximum 2 hours of research time reached
82
+ ```
83
+
84
+ ### Agent 2: HubSpot Analysis
85
+
86
+ ```
87
+ FOCUS: Research HubSpot's B2B SaaS pricing strategy
88
+ - Identify all pricing tiers (Starter, Professional, Enterprise)
89
+ - Map features to each tier
90
+ - Note freemium offering and upgrade triggers
91
+ - Calculate price-per-contact for marketing hub
92
+ - Identify bundling strategy across products
93
+
94
+ EXCLUDE:
95
+ - Don't analyze technology implementation
96
+ - Don't make pricing recommendations yet
97
+ - Don't compare to other competitors
98
+ - Don't analyze HubSpot Academy or services pricing
99
+
100
+ CONTEXT: Competitive landscape research for B2B SaaS pricing.
101
+ - Target market: Mid-market companies (100-500 employees)
102
+ - Interest in freemium-to-paid conversion strategies
103
+ - Focus on Marketing Hub and Sales Hub pricing
104
+
105
+ OUTPUT: Structured analysis document including:
106
+ - Pricing Tiers Table
107
+ - Feature Matrix by Tier
108
+ - Freemium Analysis (what's free, what triggers upgrade)
109
+ - Key Insights (3-5 bullet points)
110
+ - Bundling Strategy (how products bundle together)
111
+ - Notable Patterns
112
+
113
+ SUCCESS: Complete analysis with freemium insights
114
+ - All tiers documented
115
+ - Freemium model understood
116
+ - Bundle pricing analyzed
117
+ - Insights are actionable
118
+
119
+ TERMINATION:
120
+ - Analysis complete
121
+ - Information unavailable
122
+ - 2 hours research time reached
123
+ ```
124
+
125
+ ### Agent 3: Zendesk Analysis
126
+
127
+ ```
128
+ FOCUS: Research Zendesk's B2B SaaS pricing strategy
129
+ - Identify all pricing tiers (Suite Team, Growth, Professional, Enterprise)
130
+ - Map features to each tier
131
+ - Note per-agent pricing model
132
+ - Analyze add-on pricing strategy
133
+ - Identify what drives customer to higher tiers
134
+
135
+ EXCLUDE:
136
+ - Don't analyze implementation details
137
+ - Don't make recommendations yet
138
+ - Don't compare to competitors
139
+ - Don't analyze Zendesk Sell (focus on Support product)
140
+
141
+ CONTEXT: Competitive research for B2B SaaS pricing strategy.
142
+ - Target market: Mid-market companies
143
+ - Interest in per-seat vs per-usage pricing models
144
+ - Focus on customer support software pricing
145
+
146
+ OUTPUT: Structured analysis including:
147
+ - Pricing Tiers Table
148
+ - Feature Matrix by Tier
149
+ - Per-Agent Economics (cost per agent at scale)
150
+ - Add-On Pricing (what extras cost money)
151
+ - Key Insights (3-5 bullet points)
152
+ - Upgrade Drivers (what makes customers move up tiers)
153
+
154
+ SUCCESS: Complete analysis with per-seat insights
155
+ - All tiers documented
156
+ - Per-agent model understood
157
+ - Add-on strategy mapped
158
+ - Insights are specific
159
+
160
+ TERMINATION:
161
+ - Analysis complete
162
+ - Information unavailable
163
+ - 2 hours research reached
164
+ ```
165
+
166
+ ### Agent 4: Synthesis (Sequential, after 1-3)
167
+
168
+ ```
169
+ FOCUS: Synthesize competitive pricing findings into unified strategy insights
170
+
171
+ EXCLUDE:
172
+ - Don't create our pricing (separate decision)
173
+ - Don't add new competitor research
174
+ - Don't analyze product features (stick to pricing patterns)
175
+
176
+ CONTEXT: We have three completed competitor analyses.
177
+ - Salesforce analysis: [Results from Agent 1]
178
+ - HubSpot analysis: [Results from Agent 2]
179
+ - Zendesk analysis: [Results from Agent 3]
180
+ - Goal: Extract patterns and strategic insights
181
+
182
+ OUTPUT: Competitive Pricing Strategy Document including:
183
+ - Cross-Competitor Patterns (themes across all three)
184
+ - Pricing Model Comparison (per-user vs per-contact vs per-usage)
185
+ - Tier Strategy Analysis (how competitors structure tiers)
186
+ - Freemium Insights (who uses it, how it works)
187
+ - Feature Differentiation (what features separate tiers)
188
+ - Positioning Opportunities (gaps or opportunities for us)
189
+ - Strategic Recommendations (3-5 actionable insights)
190
+
191
+ SUCCESS: Unified synthesis with strategic value
192
+ - Patterns identified across competitors
193
+ - Comparisons are fair and evidence-based
194
+ - Recommendations are actionable
195
+ - No contradiction between analyses
196
+
197
+ TERMINATION:
198
+ - Synthesis complete
199
+ - Conflicting data needs clarification (escalate)
200
+ - All sections filled
201
+ ```
202
+
203
+ ## Execution Flow
204
+
205
+ ### Phase 1: Launch Parallel Research (Agents 1-3)
206
+
207
+ ```
208
+ 🚀 Launching 3 parallel research agents
209
+
210
+ Agent 1: Salesforce Analysis → RUNNING
211
+ Agent 2: HubSpot Analysis → RUNNING
212
+ Agent 3: Zendesk Analysis → RUNNING
213
+
214
+ File Coordination Check:
215
+ ✅ Agent 1 OUTPUT: research/salesforce-pricing.md
216
+ ✅ Agent 2 OUTPUT: research/hubspot-pricing.md
217
+ ✅ Agent 3 OUTPUT: zendesk-pricing.md
218
+ ✅ All paths unique - No collision risk
219
+
220
+ Parallel Safety Check:
221
+ ✅ Independent tasks - No dependencies
222
+ ✅ Read-only research - No shared state
223
+ ✅ Separate validation - Each can be reviewed independently
224
+ ✅ Won't block - Different data sources
225
+
226
+ Status: ✅ SAFE FOR PARALLEL EXECUTION
227
+ ```
228
+
229
+ ### Phase 2: Await Completion
230
+
231
+ ```
232
+ ⏳ Waiting for parallel agents...
233
+
234
+ Agent 1: COMPLETE ✅ (45 minutes)
235
+ - Salesforce analysis delivered
236
+ - All sections complete
237
+ - 4 tiers documented
238
+
239
+ Agent 2: COMPLETE ✅ (52 minutes)
240
+ - HubSpot analysis delivered
241
+ - Freemium model analyzed
242
+ - 3 tiers + free tier documented
243
+
244
+ Agent 3: COMPLETE ✅ (38 minutes)
245
+ - Zendesk analysis delivered
246
+ - Per-agent model mapped
247
+ - 4 tiers + add-ons documented
248
+
249
+ All parallel agents complete. Proceeding to synthesis.
250
+ ```
251
+
252
+ ### Phase 3: Launch Synthesis (Agent 4)
253
+
254
+ ```
255
+ 🚀 Launching synthesis agent
256
+
257
+ Agent 4: Competitive Synthesis → RUNNING
258
+
259
+ Context provided:
260
+ - Salesforce results (from Agent 1)
261
+ - HubSpot results (from Agent 2)
262
+ - Zendesk results (from Agent 3)
263
+
264
+ Agent 4: COMPLETE ✅ (25 minutes)
265
+ - Cross-competitor patterns identified
266
+ - 5 strategic recommendations generated
267
+ - Positioning opportunities highlighted
268
+ ```
269
+
270
+ ## Results
271
+
272
+ ### Total Time: 52 minutes (parallel) + 25 minutes (synthesis) = 77 minutes
273
+
274
+ **Compare to sequential:** 45 + 52 + 38 + 25 = 160 minutes
275
+ **Time saved:** 83 minutes (52% faster)
276
+
277
+ ### Deliverables
278
+
279
+ ```
280
+ 📁 research/
281
+ ├── salesforce-pricing.md (Agent 1)
282
+ ├── hubspot-pricing.md (Agent 2)
283
+ ├── zendesk-pricing.md (Agent 3)
284
+ └── competitive-strategy.md (Agent 4 synthesis)
285
+ ```
286
+
287
+ ### Key Insights Generated
288
+
289
+ From the synthesis agent:
290
+
291
+ 1. **Tiering Pattern:** All three use 3-4 tier structure with similar progression (basic → professional → enterprise)
292
+
293
+ 2. **Pricing Models:** Mixed approaches
294
+ - Salesforce: Per-user, all-inclusive features
295
+ - HubSpot: Per-contact, freemium base
296
+ - Zendesk: Per-agent, add-on marketplace
297
+
298
+ 3. **Feature Gating:** Core features in all tiers, advanced analytics/automation in top tiers
299
+
300
+ 4. **Freemium:** Only HubSpot uses freemium successfully (strong upgrade triggers identified)
301
+
302
+ 5. **Opportunity:** Gap in mid-market transparent pricing - competitors hide "contact sales" behind top tier
303
+
304
+ ## Lessons Learned
305
+
306
+ ### What Worked Well
307
+
308
+ ✅ **Parallel execution:** Saved 52% time
309
+ ✅ **Independent research:** No coordination overhead
310
+ ✅ **Synthesis phase:** Unified findings effectively
311
+ ✅ **Unique file paths:** No collisions
312
+ ✅ **Explicit FOCUS/EXCLUDE:** Agents stayed on task
313
+
314
+ ### Improvements for Next Time
315
+
316
+ - Add time limits to prevent research rabbit holes
317
+ - Specify exact format (all agents used slightly different table formats)
318
+ - Request specific pricing data points (some agents missed cost-per-user calculations)
319
+ - Consider adding validation agent before synthesis (check data accuracy)
320
+
321
+ ## Reusable Template
322
+
323
+ This pattern works for any parallel research:
324
+
325
+ ```
326
+ 1. Decompose research into independent topics
327
+ 2. Create identical FOCUS/EXCLUDE templates
328
+ 3. Customize context and output paths only
329
+ 4. Launch all in parallel
330
+ 5. Synthesis agent consolidates findings
331
+ ```
332
+
333
+ **Use when:**
334
+ - Researching multiple competitors
335
+ - Analyzing multiple technologies
336
+ - Gathering multiple data sources
337
+ - Interviewing multiple stakeholders