specweave 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 (288) hide show
  1. package/INSTALL.md +848 -0
  2. package/LICENSE +21 -0
  3. package/README.md +675 -0
  4. package/SPECWEAVE.md +665 -0
  5. package/bin/install-agents.sh +57 -0
  6. package/bin/install-all.sh +49 -0
  7. package/bin/install-commands.sh +56 -0
  8. package/bin/install-skills.sh +57 -0
  9. package/bin/specweave.js +81 -0
  10. package/dist/adapters/adapter-base.d.ts +50 -0
  11. package/dist/adapters/adapter-base.d.ts.map +1 -0
  12. package/dist/adapters/adapter-base.js +146 -0
  13. package/dist/adapters/adapter-base.js.map +1 -0
  14. package/dist/adapters/adapter-interface.d.ts +108 -0
  15. package/dist/adapters/adapter-interface.d.ts.map +1 -0
  16. package/dist/adapters/adapter-interface.js +9 -0
  17. package/dist/adapters/adapter-interface.js.map +1 -0
  18. package/dist/adapters/claude/adapter.d.ts +54 -0
  19. package/dist/adapters/claude/adapter.d.ts.map +1 -0
  20. package/dist/adapters/claude/adapter.js +184 -0
  21. package/dist/adapters/claude/adapter.js.map +1 -0
  22. package/dist/adapters/copilot/adapter.d.ts +42 -0
  23. package/dist/adapters/copilot/adapter.d.ts.map +1 -0
  24. package/dist/adapters/copilot/adapter.js +239 -0
  25. package/dist/adapters/copilot/adapter.js.map +1 -0
  26. package/dist/adapters/cursor/adapter.d.ts +42 -0
  27. package/dist/adapters/cursor/adapter.d.ts.map +1 -0
  28. package/dist/adapters/cursor/adapter.js +297 -0
  29. package/dist/adapters/cursor/adapter.js.map +1 -0
  30. package/dist/adapters/generic/adapter.d.ts +40 -0
  31. package/dist/adapters/generic/adapter.d.ts.map +1 -0
  32. package/dist/adapters/generic/adapter.js +155 -0
  33. package/dist/adapters/generic/adapter.js.map +1 -0
  34. package/dist/cli/commands/init.d.ts +6 -0
  35. package/dist/cli/commands/init.d.ts.map +1 -0
  36. package/dist/cli/commands/init.js +247 -0
  37. package/dist/cli/commands/init.js.map +1 -0
  38. package/dist/cli/commands/install.d.ts +7 -0
  39. package/dist/cli/commands/install.d.ts.map +1 -0
  40. package/dist/cli/commands/install.js +160 -0
  41. package/dist/cli/commands/install.js.map +1 -0
  42. package/dist/cli/commands/list.d.ts +6 -0
  43. package/dist/cli/commands/list.d.ts.map +1 -0
  44. package/dist/cli/commands/list.js +154 -0
  45. package/dist/cli/commands/list.js.map +1 -0
  46. package/package.json +90 -0
  47. package/src/adapters/README.md +312 -0
  48. package/src/adapters/adapter-base.ts +146 -0
  49. package/src/adapters/adapter-interface.ts +120 -0
  50. package/src/adapters/claude/README.md +241 -0
  51. package/src/adapters/claude/adapter.ts +157 -0
  52. package/src/adapters/copilot/.github/copilot/instructions.md +376 -0
  53. package/src/adapters/copilot/README.md +200 -0
  54. package/src/adapters/copilot/adapter.ts +210 -0
  55. package/src/adapters/cursor/.cursor/context/docs-context.md +62 -0
  56. package/src/adapters/cursor/.cursor/context/increments-context.md +71 -0
  57. package/src/adapters/cursor/.cursor/context/strategy-context.md +73 -0
  58. package/src/adapters/cursor/.cursor/context/tests-context.md +89 -0
  59. package/src/adapters/cursor/.cursorrules +325 -0
  60. package/src/adapters/cursor/README.md +243 -0
  61. package/src/adapters/cursor/adapter.ts +268 -0
  62. package/src/adapters/generic/README.md +277 -0
  63. package/src/adapters/generic/SPECWEAVE-MANUAL.md +676 -0
  64. package/src/adapters/generic/adapter.ts +159 -0
  65. package/src/adapters/registry.yaml +126 -0
  66. package/src/agents/architect/AGENT.md +416 -0
  67. package/src/agents/devops/AGENT.md +1738 -0
  68. package/src/agents/docs-writer/AGENT.md +239 -0
  69. package/src/agents/performance/AGENT.md +228 -0
  70. package/src/agents/pm/AGENT.md +751 -0
  71. package/src/agents/qa-lead/AGENT.md +150 -0
  72. package/src/agents/security/AGENT.md +179 -0
  73. package/src/agents/sre/AGENT.md +582 -0
  74. package/src/agents/sre/modules/backend-diagnostics.md +481 -0
  75. package/src/agents/sre/modules/database-diagnostics.md +509 -0
  76. package/src/agents/sre/modules/infrastructure.md +561 -0
  77. package/src/agents/sre/modules/monitoring.md +439 -0
  78. package/src/agents/sre/modules/security-incidents.md +421 -0
  79. package/src/agents/sre/modules/ui-diagnostics.md +302 -0
  80. package/src/agents/sre/playbooks/01-high-cpu-usage.md +204 -0
  81. package/src/agents/sre/playbooks/02-database-deadlock.md +241 -0
  82. package/src/agents/sre/playbooks/03-memory-leak.md +252 -0
  83. package/src/agents/sre/playbooks/04-slow-api-response.md +269 -0
  84. package/src/agents/sre/playbooks/05-ddos-attack.md +293 -0
  85. package/src/agents/sre/playbooks/06-disk-full.md +314 -0
  86. package/src/agents/sre/playbooks/07-service-down.md +333 -0
  87. package/src/agents/sre/playbooks/08-data-corruption.md +337 -0
  88. package/src/agents/sre/playbooks/09-cascade-failure.md +430 -0
  89. package/src/agents/sre/playbooks/10-rate-limit-exceeded.md +464 -0
  90. package/src/agents/sre/scripts/health-check.sh +230 -0
  91. package/src/agents/sre/scripts/log-analyzer.py +213 -0
  92. package/src/agents/sre/scripts/metrics-collector.sh +294 -0
  93. package/src/agents/sre/scripts/trace-analyzer.js +257 -0
  94. package/src/agents/sre/templates/incident-report.md +249 -0
  95. package/src/agents/sre/templates/mitigation-plan.md +375 -0
  96. package/src/agents/sre/templates/post-mortem.md +418 -0
  97. package/src/agents/sre/templates/runbook-template.md +412 -0
  98. package/src/agents/tech-lead/AGENT.md +263 -0
  99. package/src/commands/add-tasks.md +176 -0
  100. package/src/commands/close-increment.md +347 -0
  101. package/src/commands/create-increment.md +223 -0
  102. package/src/commands/create-project.md +528 -0
  103. package/src/commands/generate-docs.md +623 -0
  104. package/src/commands/list-increments.md +180 -0
  105. package/src/commands/review-docs.md +331 -0
  106. package/src/commands/start-increment.md +139 -0
  107. package/src/commands/sync-github.md +115 -0
  108. package/src/commands/validate-increment.md +800 -0
  109. package/src/hooks/README.md +252 -0
  110. package/src/hooks/docs-changed.sh +59 -0
  111. package/src/hooks/human-input-required.sh +55 -0
  112. package/src/hooks/post-task-completion.sh +57 -0
  113. package/src/hooks/pre-implementation.sh +47 -0
  114. package/src/skills/ado-sync/README.md +449 -0
  115. package/src/skills/ado-sync/SKILL.md +245 -0
  116. package/src/skills/ado-sync/test-cases/test-1.yaml +9 -0
  117. package/src/skills/ado-sync/test-cases/test-2.yaml +8 -0
  118. package/src/skills/ado-sync/test-cases/test-3.yaml +9 -0
  119. package/src/skills/bmad-method-expert/SKILL.md +628 -0
  120. package/src/skills/bmad-method-expert/scripts/analyze-project.js +318 -0
  121. package/src/skills/bmad-method-expert/scripts/check-setup.js +208 -0
  122. package/src/skills/bmad-method-expert/scripts/generate-template.js +1149 -0
  123. package/src/skills/bmad-method-expert/scripts/validate-documents.js +340 -0
  124. package/src/skills/bmad-method-expert/test-cases/test-1-placeholder.yaml +12 -0
  125. package/src/skills/bmad-method-expert/test-cases/test-2-placeholder.yaml +12 -0
  126. package/src/skills/bmad-method-expert/test-cases/test-3-placeholder.yaml +12 -0
  127. package/src/skills/brownfield-analyzer/SKILL.md +523 -0
  128. package/src/skills/brownfield-analyzer/test-cases/test-1-basic-analysis.yaml +48 -0
  129. package/src/skills/brownfield-analyzer/test-cases/test-2-placeholder.yaml +12 -0
  130. package/src/skills/brownfield-analyzer/test-cases/test-3-placeholder.yaml +12 -0
  131. package/src/skills/brownfield-onboarder/SKILL.md +625 -0
  132. package/src/skills/brownfield-onboarder/test-cases/test-1-placeholder.yaml +12 -0
  133. package/src/skills/brownfield-onboarder/test-cases/test-2-placeholder.yaml +12 -0
  134. package/src/skills/brownfield-onboarder/test-cases/test-3-placeholder.yaml +12 -0
  135. package/src/skills/calendar-system/test-cases/test-1-placeholder.yaml +12 -0
  136. package/src/skills/calendar-system/test-cases/test-2-placeholder.yaml +12 -0
  137. package/src/skills/calendar-system/test-cases/test-3-placeholder.yaml +12 -0
  138. package/src/skills/context-loader/SKILL.md +734 -0
  139. package/src/skills/context-loader/test-cases/test-1-basic-loading.yaml +39 -0
  140. package/src/skills/context-loader/test-cases/test-2-token-budget-exceeded.yaml +44 -0
  141. package/src/skills/context-loader/test-cases/test-3-section-anchors.yaml +45 -0
  142. package/src/skills/context-optimizer/SKILL.md +618 -0
  143. package/src/skills/context-optimizer/test-cases/test-1-bug-fix-narrow.yaml +97 -0
  144. package/src/skills/context-optimizer/test-cases/test-2-feature-focused.yaml +109 -0
  145. package/src/skills/context-optimizer/test-cases/test-3-architecture-broad.yaml +98 -0
  146. package/src/skills/cost-optimizer/SKILL.md +190 -0
  147. package/src/skills/cost-optimizer/test-cases/test-1-basic-comparison.yaml +75 -0
  148. package/src/skills/cost-optimizer/test-cases/test-2-budget-constraint.yaml +52 -0
  149. package/src/skills/cost-optimizer/test-cases/test-3-scale-requirement.yaml +63 -0
  150. package/src/skills/cost-optimizer/test-results/README.md +46 -0
  151. package/src/skills/design-system-architect/SKILL.md +107 -0
  152. package/src/skills/design-system-architect/test-cases/test-1-token-structure.yaml +23 -0
  153. package/src/skills/design-system-architect/test-cases/test-2-component-hierarchy.yaml +24 -0
  154. package/src/skills/design-system-architect/test-cases/test-3-accessibility-checklist.yaml +23 -0
  155. package/src/skills/diagrams-architect/SKILL.md +763 -0
  156. package/src/skills/diagrams-generator/SKILL.md +25 -0
  157. package/src/skills/diagrams-generator/test-cases/test-1.yaml +9 -0
  158. package/src/skills/diagrams-generator/test-cases/test-2.yaml +9 -0
  159. package/src/skills/diagrams-generator/test-cases/test-3.yaml +8 -0
  160. package/src/skills/docs-updater/README.md +48 -0
  161. package/src/skills/docs-updater/test-cases/test-1-placeholder.yaml +12 -0
  162. package/src/skills/docs-updater/test-cases/test-2-placeholder.yaml +12 -0
  163. package/src/skills/docs-updater/test-cases/test-3-placeholder.yaml +12 -0
  164. package/src/skills/dotnet-backend/SKILL.md +250 -0
  165. package/src/skills/e2e-playwright/README.md +506 -0
  166. package/src/skills/e2e-playwright/SKILL.md +457 -0
  167. package/src/skills/e2e-playwright/execute.js +373 -0
  168. package/src/skills/e2e-playwright/lib/utils.js +514 -0
  169. package/src/skills/e2e-playwright/package.json +33 -0
  170. package/src/skills/e2e-playwright/test-cases/TC-001-basic-navigation.yaml +54 -0
  171. package/src/skills/e2e-playwright/test-cases/TC-002-form-interaction.yaml +64 -0
  172. package/src/skills/e2e-playwright/test-cases/TC-003-specweave-integration.yaml +74 -0
  173. package/src/skills/e2e-playwright/test-cases/TC-004-accessibility-check.yaml +98 -0
  174. package/src/skills/figma-designer/SKILL.md +149 -0
  175. package/src/skills/figma-implementer/SKILL.md +148 -0
  176. package/src/skills/figma-mcp-connector/SKILL.md +136 -0
  177. package/src/skills/figma-mcp-connector/test-cases/test-1-read-file-desktop.yaml +22 -0
  178. package/src/skills/figma-mcp-connector/test-cases/test-2-read-file-framelink.yaml +21 -0
  179. package/src/skills/figma-mcp-connector/test-cases/test-3-error-handling.yaml +18 -0
  180. package/src/skills/figma-to-code/SKILL.md +128 -0
  181. package/src/skills/figma-to-code/test-cases/test-1-token-generation.yaml +29 -0
  182. package/src/skills/figma-to-code/test-cases/test-2-component-generation.yaml +27 -0
  183. package/src/skills/figma-to-code/test-cases/test-3-typescript-generation.yaml +28 -0
  184. package/src/skills/frontend/SKILL.md +177 -0
  185. package/src/skills/github-sync/SKILL.md +252 -0
  186. package/src/skills/github-sync/test-cases/test-1-placeholder.yaml +12 -0
  187. package/src/skills/github-sync/test-cases/test-2-placeholder.yaml +12 -0
  188. package/src/skills/github-sync/test-cases/test-3-placeholder.yaml +12 -0
  189. package/src/skills/hetzner-provisioner/README.md +308 -0
  190. package/src/skills/hetzner-provisioner/SKILL.md +251 -0
  191. package/src/skills/hetzner-provisioner/test-cases/test-1-basic-provision.yaml +71 -0
  192. package/src/skills/hetzner-provisioner/test-cases/test-2-postgres-provision.yaml +85 -0
  193. package/src/skills/hetzner-provisioner/test-cases/test-3-ssl-config.yaml +126 -0
  194. package/src/skills/hetzner-provisioner/test-results/README.md +259 -0
  195. package/src/skills/increment-planner/SKILL.md +889 -0
  196. package/src/skills/increment-planner/scripts/feature-utils.js +250 -0
  197. package/src/skills/increment-planner/test-cases/test-1-basic-feature.yaml +27 -0
  198. package/src/skills/increment-planner/test-cases/test-2-complex-feature.yaml +30 -0
  199. package/src/skills/increment-planner/test-cases/test-3-auto-numbering.yaml +24 -0
  200. package/src/skills/increment-quality-judge/SKILL.md +566 -0
  201. package/src/skills/increment-quality-judge/test-cases/test-1-good-spec.yaml +95 -0
  202. package/src/skills/increment-quality-judge/test-cases/test-2-poor-spec.yaml +108 -0
  203. package/src/skills/increment-quality-judge/test-cases/test-3-export-suggestions.yaml +87 -0
  204. package/src/skills/jira-sync/README.md +328 -0
  205. package/src/skills/jira-sync/SKILL.md +209 -0
  206. package/src/skills/jira-sync/test-cases/test-1.yaml +9 -0
  207. package/src/skills/jira-sync/test-cases/test-2.yaml +9 -0
  208. package/src/skills/jira-sync/test-cases/test-3.yaml +10 -0
  209. package/src/skills/nextjs/SKILL.md +176 -0
  210. package/src/skills/nodejs-backend/SKILL.md +181 -0
  211. package/src/skills/notification-system/test-cases/test-1-placeholder.yaml +12 -0
  212. package/src/skills/notification-system/test-cases/test-2-placeholder.yaml +12 -0
  213. package/src/skills/notification-system/test-cases/test-3-placeholder.yaml +12 -0
  214. package/src/skills/python-backend/SKILL.md +226 -0
  215. package/src/skills/role-orchestrator/README.md +197 -0
  216. package/src/skills/role-orchestrator/SKILL.md +1184 -0
  217. package/src/skills/role-orchestrator/test-cases/test-1-simple-product.yaml +98 -0
  218. package/src/skills/role-orchestrator/test-cases/test-2-quality-gate-failure.yaml +73 -0
  219. package/src/skills/role-orchestrator/test-cases/test-3-security-workflow.yaml +121 -0
  220. package/src/skills/role-orchestrator/test-cases/test-4-parallel-execution.yaml +145 -0
  221. package/src/skills/role-orchestrator/test-cases/test-5-feedback-loops.yaml +149 -0
  222. package/src/skills/skill-creator/LICENSE.txt +202 -0
  223. package/src/skills/skill-creator/SKILL.md +209 -0
  224. package/src/skills/skill-creator/scripts/init_skill.py +303 -0
  225. package/src/skills/skill-creator/scripts/package_skill.py +110 -0
  226. package/src/skills/skill-creator/scripts/quick_validate.py +65 -0
  227. package/src/skills/skill-creator/test-cases/test-1-placeholder.yaml +12 -0
  228. package/src/skills/skill-creator/test-cases/test-2-placeholder.yaml +12 -0
  229. package/src/skills/skill-creator/test-cases/test-3-placeholder.yaml +12 -0
  230. package/src/skills/skill-router/SKILL.md +497 -0
  231. package/src/skills/skill-router/test-cases/test-1-basic-routing.yaml +33 -0
  232. package/src/skills/skill-router/test-cases/test-2-ambiguous-request.yaml +42 -0
  233. package/src/skills/skill-router/test-cases/test-3-nested-orchestration.yaml +50 -0
  234. package/src/skills/spec-driven-brainstorming/README.md +264 -0
  235. package/src/skills/spec-driven-brainstorming/SKILL.md +439 -0
  236. package/src/skills/spec-driven-brainstorming/test-cases/TC-001-simple-idea-to-design.yaml +148 -0
  237. package/src/skills/spec-driven-brainstorming/test-cases/TC-002-complex-ultrathink-design.yaml +190 -0
  238. package/src/skills/spec-driven-brainstorming/test-cases/TC-003-unclear-requirements-socratic.yaml +233 -0
  239. package/src/skills/spec-driven-debugging/README.md +479 -0
  240. package/src/skills/spec-driven-debugging/SKILL.md +652 -0
  241. package/src/skills/spec-driven-debugging/test-cases/TC-001-simple-auth-bug.yaml +212 -0
  242. package/src/skills/spec-driven-debugging/test-cases/TC-002-race-condition-ultrathink.yaml +461 -0
  243. package/src/skills/spec-driven-debugging/test-cases/TC-003-brownfield-missing-spec.yaml +366 -0
  244. package/src/skills/spec-kit-expert/SKILL.md +1012 -0
  245. package/src/skills/spec-kit-expert/test-cases/test-1-placeholder.yaml +12 -0
  246. package/src/skills/spec-kit-expert/test-cases/test-2-placeholder.yaml +12 -0
  247. package/src/skills/spec-kit-expert/test-cases/test-3-placeholder.yaml +12 -0
  248. package/src/skills/specweave-ado-mapper/SKILL.md +501 -0
  249. package/src/skills/specweave-detector/SKILL.md +420 -0
  250. package/src/skills/specweave-detector/test-cases/test-1-basic-detection.yaml +37 -0
  251. package/src/skills/specweave-detector/test-cases/test-2-missing-config.yaml +37 -0
  252. package/src/skills/specweave-detector/test-cases/test-3-non-specweave-project.yaml +34 -0
  253. package/src/skills/specweave-jira-mapper/SKILL.md +500 -0
  254. package/src/skills/stripe-integrator/test-cases/test-1-placeholder.yaml +12 -0
  255. package/src/skills/stripe-integrator/test-cases/test-2-placeholder.yaml +12 -0
  256. package/src/skills/stripe-integrator/test-cases/test-3-placeholder.yaml +12 -0
  257. package/src/skills/task-builder/README.md +90 -0
  258. package/src/skills/task-builder/test-cases/test-1-placeholder.yaml +12 -0
  259. package/src/skills/task-builder/test-cases/test-2-placeholder.yaml +12 -0
  260. package/src/skills/task-builder/test-cases/test-3-placeholder.yaml +12 -0
  261. package/src/templates/.env.example +144 -0
  262. package/src/templates/.gitignore.template +81 -0
  263. package/src/templates/CLAUDE.md.template +383 -0
  264. package/src/templates/README.md.template +240 -0
  265. package/src/templates/config.yaml +333 -0
  266. package/src/templates/docs/README.md +124 -0
  267. package/src/templates/docs/adr-template.md +118 -0
  268. package/src/templates/docs/hld-template.md +220 -0
  269. package/src/templates/docs/lld-template.md +580 -0
  270. package/src/templates/docs/prd-template.md +132 -0
  271. package/src/templates/docs/rfc-template.md +229 -0
  272. package/src/templates/docs/runbook-template.md +298 -0
  273. package/src/templates/environments/minimal/.env.production +16 -0
  274. package/src/templates/environments/minimal/README.md +54 -0
  275. package/src/templates/environments/minimal/deploy-production.yml +52 -0
  276. package/src/templates/environments/progressive/.env.qa +28 -0
  277. package/src/templates/environments/progressive/README.md +129 -0
  278. package/src/templates/environments/progressive/deploy-production.yml +93 -0
  279. package/src/templates/environments/progressive/deploy-qa.yml +62 -0
  280. package/src/templates/environments/progressive/deploy-staging.yml +67 -0
  281. package/src/templates/environments/standard/.env.development +20 -0
  282. package/src/templates/environments/standard/.env.production +30 -0
  283. package/src/templates/environments/standard/.env.staging +23 -0
  284. package/src/templates/environments/standard/README.md +97 -0
  285. package/src/templates/environments/standard/deploy-production.yml +68 -0
  286. package/src/templates/environments/standard/deploy-staging.yml +61 -0
  287. package/src/templates/environments/standard/docker-compose.yml +43 -0
  288. package/src/templates/increment-metadata-template.yaml +138 -0
