specweave 0.1.9 → 0.3.1

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 (293) hide show
  1. package/CLAUDE.md +600 -0
  2. package/README.md +263 -81
  3. package/bin/install-all.sh +1 -1
  4. package/bin/install-commands.sh +3 -3
  5. package/bin/specweave.js +39 -9
  6. package/dist/adapters/adapter-base.d.ts +1 -1
  7. package/dist/adapters/adapter-base.d.ts.map +1 -1
  8. package/dist/adapters/adapter-base.js +6 -41
  9. package/dist/adapters/adapter-base.js.map +1 -1
  10. package/dist/adapters/adapter-interface.js +1 -2
  11. package/dist/adapters/adapter-interface.js.map +1 -1
  12. package/dist/adapters/adapter-loader.d.ts +86 -0
  13. package/dist/adapters/adapter-loader.d.ts.map +1 -0
  14. package/dist/adapters/adapter-loader.js +216 -0
  15. package/dist/adapters/adapter-loader.js.map +1 -0
  16. package/dist/adapters/agents-md-generator.d.ts +48 -0
  17. package/dist/adapters/agents-md-generator.d.ts.map +1 -0
  18. package/dist/adapters/agents-md-generator.js +132 -0
  19. package/dist/adapters/agents-md-generator.js.map +1 -0
  20. package/dist/adapters/claude/adapter.d.ts +2 -2
  21. package/dist/adapters/claude/adapter.d.ts.map +1 -1
  22. package/dist/adapters/claude/adapter.js +5 -42
  23. package/dist/adapters/claude/adapter.js.map +1 -1
  24. package/dist/adapters/claude-md-generator.d.ts +78 -0
  25. package/dist/adapters/claude-md-generator.d.ts.map +1 -0
  26. package/dist/adapters/claude-md-generator.js +246 -0
  27. package/dist/adapters/claude-md-generator.js.map +1 -0
  28. package/dist/adapters/codex/adapter.d.ts +50 -0
  29. package/dist/adapters/codex/adapter.d.ts.map +1 -0
  30. package/dist/adapters/codex/adapter.js +316 -0
  31. package/dist/adapters/codex/adapter.js.map +1 -0
  32. package/dist/adapters/copilot/adapter.d.ts +10 -9
  33. package/dist/adapters/copilot/adapter.d.ts.map +1 -1
  34. package/dist/adapters/copilot/adapter.js +35 -100
  35. package/dist/adapters/copilot/adapter.js.map +1 -1
  36. package/dist/adapters/cursor/adapter.d.ts +8 -6
  37. package/dist/adapters/cursor/adapter.d.ts.map +1 -1
  38. package/dist/adapters/cursor/adapter.js +47 -130
  39. package/dist/adapters/cursor/adapter.js.map +1 -1
  40. package/dist/adapters/doc-generator.d.ts +69 -0
  41. package/dist/adapters/doc-generator.d.ts.map +1 -0
  42. package/dist/adapters/doc-generator.js +247 -0
  43. package/dist/adapters/doc-generator.js.map +1 -0
  44. package/dist/adapters/gemini/adapter.d.ts +50 -0
  45. package/dist/adapters/gemini/adapter.d.ts.map +1 -0
  46. package/dist/adapters/gemini/adapter.js +281 -0
  47. package/dist/adapters/gemini/adapter.js.map +1 -0
  48. package/dist/adapters/generic/adapter.d.ts +7 -4
  49. package/dist/adapters/generic/adapter.d.ts.map +1 -1
  50. package/dist/adapters/generic/adapter.js +60 -59
  51. package/dist/adapters/generic/adapter.js.map +1 -1
  52. package/dist/cli/commands/init.d.ts +3 -1
  53. package/dist/cli/commands/init.d.ts.map +1 -1
  54. package/dist/cli/commands/init.js +327 -177
  55. package/dist/cli/commands/init.js.map +1 -1
  56. package/dist/cli/commands/install.d.ts.map +1 -1
  57. package/dist/cli/commands/install.js +22 -58
  58. package/dist/cli/commands/install.js.map +1 -1
  59. package/dist/cli/commands/list.d.ts.map +1 -1
  60. package/dist/cli/commands/list.js +27 -64
  61. package/dist/cli/commands/list.js.map +1 -1
  62. package/dist/core/credentials-manager.d.ts +90 -0
  63. package/dist/core/credentials-manager.d.ts.map +1 -0
  64. package/dist/core/credentials-manager.js +271 -0
  65. package/dist/core/credentials-manager.js.map +1 -0
  66. package/dist/core/project-structure-detector.d.ts +92 -0
  67. package/dist/core/project-structure-detector.d.ts.map +1 -0
  68. package/dist/core/project-structure-detector.js +289 -0
  69. package/dist/core/project-structure-detector.js.map +1 -0
  70. package/dist/core/rfc-generator-v2.d.ts +149 -0
  71. package/dist/core/rfc-generator-v2.d.ts.map +1 -0
  72. package/dist/core/rfc-generator-v2.js +399 -0
  73. package/dist/core/rfc-generator-v2.js.map +1 -0
  74. package/dist/core/rfc-generator.d.ts +147 -0
  75. package/dist/core/rfc-generator.d.ts.map +1 -0
  76. package/dist/core/rfc-generator.js +434 -0
  77. package/dist/core/rfc-generator.js.map +1 -0
  78. package/dist/integrations/ado/ado-client.d.ts +123 -0
  79. package/dist/integrations/ado/ado-client.d.ts.map +1 -0
  80. package/dist/integrations/ado/ado-client.js +398 -0
  81. package/dist/integrations/ado/ado-client.js.map +1 -0
  82. package/dist/integrations/jira/jira-client.d.ts +139 -0
  83. package/dist/integrations/jira/jira-client.d.ts.map +1 -0
  84. package/dist/integrations/jira/jira-client.js +386 -0
  85. package/dist/integrations/jira/jira-client.js.map +1 -0
  86. package/dist/integrations/jira/jira-incremental-mapper.d.ts +75 -0
  87. package/dist/integrations/jira/jira-incremental-mapper.d.ts.map +1 -0
  88. package/dist/integrations/jira/jira-incremental-mapper.js +474 -0
  89. package/dist/integrations/jira/jira-incremental-mapper.js.map +1 -0
  90. package/dist/integrations/jira/jira-mapper.d.ts +105 -0
  91. package/dist/integrations/jira/jira-mapper.d.ts.map +1 -0
  92. package/dist/integrations/jira/jira-mapper.js +494 -0
  93. package/dist/integrations/jira/jira-mapper.js.map +1 -0
  94. package/dist/testing/test-generator.d.ts +117 -0
  95. package/dist/testing/test-generator.d.ts.map +1 -0
  96. package/dist/testing/test-generator.js +370 -0
  97. package/dist/testing/test-generator.js.map +1 -0
  98. package/dist/utils/auto-install.d.ts +3 -0
  99. package/dist/utils/auto-install.d.ts.map +1 -1
  100. package/dist/utils/auto-install.js +16 -82
  101. package/dist/utils/auto-install.js.map +1 -1
  102. package/dist/utils/esm-helpers.d.ts +50 -0
  103. package/dist/utils/esm-helpers.d.ts.map +1 -0
  104. package/dist/utils/esm-helpers.js +57 -0
  105. package/dist/utils/esm-helpers.js.map +1 -0
  106. package/package.json +16 -7
  107. package/src/adapters/README.md +1 -2
  108. package/src/adapters/adapter-base.ts +6 -3
  109. package/src/adapters/adapter-loader.ts +261 -0
  110. package/src/adapters/agents-md-generator.ts +162 -0
  111. package/src/adapters/claude/README.md +6 -14
  112. package/src/adapters/claude/adapter.ts +4 -4
  113. package/src/adapters/claude-md-generator.ts +311 -0
  114. package/src/adapters/codex/README.md +105 -0
  115. package/src/adapters/codex/adapter.ts +333 -0
  116. package/src/adapters/copilot/adapter.ts +36 -65
  117. package/src/adapters/cursor/README.md +0 -2
  118. package/src/adapters/cursor/adapter.ts +46 -92
  119. package/src/adapters/doc-generator.ts +331 -0
  120. package/src/adapters/gemini/README.md +97 -0
  121. package/src/adapters/gemini/adapter.ts +298 -0
  122. package/src/adapters/generic/adapter.ts +61 -57
  123. package/src/adapters/registry.yaml +86 -25
  124. package/src/agents/devops/AGENT.md +16 -18
  125. package/src/agents/docs-writer/AGENT.md +2 -2
  126. package/src/agents/pm/AGENT.md +1 -50
  127. package/src/commands/README.md +134 -111
  128. package/src/commands/{build.md → specweave.do.md} +141 -69
  129. package/src/commands/{done.md → specweave.done.md} +3 -3
  130. package/src/commands/{inc.md → specweave.inc.md} +4 -4
  131. package/src/commands/{increment.md → specweave.increment.md} +143 -76
  132. package/src/commands/specweave.md +430 -0
  133. package/src/commands/specweave.next.md +495 -0
  134. package/src/commands/{progress.md → specweave.progress.md} +12 -12
  135. package/src/commands/specweave.sync-docs.md +665 -0
  136. package/src/commands/specweave.sync-github.md +269 -0
  137. package/src/commands/specweave.sync-jira.md +197 -0
  138. package/src/commands/{validate.md → specweave.validate.md} +4 -4
  139. package/src/hooks/README.md +19 -29
  140. package/src/hooks/post-task-completion.sh +25 -30
  141. package/src/skills/ado-sync/README.md +1 -36
  142. package/src/skills/bmad-method-expert/SKILL.md +1 -3
  143. package/src/skills/brownfield-analyzer/SKILL.md +429 -23
  144. package/src/skills/brownfield-onboarder/SKILL.md +221 -8
  145. package/src/skills/context-loader/SKILL.md +239 -617
  146. package/src/skills/context-optimizer/SKILL.md +0 -30
  147. package/src/skills/github-sync/SKILL.md +1 -19
  148. package/src/skills/increment-planner/SKILL.md +64 -18
  149. package/src/skills/increment-quality-judge/SKILL.md +1 -36
  150. package/src/skills/jira-sync/README.md +1 -38
  151. package/src/skills/role-orchestrator/README.md +1 -22
  152. package/src/skills/role-orchestrator/SKILL.md +1 -59
  153. package/src/skills/skill-router/SKILL.md +0 -18
  154. package/src/skills/spec-kit-expert/SKILL.md +1 -3
  155. package/src/skills/specweave-detector/SKILL.md +225 -275
  156. package/src/skills/task-builder/README.md +1 -7
  157. package/src/templates/AGENTS.md.template +334 -0
  158. package/src/templates/CLAUDE.md.template +131 -298
  159. package/src/templates/README.md.template +115 -23
  160. package/src/templates/environments/minimal/README.md +0 -1
  161. package/INSTALL.md +0 -848
  162. package/SPECWEAVE.md +0 -743
  163. package/src/adapters/copilot/.github/copilot/instructions.md +0 -376
  164. package/src/adapters/cursor/.cursorrules +0 -325
  165. package/src/adapters/generic/SPECWEAVE-MANUAL.md +0 -676
  166. package/src/commands/create-project.md +0 -528
  167. package/src/commands/generate-docs.md +0 -623
  168. package/src/commands/review-docs.md +0 -331
  169. package/src/commands/sync-github.md +0 -115
  170. package/src/skills/ado-sync/test-cases/test-1.yaml +0 -9
  171. package/src/skills/ado-sync/test-cases/test-2.yaml +0 -8
  172. package/src/skills/ado-sync/test-cases/test-3.yaml +0 -9
  173. package/src/skills/bmad-method-expert/test-cases/test-1-placeholder.yaml +0 -12
  174. package/src/skills/bmad-method-expert/test-cases/test-2-placeholder.yaml +0 -12
  175. package/src/skills/bmad-method-expert/test-cases/test-3-placeholder.yaml +0 -12
  176. package/src/skills/brownfield-analyzer/test-cases/test-1-basic-analysis.yaml +0 -48
  177. package/src/skills/brownfield-analyzer/test-cases/test-2-placeholder.yaml +0 -12
  178. package/src/skills/brownfield-analyzer/test-cases/test-3-placeholder.yaml +0 -12
  179. package/src/skills/brownfield-onboarder/test-cases/test-1-placeholder.yaml +0 -12
  180. package/src/skills/brownfield-onboarder/test-cases/test-2-placeholder.yaml +0 -12
  181. package/src/skills/brownfield-onboarder/test-cases/test-3-placeholder.yaml +0 -12
  182. package/src/skills/calendar-system/test-cases/test-1-placeholder.yaml +0 -12
  183. package/src/skills/calendar-system/test-cases/test-2-placeholder.yaml +0 -12
  184. package/src/skills/calendar-system/test-cases/test-3-placeholder.yaml +0 -12
  185. package/src/skills/context-loader/test-cases/test-1-basic-loading.yaml +0 -39
  186. package/src/skills/context-loader/test-cases/test-2-token-budget-exceeded.yaml +0 -44
  187. package/src/skills/context-loader/test-cases/test-3-section-anchors.yaml +0 -45
  188. package/src/skills/context-optimizer/test-cases/test-1-bug-fix-narrow.yaml +0 -97
  189. package/src/skills/context-optimizer/test-cases/test-2-feature-focused.yaml +0 -109
  190. package/src/skills/context-optimizer/test-cases/test-3-architecture-broad.yaml +0 -98
  191. package/src/skills/cost-optimizer/test-cases/test-1-basic-comparison.yaml +0 -75
  192. package/src/skills/cost-optimizer/test-cases/test-2-budget-constraint.yaml +0 -52
  193. package/src/skills/cost-optimizer/test-cases/test-3-scale-requirement.yaml +0 -63
  194. package/src/skills/cost-optimizer/test-results/README.md +0 -46
  195. package/src/skills/design-system-architect/test-cases/test-1-token-structure.yaml +0 -23
  196. package/src/skills/design-system-architect/test-cases/test-2-component-hierarchy.yaml +0 -24
  197. package/src/skills/design-system-architect/test-cases/test-3-accessibility-checklist.yaml +0 -23
  198. package/src/skills/diagrams-architect/test-cases/test-1-c4-context.yaml +0 -13
  199. package/src/skills/diagrams-architect/test-cases/test-2-sequence-diagram.yaml +0 -13
  200. package/src/skills/diagrams-architect/test-cases/test-3-er-diagram.yaml +0 -13
  201. package/src/skills/diagrams-generator/test-cases/test-1.yaml +0 -9
  202. package/src/skills/diagrams-generator/test-cases/test-2.yaml +0 -9
  203. package/src/skills/diagrams-generator/test-cases/test-3.yaml +0 -8
  204. package/src/skills/docs-updater/test-cases/test-1-placeholder.yaml +0 -12
  205. package/src/skills/docs-updater/test-cases/test-2-placeholder.yaml +0 -12
  206. package/src/skills/docs-updater/test-cases/test-3-placeholder.yaml +0 -12
  207. package/src/skills/dotnet-backend/test-cases/test-1-rest-api.yaml +0 -14
  208. package/src/skills/dotnet-backend/test-cases/test-2-authentication.yaml +0 -13
  209. package/src/skills/dotnet-backend/test-cases/test-3-minimal-api.yaml +0 -13
  210. package/src/skills/e2e-playwright/test-cases/TC-001-basic-navigation.yaml +0 -54
  211. package/src/skills/e2e-playwright/test-cases/TC-002-form-interaction.yaml +0 -64
  212. package/src/skills/e2e-playwright/test-cases/TC-003-specweave-integration.yaml +0 -74
  213. package/src/skills/e2e-playwright/test-cases/TC-004-accessibility-check.yaml +0 -98
  214. package/src/skills/figma-designer/test-cases/test-1-design-system.yaml +0 -13
  215. package/src/skills/figma-designer/test-cases/test-2-component-library.yaml +0 -13
  216. package/src/skills/figma-designer/test-cases/test-3-responsive-layout.yaml +0 -13
  217. package/src/skills/figma-implementer/test-cases/test-1-design-to-react.yaml +0 -13
  218. package/src/skills/figma-implementer/test-cases/test-2-storybook.yaml +0 -13
  219. package/src/skills/figma-implementer/test-cases/test-3-design-tokens.yaml +0 -13
  220. package/src/skills/figma-mcp-connector/test-cases/test-1-read-file-desktop.yaml +0 -22
  221. package/src/skills/figma-mcp-connector/test-cases/test-2-read-file-framelink.yaml +0 -21
  222. package/src/skills/figma-mcp-connector/test-cases/test-3-error-handling.yaml +0 -18
  223. package/src/skills/figma-to-code/test-cases/test-1-token-generation.yaml +0 -29
  224. package/src/skills/figma-to-code/test-cases/test-2-component-generation.yaml +0 -27
  225. package/src/skills/figma-to-code/test-cases/test-3-typescript-generation.yaml +0 -28
  226. package/src/skills/frontend/test-cases/test-1-react-component.yaml +0 -13
  227. package/src/skills/frontend/test-cases/test-2-form-validation.yaml +0 -13
  228. package/src/skills/frontend/test-cases/test-3-state-management.yaml +0 -13
  229. package/src/skills/github-sync/test-cases/test-1-placeholder.yaml +0 -12
  230. package/src/skills/github-sync/test-cases/test-2-placeholder.yaml +0 -12
  231. package/src/skills/github-sync/test-cases/test-3-placeholder.yaml +0 -12
  232. package/src/skills/hetzner-provisioner/test-cases/test-1-basic-provision.yaml +0 -71
  233. package/src/skills/hetzner-provisioner/test-cases/test-2-postgres-provision.yaml +0 -85
  234. package/src/skills/hetzner-provisioner/test-cases/test-3-ssl-config.yaml +0 -126
  235. package/src/skills/hetzner-provisioner/test-results/README.md +0 -259
  236. package/src/skills/increment-planner/test-cases/test-1-basic-feature.yaml +0 -27
  237. package/src/skills/increment-planner/test-cases/test-2-complex-feature.yaml +0 -30
  238. package/src/skills/increment-planner/test-cases/test-3-auto-numbering.yaml +0 -24
  239. package/src/skills/increment-quality-judge/test-cases/test-1-good-spec.yaml +0 -95
  240. package/src/skills/increment-quality-judge/test-cases/test-2-poor-spec.yaml +0 -108
  241. package/src/skills/increment-quality-judge/test-cases/test-3-export-suggestions.yaml +0 -87
  242. package/src/skills/jira-sync/test-cases/test-1.yaml +0 -9
  243. package/src/skills/jira-sync/test-cases/test-2.yaml +0 -9
  244. package/src/skills/jira-sync/test-cases/test-3.yaml +0 -10
  245. package/src/skills/nextjs/test-cases/test-1-app-router.yaml +0 -13
  246. package/src/skills/nextjs/test-cases/test-2-server-actions.yaml +0 -13
  247. package/src/skills/nextjs/test-cases/test-3-api-routes.yaml +0 -13
  248. package/src/skills/nodejs-backend/test-cases/test-1-express-api.yaml +0 -13
  249. package/src/skills/nodejs-backend/test-cases/test-2-prisma-orm.yaml +0 -13
  250. package/src/skills/nodejs-backend/test-cases/test-3-authentication.yaml +0 -13
  251. package/src/skills/notification-system/test-cases/test-1-placeholder.yaml +0 -12
  252. package/src/skills/notification-system/test-cases/test-2-placeholder.yaml +0 -12
  253. package/src/skills/notification-system/test-cases/test-3-placeholder.yaml +0 -12
  254. package/src/skills/python-backend/test-cases/test-1-fastapi-crud.yaml +0 -13
  255. package/src/skills/python-backend/test-cases/test-2-sqlalchemy.yaml +0 -13
  256. package/src/skills/python-backend/test-cases/test-3-authentication.yaml +0 -13
  257. package/src/skills/role-orchestrator/test-cases/test-1-simple-product.yaml +0 -98
  258. package/src/skills/role-orchestrator/test-cases/test-2-quality-gate-failure.yaml +0 -73
  259. package/src/skills/role-orchestrator/test-cases/test-3-security-workflow.yaml +0 -121
  260. package/src/skills/role-orchestrator/test-cases/test-4-parallel-execution.yaml +0 -145
  261. package/src/skills/role-orchestrator/test-cases/test-5-feedback-loops.yaml +0 -149
  262. package/src/skills/skill-creator/test-cases/test-1-placeholder.yaml +0 -12
  263. package/src/skills/skill-creator/test-cases/test-2-placeholder.yaml +0 -12
  264. package/src/skills/skill-creator/test-cases/test-3-placeholder.yaml +0 -12
  265. package/src/skills/skill-router/test-cases/test-1-basic-routing.yaml +0 -33
  266. package/src/skills/skill-router/test-cases/test-2-ambiguous-request.yaml +0 -42
  267. package/src/skills/skill-router/test-cases/test-3-nested-orchestration.yaml +0 -50
  268. package/src/skills/spec-driven-brainstorming/test-cases/TC-001-simple-idea-to-design.yaml +0 -148
  269. package/src/skills/spec-driven-brainstorming/test-cases/TC-002-complex-ultrathink-design.yaml +0 -190
  270. package/src/skills/spec-driven-brainstorming/test-cases/TC-003-unclear-requirements-socratic.yaml +0 -233
  271. package/src/skills/spec-driven-debugging/test-cases/TC-001-simple-auth-bug.yaml +0 -212
  272. package/src/skills/spec-driven-debugging/test-cases/TC-002-race-condition-ultrathink.yaml +0 -461
  273. package/src/skills/spec-driven-debugging/test-cases/TC-003-brownfield-missing-spec.yaml +0 -366
  274. package/src/skills/spec-kit-expert/test-cases/test-1-placeholder.yaml +0 -12
  275. package/src/skills/spec-kit-expert/test-cases/test-2-placeholder.yaml +0 -12
  276. package/src/skills/spec-kit-expert/test-cases/test-3-placeholder.yaml +0 -12
  277. package/src/skills/specweave-ado-mapper/test-cases/test-1-export-to-ado.yaml +0 -13
  278. package/src/skills/specweave-ado-mapper/test-cases/test-2-import-from-ado.yaml +0 -13
  279. package/src/skills/specweave-ado-mapper/test-cases/test-3-bidirectional-sync.yaml +0 -13
  280. package/src/skills/specweave-detector/test-cases/test-1-basic-detection.yaml +0 -37
  281. package/src/skills/specweave-detector/test-cases/test-2-missing-config.yaml +0 -37
  282. package/src/skills/specweave-detector/test-cases/test-3-non-specweave-project.yaml +0 -34
  283. package/src/skills/specweave-jira-mapper/test-cases/test-1-export-to-jira.yaml +0 -13
  284. package/src/skills/specweave-jira-mapper/test-cases/test-2-import-from-jira.yaml +0 -13
  285. package/src/skills/specweave-jira-mapper/test-cases/test-3-sync-status.yaml +0 -13
  286. package/src/skills/stripe-integrator/test-cases/test-1-placeholder.yaml +0 -12
  287. package/src/skills/stripe-integrator/test-cases/test-2-placeholder.yaml +0 -12
  288. package/src/skills/stripe-integrator/test-cases/test-3-placeholder.yaml +0 -12
  289. package/src/skills/task-builder/test-cases/test-1-placeholder.yaml +0 -12
  290. package/src/skills/task-builder/test-cases/test-2-placeholder.yaml +0 -12
  291. package/src/skills/task-builder/test-cases/test-3-placeholder.yaml +0 -12
  292. package/src/templates/config.yaml +0 -351
  293. /package/src/commands/{list-increments.md → specweave.list-increments.md} +0 -0
