agileflow 3.2.1 → 3.4.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 (134) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +6 -6
  3. package/lib/feature-flags.js +32 -4
  4. package/lib/skill-loader.js +0 -1
  5. package/package.json +1 -1
  6. package/scripts/agileflow-statusline.sh +81 -0
  7. package/scripts/babysit-clear-restore.js +154 -0
  8. package/scripts/claude-tmux.sh +120 -24
  9. package/scripts/claude-watchdog.sh +225 -0
  10. package/scripts/generators/agent-registry.js +14 -1
  11. package/scripts/generators/inject-babysit.js +22 -9
  12. package/scripts/generators/inject-help.js +19 -9
  13. package/scripts/lib/README-portable-tasks.md +424 -0
  14. package/scripts/lib/audit-cleanup.js +250 -0
  15. package/scripts/lib/audit-registry.js +248 -0
  16. package/scripts/lib/configure-detect.js +20 -0
  17. package/scripts/lib/feature-catalog.js +13 -2
  18. package/scripts/lib/gate-enforcer.js +295 -0
  19. package/scripts/lib/model-profiles.js +98 -0
  20. package/scripts/lib/signal-detectors.js +1 -1
  21. package/scripts/lib/skill-catalog.js +557 -0
  22. package/scripts/lib/skill-recommender.js +311 -0
  23. package/scripts/lib/tdd-phase-manager.js +455 -0
  24. package/scripts/lib/team-events.js +76 -8
  25. package/scripts/lib/tmux-group-colors.js +113 -0
  26. package/scripts/messaging-bridge.js +209 -1
  27. package/scripts/spawn-audit-sessions.js +549 -0
  28. package/scripts/team-manager.js +37 -16
  29. package/scripts/tmux-close-windows.sh +180 -0
  30. package/scripts/tmux-restore-window.sh +67 -0
  31. package/scripts/tmux-save-closed-window.sh +35 -0
  32. package/src/core/agents/ads-audit-budget.md +181 -0
  33. package/src/core/agents/ads-audit-compliance.md +169 -0
  34. package/src/core/agents/ads-audit-creative.md +164 -0
  35. package/src/core/agents/ads-audit-google.md +226 -0
  36. package/src/core/agents/ads-audit-meta.md +183 -0
  37. package/src/core/agents/ads-audit-tracking.md +197 -0
  38. package/src/core/agents/ads-consensus.md +322 -0
  39. package/src/core/agents/brainstorm-analyzer-features.md +169 -0
  40. package/src/core/agents/brainstorm-analyzer-growth.md +161 -0
  41. package/src/core/agents/brainstorm-analyzer-integration.md +172 -0
  42. package/src/core/agents/brainstorm-analyzer-market.md +147 -0
  43. package/src/core/agents/brainstorm-analyzer-ux.md +167 -0
  44. package/src/core/agents/brainstorm-consensus.md +237 -0
  45. package/src/core/agents/completeness-analyzer-api.md +190 -0
  46. package/src/core/agents/completeness-analyzer-conditional.md +201 -0
  47. package/src/core/agents/completeness-analyzer-handlers.md +159 -0
  48. package/src/core/agents/completeness-analyzer-imports.md +159 -0
  49. package/src/core/agents/completeness-analyzer-routes.md +182 -0
  50. package/src/core/agents/completeness-analyzer-state.md +188 -0
  51. package/src/core/agents/completeness-analyzer-stubs.md +198 -0
  52. package/src/core/agents/completeness-consensus.md +286 -0
  53. package/src/core/agents/perf-consensus.md +2 -2
  54. package/src/core/agents/security-consensus.md +2 -2
  55. package/src/core/agents/seo-analyzer-content.md +167 -0
  56. package/src/core/agents/seo-analyzer-images.md +187 -0
  57. package/src/core/agents/seo-analyzer-performance.md +206 -0
  58. package/src/core/agents/seo-analyzer-schema.md +176 -0
  59. package/src/core/agents/seo-analyzer-sitemap.md +172 -0
  60. package/src/core/agents/seo-analyzer-technical.md +144 -0
  61. package/src/core/agents/seo-consensus.md +289 -0
  62. package/src/core/agents/test-consensus.md +2 -2
  63. package/src/core/commands/ads/audit.md +375 -0
  64. package/src/core/commands/ads/budget.md +97 -0
  65. package/src/core/commands/ads/competitor.md +112 -0
  66. package/src/core/commands/ads/creative.md +85 -0
  67. package/src/core/commands/ads/google.md +112 -0
  68. package/src/core/commands/ads/landing.md +119 -0
  69. package/src/core/commands/ads/linkedin.md +112 -0
  70. package/src/core/commands/ads/meta.md +91 -0
  71. package/src/core/commands/ads/microsoft.md +115 -0
  72. package/src/core/commands/ads/plan.md +321 -0
  73. package/src/core/commands/ads/tiktok.md +129 -0
  74. package/src/core/commands/ads/youtube.md +124 -0
  75. package/src/core/commands/ads.md +128 -0
  76. package/src/core/commands/babysit.md +250 -1344
  77. package/src/core/commands/code/completeness.md +466 -0
  78. package/src/core/commands/{audit → code}/legal.md +26 -16
  79. package/src/core/commands/{audit → code}/logic.md +27 -16
  80. package/src/core/commands/{audit → code}/performance.md +30 -20
  81. package/src/core/commands/{audit → code}/security.md +32 -19
  82. package/src/core/commands/{audit → code}/test.md +30 -20
  83. package/src/core/commands/{discovery → ideate}/brief.md +12 -12
  84. package/src/core/commands/{discovery/new.md → ideate/discover.md} +13 -13
  85. package/src/core/commands/ideate/features.md +435 -0
  86. package/src/core/commands/seo/audit.md +373 -0
  87. package/src/core/commands/seo/competitor.md +174 -0
  88. package/src/core/commands/seo/content.md +107 -0
  89. package/src/core/commands/seo/geo.md +229 -0
  90. package/src/core/commands/seo/hreflang.md +140 -0
  91. package/src/core/commands/seo/images.md +96 -0
  92. package/src/core/commands/seo/page.md +198 -0
  93. package/src/core/commands/seo/plan.md +163 -0
  94. package/src/core/commands/seo/programmatic.md +131 -0
  95. package/src/core/commands/seo/references/cwv-thresholds.md +64 -0
  96. package/src/core/commands/seo/references/eeat-framework.md +110 -0
  97. package/src/core/commands/seo/references/quality-gates.md +91 -0
  98. package/src/core/commands/seo/references/schema-types.md +102 -0
  99. package/src/core/commands/seo/schema.md +183 -0
  100. package/src/core/commands/seo/sitemap.md +97 -0
  101. package/src/core/commands/seo/technical.md +100 -0
  102. package/src/core/commands/seo.md +107 -0
  103. package/src/core/commands/skill/list.md +68 -212
  104. package/src/core/commands/skill/recommend.md +216 -0
  105. package/src/core/commands/tdd-next.md +238 -0
  106. package/src/core/commands/tdd.md +210 -0
  107. package/src/core/experts/_core-expertise.yaml +105 -0
  108. package/src/core/experts/analytics/expertise.yaml +5 -99
  109. package/src/core/experts/codebase-query/expertise.yaml +3 -72
  110. package/src/core/experts/compliance/expertise.yaml +6 -72
  111. package/src/core/experts/database/expertise.yaml +9 -52
  112. package/src/core/experts/documentation/expertise.yaml +7 -140
  113. package/src/core/experts/integrations/expertise.yaml +7 -127
  114. package/src/core/experts/mentor/expertise.yaml +8 -35
  115. package/src/core/experts/monitoring/expertise.yaml +7 -49
  116. package/src/core/experts/performance/expertise.yaml +1 -26
  117. package/src/core/experts/security/expertise.yaml +9 -34
  118. package/src/core/experts/ui/expertise.yaml +6 -36
  119. package/src/core/knowledge/ads/ad-audit-checklist-scoring.md +424 -0
  120. package/src/core/knowledge/ads/ad-optimization-logic.md +590 -0
  121. package/src/core/knowledge/ads/ad-technical-specifications.md +385 -0
  122. package/src/core/knowledge/ads/definitive-advertising-reference-2026.md +506 -0
  123. package/src/core/knowledge/ads/paid-advertising-research-2026.md +445 -0
  124. package/src/core/templates/agileflow-metadata.json +15 -1
  125. package/tools/cli/installers/ide/_base-ide.js +42 -5
  126. package/tools/cli/installers/ide/claude-code.js +13 -4
  127. package/tools/cli/lib/content-injector.js +160 -12
  128. package/tools/cli/lib/docs-setup.js +1 -1
  129. package/src/core/commands/skill/create.md +0 -698
  130. package/src/core/commands/skill/delete.md +0 -316
  131. package/src/core/commands/skill/edit.md +0 -359
  132. package/src/core/commands/skill/test.md +0 -394
  133. package/src/core/commands/skill/upgrade.md +0 -552
  134. package/src/core/templates/skill-template.md +0 -117