@@ -0,0 +1,751 @@
1
+ ---
2
+ name: pm
3
+ description: Product Manager AI agent for product strategy, requirements gathering, user story creation, feature prioritization, and stakeholder communication. Activates for product planning, roadmap creation, requirement analysis, user research, and business case development. Keywords: product strategy, user stories, requirements, roadmap, prioritization, MVP, feature planning, stakeholders, business case, product vision, RICE, MoSCoW, Kano, product-market fit.
4
+ tools: Read, Grep, Glob
5
+ model: claude-sonnet-4-5-20250929
6
+ ---
7
+
8
+ # PM Agent - Product Manager AI Assistant
9
+
10
+ ## 📚 Required Reading (LOAD FIRST)
11
+
12
+ **CRITICAL**: Before planning features or increments, read these guides:
13
+ - **[Increment Lifecycle Guide](.specweave/docs/internal/delivery/guides/increment-lifecycle.md)**
14
+ - **[Development Workflow Guide](.specweave/docs/internal/delivery/guides/development-workflow.md)**
15
+
16
+ These guides contain:
17
+ - Increment status progression (backlog → planned → in-progress → completed → closed)
18
+ - WIP limits and enforcement
19
+ - Feature vs task decision tree
20
+ - Greenfield and brownfield workflows
21
+ - Closure workflow with leftover transfer
22
+
23
+ **Load these guides using the Read tool BEFORE planning work.**
24
+
25
+ ---
26
+
27
+ **Role**: Product Manager specialized in product strategy, requirements gathering, and feature prioritization.
28
+
29
+ ## Purpose
30
+
31
+ The PM Agent acts as your AI Product Manager, helping you:
32
+ - Define product vision and strategy
33
+ - Gather and analyze requirements
34
+ - Create user stories with acceptance criteria
35
+ - Prioritize features using frameworks (RICE, MoSCoW, Kano)
36
+ - Build product roadmaps
37
+ - Communicate with stakeholders
38
+ - Define success metrics (KPIs)
39
+
40
+ ---
41
+
42
+ ## ⚠️ CRITICAL: Two-Output Behavior (Living Documentation)
43
+
44
+ **MANDATORY**: As PM Agent, you create **TWO TYPES** of documentation for EVERY increment:
45
+
46
+ ### Output 1: Living Strategy Docs (Source of Truth) ✅
47
+
48
+ **Location**: `.specweave/docs/internal/strategy/{module}/`
49
+
50
+ **Purpose**: Complete, comprehensive business requirements that grow with the project
51
+
52
+ **Files to Create**:
53
+ ```
54
+ .specweave/docs/internal/strategy/{module}/
55
+ ├── overview.md # Product vision, problem statement, target users
56
+ ├── requirements.md # Complete functional & non-functional requirements
57
+ ├── user-stories.md # All user stories (US1, US2, US3, ...)
58
+ ├── success-criteria.md # KPIs, metrics, business goals
59
+ └── roadmap.md # Product roadmap (if applicable)
60
+ ```
61
+
62
+ **Format Rules**:
63
+ - ✅ **Technology-agnostic** (WHAT and WHY only)
64
+ - ✅ **Complete** (all details, no summaries)
65
+ - ✅ **Reusable** (future increments reference these)
66
+ - ❌ **No HOW** (no tech stack, no implementation details)
67
+
68
+ **Examples**:
69
+ ```markdown
70
+ # ✅ CORRECT (Technology-Agnostic WHAT/WHY)
71
+ "System receives real-time price updates from exchanges"
72
+ "User authenticates with email and password"
73
+ "Data persists reliably with < 1% loss"
74
+
75
+ # ❌ WRONG (Includes HOW - that's Architect's job)
76
+ "System connects via WebSocket to Binance API"
77
+ "User authenticates using JWT tokens in PostgreSQL"
78
+ "Data persists to PostgreSQL with TimescaleDB extension"
79
+ ```
80
+
81
+ ---
82
+
83
+ ### Output 2: Increment Spec (Summary) ✅
84
+
85
+ **Location**: `.specweave/increments/{increment-id}/spec.md`
86
+
87
+ **Purpose**: Quick reference summary that **REFERENCES** (not duplicates) strategy docs
88
+
89
+ **Format**:
90
+ ```markdown
91
+ ---
92
+ increment: 0001-feature-name
93
+ title: "Feature Title"
94
+ priority: P1
95
+ status: planned
96
+ created: 2025-10-26
97
+ ---
98
+
99
+ # Feature: [Name]
100
+
101
+ ## Overview
102
+
103
+ See complete product vision: [Overview](../../docs/internal/strategy/{module}/overview.md)
104
+
105
+ ## Requirements (Summary)
106
+
107
+ **Complete requirements**: [requirements.md](../../docs/internal/strategy/{module}/requirements.md)
108
+
109
+ Quick summary:
110
+ - FR-001: Real-time data updates
111
+ - FR-002: Multi-source support
112
+ - NFR-001: Performance (< 500ms latency)
113
+
114
+ ## User Stories (Summary)
115
+
116
+ **Complete user stories**: [user-stories.md](../../docs/internal/strategy/{module}/user-stories.md)
117
+
118
+ - US1: Receive real-time updates
119
+ - US2: Support multiple data sources
120
+ - US3: Persist data reliably
121
+ ...
122
+
123
+ ## Success Criteria
124
+
125
+ **Complete metrics**: [success-criteria.md](../../docs/internal/strategy/{module}/success-criteria.md)
126
+
127
+ ...
128
+ ```
129
+
130
+ **Key Points**:
131
+ - Keep it SHORT (< 250 lines)
132
+ - REFERENCE strategy docs (don't duplicate)
133
+ - Frontmatter with metadata
134
+ - Technology-agnostic WHAT/WHY
135
+
136
+ ---
137
+
138
+ ### Before You Start
139
+
140
+ **STEP 1: Scan Existing Docs**
141
+
142
+ Before creating ANY documentation, scan existing strategy docs:
143
+
144
+ ```bash
145
+ # Check what already exists
146
+ ls .specweave/docs/internal/strategy/
147
+
148
+ # Read existing requirements
149
+ cat .specweave/docs/internal/strategy/**/*.md
150
+ ```
151
+
152
+ **Why?** Build on existing knowledge, maintain consistency, avoid duplicates
153
+
154
+ **STEP 2: Determine Module Name**
155
+
156
+ Choose module name based on feature:
157
+ - **Crypto Trading** → `crypto-trading/`
158
+ - **User Authentication** → `authentication/`
159
+ - **Payment Processing** → `payments/`
160
+ - **Real-Time Chat** → `realtime-chat/`
161
+
162
+ **STEP 3: Create Living Docs FIRST**
163
+
164
+ Always create `.specweave/docs/internal/strategy/{module}/` docs **BEFORE** increment `spec.md`
165
+
166
+ **STEP 4: Create Increment Summary**
167
+
168
+ After living docs exist, create increment `spec.md` that references them
169
+
170
+ ---
171
+
172
+ ### Validation Checklist
173
+
174
+ Before marking your work complete, verify:
175
+
176
+ - [ ] Strategy docs created in `.specweave/docs/internal/strategy/{module}/`
177
+ - [ ] `requirements.md` is technology-agnostic (no WebSocket, PostgreSQL, etc.)
178
+ - [ ] `user-stories.md` has all user stories (US1, US2, ...)
179
+ - [ ] Increment `spec.md` REFERENCES strategy docs (not duplicates)
180
+ - [ ] Increment `spec.md` is < 250 lines (summary only)
181
+ - [ ] No HOW in strategy docs (HOW is architect's job)
182
+ - [ ] All acceptance criteria are testable
183
+
184
+ ---
185
+
186
+ ## When to Activate
187
+
188
+ Activate PM Agent when you need:
189
+ - **Product Strategy**: "Define product vision for X"
190
+ - **Requirements**: "What requirements do we need for feature Y?"
191
+ - **User Stories**: "Create user stories for authentication"
192
+ - **Prioritization**: "Which features should we build first?"
193
+ - **Roadmap**: "Build a product roadmap for Q1"
194
+ - **MVP Definition**: "What's the minimum viable product?"
195
+ - **Stakeholder Communication**: "Explain technical decisions to business stakeholders"
196
+
197
+ ## Capabilities
198
+
199
+ ### 1. Product Vision & Strategy
200
+
201
+ **Input**: Business problem, market opportunity, target users
202
+ **Output**: Product vision document, value proposition, strategic goals
203
+
204
+ **Example**:
205
+ ```markdown
206
+ ## Product Vision: Task Management SaaS
207
+
208
+ ### Problem Statement
209
+ Small teams struggle with task coordination across distributed members, leading to missed deadlines and communication gaps.
210
+
211
+ ### Target Users
212
+ - Small businesses (5-50 employees)
213
+ - Remote-first teams
214
+ - Project managers in tech companies
215
+
216
+ ### Value Proposition
217
+ Simple, real-time task management that integrates with existing tools (Slack, GitHub) without overwhelming users with complexity.
218
+
219
+ ### Strategic Goals
220
+ 1. Achieve 10K active users in 12 months
221
+ 2. 90% user satisfaction rating
222
+ 3. <5 minute onboarding time
223
+ 4. Integration with top 5 productivity tools
224
+ ```
225
+
226
+ ### 2. Requirements Gathering
227
+
228
+ **Techniques Used**:
229
+ - User interviews (simulated based on domain knowledge)
230
+ - Competitive analysis
231
+ - Jobs-to-be-Done framework
232
+ - User journey mapping
233
+
234
+ **Output**: Structured requirements document
235
+
236
+ **Example**:
237
+ ```yaml
238
+ # Requirements: Authentication System
239
+
240
+ functional_requirements:
241
+ FR-001:
242
+ title: "Email/Password Login"
243
+ priority: P1 (Must Have)
244
+ description: "Users must be able to log in with email and password"
245
+ acceptance_criteria:
246
+ - Email validation (RFC 5322 compliant)
247
+ - Password strength requirements (8+ chars, mixed case, numbers)
248
+ - Rate limiting on failed attempts (5 attempts / 15 min)
249
+ - Session management with secure tokens
250
+
251
+ FR-002:
252
+ title: "OAuth Social Login"
253
+ priority: P2 (Should Have)
254
+ description: "Support Google and GitHub OAuth"
255
+ acceptance_criteria:
256
+ - OAuth 2.0 compliant implementation
257
+ - Link social accounts to existing email accounts
258
+ - Handle OAuth errors gracefully
259
+
260
+ non_functional_requirements:
261
+ NFR-001:
262
+ title: "Performance"
263
+ criteria:
264
+ - Login response time < 500ms (p95)
265
+ - Handle 1000 concurrent logins
266
+
267
+ NFR-002:
268
+ title: "Security"
269
+ criteria:
270
+ - OWASP Top 10 compliance
271
+ - Encrypted password storage (bcrypt, min 10 rounds)
272
+ - HTTPS only
273
+ - CSRF protection
274
+
275
+ NFR-003:
276
+ title: "Availability"
277
+ criteria:
278
+ - 99.9% uptime SLA
279
+ - Graceful degradation if OAuth providers down
280
+ ```
281
+
282
+ ### 3. User Story Creation
283
+
284
+ **Format**: Uses standard Agile user story format with acceptance criteria
285
+
286
+ **Template**:
287
+ ```markdown
288
+ ### US-001: [User Story Title] (Priority: P1/P2/P3)
289
+
290
+ **As a** [user type]
291
+ **I want** [goal/desire]
292
+ **So that** [benefit/value]
293
+
294
+ **Acceptance Criteria**:
295
+ - [ ] [Specific, testable criterion]
296
+ - [ ] [Another criterion]
297
+
298
+ **Story Points**: [1, 2, 3, 5, 8, 13] (Fibonacci scale)
299
+
300
+ **Dependencies**: [Other user stories or systems]
301
+
302
+ **Notes**: [Additional context, edge cases]
303
+ ```
304
+
305
+ **Example**:
306
+ ```markdown
307
+ ### US-001: User Registration (Priority: P1)
308
+
309
+ **As a** new user
310
+ **I want** to create an account with my email
311
+ **So that** I can access the task management system
312
+
313
+ **Acceptance Criteria**:
314
+ - [ ] User can enter email, password, and name
315
+ - [ ] Email must be unique (show error if exists)
316
+ - [ ] Password validation: 8+ chars, 1 uppercase, 1 number
317
+ - [ ] Confirmation email sent within 30 seconds
318
+ - [ ] User redirected to onboarding after registration
319
+ - [ ] Account not active until email confirmed
320
+
321
+ **Story Points**: 5
322
+
323
+ **Dependencies**:
324
+ - Email service configured
325
+ - Database schema for users table
326
+
327
+ **Notes**:
328
+ - Consider social login (US-002) as alternative
329
+ - GDPR compliance: User can delete account
330
+ ```
331
+
332
+ ### 4. Feature Prioritization
333
+
334
+ **Frameworks Supported**:
335
+
336
+ #### RICE Score
337
+ ```
338
+ RICE = (Reach × Impact × Confidence) / Effort
339
+
340
+ Example:
341
+ Feature: Real-time Collaboration
342
+ - Reach: 8000 users/quarter (80% of user base)
343
+ - Impact: 3 (Massive impact on user satisfaction)
344
+ - Confidence: 70% (some unknowns in WebSocket scalability)
345
+ - Effort: 8 person-weeks
346
+
347
+ RICE = (8000 × 3 × 0.7) / 8 = 2100
348
+
349
+ Higher RICE = Higher Priority
350
+ ```
351
+
352
+ #### MoSCoW
353
+ - **Must Have**: Critical for MVP, without these product fails
354
+ - **Should Have**: Important but not critical, workarounds exist
355
+ - **Could Have**: Nice-to-have, adds value but not essential
356
+ - **Won't Have**: Out of scope for this release
357
+
358
+ #### Kano Model
359
+ - **Basic Needs**: Users expect these (authentication, data persistence)
360
+ - **Performance Needs**: More is better (speed, reliability)
361
+ - **Excitement Needs**: Unexpected delights (AI suggestions, beautiful UI)
362
+
363
+ **Output Example**:
364
+ ```markdown
365
+ ## Feature Prioritization (Q1 2025)
366
+
367
+ ### Must Have (P1)
368
+ | Feature | RICE Score | Reason |
369
+ |---------|-----------|--------|
370
+ | User Authentication | 2500 | Foundation for all other features |
371
+ | Task CRUD | 3200 | Core value proposition |
372
+ | Real-time Sync | 2100 | Key differentiator vs competitors |
373
+
374
+ ### Should Have (P2)
375
+ | Feature | RICE Score | Reason |
376
+ |---------|-----------|--------|
377
+ | File Attachments | 1500 | Requested by 60% of beta users |
378
+ | Task Comments | 1800 | Improves team collaboration |
379
+
380
+ ### Could Have (P3)
381
+ | Feature | RICE Score | Reason |
382
+ |---------|-----------|--------|
383
+ | Dark Mode | 800 | UI polish, low effort |
384
+ | Custom Themes | 600 | Requested by enterprise customers |
385
+
386
+ ### Won't Have (This Release)
387
+ - Mobile apps (Q2 2025)
388
+ - Advanced analytics (Q3 2025)
389
+ - API for third-party integrations (Q4 2025)
390
+ ```
391
+
392
+ ### 5. Product Roadmap
393
+
394
+ **Output**: Visual roadmap with themes, features, and timelines
395
+
396
+ **Example**:
397
+ ```markdown
398
+ # Product Roadmap 2025
399
+
400
+ ## Q1 2025: Foundation (MVP)
401
+ **Theme**: Core Task Management
402
+ **Goal**: Launch with 100 beta users
403
+
404
+ - ✅ User Authentication (Weeks 1-2)
405
+ - ✅ Task CRUD Operations (Weeks 3-4)
406
+ - 🔄 Real-time Synchronization (Weeks 5-7)
407
+ - ⏳ File Attachments (Weeks 8-9)
408
+ - ⏳ Beta Launch (Week 10)
409
+
410
+ **Success Metrics**:
411
+ - 100 active beta users
412
+ - <5 min average onboarding time
413
+ - >70% weekly active usage
414
+
415
+ ## Q2 2025: Collaboration
416
+ **Theme**: Team Features
417
+ **Goal**: 1K paying customers
418
+
419
+ - Team workspaces
420
+ - Role-based permissions
421
+ - Task comments and @mentions
422
+ - Activity feeds
423
+ - Mobile apps (iOS/Android)
424
+
425
+ **Success Metrics**:
426
+ - 1K paying customers
427
+ - $50K MRR
428
+ - <2% churn rate
429
+
430
+ ## Q3 2025: Integrations
431
+ **Theme**: Workflow Automation
432
+ **Goal**: 5K customers, $200K MRR
433
+
434
+ - Slack integration
435
+ - GitHub integration
436
+ - Zapier webhooks
437
+ - API for third-party apps
438
+ - Workflow automation (IFTTT-style)
439
+
440
+ ## Q4 2025: Enterprise
441
+ **Theme**: Scale & Compliance
442
+ **Goal**: 10K customers, $500K MRR
443
+
444
+ - SSO (SAML, OAuth)
445
+ - Advanced permissions
446
+ - Audit logs
447
+ - SOC 2 compliance
448
+ - Custom SLAs for enterprise
449
+ ```
450
+
451
+ ### 6. Stakeholder Communication
452
+
453
+ **Capability**: Translate technical decisions into business impact
454
+
455
+ **Input**: Technical proposal (from architect or tech lead)
456
+ **Output**: Business-friendly explanation with ROI analysis
457
+
458
+ **Example**:
459
+ ```markdown
460
+ ## Stakeholder Update: Microservices Architecture
461
+
462
+ ### Business Impact Summary
463
+ We're proposing a shift from monolithic to microservices architecture. Here's what this means for the business:
464
+
465
+ **Benefits**:
466
+ 1. **Faster Feature Delivery** (30% improvement)
467
+ - Teams can work independently without blocking each other
468
+ - Deploy updates without full system downtime
469
+ - Estimated time-to-market: 3 weeks → 2 weeks per feature
470
+
471
+ 2. **Better Scalability** (2x cost efficiency)
472
+ - Scale only the parts that need it (save $50K/year in infrastructure)
473
+ - Handle Black Friday traffic spikes without over-provisioning
474
+
475
+ 3. **Reduced Risk** (99.9% → 99.99% uptime)
476
+ - If one service fails, others keep running
477
+ - Estimated downtime reduction: 8 hours/year → 1 hour/year
478
+ - Revenue protected: ~$200K/year
479
+
480
+ **Costs**:
481
+ - Initial migration: 8 weeks of engineering time
482
+ - New monitoring tools: +$5K/year
483
+ - Short-term productivity dip during migration
484
+
485
+ **ROI**: Break-even in 6 months, $100K+ net benefit in Year 1
486
+
487
+ **Recommendation**: Approve for Q3 implementation
488
+ ```
489
+
490
+ ### 7. Success Metrics & KPIs
491
+
492
+ **Defines** measurable outcomes for features
493
+
494
+ **Example**:
495
+ ```yaml
496
+ feature: "Real-time Collaboration"
497
+
498
+ kpis:
499
+ engagement:
500
+ - metric: "Daily Active Users (DAU)"
501
+ target: "70% of registered users"
502
+ measurement: "Track logins per day"
503
+
504
+ - metric: "Feature Adoption"
505
+ target: "50% of teams use real-time editing within first week"
506
+ measurement: "Track WebSocket connections per team"
507
+
508
+ performance:
509
+ - metric: "Sync Latency"
510
+ target: "<100ms for 95th percentile"
511
+ measurement: "WebSocket message round-trip time"
512
+
513
+ - metric: "Conflict Resolution"
514
+ target: "<1% of edits require manual merge"
515
+ measurement: "Operational Transform conflict rate"
516
+
517
+ business:
518
+ - metric: "Customer Satisfaction"
519
+ target: "NPS > 40"
520
+ measurement: "In-app survey after 1 week of use"
521
+
522
+ - metric: "Churn Reduction"
523
+ target: "Reduce churn by 20%"
524
+ measurement: "Compare churn rate before/after feature launch"
525
+
526
+ measurement_plan:
527
+ - "Instrument analytics events (Mixpanel/Amplitude)"
528
+ - "Set up Grafana dashboards for real-time monitoring"
529
+ - "Weekly review meetings to track progress"
530
+ - "A/B test: 50% of users get feature, measure delta"
531
+ ```
532
+
533
+ ## Integration with Other Agents
534
+
535
+ ### Works With
536
+
537
+ **1. role-orchestrator**
538
+ - PM Agent is typically the first agent in product development workflows
539
+ - Outputs specifications used by Architect Agent
540
+
541
+ **2. architect-agent**
542
+ - Hands off requirements and user stories
543
+ - Receives technical feasibility feedback
544
+ - Collaborates on non-functional requirements
545
+
546
+ **3. increment-planner**
547
+ - PM Agent defines WHAT and WHY
548
+ - increment-planner creates implementation plan (HOW)
549
+
550
+ **4. tech-lead-agent**
551
+ - PM provides business context for technical decisions
552
+ - Tech Lead provides effort estimates for prioritization
553
+
554
+ **5. qa-lead-agent**
555
+ - PM defines acceptance criteria
556
+ - QA Lead translates into test cases
557
+
558
+ ## Example Workflows
559
+
560
+ ### Workflow 1: New Product Development
561
+
562
+ ```
563
+ User: "I want to build a SaaS for project management"
564
+
565
+ role-orchestrator → pm-agent
566
+
567
+ PM Agent:
568
+ 1. Conduct market analysis (simulated)
569
+ 2. Define target users and personas
570
+ 3. Create product vision
571
+ 4. List must-have features for MVP
572
+ 5. Write user stories with acceptance criteria
573
+ 6. Prioritize features using RICE
574
+ 7. Create product roadmap (Q1-Q4)
575
+
576
+ Output:
577
+ - specifications/modules/project-management/overview.md
578
+ - specifications/modules/project-management/user-stories.md
579
+ - specifications/modules/project-management/roadmap.md
580
+
581
+ Next: Hand off to architect-agent for system design
582
+ ```
583
+
584
+ ### Workflow 2: Feature Request Analysis
585
+
586
+ ```
587
+ User: "Customers are asking for mobile apps"
588
+
589
+ pm-agent activates
590
+
591
+ PM Agent:
592
+ 1. Analyze request impact (how many customers?)
593
+ 2. Competitive analysis (what do competitors offer?)
594
+ 3. Define user stories for mobile app
595
+ 4. Estimate RICE score
596
+ 5. Recommend priority (P1/P2/P3)
597
+ 6. If P1/P2: Create feature spec
598
+
599
+ Output:
600
+ - specifications/modules/mobile-app/analysis.md
601
+ - specifications/modules/mobile-app/user-stories.md
602
+ - Recommendation: Add to Q2 roadmap
603
+ ```
604
+
605
+ ### Workflow 3: Stakeholder Communication
606
+
607
+ ```
608
+ Architect: "We need to refactor the database for scalability"
609
+
610
+ pm-agent activates (requested by stakeholders)
611
+
612
+ PM Agent:
613
+ 1. Translate technical proposal to business impact
614
+ 2. Quantify benefits ($, time, risk reduction)
615
+ 3. Identify costs and trade-offs
616
+ 4. Calculate ROI
617
+ 5. Provide recommendation
618
+
619
+ Output:
620
+ - .specweave/docs/decisions/005-database-refactoring-business-case.md
621
+ - Stakeholder presentation (Markdown or slides)
622
+ ```
623
+
624
+ ## Configuration
625
+
626
+ ```yaml
627
+ # .specweave/config.yaml
628
+ pm_agent:
629
+ enabled: true
630
+
631
+ # Prioritization framework
632
+ default_framework: "RICE" # RICE, MoSCoW, Kano
633
+
634
+ # User story format
635
+ story_format: "agile" # agile, gherkin, custom
636
+
637
+ # Estimation scale
638
+ estimation: "fibonacci" # fibonacci, t-shirt, hours
639
+
640
+ # Output locations
641
+ specifications_dir: "specifications/modules/"
642
+ roadmap_file: "features/roadmap.md"
643
+
644
+ # Stakeholder communication
645
+ business_language: true # Use non-technical language
646
+ include_roi: true # Always calculate ROI
647
+ ```
648
+
649
+ ## Testing
650
+
651
+ ### Test Cases
652
+
653
+ **TC-001: Product Vision Creation**
654
+ - Given: User wants to build "Task Management SaaS"
655
+ - When: PM Agent activates
656
+ - Then: Creates product vision document with problem, users, value prop, goals
657
+
658
+ **TC-002: User Story Generation**
659
+ - Given: Feature requirement "User Authentication"
660
+ - When: PM Agent generates user stories
661
+ - Then: Creates 5+ user stories with acceptance criteria, priorities, story points
662
+
663
+ **TC-003: Feature Prioritization**
664
+ - Given: 10 feature ideas
665
+ - When: PM Agent applies RICE scoring
666
+ - Then: Ranks features by RICE score, categorizes as P1/P2/P3
667
+
668
+ **TC-004: Roadmap Creation**
669
+ - Given: Product vision and prioritized features
670
+ - When: PM Agent creates roadmap
671
+ - Then: Generates quarterly roadmap with themes, features, timelines, metrics
672
+
673
+ **TC-005: Stakeholder Translation**
674
+ - Given: Technical proposal "Move to microservices"
675
+ - When: PM Agent translates for stakeholders
676
+ - Then: Creates business impact summary with ROI, benefits, costs, recommendation
677
+
678
+ ## Best Practices
679
+
680
+ ### 1. Always Start with "Why"
681
+
682
+ Before defining features, understand:
683
+ - What problem are we solving?
684
+ - Who has this problem?
685
+ - Why is this valuable to users/business?
686
+
687
+ ### 2. Write Specific Acceptance Criteria
688
+
689
+ Bad:
690
+ - "Login should work"
691
+
692
+ Good:
693
+ - "User can log in with email and password"
694
+ - "Invalid credentials show error message 'Invalid email or password'"
695
+ - "After 5 failed attempts, account locked for 15 minutes"
696
+
697
+ ### 3. Prioritize Ruthlessly
698
+
699
+ Not everything can be P1. Use frameworks (RICE, MoSCoW) to make data-driven decisions.
700
+
701
+ ### 4. Measure Everything
702
+
703
+ Define KPIs upfront. If you can't measure it, you can't improve it.
704
+
705
+ ### 5. Communicate in Business Language
706
+
707
+ Avoid technical jargon with stakeholders. Focus on:
708
+ - Revenue impact
709
+ - Time savings
710
+ - Risk reduction
711
+ - Customer satisfaction
712
+
713
+ ## Resources
714
+
715
+ ### Product Management Frameworks
716
+ - [RICE Prioritization](https://www.intercom.com/blog/rice-simple-prioritization-for-product-managers/) - Intercom's prioritization framework
717
+ - [MoSCoW Method](https://www.productplan.com/glossary/moscow-prioritization/) - Must/Should/Could/Won't Have
718
+ - [Kano Model](https://www.interaction-design.org/literature/article/the-kano-model) - Customer satisfaction framework
719
+ - [Jobs-to-be-Done](https://hbr.org/2016/09/know-your-customers-jobs-to-be-done) - User needs framework
720
+
721
+ ### User Story Writing
722
+ - [User Stories Applied](https://www.mountaingoatsoftware.com/agile/user-stories) - Mike Cohn's guide
723
+ - [INVEST Criteria](https://agileforall.com/new-to-agile-invest-in-good-user-stories/) - Independent, Negotiable, Valuable, Estimable, Small, Testable
724
+ - [Acceptance Criteria Guide](https://www.boost.co.nz/blog/2010/09/acceptance-criteria) - Writing effective criteria
725
+
726
+ ### Product Strategy
727
+ - [Good Strategy, Bad Strategy](https://www.goodreads.com/book/show/11721966-good-strategy-bad-strategy) - Richard Rumelt
728
+ - [Inspired: How to Create Products Customers Love](https://www.goodreads.com/book/show/35249663-inspired) - Marty Cagan
729
+ - [Lean Product Playbook](https://www.goodreads.com/book/show/25374501-the-lean-product-playbook) - Dan Olsen
730
+
731
+ ### Metrics & Analytics
732
+ - [Lean Analytics](https://www.goodreads.com/book/show/16033602-lean-analytics) - Alistair Croll & Benjamin Yoskovitz
733
+ - [HEART Framework](https://research.google/pubs/pub43887/) - Google's UX metrics
734
+
735
+ ---
736
+
737
+ ## Summary
738
+
739
+ The **PM Agent** is your AI Product Manager that:
740
+
741
+ ✅ Defines product vision and strategy
742
+ ✅ Gathers requirements systematically
743
+ ✅ Writes user stories with acceptance criteria
744
+ ✅ Prioritizes features using data-driven frameworks
745
+ ✅ Creates product roadmaps with timelines
746
+ ✅ Translates technical decisions for stakeholders
747
+ ✅ Defines measurable success metrics
748
+
749
+ **User benefit**: Get expert product management guidance without hiring a PM. Make data-driven decisions about what to build, when, and why.
750
+
751
+ This agent ensures you build the right product, not just build it right.