@@ -1,393 +1,343 @@
1
1
  ---
2
2
  name: specweave-detector
3
- description: Documentation skill that explains SpecWeave slash commands. SpecWeave uses EXPLICIT slash commands only - no auto-activation! Use /pi (Plan Product Increment) or /create-increment to start. Other commands /si (start), /at (add tasks), /vi (validate), /done (close), /ls (list). All commands listed in .claude/commands/. Keywords slash commands, /pi, /create-increment, /si, /vi, /done, /ls, /init, specweave commands.
3
+ description: Documentation skill that explains SpecWeave v0.1.9 smart workflow slash commands. SpecWeave uses EXPLICIT slash commands only - no auto-activation! Use /inc (Plan Increment) or /increment to start. Smart features auto-resume (/do), auto-close (/inc), progress tracking (/progress). Commands /inc, /do, /progress, /validate, /done, /list-increments, /sync-docs, /sync-github. All commands listed in .claude/commands/. Keywords slash commands, /inc, /increment, /do, /progress, /validate, /done, specweave commands, smart workflow, v0.1.9.
4
4
  ---
5
5
 
6
- # SpecWeave - Slash Command Reference
6
+ # SpecWeave v0.1.9 - Smart Workflow Slash Commands
7
7
 
8
- **CRITICAL**: SpecWeave uses **EXPLICIT SLASH COMMANDS ONLY** - no auto-activation, no proactive detection, no intent-based routing.
8
+ **CRITICAL**: SpecWeave uses **EXPLICIT SLASH COMMANDS ONLY** - no auto-activation, no proactive detection!
9
9
 
