agileflow 4.0.0-alpha.2 → 4.0.0-alpha.21

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 (372) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/content/plugins/accessibility/plugin.yaml +14 -0
  3. package/content/plugins/accessibility/skills/agileflow-accessibility/SKILL.md +392 -0
  4. package/content/plugins/accessibility/skills/agileflow-accessibility/references/aria-patterns.md +528 -0
  5. package/content/plugins/accessibility/skills/agileflow-accessibility/references/testing-checklist.md +457 -0
  6. package/content/plugins/accessibility/skills/agileflow-accessibility/references/wcag-guide.md +683 -0
  7. package/content/plugins/accessibility/skills/agileflow-accessibility/workflows/audit-page.md +310 -0
  8. package/content/plugins/accessibility/skills/agileflow-accessibility/workflows/implement-accessible-component.md +479 -0
  9. package/content/plugins/ads/agents/ads-audit-budget.md +185 -0
  10. package/content/plugins/ads/agents/ads-audit-compliance.md +171 -0
  11. package/content/plugins/ads/agents/ads-audit-creative.md +168 -0
  12. package/content/plugins/ads/agents/ads-audit-google.md +227 -0
  13. package/content/plugins/ads/agents/ads-audit-meta.md +184 -0
  14. package/content/plugins/ads/agents/ads-audit-tracking.md +205 -0
  15. package/content/plugins/ads/agents/ads-consensus.md +410 -0
  16. package/content/plugins/ads/agents/ads-generate.md +152 -0
  17. package/content/plugins/ads/agents/ads-performance-tracker.md +212 -0
  18. package/content/plugins/ads/plugin.yaml +23 -4
  19. package/content/plugins/ads/skills/agileflow-ads/SKILL.md +218 -0
  20. package/content/plugins/ads/skills/agileflow-ads/references/ad-copy-formula-guide.md +131 -0
  21. package/content/plugins/ads/skills/agileflow-ads/references/audience-targeting-guide.md +137 -0
  22. package/content/plugins/ads/skills/agileflow-ads/references/bid-strategy-guide.md +115 -0
  23. package/content/plugins/ads/skills/agileflow-ads/references/platform-benchmarks.md +100 -0
  24. package/content/plugins/ads/skills/agileflow-ads/workflows/audit.md +118 -0
  25. package/content/plugins/ads/skills/agileflow-ads/workflows/generate.md +84 -0
  26. package/content/plugins/audit/agents/a11y-analyzer-aria.md +173 -0
  27. package/content/plugins/audit/agents/a11y-analyzer-forms.md +173 -0
  28. package/content/plugins/audit/agents/a11y-analyzer-keyboard.md +183 -0
  29. package/content/plugins/audit/agents/a11y-analyzer-semantic.md +169 -0
  30. package/content/plugins/audit/agents/a11y-analyzer-visual.md +172 -0
  31. package/content/plugins/audit/agents/a11y-consensus.md +249 -0
  32. package/content/plugins/audit/agents/accessibility.md +558 -0
  33. package/content/plugins/audit/agents/api-quality-analyzer-conventions.md +156 -0
  34. package/content/plugins/audit/agents/api-quality-analyzer-docs.md +184 -0
  35. package/content/plugins/audit/agents/api-quality-analyzer-errors.md +191 -0
  36. package/content/plugins/audit/agents/api-quality-analyzer-pagination.md +179 -0
  37. package/content/plugins/audit/agents/api-quality-analyzer-versioning.md +150 -0
  38. package/content/plugins/audit/agents/api-quality-consensus.md +217 -0
  39. package/content/plugins/audit/agents/api-validator.md +191 -0
  40. package/content/plugins/audit/agents/arch-analyzer-circular.md +156 -0
  41. package/content/plugins/audit/agents/arch-analyzer-complexity.md +193 -0
  42. package/content/plugins/audit/agents/arch-analyzer-coupling.md +152 -0
  43. package/content/plugins/audit/agents/arch-analyzer-layering.md +160 -0
  44. package/content/plugins/audit/agents/arch-analyzer-patterns.md +210 -0
  45. package/content/plugins/audit/agents/arch-consensus.md +228 -0
  46. package/content/plugins/audit/agents/browser-qa.md +342 -0
  47. package/content/plugins/audit/agents/code-reviewer.md +298 -0
  48. package/content/plugins/audit/agents/completeness-analyzer-api.md +199 -0
  49. package/content/plugins/audit/agents/completeness-analyzer-conditional.md +211 -0
  50. package/content/plugins/audit/agents/completeness-analyzer-handlers.md +166 -0
  51. package/content/plugins/audit/agents/completeness-analyzer-imports.md +165 -0
  52. package/content/plugins/audit/agents/completeness-analyzer-routes.md +190 -0
  53. package/content/plugins/audit/agents/completeness-analyzer-state.md +196 -0
  54. package/content/plugins/audit/agents/completeness-analyzer-stubs.md +206 -0
  55. package/content/plugins/audit/agents/completeness-consensus.md +295 -0
  56. package/content/plugins/audit/agents/error-analyzer.md +213 -0
  57. package/content/plugins/audit/agents/flow-analyzer-authorization.md +182 -0
  58. package/content/plugins/audit/agents/flow-analyzer-discovery.md +174 -0
  59. package/content/plugins/audit/agents/flow-analyzer-errors.md +186 -0
  60. package/content/plugins/audit/agents/flow-analyzer-feedback.md +185 -0
  61. package/content/plugins/audit/agents/flow-analyzer-navigation.md +177 -0
  62. package/content/plugins/audit/agents/flow-analyzer-persistence.md +193 -0
  63. package/content/plugins/audit/agents/flow-analyzer-wiring.md +169 -0
  64. package/content/plugins/audit/agents/flow-consensus.md +237 -0
  65. package/content/plugins/audit/agents/legal-analyzer-a11y.md +114 -0
  66. package/content/plugins/audit/agents/legal-analyzer-ai.md +121 -0
  67. package/content/plugins/audit/agents/legal-analyzer-consumer.md +114 -0
  68. package/content/plugins/audit/agents/legal-analyzer-content.md +117 -0
  69. package/content/plugins/audit/agents/legal-analyzer-international.md +119 -0
  70. package/content/plugins/audit/agents/legal-analyzer-licensing.md +119 -0
  71. package/content/plugins/audit/agents/legal-analyzer-privacy.md +112 -0
  72. package/content/plugins/audit/agents/legal-analyzer-security.md +116 -0
  73. package/content/plugins/audit/agents/legal-analyzer-terms.md +115 -0
  74. package/content/plugins/audit/agents/legal-consensus.md +250 -0
  75. package/content/plugins/audit/agents/logic-analyzer-edge.md +179 -0
  76. package/content/plugins/audit/agents/logic-analyzer-flow.md +264 -0
  77. package/content/plugins/audit/agents/logic-analyzer-invariant.md +215 -0
  78. package/content/plugins/audit/agents/logic-analyzer-race.md +280 -0
  79. package/content/plugins/audit/agents/logic-analyzer-type.md +227 -0
  80. package/content/plugins/audit/agents/logic-consensus.md +259 -0
  81. package/content/plugins/audit/agents/perf-analyzer-assets.md +182 -0
  82. package/content/plugins/audit/agents/perf-analyzer-bundle.md +173 -0
  83. package/content/plugins/audit/agents/perf-analyzer-caching.md +170 -0
  84. package/content/plugins/audit/agents/perf-analyzer-compute.md +173 -0
  85. package/content/plugins/audit/agents/perf-analyzer-memory.md +193 -0
  86. package/content/plugins/audit/agents/perf-analyzer-network.md +165 -0
  87. package/content/plugins/audit/agents/perf-analyzer-queries.md +162 -0
  88. package/content/plugins/audit/agents/perf-analyzer-rendering.md +168 -0
  89. package/content/plugins/audit/agents/perf-consensus.md +287 -0
  90. package/content/plugins/audit/agents/qa.md +820 -0
  91. package/content/plugins/audit/agents/quality-analyzer-comments.md +159 -0
  92. package/content/plugins/audit/agents/quality-analyzer-duplication.md +184 -0
  93. package/content/plugins/audit/agents/quality-analyzer-naming.md +160 -0
  94. package/content/plugins/audit/agents/quality-consensus.md +241 -0
  95. package/content/plugins/audit/agents/schema-validator.md +473 -0
  96. package/content/plugins/audit/agents/security-analyzer-api.md +210 -0
  97. package/content/plugins/audit/agents/security-analyzer-auth.md +169 -0
  98. package/content/plugins/audit/agents/security-analyzer-authz.md +180 -0
  99. package/content/plugins/audit/agents/security-analyzer-deps.md +153 -0
  100. package/content/plugins/audit/agents/security-analyzer-infra.md +184 -0
  101. package/content/plugins/audit/agents/security-analyzer-injection.md +155 -0
  102. package/content/plugins/audit/agents/security-analyzer-input.md +201 -0
  103. package/content/plugins/audit/agents/security-analyzer-secrets.md +183 -0
  104. package/content/plugins/audit/agents/security-consensus.md +283 -0
  105. package/content/plugins/audit/agents/test-analyzer-assertions.md +188 -0
  106. package/content/plugins/audit/agents/test-analyzer-coverage.md +189 -0
  107. package/content/plugins/audit/agents/test-analyzer-fragility.md +193 -0
  108. package/content/plugins/audit/agents/test-analyzer-integration.md +161 -0
  109. package/content/plugins/audit/agents/test-analyzer-maintenance.md +180 -0
  110. package/content/plugins/audit/agents/test-analyzer-mocking.md +188 -0
  111. package/content/plugins/audit/agents/test-analyzer-patterns.md +196 -0
  112. package/content/plugins/audit/agents/test-analyzer-structure.md +184 -0
  113. package/content/plugins/audit/agents/test-consensus.md +301 -0
  114. package/content/plugins/audit/agents/testing.md +561 -0
  115. package/content/plugins/audit/agents/ui-validator.md +344 -0
  116. package/content/plugins/audit/plugin.yaml +186 -5
  117. package/content/plugins/audit/skills/agileflow-audit/SKILL.md +113 -0
  118. package/content/plugins/audit/skills/agileflow-audit/references/audit-depth-guide.md +151 -0
  119. package/content/plugins/audit/skills/agileflow-audit/references/dependency-risk-guide.md +139 -0
  120. package/content/plugins/audit/skills/agileflow-audit/references/owasp-top10.md +120 -0
  121. package/content/plugins/audit/skills/agileflow-audit/references/performance-budget-guide.md +143 -0
  122. package/content/plugins/audit/skills/agileflow-audit/references/wcag-criteria.md +117 -0
  123. package/content/plugins/audit/skills/agileflow-audit/workflows/run-audit.md +52 -0
  124. package/content/plugins/audit/skills/agileflow-audit/workflows/tdd.md +66 -0
  125. package/content/plugins/core/agents/adr-writer.md +521 -0
  126. package/content/plugins/core/agents/epic-planner.md +520 -0
  127. package/content/plugins/core/agents/mentor.md +709 -0
  128. package/content/plugins/core/agents/orchestrator.md +776 -0
  129. package/content/plugins/core/agents/team-coordinator.md +334 -0
  130. package/content/plugins/core/agents/team-lead.md +181 -0
  131. package/content/plugins/core/agents/workspace-orchestrator.md +146 -0
  132. package/content/plugins/core/hooks/context-loader.js +31 -4
  133. package/content/plugins/core/hooks/damage-control-bash.js +10 -2
  134. package/content/plugins/core/hooks/damage-control-edit.js +4 -1
  135. package/content/plugins/core/hooks/damage-control-patterns.yaml +1 -1
  136. package/content/plugins/core/hooks/damage-control-write.js +4 -1
  137. package/content/plugins/core/hooks/{pre-compact-state.js → post-compact-state.js} +25 -8
  138. package/content/plugins/core/hooks/preferences-injector.js +352 -0
  139. package/content/plugins/core/plugin.yaml +24 -28
  140. package/content/plugins/core/skills/agileflow-adr/SKILL.md +34 -8
  141. package/content/plugins/core/skills/agileflow-adr/references/madr-format-guide.md +86 -0
  142. package/content/plugins/core/skills/agileflow-adr/workflows/write-adr.md +57 -0
  143. package/content/plugins/core/skills/agileflow-babysit-mentor/SKILL.md +94 -27
  144. package/content/plugins/core/skills/agileflow-babysit-mentor/references/mentor-decision-guide.md +81 -0
  145. package/content/plugins/core/skills/agileflow-babysit-mentor/workflows/mentor-session.md +79 -0
  146. package/content/plugins/core/skills/agileflow-epic-planner/SKILL.md +37 -7
  147. package/content/plugins/core/skills/agileflow-epic-planner/references/epic-sizing-guide.md +81 -0
  148. package/content/plugins/core/skills/agileflow-epic-planner/workflows/plan-epic.md +55 -0
  149. package/content/plugins/core/skills/agileflow-status-updater/SKILL.md +36 -20
  150. package/content/plugins/core/skills/agileflow-status-updater/references/status-transitions.md +89 -0
  151. package/content/plugins/core/skills/agileflow-status-updater/workflows/update-status.md +56 -0
  152. package/content/plugins/core/skills/agileflow-story-writer/SKILL.md +39 -114
  153. package/content/plugins/core/skills/agileflow-story-writer/references/estimation-reference.md +36 -0
  154. package/content/plugins/core/skills/agileflow-story-writer/references/story-template.md +92 -0
  155. package/content/plugins/core/skills/agileflow-story-writer/workflows/write-story.md +138 -0
  156. package/content/plugins/council/agents/council-advocate.md +223 -0
  157. package/content/plugins/council/agents/council-analyst.md +278 -0
  158. package/content/plugins/council/agents/council-compounder.md +204 -0
  159. package/content/plugins/council/agents/council-contrarian.md +217 -0
  160. package/content/plugins/council/agents/council-moonshot.md +217 -0
  161. package/content/plugins/council/agents/council-optimist.md +185 -0
  162. package/content/plugins/council/agents/council-revenue.md +200 -0
  163. package/content/plugins/council/agents/council-technical.md +218 -0
  164. package/content/plugins/council/agents/multi-expert.md +334 -0
  165. package/content/plugins/council/plugin.yaml +23 -4
  166. package/content/plugins/council/skills/agileflow-council/SKILL.md +102 -0
  167. package/content/plugins/council/skills/agileflow-council/references/decision-log-template.md +109 -0
  168. package/content/plugins/council/skills/agileflow-council/references/perspective-guide.md +104 -0
  169. package/content/plugins/council/skills/agileflow-council/references/when-to-convene-guide.md +112 -0
  170. package/content/plugins/council/skills/agileflow-council/workflows/convene.md +73 -0
  171. package/content/plugins/council/skills/agileflow-council/workflows/multi-expert.md +75 -0
  172. package/content/plugins/database/plugin.yaml +14 -0
  173. package/content/plugins/database/skills/agileflow-database/SKILL.md +284 -0
  174. package/content/plugins/database/skills/agileflow-database/references/indexing-guide.md +313 -0
  175. package/content/plugins/database/skills/agileflow-database/references/migration-guide.md +328 -0
  176. package/content/plugins/database/skills/agileflow-database/references/schema-design-guide.md +467 -0
  177. package/content/plugins/database/skills/agileflow-database/workflows/design-schema.md +213 -0
  178. package/content/plugins/database/skills/agileflow-database/workflows/optimize-query.md +253 -0
  179. package/content/plugins/debugging/plugin.yaml +14 -0
  180. package/content/plugins/debugging/skills/agileflow-debug/SKILL.md +236 -0
  181. package/content/plugins/debugging/skills/agileflow-debug/references/common-patterns.md +350 -0
  182. package/content/plugins/debugging/skills/agileflow-debug/references/debugging-strategies.md +328 -0
  183. package/content/plugins/debugging/skills/agileflow-debug/workflows/debug-issue.md +187 -0
  184. package/content/plugins/debugging/skills/agileflow-debug/workflows/reproduce-bug.md +194 -0
  185. package/content/plugins/delivery/agents/ci.md +547 -0
  186. package/content/plugins/delivery/agents/devops.md +789 -0
  187. package/content/plugins/delivery/plugin.yaml +19 -0
  188. package/content/plugins/delivery/skills/agileflow-delivery/SKILL.md +111 -0
  189. package/content/plugins/delivery/skills/agileflow-delivery/references/changelog-format-guide.md +133 -0
  190. package/content/plugins/delivery/skills/agileflow-delivery/references/ci-pipeline-guide.md +158 -0
  191. package/content/plugins/delivery/skills/agileflow-delivery/references/pr-checklist-guide.md +133 -0
  192. package/content/plugins/delivery/skills/agileflow-delivery/references/release-checklist.md +142 -0
  193. package/content/plugins/delivery/skills/agileflow-delivery/workflows/changelog.md +72 -0
  194. package/content/plugins/delivery/skills/agileflow-delivery/workflows/deploy.md +74 -0
  195. package/content/plugins/delivery/skills/agileflow-delivery/workflows/pr.md +75 -0
  196. package/content/plugins/docs/agents/documentation.md +544 -0
  197. package/content/plugins/docs/agents/readme-updater.md +640 -0
  198. package/content/plugins/docs/plugin.yaml +19 -0
  199. package/content/plugins/docs/skills/agileflow-docs/SKILL.md +106 -0
  200. package/content/plugins/docs/skills/agileflow-docs/references/api-doc-template.md +167 -0
  201. package/content/plugins/docs/skills/agileflow-docs/references/doc-types-guide.md +141 -0
  202. package/content/plugins/docs/skills/agileflow-docs/references/readme-template.md +156 -0
  203. package/content/plugins/docs/skills/agileflow-docs/workflows/readme-sync.md +57 -0
  204. package/content/plugins/docs/skills/agileflow-docs/workflows/sync.md +64 -0
  205. package/content/plugins/engineering/agents/api.md +718 -0
  206. package/content/plugins/engineering/agents/codebase-query.md +285 -0
  207. package/content/plugins/engineering/agents/compliance.md +559 -0
  208. package/content/plugins/engineering/agents/database.md +644 -0
  209. package/content/plugins/engineering/agents/integrations.md +644 -0
  210. package/content/plugins/engineering/agents/mobile.md +552 -0
  211. package/content/plugins/engineering/agents/monitoring.md +585 -0
  212. package/content/plugins/engineering/agents/performance.md +529 -0
  213. package/content/plugins/engineering/agents/refactor.md +592 -0
  214. package/content/plugins/engineering/agents/security.md +524 -0
  215. package/content/plugins/engineering/agents/ui.md +1336 -0
  216. package/content/plugins/engineering/plugin.yaml +37 -0
  217. package/content/plugins/engineering/skills/agileflow-engineering/SKILL.md +127 -0
  218. package/content/plugins/engineering/skills/agileflow-engineering/references/code-review-guide.md +126 -0
  219. package/content/plugins/engineering/skills/agileflow-engineering/references/domain-routing-guide.md +89 -0
  220. package/content/plugins/engineering/skills/agileflow-engineering/references/refactoring-guide.md +136 -0
  221. package/content/plugins/engineering/skills/agileflow-engineering/workflows/diagnose.md +63 -0
  222. package/content/plugins/engineering/skills/agileflow-engineering/workflows/impact.md +60 -0
  223. package/content/plugins/ideation/agents/brainstorm-analyzer-features.md +179 -0
  224. package/content/plugins/ideation/agents/brainstorm-analyzer-growth.md +169 -0
  225. package/content/plugins/ideation/agents/brainstorm-analyzer-integration.md +181 -0
  226. package/content/plugins/ideation/agents/brainstorm-analyzer-market.md +150 -0
  227. package/content/plugins/ideation/agents/brainstorm-analyzer-ux.md +180 -0
  228. package/content/plugins/ideation/agents/brainstorm-consensus.md +245 -0
  229. package/content/plugins/ideation/agents/design.md +568 -0
  230. package/content/plugins/ideation/agents/product.md +582 -0
  231. package/content/plugins/ideation/plugin.yaml +31 -0
  232. package/content/plugins/ideation/skills/agileflow-ideation/SKILL.md +109 -0
  233. package/content/plugins/ideation/skills/agileflow-ideation/references/brainstorm-techniques.md +138 -0
  234. package/content/plugins/ideation/skills/agileflow-ideation/references/competitive-analysis-template.md +148 -0
  235. package/content/plugins/ideation/skills/agileflow-ideation/references/feature-prioritization-guide.md +147 -0
  236. package/content/plugins/ideation/skills/agileflow-ideation/references/user-story-patterns.md +152 -0
  237. package/content/plugins/ideation/skills/agileflow-ideation/workflows/features.md +65 -0
  238. package/content/plugins/ideation/skills/agileflow-ideation/workflows/ideate.md +54 -0
  239. package/content/plugins/migration/agents/datamigration.md +757 -0
  240. package/content/plugins/migration/plugin.yaml +17 -0
  241. package/content/plugins/migration/skills/agileflow-migration/SKILL.md +106 -0
  242. package/content/plugins/migration/skills/agileflow-migration/references/data-validation-checklist.md +154 -0
  243. package/content/plugins/migration/skills/agileflow-migration/references/migration-patterns.md +209 -0
  244. package/content/plugins/migration/skills/agileflow-migration/references/rollback-playbook.md +171 -0
  245. package/content/plugins/migration/skills/agileflow-migration/references/version-compatibility-matrix.md +155 -0
  246. package/content/plugins/migration/skills/agileflow-migration/workflows/plan.md +73 -0
  247. package/content/plugins/migration/skills/agileflow-migration/workflows/validate.md +71 -0
  248. package/content/plugins/performance/plugin.yaml +14 -0
  249. package/content/plugins/performance/skills/agileflow-performance/SKILL.md +224 -0
  250. package/content/plugins/performance/skills/agileflow-performance/references/optimization-patterns.md +554 -0
  251. package/content/plugins/performance/skills/agileflow-performance/references/profiling-guide.md +383 -0
  252. package/content/plugins/performance/skills/agileflow-performance/references/web-vitals-guide.md +360 -0
  253. package/content/plugins/performance/skills/agileflow-performance/workflows/improve-web-vitals.md +344 -0
  254. package/content/plugins/performance/skills/agileflow-performance/workflows/profile-and-fix.md +254 -0
  255. package/content/plugins/planning/agents/analytics.md +670 -0
  256. package/content/plugins/planning/agents/rlm-subcore.md +215 -0
  257. package/content/plugins/planning/plugin.yaml +19 -0
  258. package/content/plugins/planning/skills/agileflow-planning/SKILL.md +111 -0
  259. package/content/plugins/planning/skills/agileflow-planning/references/estimation-guide.md +114 -0
  260. package/content/plugins/planning/skills/agileflow-planning/references/rpi-workflow.md +119 -0
  261. package/content/plugins/planning/skills/agileflow-planning/references/sprint-planning-guide.md +145 -0
  262. package/content/plugins/planning/skills/agileflow-planning/workflows/impact.md +63 -0
  263. package/content/plugins/planning/skills/agileflow-planning/workflows/rpi.md +104 -0
  264. package/content/plugins/psychology/plugin.yaml +14 -0
  265. package/content/plugins/psychology/skills/agileflow-retention/SKILL.md +252 -0
  266. package/content/plugins/psychology/skills/agileflow-retention/references/competitor-analysis.md +240 -0
  267. package/content/plugins/psychology/skills/agileflow-retention/references/psychology-models.md +349 -0
  268. package/content/plugins/psychology/skills/agileflow-retention/references/retention-patterns.md +279 -0
  269. package/content/plugins/psychology/skills/agileflow-retention/workflows/design-retention-feature.md +287 -0
  270. package/content/plugins/psychology/skills/agileflow-retention/workflows/retention-audit.md +259 -0
  271. package/content/plugins/refactoring/plugin.yaml +14 -0
  272. package/content/plugins/refactoring/skills/agileflow-refactor/SKILL.md +235 -0
  273. package/content/plugins/refactoring/skills/agileflow-refactor/references/refactoring-patterns.md +405 -0
  274. package/content/plugins/refactoring/skills/agileflow-refactor/references/safety-checks.md +177 -0
  275. package/content/plugins/refactoring/skills/agileflow-refactor/workflows/extract-module.md +226 -0
  276. package/content/plugins/refactoring/skills/agileflow-refactor/workflows/safe-refactor.md +169 -0
  277. package/content/plugins/research/agents/research.md +503 -0
  278. package/content/plugins/research/plugin.yaml +17 -0
  279. package/content/plugins/research/skills/agileflow-research/SKILL.md +110 -0
  280. package/content/plugins/research/skills/agileflow-research/references/knowledge-decay-guide.md +121 -0
  281. package/content/plugins/research/skills/agileflow-research/references/research-prompt-guide.md +141 -0
  282. package/content/plugins/research/skills/agileflow-research/references/synthesis-template.md +154 -0
  283. package/content/plugins/research/skills/agileflow-research/workflows/analyze.md +60 -0
  284. package/content/plugins/research/skills/agileflow-research/workflows/ask.md +64 -0
  285. package/content/plugins/research/skills/agileflow-research/workflows/import.md +66 -0
  286. package/content/plugins/research/skills/agileflow-research/workflows/synthesize.md +66 -0
  287. package/content/plugins/reviews/plugin.yaml +14 -0
  288. package/content/plugins/reviews/skills/agileflow-pr-reviewer/SKILL.md +241 -0
  289. package/content/plugins/reviews/skills/agileflow-pr-reviewer/references/review-checklist.md +200 -0
  290. package/content/plugins/reviews/skills/agileflow-pr-reviewer/references/security-patterns.md +328 -0
  291. package/content/plugins/reviews/skills/agileflow-pr-reviewer/workflows/review-pr.md +153 -0
  292. package/content/plugins/reviews/skills/agileflow-pr-reviewer/workflows/security-review.md +177 -0
  293. package/content/plugins/seo/agents/seo-analyzer-content.md +169 -0
  294. package/content/plugins/seo/agents/seo-analyzer-images.md +198 -0
  295. package/content/plugins/seo/agents/seo-analyzer-performance.md +217 -0
  296. package/content/plugins/seo/agents/seo-analyzer-schema.md +184 -0
  297. package/content/plugins/seo/agents/seo-analyzer-sitemap.md +177 -0
  298. package/content/plugins/seo/agents/seo-analyzer-technical.md +151 -0
  299. package/content/plugins/seo/agents/seo-consensus.md +304 -0
  300. package/content/plugins/seo/plugin.yaml +19 -4
  301. package/content/plugins/seo/skills/agileflow-seo/SKILL.md +188 -0
  302. package/content/plugins/seo/skills/agileflow-seo/references/cwv-thresholds.md +110 -0
  303. package/content/plugins/seo/skills/agileflow-seo/references/eeat-framework.md +144 -0
  304. package/content/plugins/seo/skills/agileflow-seo/references/keyword-research-guide.md +125 -0
  305. package/content/plugins/seo/skills/agileflow-seo/references/schema-types.md +139 -0
  306. package/content/plugins/seo/skills/agileflow-seo/references/technical-seo-checklist.md +139 -0
  307. package/content/plugins/seo/skills/agileflow-seo/workflows/audit.md +98 -0
  308. package/content/plugins/seo/skills/agileflow-seo/workflows/page.md +118 -0
  309. package/content/plugins/testing/plugin.yaml +16 -0
  310. package/content/plugins/testing/skills/agileflow-test-writer/SKILL.md +260 -0
  311. package/content/plugins/testing/skills/agileflow-test-writer/references/coverage-targets.md +239 -0
  312. package/content/plugins/testing/skills/agileflow-test-writer/references/test-patterns.md +420 -0
  313. package/content/plugins/testing/skills/agileflow-test-writer/workflows/add-coverage.md +154 -0
  314. package/content/plugins/testing/skills/agileflow-test-writer/workflows/write-tests-from-ac.md +225 -0
  315. package/package.json +2 -2
  316. package/src/cli/commands/doctor.js +818 -30
  317. package/src/cli/commands/hook.js +17 -14
  318. package/src/cli/commands/launch.js +1454 -0
  319. package/src/cli/commands/learn.js +149 -0
  320. package/src/cli/commands/plugins.js +113 -0
  321. package/src/cli/commands/setup.js +455 -110
  322. package/src/cli/commands/skills.js +324 -0
  323. package/src/cli/commands/status.js +8 -10
  324. package/src/cli/commands/update.js +76 -15
  325. package/src/cli/index.js +90 -26
  326. package/src/cli/wizard/babysit-mode-picker.js +192 -0
  327. package/src/cli/wizard/behaviors-picker.js +208 -54
  328. package/src/cli/wizard/ide-picker.js +40 -28
  329. package/src/cli/wizard/install-scope-picker.js +57 -0
  330. package/src/cli/wizard/launch-alias-picker.js +50 -0
  331. package/src/cli/wizard/launch-cli-picker.js +129 -0
  332. package/src/cli/wizard/launch-tmux-picker.js +133 -0
  333. package/src/cli/wizard/learnings-picker.js +40 -0
  334. package/src/cli/wizard/plugin-picker.js +47 -16
  335. package/src/lib/brand.js +116 -0
  336. package/src/lib/errors.js +120 -0
  337. package/src/lib/path-check.js +39 -0
  338. package/src/runtime/config/defaults.js +22 -17
  339. package/src/runtime/config/loader.js +77 -8
  340. package/src/runtime/config/schema.json +43 -16
  341. package/src/runtime/config/writer.js +3 -1
  342. package/src/runtime/ide/babysit-skill.js +202 -0
  343. package/src/runtime/ide/capabilities.js +84 -29
  344. package/src/runtime/ide/claude-code-content.js +177 -0
  345. package/src/runtime/ide/claude-code-settings.js +67 -29
  346. package/src/runtime/ide/claude-code-skills.js +47 -32
  347. package/src/runtime/ide/codex-config.js +295 -0
  348. package/src/runtime/installer/install.js +252 -24
  349. package/src/runtime/launch/alias-installer.js +191 -0
  350. package/src/runtime/launch/cli-resume.js +244 -0
  351. package/src/runtime/launch/closed-windows.js +338 -0
  352. package/src/runtime/launch/defaults.js +66 -0
  353. package/src/runtime/launch/detect-clis.js +69 -0
  354. package/src/runtime/launch/doctor.js +464 -0
  355. package/src/runtime/launch/exec-wrapper.js +114 -0
  356. package/src/runtime/launch/parallel-session.js +247 -0
  357. package/src/runtime/launch/prefs.js +211 -0
  358. package/src/runtime/launch/project-prefs.js +234 -0
  359. package/src/runtime/launch/resolve-cli.js +56 -0
  360. package/src/runtime/launch/restore.js +152 -0
  361. package/src/runtime/launch/schema.json +75 -0
  362. package/src/runtime/launch/session-lifecycle.js +313 -0
  363. package/src/runtime/launch/session-registry.js +401 -0
  364. package/src/runtime/launch/spawn.js +103 -0
  365. package/src/runtime/launch/tabs.js +350 -0
  366. package/src/runtime/launch/tmux.js +764 -0
  367. package/src/runtime/launch/worktree.js +260 -0
  368. package/src/runtime/plugins/registry.js +16 -11
  369. package/src/runtime/plugins/validator.js +57 -43
  370. package/src/runtime/skills/learnings.js +308 -0
  371. package/content/plugins/core/hooks/babysit-mentor-injector.js +0 -55
  372. package/src/cli/wizard/personalization.js +0 -64