@@ -0,0 +1,435 @@
1
+ ---
2
+ description: Multi-agent feature brainstorming audit - analyzes your app and suggests new features, UX improvements, integrations, and growth opportunities
3
+ argument-hint: "[file|directory] [DEPTH=quick|deep] [FOCUS=features|ux|market|growth|integration|all]"
4
+ compact_context:
5
+ priority: high
6
+ preserve_rules:
7
+ - "ACTIVE COMMAND: /agileflow:ideate:features - Multi-agent feature brainstorming audit"
8
+ - "CRITICAL: Deploy analyzers IN PARALLEL in ONE message with multiple Task calls"
9
+ - "CRITICAL: Wait for all results before running consensus (use TaskOutput with block=true)"
10
+ - "CRITICAL: Value scale: HIGH_VALUE > MEDIUM_VALUE > NICE_TO_HAVE > SPECULATIVE"
11
+ - "CRITICAL: Confidence scoring: CONFIRMED (2+ agree), LIKELY (1 with evidence), SPECULATIVE (1 weak)"
12
+ - "MUST parse arguments: TARGET (file/dir), DEPTH (quick/deep), FOCUS (features|ux|market|growth|integration|all)"
13
+ - "Pass consensus all analyzer outputs, let it synthesize the final report"
14
+ state_fields:
15
+ - target_path
16
+ - depth
17
+ - focus_areas
18
+ - analyzers_deployed
19
+ - findings_collected
20
+ ---
21
+
22
+ # /agileflow:ideate:features
23
+
24
+ Deploy multiple specialized brainstorm analyzers in parallel to find missing features, UX improvements, market-standard patterns, growth opportunities, and integration gaps, then synthesize results through consensus into a prioritized Feature Brainstorm Report.
25
+
26
+ **Key difference from `/ideate:new`**: Ideation finds technical improvements to existing code (refactoring, security fixes, performance). Brainstorm audit finds **new product features** the app should have — what to build, not what to fix.
27
+
28
+ ---
29
+
30
+ ## Quick Reference
31
+
32
+ ```
33
+ /agileflow:ideate:features app/ # Analyze app (quick, core 3 analyzers)
34
+ /agileflow:ideate:features . DEPTH=deep # Deep analysis - all 5 analyzers
35
+ /agileflow:ideate:features src/ FOCUS=features,ux # Focus on feature gaps and UX
36
+ /agileflow:ideate:features . DEPTH=deep FOCUS=all # Comprehensive brainstorm
37
+ /agileflow:ideate:features components/ FOCUS=ux # UX-only audit of components
38
+ ```
39
+
40
+ ---
41
+
42
+ ## How It Works
43
+
44
+ ```
45
+ ┌─────────────────────────────────────────────────────────────┐
46
+ │ /agileflow:ideate:features │
47
+ │ │
48
+ │ 1. Parse arguments (target, depth, focus) │
49
+ │ 2. Deploy brainstorm analyzers IN PARALLEL │
50
+ │ 3. Collect all feature suggestions │
51
+ │ 4. Run consensus coordinator to deduplicate & prioritize │
52
+ │ 5. Generate actionable Feature Brainstorm Report │
53
+ └─────────────────────────────────────────────────────────────┘
54
+
55
+ ┌──────────┐ ┌────────┐ ┌────────┐
56
+ │ Features │ │ UX │ │ Market │
57
+ └────┬─────┘ └───┬────┘ └───┬────┘
58
+ │ │ │
59
+ ┌────┴───┐ ┌─────┴──────────┘ (deep only)
60
+ │ Growth │ │Integration│
61
+ └────┬───┘ └─────┬─────┘
62
+ │ │
63
+ └─────┬─────┘
64
+
65
+ ┌──────────────────────┐
66
+ │ Consensus Coordinator │
67
+ │ (deduplicates, votes,│
68
+ │ prioritizes report) │
69
+ └──────────────────────┘
70
+ ```
71
+
72
+ ---
73
+
74
+ ## Arguments
75
+
76
+ | Argument | Values | Default | Description |
77
+ |----------|--------|---------|-------------|
78
+ | TARGET | file/directory | `.` | What to analyze |
79
+ | DEPTH | quick, deep | quick | quick = core 3 analyzers, deep = all 5 |
80
+ | FOCUS | features,ux,market,growth,integration,all | all | Which analyzers to deploy |
81
+
82
+ ---
83
+
84
+ ## Value Scale (Feature Priority)
85
+
86
+ | Value | Definition | Example |
87
+ |-------|-----------|---------|
88
+ | **HIGH_VALUE** | Users actively need this or will leave without it | Missing search on a list of 100+ items |
89
+ | **MEDIUM_VALUE** | Improves the experience significantly | Export to CSV for data portability |
90
+ | **NICE_TO_HAVE** | Polish that delights users | Dark mode, keyboard shortcuts |
91
+ | **SPECULATIVE** | Might be useful, needs validation | AI-powered suggestions |
92
+
93
+ ---
94
+
95
+ ## Step-by-Step Process
96
+
97
+ ### STEP 1: Parse Arguments
98
+
99
+ ```
100
+ TARGET = first argument or current directory
101
+ DEPTH = quick (default) or deep
102
+ FOCUS = all (default) or comma-separated list
103
+ ```
104
+
105
+ **Analyzer Selection**:
106
+
107
+ | Condition | Analyzers Deployed |
108
+ |-----------|-------------------|
109
+ | `DEPTH=quick` + `FOCUS=all` | features, ux, market (core 3) |
110
+ | `DEPTH=deep` + `FOCUS=all` | All 5 analyzers |
111
+ | `FOCUS=features` | brainstorm-analyzer-features only |
112
+ | `FOCUS=ux` | brainstorm-analyzer-ux only |
113
+ | `FOCUS=market` | brainstorm-analyzer-market only |
114
+ | `FOCUS=growth` | brainstorm-analyzer-growth only |
115
+ | `FOCUS=integration` | brainstorm-analyzer-integration only |
116
+ | `FOCUS=features,ux` | Comma-separated: deploy specified analyzers |
117
+
118
+ **DEPTH behavior**:
119
+ - `quick` (default): Deploy core 3 analyzers (features, ux, market). Focus on HIGH_VALUE and MEDIUM_VALUE ideas only.
120
+ - `deep`: Deploy all 5 analyzers. Include NICE_TO_HAVE and SPECULATIVE ideas.
121
+
122
+ ### STEP 2: Deploy Analyzers in Parallel
123
+
124
+ **CRITICAL**: Deploy ALL selected analyzers in a SINGLE message with multiple Task calls.
125
+
126
+ **Prompt template for each analyzer**:
127
+
128
+ ```
129
+ TASK: Analyze the following app for {BRAINSTORM_DOMAIN} opportunities.
130
+
131
+ TARGET: {file_path or directory}
132
+ DEPTH: {quick|deep}
133
+
134
+ {For quick depth}: Focus on HIGH_VALUE and MEDIUM_VALUE features only. Skip NICE_TO_HAVE and SPECULATIVE.
135
+ {For deep depth}: Be comprehensive. Include all value levels.
136
+
137
+ Read the target files to understand what the app does, then apply your analysis methodology to find missing features and improvement opportunities.
138
+
139
+ OUTPUT your findings in your standard format (FINDING-N with location, category, value, effort, description, user impact, implementation hint).
140
+
141
+ If no opportunities found, output: "No {BRAINSTORM_DOMAIN} opportunities found in {TARGET}"
142
+ ```
143
+
144
+ **Example deployment (DEPTH=quick, FOCUS=all - deploys core 3)**:
145
+
146
+ ```xml
147
+ <invoke name="Task">
148
+ <parameter name="description">Feature gap analysis</parameter>
149
+ <parameter name="prompt">TASK: Analyze the following app for MISSING FEATURES AND INCOMPLETE WORKFLOWS.
150
+ TARGET: {target}
151
+ DEPTH: quick
152
+ Focus on HIGH_VALUE and MEDIUM_VALUE features only...
153
+ Read the target files to understand what the app does, its routes, components, models, and APIs. Then identify missing CRUD operations, half-built features, absent common patterns (search, pagination, filters), dead-end workflows, missing data features (export/import), and absent configuration options.
154
+ OUTPUT findings in your standard FINDING-N format.</parameter>
155
+ <parameter name="subagent_type">brainstorm-analyzer-features</parameter>
156
+ <parameter name="run_in_background">true</parameter>
157
+ </invoke>
158
+
159
+ <invoke name="Task">
160
+ <parameter name="description">UX improvement analysis</parameter>
161
+ <parameter name="prompt">TASK: Analyze the following app for UX IMPROVEMENT OPPORTUNITIES.
162
+ TARGET: {target}
163
+ DEPTH: quick
164
+ Focus on HIGH_VALUE and MEDIUM_VALUE improvements only...
165
+ Read the target UI files to understand the user experience. Then identify missing feedback states (loading, success, error), empty states, navigation gaps, accessibility issues, responsive design gaps, and missing user guidance (onboarding, tooltips, help text).
166
+ OUTPUT findings in your standard FINDING-N format.</parameter>
167
+ <parameter name="subagent_type">brainstorm-analyzer-ux</parameter>
168
+ <parameter name="run_in_background">true</parameter>
169
+ </invoke>
170
+
171
+ <invoke name="Task">
172
+ <parameter name="description">Market feature analysis</parameter>
173
+ <parameter name="prompt">TASK: Analyze the following app for MARKET-STANDARD FEATURES that are missing.
174
+ TARGET: {target}
175
+ DEPTH: quick
176
+ Focus on HIGH_VALUE and MEDIUM_VALUE features only...
177
+ Read the project files to infer the app category (SaaS, e-commerce, blog, tool, etc.). Then identify table-stakes features users expect in this category, competitive features that differentiate good apps, and potential differentiators.
178
+ OUTPUT findings in your standard FINDING-N format.</parameter>
179
+ <parameter name="subagent_type">brainstorm-analyzer-market</parameter>
180
+ <parameter name="run_in_background">true</parameter>
181
+ </invoke>
182
+ ```
183
+
184
+ **For DEPTH=deep, also deploy**:
185
+
186
+ ```xml
187
+ <invoke name="Task">
188
+ <parameter name="description">Growth feature analysis</parameter>
189
+ <parameter name="prompt">TASK: Analyze the following app for GROWTH AND ENGAGEMENT features that are missing.
190
+ TARGET: {target}
191
+ DEPTH: deep
192
+ Be comprehensive - include all value levels...
193
+ Read the codebase to map the user lifecycle (acquisition, activation, retention, revenue, referral). Then identify missing onboarding flows, notification systems, sharing mechanics, personalization features, retention hooks, and user management features.
194
+ OUTPUT findings in your standard FINDING-N format.</parameter>
195
+ <parameter name="subagent_type">brainstorm-analyzer-growth</parameter>
196
+ <parameter name="run_in_background">true</parameter>
197
+ </invoke>
198
+
199
+ <invoke name="Task">
200
+ <parameter name="description">Integration opportunity analysis</parameter>
201
+ <parameter name="prompt">TASK: Analyze the following app for MISSING INTEGRATIONS AND API EXTENSIBILITY.
202
+ TARGET: {target}
203
+ DEPTH: deep
204
+ Be comprehensive - include all value levels...
205
+ Check package.json and code for existing integrations. Then identify missing auth providers, service integrations (email, storage, analytics), data portability (import/export), API extensibility (webhooks, public API), payment integrations, and communication channels (Slack, Discord).
206
+ OUTPUT findings in your standard FINDING-N format.</parameter>
207
+ <parameter name="subagent_type">brainstorm-analyzer-integration</parameter>
208
+ <parameter name="run_in_background">true</parameter>
209
+ </invoke>
210
+ ```
211
+
212
+ ### STEP 3: Collect Results
213
+
214
+ Wait for all analyzers to complete:
215
+
216
+ ```xml
217
+ <invoke name="TaskOutput">
218
+ <parameter name="task_id">{features_id}</parameter>
219
+ <parameter name="block">true</parameter>
220
+ </invoke>
221
+
222
+ <invoke name="TaskOutput">
223
+ <parameter name="task_id">{ux_id}</parameter>
224
+ <parameter name="block">true</parameter>
225
+ </invoke>
226
+
227
+ <!-- ... collect all results ... -->
228
+ ```
229
+
230
+ ### STEP 4: Run Consensus Coordinator
231
+
232
+ Pass all analyzer outputs to the consensus coordinator:
233
+
234
+ ```xml
235
+ <invoke name="Task">
236
+ <parameter name="description">Brainstorm audit consensus</parameter>
237
+ <parameter name="prompt">You are the Brainstorm Consensus Coordinator.
238
+
239
+ TARGET: {target_path}
240
+ DEPTH: {depth}
241
+
242
+ ## Analyzer Outputs
243
+
244
+ ### Features Analyzer Results:
245
+ {features_output}
246
+
247
+ ### UX Analyzer Results:
248
+ {ux_output}
249
+
250
+ ### Market Analyzer Results:
251
+ {market_output}
252
+
253
+ {If deep depth, also include:}
254
+ ### Growth Analyzer Results:
255
+ {growth_output}
256
+
257
+ ### Integration Analyzer Results:
258
+ {integration_output}
259
+
260
+ ---
261
+
262
+ Follow your consensus process:
263
+ 1. Detect app category from the codebase
264
+ 2. Parse all findings into normalized structure
265
+ 3. Deduplicate overlapping suggestions from different analyzers
266
+ 4. Vote on confidence (CONFIRMED if 2+ suggest similar feature, LIKELY if 1 with evidence)
267
+ 5. Filter by app category relevance
268
+ 6. Prioritize by value/effort ratio (Quick Wins first)
269
+ 7. Generate the final Feature Brainstorm Report
270
+ 8. Save report to docs/08-project/brainstorm-audits/brainstorm-audit-{YYYYMMDD}.md
271
+ </parameter>
272
+ <parameter name="subagent_type">brainstorm-consensus</parameter>
273
+ </invoke>
274
+ ```
275
+
276
+ ### STEP 5: Present Results
277
+
278
+ After consensus completes, show the report summary and offer next steps:
279
+
280
+ ```xml
281
+ <invoke name="AskUserQuestion">
282
+ <parameter name="questions">[{
283
+ "question": "Brainstorm audit complete: [N] feature ideas ([quick_wins] quick wins, [strategic] strategic). App type: [type]. [analyzers] analyzers deployed.",
284
+ "header": "Next steps",
285
+ "multiSelect": false,
286
+ "options": [
287
+ {"label": "Create stories for top [quick_wins] quick wins (Recommended)", "description": "[top_feature_summary] - highest value, lowest effort"},
288
+ {"label": "Create epic: 'Feature improvements'", "description": "Bundle all [N] ideas into a trackable epic with stories"},
289
+ {"label": "Re-run with DEPTH=deep on [target]", "description": "Current was quick (3 analyzers) - deep adds Growth, Integration"},
290
+ {"label": "Save report and done", "description": "Report saved to docs/08-project/brainstorm-audits/"}
291
+ ]
292
+ }]</parameter>
293
+ </invoke>
294
+ ```
295
+
296
+ ---
297
+
298
+ ## Example Output
299
+
300
+ ```
301
+ 💡 Feature Brainstorm Audit: app/
302
+ ══════════════════════════════════════════════════════════════
303
+
304
+ Deploying 3 brainstorm analyzers (quick mode)...
305
+ ✓ Features Analyzer
306
+ ✓ UX Analyzer
307
+ ✓ Market Analyzer
308
+
309
+ Running consensus...
310
+ ✓ Consensus complete
311
+ ✓ App category detected: AI/ML Web Application
312
+
313
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
314
+ 📊 BRAINSTORM SUMMARY
315
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
316
+
317
+ 18 raw suggestions → 12 unique features (6 merged duplicates)
318
+ - 4 CONFIRMED (2+ analyzers agree)
319
+ - 5 LIKELY (strong single-analyzer evidence)
320
+ - 3 SPECULATIVE (filtered out)
321
+
322
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
323
+ ★ QUICK WINS (High Value, Low Effort)
324
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
325
+
326
+ 1. Add loading spinner during model inference [CONFIRMED by Features, UX]
327
+ Value: HIGH | Effort: SMALL (hours)
328
+ Users see frozen UI while model processes — think the app is broken
329
+
330
+ 2. Add drag-and-drop image upload [CONFIRMED by UX, Market]
331
+ Value: HIGH | Effort: SMALL (hours)
332
+ Users expect drag-and-drop in 2026 — file input feels dated
333
+
334
+ 3. Show confidence explanation after prediction [LIKELY - UX]
335
+ Value: MEDIUM | Effort: SMALL (hours)
336
+ Users don't understand what "73% Cancer Cell" means in context
337
+
338
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
339
+ 🎯 STRATEGIC FEATURES
340
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
341
+
342
+ 4. Batch image analysis [CONFIRMED by Features, Market]
343
+ Value: HIGH | Effort: MEDIUM (days)
344
+ Analyze multiple images at once — standard in medical imaging tools
345
+
346
+ 5. Result history with comparison [LIKELY - Features]
347
+ Value: HIGH | Effort: MEDIUM (days)
348
+ Users can't review past analyses or compare results over time
349
+
350
+ [Full report saved to docs/08-project/brainstorm-audits/brainstorm-audit-20260226.md]
351
+ ```
352
+
353
+ ---
354
+
355
+ <!-- COMPACT_SUMMARY_START -->
356
+ ## Compact Summary
357
+
358
+ **Command**: `/agileflow:ideate:features` - Multi-agent feature brainstorming audit with consensus
359
+
360
+ **Quick Usage**:
361
+ ```
362
+ /agileflow:ideate:features app/ # Quick scan (core 3 analyzers)
363
+ /agileflow:ideate:features . DEPTH=deep # All 5 analyzers
364
+ /agileflow:ideate:features src/ FOCUS=features,ux # Specific areas
365
+ ```
366
+
367
+ **What It Does**: Deploy brainstorm analyzers in parallel -> Each finds different feature opportunities -> Consensus coordinator deduplicates, filters by app type, prioritizes -> Actionable Feature Brainstorm Report
368
+
369
+ **Key Difference from /ideate:new**: Ideation finds technical improvements to existing code. Brainstorm audit finds **new product features** the app should have.
370
+
371
+ **Analyzers (Core 3 - quick mode)**:
372
+ - `brainstorm-analyzer-features` - Missing CRUD, half-built features, incomplete workflows
373
+ - `brainstorm-analyzer-ux` - Missing feedback states, accessibility, navigation, responsive design
374
+ - `brainstorm-analyzer-market` - Table-stakes features for the app's category, competitive gaps
375
+
376
+ **Analyzers (Deep mode adds 2 more)**:
377
+ - `brainstorm-analyzer-growth` - Onboarding, notifications, sharing, retention hooks
378
+ - `brainstorm-analyzer-integration` - Auth providers, third-party services, data portability, API extensibility
379
+
380
+ **Value Scale**:
381
+ - HIGH_VALUE: Users actively need this or will leave
382
+ - MEDIUM_VALUE: Significantly improves the experience
383
+ - NICE_TO_HAVE: Polish that delights users
384
+ - SPECULATIVE: Might be useful, needs validation
385
+
386
+ **Confidence Levels**:
387
+ - CONFIRMED: 2+ analyzers agree -> High priority
388
+ - LIKELY: 1 analyzer with evidence -> Medium priority
389
+ - SPECULATIVE: 1 analyzer, weak evidence -> Low priority
390
+
391
+ **Output**: `docs/08-project/brainstorm-audits/brainstorm-audit-{YYYYMMDD}.md`
392
+ <!-- COMPACT_SUMMARY_END -->
393
+
394
+ ---
395
+
396
+ ## Boundary Rules (No Overlap)
397
+
398
+ - **vs code:security**: No vulnerabilities, auth bypass, injection — those are security domain
399
+ - **vs code:logic**: No race conditions, type bugs, edge cases — those are logic domain
400
+ - **vs code:performance**: No slow queries, memory leaks, bundle size — those are performance domain
401
+ - **vs code:test**: No missing tests, weak assertions — those are test domain
402
+ - **vs code:completeness**: No dead code, empty handlers, stub code — those are completeness domain
403
+ - **vs ideate:new**: No code refactoring, pattern improvements — those are technical ideation
404
+ - **This audit asks**: What features should the app have? What would make users happier?
405
+
406
+ ---
407
+
408
+ ## Integration with Babysit
409
+
410
+ When `/agileflow:babysit` is active, suggest brainstorm audit for greenfield projects or when user says "what should I build next":
411
+
412
+ ```
413
+ 📍 No active story. Would you like to brainstorm features?
414
+
415
+ 🔍 Running quick brainstorm audit...
416
+
417
+ 💡 3 quick win feature ideas found:
418
+ 1. Add search to project list (HIGH_VALUE, SMALL effort)
419
+ 2. Add loading states to API calls (HIGH_VALUE, SMALL effort)
420
+ 3. Add CSV export for reports (MEDIUM_VALUE, SMALL effort)
421
+
422
+ Create stories for these? [Y/n]
423
+ ```
424
+
425
+ ---
426
+
427
+ ## Related Commands
428
+
429
+ - `/agileflow:ideate:new` - Technical improvement ideation (code quality, not features)
430
+ - `/agileflow:code:completeness` - Find broken/incomplete existing features
431
+ - `/agileflow:code:security` - Security vulnerability analysis
432
+ - `/agileflow:code:performance` - Performance bottleneck analysis
433
+ - `/agileflow:ideate:discover` - Full discovery workflow for a specific idea
434
+ - `/agileflow:story` - Create user stories from brainstorm findings
435
+ - `/agileflow:epic` - Create epic for grouped features