10
- ## How SpecWeave Works
10
+ ## How SpecWeave Works (v0.1.9)
11
11
 
12
- SpecWeave follows the **spec-kit approach**: You MUST use slash commands explicitly.
12
+ **To use SpecWeave**: Type `/inc "Feature description"` to start
13
13
 
14
- **To use SpecWeave**: Type a slash command (e.g., `/pi "Feature description"`)
14
+ **Smart workflow features**:
15
+ - ✅ Auto-resume (`/do` finds next incomplete task)
16
+ - ✅ Auto-close (`/inc` closes previous if PM gates pass)
17
+ - ✅ Progress tracking (`/progress` shows status anytime)
18
+ - ✅ Natural flow (finish → start next, no overhead)
15
19
 
16
- ## Available Slash Commands
20
+ ## Available Slash Commands (v0.1.9)
17
21
 
18
- ### Quick Reference Table
22
+ ### Core Workflow Commands
19
23
 
20
- | Alias | Full Command | Purpose | Example |
21
- |-------|--------------|---------|---------|
22
- | `/init` | `/create-project` | Initialize SpecWeave project | `/init my-saas` |
23
- | `/pi` | `/create-increment` | **Plan Product Increment** | `/pi "User auth"` |
24
- | `/ci` | `/create-increment` | Alternative to `/pi` | `/ci "Payment"` |
25
- | `/si` | `/start-increment` | Start working on increment | `/si 0001` |
26
- | `/at` | `/add-tasks` | Add tasks to increment | `/at 0001 "Add tests"` |
27
- | `/vi` | `/validate-increment` | Validate increment quality | `/vi 0001 --quality` |
28
- | `/done` | `/close-increment` | Close increment | `/done 0001` |
29
- | `/ls` | `/list-increments` | List all increments | `/ls` |
24
+ | Command | Alias | Description | Example |
25
+ |---------|-------|-------------|---------|
26
+ | `/increment` | `/inc` | **Plan Increment** (PM-led, auto-closes previous) | `/inc "User auth"` |
27
+ | `/do` | - | **Execute tasks** (smart resume, hooks after every task) | `/do` |
28
+ | `/progress` | - | **Show status** (task %, PM gates, next action) | `/progress` |
29
+ | `/validate` | - | **Validate quality** (rule-based + optional LLM judge) | `/validate 0001 --quality` |
30
+ | `/done` | - | **Close explicitly** (optional, `/inc` auto-closes) | `/done 0001` |
30
31
 