@@ -0,0 +1,121 @@
1
+ # Knowledge Decay Guide
2
+
3
+ **Load this when:** Assessing whether research is still current, planning a research refresh, or flagging stale sources.
4
+
5
+ ## Decay Rate by Knowledge Type
6
+
7
+ | Knowledge type | Half-life | Refresh trigger |
8
+ | ------------------------------------------ | ------------ | ----------------------------------- |
9
+ | Technology benchmarks (LLM, cloud pricing) | 3–6 months | Major model/service release |
10
+ | Market sizing and competitive landscape | 6–12 months | Quarterly |
11
+ | Consumer behavior patterns | 12–18 months | Major platform shift or world event |
12
+ | Regulatory and compliance requirements | On change | Watch for legislation updates |
13
+ | Industry best practices | 2–3 years | Major methodology shift |
14
+ | Foundational principles (psychology, math) | 10+ years | Paradigm shift only |
15
+ | Vendor pricing and feature availability | 1–3 months | Before any procurement |
16
+ | SEO signals and algorithms | 6–12 months | Major algorithm update |
17
+
18
+ ---
19
+
20
+ ## Staleness Signals
21
+
22
+ ### Hard signals (research is definitely stale)
23
+
24
+ - [ ] Publication date >12 months for fast-moving domain (tech, market)
25
+ - [ ] Referenced product, version, or service no longer exists
26
+ - [ ] Statistics cite a timeframe that has ended ("by 2024...")
27
+ - [ ] Source cites a study that has since been retracted
28
+ - [ ] A major event has occurred that would invalidate the assumptions (pandemic, regulation, acquisition)
29
+
30
+ ### Soft signals (may be stale — verify)
31
+
32
+ - [ ] Publication date >24 months for moderate-velocity domain
33
+ - [ ] The landscape "feels" different from what the research describes
34
+ - [ ] Recent practitioner opinions contradict the research
35
+ - [ ] The research was produced by a party that no longer exists or has merged
36
+
37
+ ---
38
+
39
+ ## Research Freshness Checklist
40
+
41
+ Before using research findings in a decision, verify:
42
+
43
+ | Check | Action if failed |
44
+ | ---------------------------------------------------- | ------------------------------------------ |
45
+ | Source is less than [N months] old for this domain | Find more recent source or flag as dated |
46
+ | No major market event has occurred since publication | Annotate finding with "pre-[event]" caveat |
47
+ | The specific claim is still true (quick spot-check) | Update or replace the finding |
48
+ | Sample still represents current population | Note demographic / market shift |
49
+ | Technology referenced still exists as described | Update with current equivalent |
50
+
51
+ ---
52
+
53
+ ## Refresh Prioritization
54
+
55
+ When research library needs updating, prioritize refresh by:
56
+
57
+ 1. **Decision proximity** — Refresh before any decision that depends on it
58
+ 2. **Decay rate** — Fast-moving domains first
59
+ 3. **Confidence impact** — Low-confidence + old = highest refresh priority
60
+ 4. **Consequence** — High-stakes decisions need fresh data
61
+
62
+ ### Scoring formula
63
+
64
+ ```
65
+ Refresh priority = (decay_rate × 3) + (decision_proximity × 4) + (consequence × 3)
66
+ Scale each 1–5; higher = refresh first
67
+ ```
68
+
69
+ ---
70
+
71
+ ## Evergreen vs. Time-Sensitive Research
72
+
73
+ ### Evergreen (stable over time)
74
+
75
+ - Cognitive biases and decision-making frameworks
76
+ - Accessibility standards (update only on WCAG version bump)
77
+ - Security fundamentals (e.g., OWASP Top 10 — update every 4 years)
78
+ - Mathematical and statistical methods
79
+ - Agile/lean principles (not practices — those evolve)
80
+ - Human motivation research (Maslow, self-determination theory)
81
+
82
+ ### Time-sensitive (refresh regularly)
83
+
84
+ - AI model capabilities and limitations
85
+ - Competitor feature parity
86
+ - Pricing benchmarks
87
+ - Platform algorithm behavior (SEO, social, ads)
88
+ - Browser/device market share
89
+ - Regulatory compliance requirements
90
+ - API documentation and rate limits
91
+
92
+ ---
93
+
94
+ ## Research Decay Annotation Format
95
+
96
+ When including potentially stale research in a synthesis:
97
+
98
+ ```markdown
99
+ > **Currency note:** This finding is from [Date]. The domain moves quickly;
100
+ > verify before relying on this for [decision type]. Last verified: [Date or "not verified"].
101
+ ```
102
+
103
+ Or inline:
104
+
105
+ ```markdown
106
+ [Data from 2023 — may be outdated; verify current benchmarks before using for pricing decisions]
107
+ ```
108
+
109
+ ---
110
+
111
+ ## Research Refresh Triggers (monitor these)
112
+
113
+ | Trigger | Research to refresh |
114
+ | ----------------------------------------------------------- | ------------------------------------------ |
115
+ | New LLM model released (GPT, Claude, Gemini major versions) | AI capability benchmarks, cost comparisons |
116
+ | WCAG version update | Accessibility standards research |
117
+ | OWASP Top 10 update | Security vulnerability rankings |
118
+ | Google algorithm update | SEO signal research |
119
+ | Major competitor launch or acquisition | Competitive landscape |
120
+ | New regulation passed (GDPR, AI Act, CCPA amendments) | Compliance requirements |
121
+ | New framework major version (React 19, Node 22 LTS) | Technical best practices |
@@ -0,0 +1,141 @@
1
+ # Research Prompt Guide
2
+
3
+ **Load this when:** writing a research prompt for `/agileflow:research:ask`
4
+ or helping a user formulate a research request.
5
+
6
+ ## What makes a good research prompt
7
+
8
+ A lazy prompt gets a lazy answer. The quality of external research is directly
9
+ proportional to the specificity of the prompt.
10
+
11
+ **Rule:** A good research prompt should be long enough that it takes 30+ seconds to read.
12
+
13
+ ## Required components
14
+
15
+ ### 1. Context block (what you're building)
16
+
17
+ ```
18
+ I'm building [feature] in [framework/language] version [X.Y].
19
+ The codebase uses [relevant libraries]. The goal is [specific outcome].
20
+ ```
21
+
22
+ ### 2. Relevant code (50+ lines)
23
+
24
+ Include the actual code that's causing the problem or is most relevant.
25
+ Don't summarize — paste the real code. Include:
26
+
27
+ - The function/component with the issue
28
+ - How it's called
29
+ - Related configuration
30
+ - Error handling around it
31
+
32
+ ### 3. Exact error (if applicable)
33
+
34
+ Full stack trace. Don't truncate. Include:
35
+
36
+ - Error message
37
+ - Stack trace to the first line in your code (not just library internals)
38
+ - When the error occurs (on page load, on click, etc.)
39
+ - Whether it's intermittent or consistent
40
+
41
+ ### 4. What was tried
42
+
43
+ List each approach attempted and why it failed:
44
+
45
+ ```
46
+ Tried approach 1: [description] → [what happened]
47
+ Tried approach 2: [description] → [what happened]
48
+ ```
49
+
50
+ ### 5. Environment
51
+
52
+ - Framework and version
53
+ - Relevant library versions
54
+ - Node/runtime version
55
+ - Deployment target (serverless, container, etc.)
56
+
57
+ ### 6. Three specific questions
58
+
59
+ Not "how do I fix this?" — specific, answerable questions:
60
+
61
+ **Bad questions:**
62
+
63
+ - "How do I make this work?"
64
+ - "What's wrong with my code?"
65
+ - "How do I use OAuth with Next.js?"
66
+
67
+ **Good questions:**
68
+
69
+ - "Does NextAuth v4 handle the `code` exchange differently when deployed to Vercel vs local? I'm seeing the callback URL mismatch only in production."
70
+ - "Is there a known issue with Prisma's `findMany` returning stale data when using the connection pool with PlanetScale? I see the right data on direct DB query but not through Prisma."
71
+ - "Should `useEffect` be used to set up a Supabase realtime subscription, or is there a better pattern in React 18 with concurrent mode?"
72
+
73
+ ## Prompt template
74
+
75
+ ```
76
+ ## Context
77
+ I'm building [feature description] in [framework] [version].
78
+ Stack: [list key dependencies with versions].
79
+ Goal: [specific thing that needs to work].
80
+
81
+ ## Relevant code
82
+ [paste 50+ lines of the most relevant code]
83
+
84
+ ## The problem / question
85
+ [Describe the issue or decision in plain language]
86
+
87
+ ## What I've tried
88
+ 1. [approach 1] → [result]
89
+ 2. [approach 2] → [result]
90
+ 3. [approach 3] → [result]
91
+
92
+ ## Error (if applicable)
93
+ [Full stack trace]
94
+
95
+ ## Environment
96
+ - Node: [version]
97
+ - [framework]: [version]
98
+ - [key library]: [version]
99
+ - Deployment: [platform]
100
+
101
+ ## Specific questions
102
+ 1. [specific, answerable question]
103
+ 2. [specific, answerable question]
104
+ 3. [specific, answerable question]
105
+ ```
106
+
107
+ ## When to escalate to research
108
+
109
+ **Immediately (don't retry first):**
110
+
111
+ - External API response doesn't match documentation
112
+ - OAuth / SSO / SAML errors
113
+ - Build or bundler configuration errors
114
+ - "Cannot find module" for an unfamiliar package
115
+ - Cryptic library-internal errors with no obvious cause
116
+
117
+ **After 2 failed fix attempts:**
118
+
119
+ - Persistent type errors despite seemingly correct types
120
+ - Integration errors between two libraries
121
+ - Tests failing in unexpected ways
122
+ - Runtime errors with no obvious cause
123
+
124
+ **Never needs research:**
125
+
126
+ - Typos and syntax errors
127
+ - Missing imports
128
+ - Obvious null checks
129
+ - Clear logic errors
130
+ - Things you've fixed before in this codebase
131
+
132
+ ## Importing and organizing research
133
+
134
+ After getting external answers:
135
+
136
+ 1. `/agileflow:research:import` — save findings with title, source, and relevant code snippets
137
+ 2. Tag by topic (e.g., "nextauth", "prisma-pooling") for future retrieval
138
+ 3. `/agileflow:research:synthesize` if you have multiple sources on the same topic
139
+ 4. Check `/agileflow:research:list` at the start of sessions working in the same area
140
+
141
+ Research notes persist across sessions — build the knowledge base over time.
@@ -0,0 +1,154 @@
1
+ # Research Synthesis Template
2
+
3
+ **Load this when:** Combining findings from multiple research sources, resolving conflicting evidence, or producing a research summary.
4
+
5
+ ## Synthesis Document Structure
6
+
7
+ ```markdown
8
+ # Research Synthesis: [Topic]
9
+
10
+ **Date:** YYYY-MM-DD
11
+ **Sources reviewed:** [N] sources
12
+ **Time period covered:** [date range of sources]
13
+ **Confidence level:** High | Medium | Low
14
+
15
+ ---
16
+
17
+ ## Key Question
18
+
19
+ [The specific question this research was answering]
20
+
21
+ ## Bottom Line Up Front
22
+
23
+ [2–4 sentences: what we found, with confidence level.
24
+ Lead with the finding, not the methodology.]
25
+
26
+ ## Findings by Theme
27
+
28
+ ### Theme 1: [Name]
29
+
30
+ **Finding:** [1-2 sentence summary]
31
+ **Evidence:** [Which sources support this, what kind of evidence]
32
+ **Confidence:** High / Medium / Low
33
+ **Contradictions:** [Any sources that conflict with this]
34
+
35
+ ### Theme 2: [Name]
36
+
37
+ [Same structure]
38
+
39
+ ## Conflicting Evidence
40
+
41
+ [Document where sources disagree, why, and how to interpret the conflict]
42
+
43
+ ## Gaps
44
+
45
+ [What we still don't know. What questions this research raised.]
46
+
47
+ ## Implications
48
+
49
+ [So what? What should we do differently based on this?]
50
+
51
+ ## Sources
52
+
53
+ | # | Source | Type | Date | Quality |
54
+ | --- | ------ | ---- | ---- | ------- |
55
+ | 1 | | | | |
56
+ ```
57
+
58
+ ---
59
+
60
+ ## Evidence Quality Tiers
61
+
62
+ | Tier | Source type | Weight |
63
+ | ------------- | -------------------------------------------------------- | ----------------------------- |
64
+ | 1 (strongest) | Peer-reviewed studies, RCTs | Highest |
65
+ | 2 | Large-sample surveys (N>1000), meta-analyses | High |
66
+ | 3 | Industry reports from credible firms (Gartner, McKinsey) | Medium-high |
67
+ | 4 | Expert interviews, practitioner case studies | Medium |
68
+ | 5 | Blog posts, vendor reports, opinion pieces | Low |
69
+ | 6 | Anecdote, single data point | Treat as signal, not evidence |
70
+
71
+ **Default rule:** If only Tier 4–6 evidence exists, state low confidence. Don't present it as settled.
72
+
73
+ ---
74
+
75
+ ## Handling Conflicting Evidence
76
+
77
+ ### Step 1: Categorize the conflict type
78
+
79
+ | Conflict type | Interpretation |
80
+ | ------------------------- | ----------------------------------------------- |
81
+ | Sample population differs | Both may be correct for different contexts |
82
+ | Time period differs | More recent data is usually more relevant |
83
+ | Methodology differs | Higher quality methodology takes precedence |
84
+ | Definition differs | May not actually be conflicting — clarify terms |
85
+ | Funding source bias | Adjust weight based on conflicts of interest |
86
+
87
+ ### Step 2: Resolution approaches
88
+
89
+ | Approach | When to use |
90
+ | ------------------------------------------- | --------------------------------------------------- |
91
+ | Accept the majority / higher quality source | Most cases |
92
+ | Report as "disputed" | Genuine ongoing debate, similar quality evidence |
93
+ | Split by context | "X is true for enterprise, Y is true for SMB" |
94
+ | Investigate further | Conflict changes the recommendation; need more data |
95
+
96
+ ### Step 3: Document explicitly
97
+
98
+ ```
99
+ Conflicting finding: Source A says X; Source B says Y.
100
+ Reason for conflict: [Your assessment]
101
+ Resolution: [Which we're using and why]
102
+ ```
103
+
104
+ ---
105
+
106
+ ## Conflicting Evidence Red Flags
107
+
108
+ - Single vendor reporting on its own product performance
109
+ - Survey with low N (<100) contradicting large-N studies
110
+ - Study funded by party with clear financial interest in the outcome
111
+ - Source predates a major market or technology shift
112
+ - Correlation presented as causation
113
+
114
+ ---
115
+
116
+ ## Knowledge Decay Assessment
117
+
118
+ Include in synthesis:
119
+
120
+ | Finding | Time-sensitive? | Revalidate by |
121
+ | --------------------------- | --------------- | -------------------- |
122
+ | Market size / share | Yes | 12 months |
123
+ | Technology benchmarks | Yes | 6 months |
124
+ | Regulatory requirements | Yes | On regulation change |
125
+ | User behavior patterns | Medium | 18 months |
126
+ | Foundational best practices | Low | 3–5 years |
127
+
128
+ ---
129
+
130
+ ## Synthesis Confidence Levels
131
+
132
+ | Level | Criteria |
133
+ | ------------ | --------------------------------------------------------------------- |
134
+ | High | 3+ independent Tier 1–3 sources agree; no credible contradictions |
135
+ | Medium | 2+ sources agree OR 1 strong source; some conflicting evidence exists |
136
+ | Low | Only 1 source, or sources conflict without clear resolution |
137
+ | Insufficient | Not enough evidence to draw conclusions; more research needed |
138
+
139
+ ---
140
+
141
+ ## Citation Format (inline)
142
+
143
+ ```markdown
144
+ Teams that write unit tests before code ship 40% fewer production bugs
145
+ [McKinsey DevEx Report 2024, Tier 3, High confidence].
146
+ ```
147
+
148
+ Or footnote style:
149
+
150
+ ```markdown
151
+ ... ship 40% fewer production bugs.^[1]
152
+
153
+ [1] McKinsey DevEx Report, 2024. https://example.com
154
+ ```
@@ -0,0 +1,60 @@
1
+ # Analyze Workflow — Implement Saved Research
2
+
3
+ **Triggers:** "analyze my research on X", "I want to implement what I researched", "revisit that research", "turn the research into a plan", user references a specific research file
4
+
5
+ **Goal:** Take a saved research note and produce a project-specific implementation analysis with multi-expert validation, then optionally create an artifact to track the work.
6
+
7
+ ## Inputs needed
8
+
9
+ | Input | Required | How to get it |
10
+ | ------------- | -------- | ---------------------------------------------------- |
11
+ | research file | No | Ask the user to pick from the index if not specified |
12
+
13
+ ## Steps
14
+
15
+ 1. If no file is specified, list `docs/10-research/*.md` sorted by most recent first. Ask the user which note to analyze. If an active story or epic in the project relates to a research topic, highlight that file as recommended.
16
+
17
+ 2. Check the file size before reading. For files under 50k characters, read directly. For larger files (50k+), extract only the relevant sections: Summary, Key Findings, Implementation Approach.
18
+
19
+ 3. Display a brief summary of the research: key findings, action items, import date.
20
+
21
+ 4. Ask the user: [A] Run implementation ideation with domain experts (recommended — maps findings to your codebase), [B] View the full research note, [C] Skip for now.
22
+
23
+ 5. If implementation ideation is chosen, auto-detect the research type from the topic and content keywords. Select 3–5 domain experts based on the detected type:
24
+ - Security keywords (auth, oauth, jwt, encryption, vulnerability) → security, api, testing, compliance
25
+ - Performance keywords (cache, optimize, latency, throughput, benchmark) → performance, database, api, monitoring
26
+ - Architecture keywords (migrate, upgrade, framework, refactor, redesign) → api, database, performance, security
27
+ - UI keywords (component, styling, accessibility, ux, design system) → ui, api, testing, accessibility
28
+ - Database keywords (schema, migration, query, index, model) → database, api, performance, datamigration
29
+ - Default (unclear or multi-domain) → api, ui, database, testing, security
30
+
31
+ 6. Deploy all selected experts simultaneously. Give each expert: the research topic and summary, the project context (read `package.json`, `README.md`, or `CLAUDE.md`), and their domain-specific analysis task (implementation fit, domain considerations, recommended approach with specific file paths, risks and effort estimate).
32
+
33
+ 7. Collect all expert outputs. Synthesize:
34
+ - HIGH CONFIDENCE steps: 2+ experts agree on the same approach or files
35
+ - MEDIUM CONFIDENCE: 1 expert with specific evidence
36
+ - Aggregate effort estimates (show range)
37
+ - Collect all risks, ordered by frequency across experts
38
+ - Determine artifact recommendation based on scope: ADR if experts discuss trade-offs or one-time decisions; Epic+Stories if 5+ files across multiple domains; Story if single focus area; Practice doc if guidelines/patterns only
39
+
40
+ 8. Present the Implementation Ideation Report: high-confidence steps, domain-specific considerations, risks table, effort summary, recommended artifact.
41
+
42
+ 9. Ask the user: [A] Create the recommended artifact (recommended), [B] Modify the approach first, [C] Save the analysis to the research file, [D] Cancel.
43
+
44
+ 10. If artifact creation is confirmed, create the appropriate artifact and confirm with file paths. The implementation plan is now tracked with expert-validated guidance.
45
+
46
+ ## Output
47
+
48
+ Implementation Ideation Report displayed. Optional artifact (ADR/Epic/Story/Practice doc) created. If user chooses save-only, the analysis is appended to the research file.
49
+
50
+ ## Fallbacks
51
+
52
+ **If interactive prompts (AskUserQuestion) are unavailable:**
53
+ Present options as a numbered list in your response. Ask the user to reply with a number. Example:
54
+
55
+ ```
56
+ How would you like to proceed?
57
+ 1. Save and continue
58
+ 2. Review before saving
59
+ 3. Discard
60
+ ```
@@ -0,0 +1,64 @@
1
+ # Ask Workflow — Research Prompt Generation
2
+
3
+ **Triggers:** "I need to research X", "generate a research prompt", "help me ask ChatGPT about", "I'm stuck on X", "create a prompt for Perplexity"
4
+
5
+ **Goal:** Produce a detailed, context-rich prompt the user can paste into an external AI tool (ChatGPT, Perplexity, Claude web, Gemini) and get actionable results.
6
+
7
+ ## Inputs needed
8
+
9
+ | Input | Required | How to get it |
10
+ | --------------------- | -------- | -------------------------------------------------- |
11
+ | topic | Yes | Ask the user if not stated |
12
+ | error message | No | Ask: "Is there an exact error? Paste it verbatim." |
13
+ | what was tried | No | Ask: "What have you already attempted?" |
14
+ | relevant source files | Yes | Read from codebase — do not skip |
15
+
16
+ ## Steps
17
+
18
+ 1. Ask the user for the topic if not already provided.
19
+
20
+ 2. Read relevant files from the codebase:
21
+ - `package.json` or `pyproject.toml` for framework and dependency versions
22
+ - Source files related to the topic (read at least 50 lines of actual code)
23
+ - `README.md` or `CLAUDE.md` for project context
24
+
25
+ 3. Ask the user: "Is there an exact error message? Paste it verbatim." If yes, include it exactly as given — never paraphrase errors.
26
+
27
+ 4. Ask the user: "What have you already tried? List at least 2 approaches and what happened with each."
28
+
29
+ 5. Generate the research prompt with these mandatory sections in order:
30
+ - **Project Context** — framework, key dependencies with versions, relevant files
31
+ - **Current Implementation** — 50+ lines of actual code from the codebase (not pseudocode)
32
+ - **The Problem** — exact error message verbatim, expected vs actual behavior, steps to reproduce
33
+ - **What We've Already Tried** — 2+ approaches with what happened and why each didn't work
34
+ - **Specific Questions** — 3+ precise, contextualized questions (not "how do I fix this?")
35
+ - **What I Need** — root cause analysis, step-by-step solution with exact code, gotchas
36
+ - **Environment Details** — Node/Python version, OS, tool versions
37
+
38
+ 6. Validate the prompt before showing it:
39
+ - Is it 200+ lines? If not, add more code and context.
40
+ - Does it include 50+ lines of actual code? If not, read more files.
41
+ - Does it have the exact error verbatim (if applicable)?
42
+ - Does it list 2+ attempts?
43
+ - Does it have 3+ specific questions?
44
+ If any check fails, gather the missing information and regenerate — do not show an incomplete prompt.
45
+
46
+ 7. Display the prompt inside a code block so the user can copy it. End with: "Copy this and paste it into ChatGPT, Perplexity, or Claude web. When you get results, let me know and I'll save them."
47
+
48
+ 8. Present the user with these options: [A] Copy and go (no further action), [B] Save the prompt to `docs/10-research/prompts/YYYYMMDD-prompt-<topic-slug>.md` and update the research index, [C] Regenerate with more detail.
49
+
50
+ ## Output
51
+
52
+ The prompt is displayed for copy/paste. If the user chooses to save: write to `docs/10-research/prompts/YYYYMMDD-prompt-<topic-slug>.md` and add a row to `docs/10-research/README.md` (Type = Prompt). After the user gets results from the external AI, hand off to the import workflow.
53
+
54
+ ## Fallbacks
55
+
56
+ **If interactive prompts (AskUserQuestion) are unavailable:**
57
+ Present options as a numbered list in your response. Ask the user to reply with a number. Example:
58
+
59
+ ```
60
+ How would you like to proceed?
61
+ 1. Save and continue
62
+ 2. Review before saving
63
+ 3. Discard
64
+ ```
@@ -0,0 +1,66 @@
1
+ # Import Workflow — Save External Research
2
+
3
+ **Triggers:** "I have research to import", "save these results", "I got an answer from ChatGPT", "paste research findings", "import this article", user pastes a large block of text with findings
4
+
5
+ **Goal:** Format external research or AI-generated answers into structured markdown, save to the project knowledge base, and optionally run multi-expert implementation analysis.
6
+
7
+ ## Inputs needed
8
+
9
+ | Input | Required | How to get it |
10
+ | ---------- | -------- | -------------------------------------------------- |
11
+ | topic | Yes | Ask the user: "What topic is this research about?" |
12
+ | content | Yes | Ask: "Please paste the research results below." |
13
+ | source URL | No | Ask: "Do you have a source URL?" |
14
+
15
+ ## Steps
16
+
17
+ 1. If the topic is not provided, ask: "What topic is this research about?"
18
+
19
+ 2. If content is not provided, ask the user to paste the research results. Accept: AI-generated answers, article text, YouTube transcripts, blog posts, meeting notes, documentation excerpts.
20
+
21
+ 3. Extract from the content:
22
+ - A 2–3 paragraph executive summary
23
+ - Key findings as bullet points
24
+ - Any code snippets (preserve these exactly — do not reformat or clean up)
25
+ - Concrete action items
26
+ - Potential story suggestions if the content implies feature work
27
+ - Risks or gotchas mentioned
28
+
29
+ 4. Format as structured markdown:
30
+
31
+ ```
32
+ # [Topic Title]
33
+ Import Date / Topic / Source / Content Type
34
+ ## Summary
35
+ ## Key Findings
36
+ ## Implementation Approach
37
+ ## Code Snippets ← copied verbatim
38
+ ## Action Items
39
+ ## Risks & Gotchas
40
+ ## Story Suggestions
41
+ ## References
42
+ ```
43
+
44
+ 5. Show the formatted file to the user before saving. Present the user with these options: [A] Save to `docs/10-research/` (recommended), [B] Make changes first.
45
+
46
+ 6. If confirmed, generate the filename as `YYYYMMDD-<topic-slug>.md` and write to `docs/10-research/`. Then add a row to `docs/10-research/README.md` (5-column format: Date | Topic | Type | Path | Summary). Always update the index — never skip this step.
47
+
48
+ 7. After saving, present the user with these options: [A] Run implementation ideation — deploy 3–5 domain experts in parallel to analyze how this research applies to the codebase (recommended if content suggests changes), [B] Save as reference for later, [C] Link to an active Epic or Story.
49
+
50
+ 8. If the user chooses implementation ideation: auto-detect the research type from keywords in the content (security keywords → security/api/testing experts; performance keywords → performance/database/api/monitoring experts; architecture keywords → api/database/performance/security experts; default → api/ui/database/testing/security). Deploy all selected experts simultaneously. Each expert analyzes: implementation fit in the codebase, domain-specific considerations, recommended approach with specific file paths, risks and effort estimate. Synthesize results with confidence scoring — HIGH means 2+ experts agree. Present the Implementation Ideation Report, then ask whether to create an artifact (ADR for architecture decisions, Epic+Stories for large features spanning multiple files, Story for focused tasks, Practice doc for guidelines).
51
+
52
+ ## Output
53
+
54
+ Research saved to `docs/10-research/YYYYMMDD-<topic-slug>.md`. Index updated. Optional: implementation ideation report and artifact (ADR/Epic/Story) created based on expert consensus.
55
+
56
+ ## Fallbacks
57
+
58
+ **If interactive prompts (AskUserQuestion) are unavailable:**
59
+ Present options as a numbered list in your response. Ask the user to reply with a number. Example:
60
+
61
+ ```
62
+ How would you like to proceed?
63
+ 1. Save and continue
64
+ 2. Review before saving
65
+ 3. Discard
66
+ ```
@@ -0,0 +1,66 @@
1
+ # Synthesize Workflow — Cross-Research Analysis
2
+
3
+ **Triggers:** "synthesize my research on X", "what do my research notes say about", "find patterns across research", "combine findings from multiple notes", "what's the consensus on"
4
+
5
+ **Goal:** Query across multiple research files to find consensus findings, unique insights, conflicts, and technology patterns — then optionally generate an implementation plan.
6
+
7
+ ## Inputs needed
8
+
9
+ | Input | Required | How to get it |
10
+ | ------------- | -------- | ------------------------------------------------ |
11
+ | topic keyword | No\* | Ask if neither topic nor files are provided |
12
+ | file list | No\* | Comma-separated filenames in `docs/10-research/` |
13
+
14
+ \*At least one of topic or file list is required.
15
+
16
+ ## Steps
17
+
18
+ 1. If neither a topic nor a specific file list is provided, ask the user: "What topic should I search across your research notes?" Options: [A] Enter a topic keyword, [B] Show the full research index first, [C] Synthesize all research.
19
+
20
+ 2. If a topic keyword is given, search all files in `docs/10-research/` — check filename, title header, Summary section, and Key Findings section. List matching files with date, title, and a one-line summary.
21
+
22
+ 3. If 5 or fewer files match, proceed automatically. If 6 or more match, ask the user: [A] Analyze all N files, [B] Let me pick specific files, [C] Try a narrower search term.
23
+
24
+ 4. For each selected file, extract:
25
+ - Date (from filename YYYYMMDD prefix)
26
+ - Title (first `#` header)
27
+ - Summary (first paragraph of the Summary section)
28
+ - Key Findings (bullet list)
29
+ - Recommended Approach section if present
30
+ - Technologies mentioned
31
+ - Related ADRs, Stories, Epics
32
+ - Age in days
33
+
34
+ 5. Analyze across all files:
35
+ - **Consensus (HIGH):** same finding appears in 2+ files — mark with the source files
36
+ - **Unique (VERIFY):** finding only in 1 file — note age, flag for review if old
37
+ - **Conflict (NEEDS REVIEW):** different files recommend different approaches for the same topic — flag both positions
38
+
39
+ 6. Present the Synthesis Report:
40
+ - Files Analyzed (table with date, title, status, age)
41
+ - Consensus Findings (HIGH CONFIDENCE) with source files
42
+ - Unique Insights (VERIFY) with age assessment
43
+ - Conflicts Detected (NEEDS REVIEW) with resolution suggestion
44
+ - Technology Patterns (table of technology, mention count, first/most recent date)
45
+ - Related Artifacts (ADRs, Stories, Epics referenced across files)
46
+ - Timeline (oldest → newest)
47
+
48
+ 7. Present the user with these options: [A] Run implementation ideation with domain experts (recommended if consensus findings suggest actionable changes), [B] Save synthesis report to `docs/10-research/YYYYMMDD-synthesis-<slug>.md`, [C] Flag conflicts for review, [D] Search a different topic.
49
+
50
+ 8. If implementation ideation is chosen, follow the same multi-expert pattern as the import workflow: detect research type from synthesis content, deploy 3–5 experts in parallel, synthesize with confidence scoring, present Implementation Ideation Report, recommend artifact type.
51
+
52
+ ## Output
53
+
54
+ Synthesis report displayed inline. Optionally saved to `docs/10-research/YYYYMMDD-synthesis-<slug>.md` with a row added to the research index (Type = Synthesis). Optional: implementation ideation report and artifact.
55
+
56
+ ## Fallbacks
57
+
58
+ **If interactive prompts (AskUserQuestion) are unavailable:**
59
+ Present options as a numbered list in your response. Ask the user to reply with a number. Example:
60
+
61
+ ```
62
+ How would you like to proceed?
63
+ 1. Save and continue
64
+ 2. Review before saving
65
+ 3. Discard
66
+ ```