31
- ### Command Details
32
+ ### Supporting Commands
32
33
 
33
- #### `/pi` or `/create-increment` - Plan Product Increment
34
+ | Command | Description | Example |
35
+ |---------|-------------|---------|
36
+ | `/list-increments` | List all increments with status | `/list-increments` |
37
+ | `/sync-docs` | Review strategic docs vs code | `/sync-docs --increment=003` |
38
+ | `/sync-github` | Sync increment to GitHub issues | `/sync-github` |
34
39
 
35
- **Most important command!** Creates a new increment with specifications.
40
+ ## Why Only ONE Alias?
36
41
 
37
- ```bash
38
- # Short form (recommended)
39
- /pi "User authentication with JWT and RBAC"
40
-
41
- # Full form
42
- /create-increment "User authentication with JWT and RBAC"
43
- ```
42
+ **Design decision**: `/inc` is the ONLY alias (most frequently used command).
44
43
 
45
- **What happens**:
46
- 1. Creates `.specweave/increments/000X-feature-name/` folder
47
- 2. PM agent generates `spec.md` (requirements, user stories)
48
- 3. Architect agent generates `plan.md` (architecture, design)
49
- 4. QA Lead generates `tests.md` (test strategy)
50
- 5. Creates `tasks.md` (implementation checklist)
44
+ - ✅ Minimizes cognitive overhead (one alias to remember)
45
+ - Other commands use full names for clarity
46
+ - Simpler mental model
51
47
 
52
- #### `/si` or `/start-increment` - Start Working
48
+ ## Typical Workflow
53
49
 
54
- Marks an increment as "in-progress".
50
+ **Natural append-only workflow** (0001 → 0002 → 0003):
55
51
 
56
52
  ```bash
57
- /si 0001
58
- ```
53
+ # 1. Initialize project (CLI, before Claude session)
54
+ npx specweave init my-saas
59
55
 
60
- #### `/at` or `/add-tasks` - Add Tasks
56
+ # 2. Plan your first increment (PM-led)
57
+ /inc "AI-powered customer support chatbot"
58
+ # PM creates: spec.md + plan.md + tasks.md (auto!) + tests.md
61
59
 
62
- Add additional tasks to an increment.
60
+ # 3. Build it (smart resume)
61
+ /do
62
+ # Auto-resumes from next incomplete task
63
+ # Hooks run after EVERY task
63
64
 
64
- ```bash
65
- /at 0001 "Add password reset functionality"
66
- /at 0001 "Add email verification"
67
- ```
65
+ # 4. Check progress anytime
66
+ /progress
67
+ # Shows: 5/12 tasks (42%), next: T006, PM gates status
68
68
 
69
- #### `/vi` or `/validate-increment` - Validate Quality
69
+ # 5. Continue building
70
+ /do
71
+ # Picks up where you left off
70
72
 
71
- Run validation checks on an increment.
73
+ # 6. Start next feature (auto-closes previous!)
74
+ /inc "real-time chat dashboard"
75
+ # Smart check:
76
+ # PM gates pass → Auto-close 0001, create 0002
77
+ # PM gates fail → Present options (never forces)
72
78
 
73
- ```bash
74
- # Rule-based validation only
75
- /vi 0001
79
+ # 7. Keep building
80
+ /do
81
+ # Auto-finds active increment 0002
76
82
 
77
- # With AI quality assessment
78
- /vi 0001 --quality
83
+ # Repeat: /inc /do → /progress → /inc (auto-closes) → /do...
79
84
  ```
80
85
 
81
- #### `/done` or `/close-increment` - Close Increment
82
-
83
- Mark increment as completed.
84
-
85
- ```bash
86
- /done 0001
87
- ```
86
+ ## Command Details
88
87
 
89
- #### `/ls` or `/list-increments` - List All
88
+ ### `/inc` or `/increment` - Plan Increment
90
89
 
91
- Show all increments with status.
90
+ **Most important command!** PM-led planning with auto-close intelligence.
92
91
 
93
92
  ```bash
94
- /ls
93
+ # Short form (recommended)
94
+ /inc "User authentication with JWT and RBAC"
95
+
96
+ # Full form
97
+ /increment "User authentication with JWT and RBAC"
95
98
  ```
96
99
 
97
- ### Why Slash Commands?
100
+ **What happens**:
101
+ 1. **Smart Check Previous**: If increment in-progress:
102
+ - PM gates pass → Auto-close previous, create new (seamless)
103
+ - PM gates fail → Present options (complete first / move tasks / cancel)
104
+ 2. **PM-Led Planning**: PM Agent analyzes requirements
105
+ 3. **Creates**: spec.md (WHAT & WHY), plan.md (HOW)
106
+ 4. **Auto-generates**: tasks.md (from plan), tests.md (test strategy)
107
+ 5. **Ready to build**: Status set to "planned"
98
108
 
99
- **Problem**: Auto-activation doesn't work reliably in Claude Code.
109
+ ### `/do` - Execute Tasks (Smart Resume)
100
110
 
101
- **Solution**: Explicit slash commands (like spec-kit) ensure SpecWeave ALWAYS activates when you want it.
111
+ **Smart resume**: Automatically finds next incomplete task.
102
112
 
103
- **Benefits**:
104
- - **100% reliable** - Always works, no guessing
105
- - ✅ **Clear intent** - You know exactly when SpecWeave is active
106
- - ✅ **Fast** - Short aliases like `/pi` save keystrokes
107
- - ✅ **Memorable** - Domain-specific names (PI = Product Increment from Agile/SAFe)
113
+ ```bash
114
+ # Auto-finds active increment, resumes from next task
115
+ /do
108
116
 
109
- ## Typical Workflow
117
+ # Or specify increment explicitly
118
+ /do 0001
119
+ ```
110
120
 
111
- ### 1. Initialize Project
121
+ **What happens**:
122
+ 1. Finds active increment (or uses specified ID)
123
+ 2. Parses tasks.md, finds first incomplete task
124
+ 3. Shows resume context (task T006, description, priority)
125
+ 4. Executes task implementation
126
+ 5. **Runs hooks after EVERY task completion** (docs update, validation)
127
+ 6. Repeats for next task when you run `/do` again
112
128
 
113
- ```bash
114
- npx specweave init my-saas
115
- cd my-saas
116
- ```
129
+ **No manual tracking needed!** Just keep running `/do`.
117
130
 
118
- **Creates**:
119
- - `.specweave/` - Framework configuration
120
- - `.claude/agents/` - 10 pre-installed agents
121
- - `.claude/skills/` - 35+ pre-installed skills
122
- - `.claude/commands/` - 10 slash commands
123
- - `CLAUDE.md` - Development guide
131
+ ### `/progress` - Show Status
124
132
 
125
- ### 2. Plan Your First Increment
133
+ **Progress visibility**: See exactly where you are anytime.
126
134
 
127
135
  ```bash
128
- # Use short alias (recommended)
129
- /pi "User authentication with JWT and RBAC"
130
- ```
136
+ /progress
131
137
 
132
- **Creates**:
133
- ```
134
- .specweave/increments/0001-user-authentication/
135
- ├── spec.md # Requirements (PM agent)
136
- ├── plan.md # Architecture (Architect agent)
137
- ├── tasks.md # Implementation steps
138
- ├── tests.md # Test strategy (QA Lead agent)
139
- └── context-manifest.yaml # Context loading config
138
+ # Auto-finds active increment, shows:
139
+ # - Task completion % (P1 weighted higher)
140
+ # - PM gates preview (tasks, tests, docs)
141
+ # - Next action guidance
142
+ # - Time tracking & stuck task warnings
140
143
  ```
141
144
 
142
- ### 3. Validate & Start
145
+ ### `/validate` - Validate Quality
146
+
147
+ **Two-level validation**: Rule-based (120 checks) + optional AI quality judge.
143
148
 
144
149
  ```bash
145
- # Validate quality
146
- /vi 0001 --quality
150
+ # Rule-based validation only
151
+ /validate 0001
147
152
 
148
- # Start working
149
- /si 0001
150
- ```
153
+ # With AI quality assessment (LLM-as-judge)
154
+ /validate 0001 --quality
151
155
 
152
- ### 4. Add More Tasks (As Needed)
156
+ # Export suggestions to tasks.md
157
+ /validate 0001 --quality --export
153
158
 
154
- ```bash
155
- # As you discover new work
156
- /at 0001 "Add password reset flow"
157
- /at 0001 "Add 2FA support"
159
+ # Auto-fix issues (experimental)
160
+ /validate 0001 --quality --fix
158
161
  ```
159
162
 
160
- ### 5. Close When Done
163
+ ### `/done` - Close Explicitly
164
+
165
+ **Optional command**: Use when you need explicit closure (usually `/inc` handles this).
161
166
 
162
167
  ```bash
163
168
  /done 0001
164
- ```
165
-
166
- ## Example Sessions
167
169
 
168
- ### Example 1: Real Estate Platform
170
+ # System validates:
171
+ # - All P1 tasks completed
172
+ # - All tests passing
173
+ # - Documentation updated
174
+ #
175
+ # Offers leftover transfer options for P2/P3 tasks
176
+ ```
169
177
 
170
- ```bash
171
- # Initialize
172
- $ npx specweave init real-estate-app
173
- $ cd real-estate-app
178
+ **When to use**:
179
+ - Explicit closure before long break
180
+ - Force closure without starting new increment
181
+ - Generate closure report only
174
182
 
175
- # Plan increment with slash command
176
- $ /pi "Real estate listing platform with search, images, admin dashboard. Node.js/Express, PostgreSQL, JWT auth"
183
+ **Usually NOT needed**: `/inc` auto-closes previous increment if PM gates pass.
177
184
 
178
- 🔷 SpecWeave Active (/create-increment)
185
+ ### `/list-increments` - List All
179
186
 
180
- 📝 Using increment-planner skill...
181
- 🤖 PM agent creating requirements...
182
- 🏗️ Architect agent designing system...
183
- 🛡️ Security agent reviewing authentication...
187
+ **WIP tracking**: View all increments with status and completion.
184
188
 
185
- ✅ Increment created: .specweave/increments/0001-real-estate-platform/
186
- - spec.md (Requirements & user stories)
187
- - plan.md (Architecture & design)
188
- - tasks.md (Implementation checklist)
189
- - tests.md (Test strategy)
189
+ ```bash
190
+ # All increments
191
+ /list-increments
190
192
 
191
- # Validate
192
- $ /vi 0001 --quality
193
- ✅ Quality score: 87/100 (GOOD)
193
+ # Filter by status
194
+ /list-increments --status in-progress
194
195
 
195
- # Start working
196
- $ /si 0001
197
- ✅ Increment 0001 status → in-progress
196
+ # Filter by priority
197
+ /list-increments --priority P1
198
198
 
199
- # Implement (regular Claude conversation, no slash commands needed here)
200
- User: "Let's implement the backend API for listings"
201
- Claude: [implements based on plan.md and tasks.md]
199
+ # Show task breakdown
200
+ /list-increments --verbose
202
201
 
203
- # Close when done
204
- $ /done 0001
205
- ✅ Increment 0001 closed successfully
202
+ # Only WIP increments
203
+ /list-increments --wip-only
206
204
  ```
207
205
 
208
- ### Example 2: Next.js Authentication
209
-
210
- ```bash
211
- # Short alias for speed
212
- $ /pi "Next.js authentication with JWT, OAuth, RBAC"
206
+ ## Smart Workflow Features
213
207
 
214
- 🔷 SpecWeave Active (/create-increment)
208
+ ### 1. Auto-Resume (No Manual Tracking)
215
209
 
216
- 📝 Using increment-planner + nextjs skill...
217
- 🤖 PM agent creating requirements...
218
- 🏗️ Architect agent designing Next.js App Router flow...
219
- 🔒 Security agent reviewing auth patterns...
210
+ **Problem**: Traditional workflows require manual tracking ("which task am I on?")
220
211
 
221
- Increment 0002-nextjs-authentication created
212
+ **Solution**: `/do` automatically finds next incomplete task.
222
213
 
223
- # Add forgotten tasks later
224
- $ /at 0002 "Add password reset flow"
225
- $ /at 0002 "Add 2FA with TOTP"
226
- ✅ Added 2 tasks to increment 0002
214
+ ```
215
+ /do
227
216
 
228
- # List all increments
229
- $ /ls
217
+ 📋 Resuming increment 0001-authentication
218
+ Next: T006 - Implement JWT token validation
219
+ Priority: P1
220
+ Estimate: 2 hours
221
+ Context: After T005 (token generation)
230
222
 
231
- Increments:
232
- 0001 real-estate-platform [completed] ✅
233
- 0002 nextjs-authentication [in-progress] 🚧
223
+ Starting task T006...
234
224
  ```
235
225
 
236
- ### Example 3: Multi-Increment Project
226
+ ### 2. Auto-Close (Seamless Flow)
237
227
 
238
- ```bash
239
- # Create multiple increments
240
- $ /pi "User authentication"
241
- ✅ Increment 0001 created
228
+ **Problem**: Manual closure overhead ("do I need to close this?")
242
229
 
243
- $ /pi "Real estate listings with search"
244
- ✅ Increment 0002 created
230
+ **Solution**: `/inc` auto-closes previous if PM gates pass.
245
231
 
246
- $ /pi "Admin dashboard"
247
- ✅ Increment 0003 created
232
+ **Happy path** (auto-close):
233
+ ```
234
+ /inc "payment processing"
248
235
 
249
- # Work on them in order
250
- $ /si 0001
251
- $ [implement authentication]
252
- $ /done 0001
236
+ 📊 Checking previous increment 0001-authentication...
237
+ PM Gates: ✅ All P1 complete, tests pass, docs updated
253
238
 
254
- $ /si 0002
255
- $ [implement listings]
256
- $ /done 0002
239
+ Auto-closing 0001 (seamless)
240
+ Creating 0002-payment-processing...
241
+ ```
257
242
 
258
- $ /si 0003
259
- $ [implement admin]
260
- $ /done 0003
243
+ **Issues found** (present options):
244
+ ```
245
+ /inc "payment processing"
261
246
 
262
- # Review what's been done
263
- $ /ls
247
+ 📊 Checking previous increment 0001-authentication...
248
+ PM Gates: ❌ 2 P1 tasks remaining
264
249
 
265
- Increments:
266
- 0001 user-authentication [completed] ✅
267
- 0002 real-estate-listings [completed] ✅
268
- 0003 admin-dashboard [completed] ✅
269
- ```
250
+ ❌ Cannot auto-close 0001 (incomplete)
270
251
 
271
- ## Pre-Installed Components
252
+ Options:
253
+ A) Complete 0001 first (recommended)
254
+ B) Move incomplete tasks to 0002
255
+ C) Cancel new increment
272
256
 
273
- After `specweave init`, ALL components are in `.claude/`:
257
+ Your choice? _
258
+ ```
274
259
 
275
- **10 Agents** (all ready to use):
276
- - `pm` - Product Manager (requirements, user stories)
277
- - `architect` - System Architect (design, ADRs)
278
- - `security` - Security Engineer (threat modeling)
279
- - `qa-lead` - QA Lead (test strategy)
280
- - `devops` - DevOps Engineer (deployment)
281
- - `tech-lead` - Technical Lead (code review)
282
- - `sre` - SRE (incident response)
283
- - `docs-writer` - Documentation writer
284
- - `performance` - Performance optimization
285
- - `diagrams-architect` - Diagram generation (C4 Model)
260
+ ### 3. Suggest, Never Force
286
261
 
287
- **35+ Skills** (all ready to use):
288
- - Framework skills: `nextjs`, `nodejs-backend`, `python-backend`, `dotnet-backend`, `frontend`
289
- - Integration skills: `jira-sync`, `ado-sync`, `github-sync`
290
- - Utility skills: `diagrams-generator`, `figma-implementer`, `hetzner-provisioner`
291
- - Quality skills: `increment-quality-judge`, `context-optimizer`
292
- - ... and 25+ more!
262
+ **Critical principle**: User always in control.
293
263
 
294
- ## FAQ
264
+ - ✅ Present options when issues found
265
+ - ✅ Explain consequences clearly
266
+ - ✅ Let user decide
267
+ - ❌ NEVER surprise user with forced closure
295
268
 
296
- ### Q: Why don't I see ⏺ Skill(...) in the console?
269
+ ### 4. Progress Visibility
297
270
 
298
- **A**: SpecWeave skills don't activate proactively. You MUST use slash commands.
271
+ **Problem**: Status unclear ("how much is done?")
299
272
 
300
- **Correct**: `/pi "Feature description"` Skill(increment-planner)
273
+ **Solution**: `/progress` shows status anytime.
301
274
 
302
- **Incorrect**: "Build a feature" → No skill activation
275
+ ```
276
+ /progress
303
277
 
304
- ### Q: When do I use slash commands vs regular conversation?
278
+ 📊 Increment 0001-authentication
305
279
 
306
- **Slash commands for SpecWeave operations**:
307
- - Creating increments: `/pi`
308
- - Managing increments: `/si`, `/done`, `/ls`
309
- - Adding tasks: `/at`
310
- - Validation: `/vi`
280
+ Status: in-progress
281
+ Progress: 42% (5/12 tasks) ⏳
311
282
 
312
- **Regular conversation for implementation**:
313
- - Asking Claude to implement code
314
- - Discussing architecture
315
- - Debugging issues
316
- - Reviewing code
283
+ Task Breakdown:
284
+ P1: 60% (3/5)
285
+ P2: 33% (2/6)
286
+ P3: 0% (0/1)
317
287
 
318
- **Example**:
319
- ```bash
320
- # Use slash command to plan
321
- $ /pi "Payment processing with Stripe"
322
- ✅ Increment 0003 created
288
+ PM Gates Preview:
289
+ ✅ All P1 tasks: 60% (not ready)
290
+ Tests passing: Running...
291
+ Docs updated: Yes
323
292
 
324
- # Then regular conversation to implement
325
- User: "Let's implement the Stripe integration from plan.md"
326
- Claude: [implements based on specifications]
293
+ Next Action: Complete T006 (P1, 2h)
294
+ Time on increment: 3 days
327
295
  ```
328
296
 
329
- ### Q: What if I forget to use a slash command?
297
+ ## Why Slash Commands?
330
298
 
331
- **A**: Claude will implement directly without SpecWeave structure. Your project won't have:
332
- - ❌ No increment folder
333
- - ❌ No spec.md (requirements)
334
- - ❌ No plan.md (architecture)
335
- - ❌ No tests.md (test strategy)
336
- - ❌ No traceability
337
-
338
- **Solution**: Use `/pi` first, THEN implement.
299
+ **Problem**: Auto-activation doesn't work reliably in Claude Code.
339
300
 
340
- ### Q: Can I still use SpecWeave if I already started implementing?
301
+ **SpecWeave solution**: EXPLICIT slash commands for 100% reliability.
341
302
 
342
- **A**: Yes! Use brownfield workflow:
303
+ **Benefits**:
304
+ - ✅ 100% reliable activation (no guessing)
305
+ - ✅ Clear user intent (explicit action)
306
+ - ✅ Consistent behavior (no surprises)
307
+ - ✅ Easy to learn (visible in .claude/commands/)
343
308
 
344
- ```bash
345
- # Create increment retroactively
346
- $ /pi "Document existing authentication implementation"
309
+ ## How to Get Help
347
310
 
348
- # Claude will analyze existing code and create specs
349
- ✅ Increment 0001 created with retroactive documentation
311
+ **Within Claude Code**:
312
+ ```
313
+ User: "How do I use SpecWeave?"
314
+ → Claude shows this documentation
350
315
  ```
351
316
 
352
- ## Testing
317
+ **Available commands**:
318
+ ```
319
+ User: "What SpecWeave commands are available?"
320
+ → Claude lists all slash commands
321
+ ```
353
322
 
354
- ### TC-001: Slash Command Creates Increment
355
- - Given: User types `/pi "User authentication"`
356
- - When: Slash command executes
357
- - Then: increment-planner skill activates
358
- - And: Creates `.specweave/increments/0001-user-authentication/`
359
- - And: spec.md, plan.md, tasks.md, tests.md generated
323
+ **Command syntax**:
324
+ ```
325
+ User: "How do I create a new increment?"
326
+ Claude explains /inc command with examples
327
+ ```
360
328
 
361
- ### TC-002: No Slash Command = No Activation
362
- - Given: User types "Build user authentication"
363
- - When: Claude processes request
364
- - Then: No SpecWeave skills activate
365
- - And: Claude implements directly (no specs generated)
329
+ ## Documentation
366
330
 
367
- ### TC-003: List Increments
368
- - Given: Multiple increments exist
369
- - When: User types `/ls`
370
- - Then: Shows all increments with status
371
- - And: Shows completion status (completed, in-progress, planned)
331
+ - **Command Reference**: See `.claude/commands/` for all command implementations
332
+ - **Quick Reference**: See `CLAUDE.md` for quick reference table
333
+ - **Official Docs**: https://spec-weave.com/docs/commands
372
334
 
373
335
  ---
374
336
 
375
- ## Summary
376
-
377
- **SpecWeave uses EXPLICIT SLASH COMMANDS** - no auto-activation!
337
+ **💡 Pro Tip**: Master the smart workflow cycle!
378
338
 
379
- **Essential commands**:
380
- - `/pi` - Plan Product Increment (most important!)
381
- - `/si` - Start increment
382
- - `/done` - Close increment
383
- - `/ls` - List increments
339
+ **Core cycle**: `/inc` (plan) → `/do` (implement) → `/progress` (check) → `/inc` (next)
384
340
 
385
- **Workflow**:
386
- 1. Init: `npx specweave init`
387
- 2. Plan: `/pi "Feature"`
388
- 3. Validate: `/vi 0001 --quality`
389
- 4. Start: `/si 0001`
390
- 5. Implement: Regular conversation
391
- 6. Close: `/done 0001`
341
+ **Key insight**: Natural flow without overhead. Focus on building, not project management.
392
342
 
393
- **Remember**: Type `/pi` first, THEN implement! Otherwise you lose all SpecWeave benefits (specs, architecture, test strategy).
343
+ **One alias to remember**: `/inc` (short for `/increment`)
@@ -77,13 +77,7 @@ export class StripeService {
77
77
 
78
78
  ## Configuration
79
79
 
80
- ```yaml
81
- # .specweave/config.yaml
82
- task_builder:
83
- structure: "auto-detect" # user-stories | jira | ado
84
- detail_level: "high" # Include code snippets
85
- agent_references: true # Specify which agent for each task
86
- ```
80
+
87
81
 
88
82
  ---
89
83