specweave 0.26.14 → 0.28.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 (167) hide show
  1. package/CLAUDE.md +73 -1
  2. package/README.md +245 -446
  3. package/dist/plugins/specweave-jira/lib/setup-wizard.d.ts.map +1 -1
  4. package/dist/plugins/specweave-jira/lib/setup-wizard.js +57 -78
  5. package/dist/plugins/specweave-jira/lib/setup-wizard.js.map +1 -1
  6. package/dist/src/cli/commands/import-docs.d.ts.map +1 -1
  7. package/dist/src/cli/commands/import-docs.js +23 -31
  8. package/dist/src/cli/commands/import-docs.js.map +1 -1
  9. package/dist/src/cli/commands/import-external.d.ts.map +1 -1
  10. package/dist/src/cli/commands/import-external.js +6 -10
  11. package/dist/src/cli/commands/import-external.js.map +1 -1
  12. package/dist/src/cli/commands/init-multiproject.d.ts.map +1 -1
  13. package/dist/src/cli/commands/init-multiproject.js +58 -73
  14. package/dist/src/cli/commands/init-multiproject.js.map +1 -1
  15. package/dist/src/cli/commands/init.d.ts +17 -11
  16. package/dist/src/cli/commands/init.d.ts.map +1 -1
  17. package/dist/src/cli/commands/init.js +221 -1874
  18. package/dist/src/cli/commands/init.js.map +1 -1
  19. package/dist/src/cli/commands/install.d.ts.map +1 -1
  20. package/dist/src/cli/commands/install.js +14 -22
  21. package/dist/src/cli/commands/install.js.map +1 -1
  22. package/dist/src/cli/commands/migrate-config.d.ts.map +1 -1
  23. package/dist/src/cli/commands/migrate-config.js +6 -10
  24. package/dist/src/cli/commands/migrate-config.js.map +1 -1
  25. package/dist/src/cli/commands/switch-project.d.ts.map +1 -1
  26. package/dist/src/cli/commands/switch-project.js.map +1 -1
  27. package/dist/src/cli/helpers/ado-area-path-mapper.d.ts.map +1 -1
  28. package/dist/src/cli/helpers/ado-area-path-mapper.js +36 -49
  29. package/dist/src/cli/helpers/ado-area-path-mapper.js.map +1 -1
  30. package/dist/src/cli/helpers/github/increment-profile-selector.d.ts.map +1 -1
  31. package/dist/src/cli/helpers/github/increment-profile-selector.js.map +1 -1
  32. package/dist/src/cli/helpers/github/profile-manager.d.ts.map +1 -1
  33. package/dist/src/cli/helpers/github/profile-manager.js +8 -11
  34. package/dist/src/cli/helpers/github/profile-manager.js.map +1 -1
  35. package/dist/src/cli/helpers/github-repo-selector.d.ts.map +1 -1
  36. package/dist/src/cli/helpers/github-repo-selector.js +26 -50
  37. package/dist/src/cli/helpers/github-repo-selector.js.map +1 -1
  38. package/dist/src/cli/helpers/import-strategy-prompter.d.ts.map +1 -1
  39. package/dist/src/cli/helpers/import-strategy-prompter.js +39 -52
  40. package/dist/src/cli/helpers/import-strategy-prompter.js.map +1 -1
  41. package/dist/src/cli/helpers/init/config-detection.d.ts +40 -0
  42. package/dist/src/cli/helpers/init/config-detection.d.ts.map +1 -0
  43. package/dist/src/cli/helpers/init/config-detection.js +125 -0
  44. package/dist/src/cli/helpers/init/config-detection.js.map +1 -0
  45. package/dist/src/cli/helpers/init/directory-structure.d.ts +26 -0
  46. package/dist/src/cli/helpers/init/directory-structure.d.ts.map +1 -0
  47. package/dist/src/cli/helpers/init/directory-structure.js +190 -0
  48. package/dist/src/cli/helpers/init/directory-structure.js.map +1 -0
  49. package/dist/src/cli/helpers/init/external-import.d.ts +15 -0
  50. package/dist/src/cli/helpers/init/external-import.d.ts.map +1 -0
  51. package/dist/src/cli/helpers/init/external-import.js +251 -0
  52. package/dist/src/cli/helpers/init/external-import.js.map +1 -0
  53. package/dist/src/cli/helpers/init/index.d.ts +15 -0
  54. package/dist/src/cli/helpers/init/index.d.ts.map +1 -0
  55. package/dist/src/cli/helpers/init/index.js +26 -0
  56. package/dist/src/cli/helpers/init/index.js.map +1 -0
  57. package/dist/src/cli/helpers/init/next-steps.d.ts +15 -0
  58. package/dist/src/cli/helpers/init/next-steps.d.ts.map +1 -0
  59. package/dist/src/cli/helpers/init/next-steps.js +72 -0
  60. package/dist/src/cli/helpers/init/next-steps.js.map +1 -0
  61. package/dist/src/cli/helpers/init/path-utils.d.ts +41 -0
  62. package/dist/src/cli/helpers/init/path-utils.d.ts.map +1 -0
  63. package/dist/src/cli/helpers/init/path-utils.js +146 -0
  64. package/dist/src/cli/helpers/init/path-utils.js.map +1 -0
  65. package/dist/src/cli/helpers/init/plugin-installer.d.ts +28 -0
  66. package/dist/src/cli/helpers/init/plugin-installer.d.ts.map +1 -0
  67. package/dist/src/cli/helpers/init/plugin-installer.js +238 -0
  68. package/dist/src/cli/helpers/init/plugin-installer.js.map +1 -0
  69. package/dist/src/cli/helpers/init/repository-setup.d.ts +28 -0
  70. package/dist/src/cli/helpers/init/repository-setup.d.ts.map +1 -0
  71. package/dist/src/cli/helpers/init/repository-setup.js +78 -0
  72. package/dist/src/cli/helpers/init/repository-setup.js.map +1 -0
  73. package/dist/src/cli/helpers/init/smart-reinit.d.ts +30 -0
  74. package/dist/src/cli/helpers/init/smart-reinit.d.ts.map +1 -0
  75. package/dist/src/cli/helpers/init/smart-reinit.js +140 -0
  76. package/dist/src/cli/helpers/init/smart-reinit.js.map +1 -0
  77. package/dist/src/cli/helpers/init/testing-config.d.ts +27 -0
  78. package/dist/src/cli/helpers/init/testing-config.d.ts.map +1 -0
  79. package/dist/src/cli/helpers/init/testing-config.js +131 -0
  80. package/dist/src/cli/helpers/init/testing-config.js.map +1 -0
  81. package/dist/src/cli/helpers/init/types.d.ts +86 -0
  82. package/dist/src/cli/helpers/init/types.d.ts.map +1 -0
  83. package/dist/src/cli/helpers/init/types.js +5 -0
  84. package/dist/src/cli/helpers/init/types.js.map +1 -0
  85. package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.d.ts.map +1 -1
  86. package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js +10 -12
  87. package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js.map +1 -1
  88. package/dist/src/cli/helpers/issue-tracker/ado.d.ts.map +1 -1
  89. package/dist/src/cli/helpers/issue-tracker/ado.js +43 -60
  90. package/dist/src/cli/helpers/issue-tracker/ado.js.map +1 -1
  91. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts.map +1 -1
  92. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js +193 -230
  93. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js.map +1 -1
  94. package/dist/src/cli/helpers/issue-tracker/github.d.ts.map +1 -1
  95. package/dist/src/cli/helpers/issue-tracker/github.js +43 -54
  96. package/dist/src/cli/helpers/issue-tracker/github.js.map +1 -1
  97. package/dist/src/cli/helpers/issue-tracker/index.d.ts.map +1 -1
  98. package/dist/src/cli/helpers/issue-tracker/index.js +27 -40
  99. package/dist/src/cli/helpers/issue-tracker/index.js.map +1 -1
  100. package/dist/src/cli/helpers/issue-tracker/jira.d.ts.map +1 -1
  101. package/dist/src/cli/helpers/issue-tracker/jira.js +54 -70
  102. package/dist/src/cli/helpers/issue-tracker/jira.js.map +1 -1
  103. package/dist/src/cli/helpers/smart-filter.d.ts.map +1 -1
  104. package/dist/src/cli/helpers/smart-filter.js +62 -85
  105. package/dist/src/cli/helpers/smart-filter.js.map +1 -1
  106. package/dist/src/core/increment/auto-transition-manager.d.ts +12 -0
  107. package/dist/src/core/increment/auto-transition-manager.d.ts.map +1 -1
  108. package/dist/src/core/increment/auto-transition-manager.js +45 -0
  109. package/dist/src/core/increment/auto-transition-manager.js.map +1 -1
  110. package/dist/src/core/increment/metadata-manager.d.ts.map +1 -1
  111. package/dist/src/core/increment/metadata-manager.js +46 -0
  112. package/dist/src/core/increment/metadata-manager.js.map +1 -1
  113. package/dist/src/core/increment/status-change-sync-trigger.d.ts +12 -0
  114. package/dist/src/core/increment/status-change-sync-trigger.d.ts.map +1 -1
  115. package/dist/src/core/increment/status-change-sync-trigger.js +48 -2
  116. package/dist/src/core/increment/status-change-sync-trigger.js.map +1 -1
  117. package/dist/src/core/living-docs/living-docs-sync.d.ts +13 -0
  118. package/dist/src/core/living-docs/living-docs-sync.d.ts.map +1 -1
  119. package/dist/src/core/living-docs/living-docs-sync.js +40 -0
  120. package/dist/src/core/living-docs/living-docs-sync.js.map +1 -1
  121. package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts +5 -1
  122. package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts.map +1 -1
  123. package/dist/src/core/repo-structure/repo-bulk-discovery.js +68 -86
  124. package/dist/src/core/repo-structure/repo-bulk-discovery.js.map +1 -1
  125. package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
  126. package/dist/src/core/repo-structure/repo-structure-manager.js +345 -425
  127. package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
  128. package/dist/src/core/sync/bidirectional-engine.d.ts.map +1 -1
  129. package/dist/src/core/sync/bidirectional-engine.js +21 -29
  130. package/dist/src/core/sync/bidirectional-engine.js.map +1 -1
  131. package/dist/src/init/InitFlow.js +15 -19
  132. package/dist/src/init/InitFlow.js.map +1 -1
  133. package/dist/src/init/repo/types.d.ts +1 -1
  134. package/dist/src/integrations/ado/area-path-mapper.d.ts.map +1 -1
  135. package/dist/src/integrations/ado/area-path-mapper.js +19 -23
  136. package/dist/src/integrations/ado/area-path-mapper.js.map +1 -1
  137. package/dist/src/utils/external-resource-validator.d.ts.map +1 -1
  138. package/dist/src/utils/external-resource-validator.js +41 -65
  139. package/dist/src/utils/external-resource-validator.js.map +1 -1
  140. package/dist/src/utils/project-detection.d.ts.map +1 -1
  141. package/dist/src/utils/project-detection.js +19 -21
  142. package/dist/src/utils/project-detection.js.map +1 -1
  143. package/dist/src/utils/project-validator.d.ts.map +1 -1
  144. package/dist/src/utils/project-validator.js +5 -7
  145. package/dist/src/utils/project-validator.js.map +1 -1
  146. package/package.json +2 -3
  147. package/plugins/specweave/agents/tech-lead/AGENT.md +9 -0
  148. package/plugins/specweave/hooks/post-edit-write-consolidated.sh +87 -0
  149. package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.d.ts +12 -0
  150. package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.js +45 -0
  151. package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.js.map +1 -1
  152. package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js +46 -0
  153. package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js.map +1 -1
  154. package/plugins/specweave/skills/increment-planner/SKILL.md +10 -5
  155. package/plugins/specweave/skills/specweave-framework/SKILL.md +6 -4
  156. package/plugins/specweave/templates/coding-standards.md.template +36 -0
  157. package/plugins/specweave-ado/lib/project-selector.js +56 -67
  158. package/plugins/specweave-ado/lib/project-selector.ts +72 -85
  159. package/plugins/specweave-github/lib/repo-selector.js +55 -66
  160. package/plugins/specweave-github/lib/repo-selector.ts +73 -84
  161. package/plugins/specweave-jira/commands/import-projects.js +3 -5
  162. package/plugins/specweave-jira/commands/import-projects.ts +3 -5
  163. package/plugins/specweave-jira/lib/project-selector.js +60 -71
  164. package/plugins/specweave-jira/lib/project-selector.ts +78 -91
  165. package/plugins/specweave-jira/lib/setup-wizard.js +51 -72
  166. package/plugins/specweave-jira/lib/setup-wizard.ts +56 -74
  167. package/src/templates/CLAUDE.md.template +14 -0
package/README.md CHANGED
@@ -1,553 +1,348 @@
1
1
  # SpecWeave
2
2
 
3
- > **1 Senior Developer = Full Engineering Team**
4
-
5
- The framework that turns solo builders into unicorn-level engineering teams.
3
+ **The AI Development Framework That Doesn't Lose Your Work**
6
4
 
5
+ [![NPM Version](https://img.shields.io/npm/v/specweave?color=blue)](https://www.npmjs.com/package/specweave)
7
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
- [![Build](https://img.shields.io/github/actions/workflow/status/anton-abyzov/specweave/test.yml?branch=develop&label=Tests)](https://github.com/anton-abyzov/specweave/actions/workflows/test.yml)
9
- [![E2E](https://img.shields.io/github/actions/workflow/status/anton-abyzov/specweave/e2e-smoke-test.yml?branch=develop&label=E2E)](https://github.com/anton-abyzov/specweave/actions/workflows/e2e-smoke-test.yml)
10
- [![Discord](https://img.shields.io/badge/Discord-Join_Server-5865F2?logo=discord&logoColor=white)](https://discord.gg/UYg4BGJ65V)
11
- [![YouTube](https://img.shields.io/badge/YouTube-Subscribe-red?logo=youtube&logoColor=white)](https://www.youtube.com/@antonabyzov)
12
-
13
- ---
14
-
15
- ## 📊 Engineering Metrics (DORA)
16
-
17
- [![Deploy Frequency](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/anton-abyzov/specweave/develop/.specweave/metrics/dora-latest.json&query=$.metrics.deploymentFrequency.value&label=Deploy%20Frequency&suffix=/month&color=brightgreen)](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
18
- [![Lead Time](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/anton-abyzov/specweave/develop/.specweave/metrics/dora-latest.json&query=$.metrics.leadTime.value&label=Lead%20Time&suffix=h&color=brightgreen)](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
19
- [![Change Failure Rate](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/anton-abyzov/specweave/develop/.specweave/metrics/dora-latest.json&query=$.metrics.changeFailureRate.value&label=Change%20Failure%20Rate&suffix=%25&color=brightgreen)](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
20
- [![MTTR](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/anton-abyzov/specweave/develop/.specweave/metrics/dora-latest.json&query=$.metrics.mttr.value&label=MTTR&suffix=min&color=brightgreen)](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
21
-
22
- **SpecWeave builds SpecWeave using SpecWeave.** These are real metrics from our own development.
23
-
24
- **[→ Live Dashboard](https://spec-weave.com/docs/metrics)** | **[→ Detailed Report](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/metrics/dora-report.md)**
25
-
26
- ---
27
-
28
- ## 🦄 The Solo Builder Revolution
29
-
30
- **The Truth Nobody Talks About:**
31
- - **Stripe:** Started with 2 engineers
32
- - **Instagram:** 1 engineer (Kevin Systrom) until 100M users
33
- - **WhatsApp:** 32 engineers serving 450M users (14M users per engineer!)
34
- - **Plaid:** 3 founding engineers built a $13B company
35
-
36
- **What they had that you don't:**
37
- - Enterprise-grade documentation processes
38
- - Architecture decision records (ADRs)
39
- - Living runbooks and operational docs
40
- - Spec-driven development discipline
41
-
42
- **With SpecWeave:**
43
- - ✅ **You get ALL of that** - automatically
44
- - ✅ **You ARE the full team** - PM + Architect + QA + DevOps + Tech Writer
45
- - ✅ **You CAN build unicorns** - solo, with enterprise-grade quality
46
-
47
- ### What This Replaces:
48
-
49
- | Role | Annual Cost | SpecWeave Replacement |
50
- |------|-------------|----------------------|
51
- | Product Manager | $150K | Auto-generated PRDs + User Stories |
52
- | System Architect | $180K | Auto-generated ADRs + HLD |
53
- | Tech Writer | $100K | Living docs auto-sync |
54
- | QA Lead | $130K | BDD tests embedded |
55
- | DevOps Engineer | $150K | Production runbooks included |
56
- | **Total Team Cost** | **$710K/year** | **$0** (free framework) |
57
-
58
- **ROI:** ♾️ (infinite)
59
-
60
- **You're not hiring a team. You're automating one.** 🚀
7
+ [![Discord](https://img.shields.io/badge/Discord-Join-5865F2?logo=discord&logoColor=white)](https://discord.gg/UYg4BGJ65V)
8
+ [![YouTube](https://img.shields.io/badge/YouTube-Tutorials-red?logo=youtube&logoColor=white)](https://www.youtube.com/@antonabyzov)
61
9
 
62
10
  ---
63
11
 
64
- ## If You Get Hit By A Bus
65
-
66
- Your startup dies with you.
67
-
68
- Every architecture decision. Every API choice. Every "weird workaround because..."
69
-
70
- All in your head. Zero documentation.
71
-
72
- **AI made you 10x faster at digging your own grave.**
73
-
74
- ---
12
+ ## What Makes SpecWeave Different
75
13
 
76
- ## Want to Scale? Get Enterprise-Ready.
14
+ Every AI coding tool promises productivity. But after the chat ends:
77
15
 
78
- You can't land Fortune 500 clients with tribal knowledge.
79
- You can't pass SOC2 audit with "ask Dave."
80
- You can't sell your startup when the codebase is a mystery.
16
+ - **Your specs disappear** into chat history
17
+ - **Your architecture decisions are forgotten**
18
+ - **Your tests are never written**
19
+ - **Your GitHub/JIRA stays outdated**
20
+ - **New team members start from zero**
81
21
 
82
- **The companies making REAL money?**
83
- - They have **PRDs** (Product Requirements)
84
- - They have **ADRs** (Architecture Decision Records)
85
- - They have **HLDs** (High-Level Design docs)
86
- - They have **runbooks** (How to actually run this)
22
+ **SpecWeave is the only framework where AI decisions become permanent, searchable documentation.**
87
23
 
88
- This isn't bureaucracy. **This is how you get paid.**
89
-
90
- But for solo devs and small teams? Impossible to maintain manually.
91
-
92
- ---
93
-
94
- ## SpecWeave: Enterprise Standards, Solo Builder Capability
95
-
96
- **The Power Formula:**
97
24
  ```
98
- 1 Senior + SpecWeave + Claude Code = Full Engineering Team
25
+ Your Idea Spec (permanent) Plan (permanent) → Tasks (permanent) → Code Living Docs (auto-synced)
99
26
  ```
100
27
 
101
- Living documentation that updates automatically after every task.
102
- The same processes Fortune 500 uses. Without the team. Without the manual work.
103
-
104
- ### For Juniors:
105
- - ✅ **Code like seniors** - Enterprise patterns from day one
106
- - ✅ **Think like architects** - ADRs teach you system design
107
- - ✅ **Test like QA leads** - BDD embedded in every task
108
-
109
- ### For Seniors:
110
- - ✅ **Build like unicorns** - Solo founder → Unicorn-level product
111
- - ✅ **Ship enterprise-grade** - Pass SOC2, land Fortune 500 deals
112
- - ✅ **Replace entire teams** - PM + Architect + QA + DevOps + Tech Writer
113
-
114
- ### For CTOs:
115
- - ✅ **Manage without meetings** - Docs are source of truth
116
- - ✅ **Scale without chaos** - Standards enforced automatically
117
- - ✅ **Audit-ready always** - ISO, SOC2, compliance built-in
118
-
119
- **AI speed + Enterprise reliability + Solo capability = Infinite leverage** 🚀
120
-
121
28
  ---
122
29
 
123
- ## 🤖 AI Manages Your Enterprise Tools (Not Just Your Code!)
124
-
125
- **Here's what makes SpecWeave revolutionary:**
126
-
127
- Other AI tools write code. **SpecWeave's AI runs your entire engineering operation.**
128
-
129
- ### The Problem with Traditional AI Coding
130
-
131
- ```
132
- You → AI → Code ✅
133
- You → Manual → Update JIRA ❌ (3 hours/week wasted)
134
- You → Manual → Update GitHub ❌ (2 hours/week wasted)
135
- You → Manual → Write docs ❌ (4 hours/week wasted)
136
- ```
137
-
138
- **Total waste**: 9 hours/week = $35K/year per developer
139
-
140
- ### The SpecWeave Solution: AI with Three-Permission Sync
141
-
142
- **Control EXACTLY what Claude updates with three simple questions**:
30
+ ## The Workflow
143
31
 
144
32
  ```mermaid
145
- graph TB
146
- A[👤 You + Claude] -->|"Plan feature:\n/specweave:increment"| B{Q1: Can Claude CREATE\nand UPDATE work items\nit created?}
147
- B -->|" Yes"| C[📝 Create GitHub Issue #142]
148
- B -->|"❌ No"| D[💻 Local Mode Only]
149
-
150
- E[✅ Task Complete] -->|"Update content?"| F{Q2: Can Claude UPDATE\nwork items created\nexternally?}
151
- F -->|"✅ Yes"| G[📤 Update PM-Created Issues]
152
- F -->|" No"| H[📋 Living Docs Only]
153
-
154
- I[🔔 Issue Closed] -->|"Sync status?"| J{Q3: Can Claude UPDATE\nstatus of work items?}
155
- J -->|"✅ Yes"| K[✅ Sync Status]
156
- J -->|"❌ No"| L[👤 Manual Management]
157
-
158
- style B fill:#339af0,stroke:#1971c2,stroke-width:3px,color:#fff
159
- style F fill:#51cf66,stroke:#2f9e44,stroke-width:3px,color:#fff
160
- style J fill:#ff8c42,stroke:#e8590c,stroke-width:3px,color:#fff
161
- ```
162
-
163
- **Answer 3 questions during `specweave init`, Claude handles everything else**:
164
-
33
+ flowchart TB
34
+ subgraph INPUT["1. YOU TYPE ONE COMMAND"]
35
+ A["<b>/specweave:increment</b><br/>'Add user authentication with OAuth'"]
36
+ end
37
+
38
+ subgraph AGENTS["2. AI AGENTS CREATE YOUR FOUNDATION"]
39
+ direction TB
40
+ PM["<b>PM Agent</b><br/>User stories, acceptance criteria,<br/>market research"]
41
+ ARCH["<b>Architect Agent</b><br/>System design, ADRs,<br/>tech stack decisions"]
42
+ PLAN["<b>Planner Agent</b><br/>Tasks with embedded tests,<br/>coverage targets"]
43
+ PM --> ARCH --> PLAN
44
+ end
45
+
46
+ subgraph OUTPUT["3. THREE PERMANENT FILES"]
47
+ direction LR
48
+ SPEC["<b>spec.md</b><br/>WHAT & WHY<br/>(User Stories + ACs)"]
49
+ PLANF["<b>plan.md</b><br/>HOW<br/>(Architecture + ADRs)"]
50
+ TASKS["<b>tasks.md</b><br/>DO<br/>(Tasks + Tests)"]
51
+ end
52
+
53
+ subgraph EXECUTE["4. ONE COMMAND TO BUILD"]
54
+ B["<b>/specweave:do</b><br/>Autonomous execution through all tasks"]
55
+ end
56
+
57
+ subgraph SYNC["5. AUTO-SYNC EVERYWHERE"]
58
+ direction LR
59
+ GH["<b>GitHub Issues</b><br/>Checkboxes update"]
60
+ JIRA["<b>JIRA</b><br/>Epic/Story hierarchy"]
61
+ ADO["<b>Azure DevOps</b><br/>Work items"]
62
+ DOCS["<b>Living Docs</b><br/>Always current"]
63
+ end
64
+
65
+ INPUT --> AGENTS
66
+ AGENTS --> OUTPUT
67
+ OUTPUT --> EXECUTE
68
+ EXECUTE --> SYNC
69
+
70
+ style INPUT fill:#e8f5e9,stroke:#4caf50,stroke-width:2px
71
+ style AGENTS fill:#e3f2fd,stroke:#2196f3,stroke-width:2px
72
+ style OUTPUT fill:#fff3e0,stroke:#ff9800,stroke-width:2px
73
+ style EXECUTE fill:#fce4ec,stroke:#e91e63,stroke-width:2px
74
+ style SYNC fill:#f3e5f5,stroke:#9c27b0,stroke-width:2px
165
75
  ```
166
- You → Claude → EVERYTHING (automatic!)
167
76
 
168
- /specweave:increment "User authentication"
169
-
170
- Claude creates:
171
- ✅ Spec.md (user stories, acceptance criteria)
172
- ✅ JIRA Epic + 5 Stories (auto-created if Q1=Yes)
173
- ✅ GitHub Issue #142 (auto-created if Q1=Yes)
174
- ✅ Tasks with embedded tests (BDD format)
77
+ ---
175
78
 
176
- /specweave:do
79
+ ## Quick Start
177
80
 
178
- Claude implements Task 1:
179
- Code (AuthService.ts, tests, 92% coverage)
180
- JIRA Story → "Done" (if Q2=Yes, updated automatically!)
181
- GitHub checkbox → ✓ (if Q2=Yes, updated automatically!)
182
- ✅ Docs synced (ADRs, architecture, runbooks)
81
+ ```bash
82
+ npm install -g specweave
83
+ cd your-project
84
+ specweave init .
183
85
  ```
184
86
 
185
- **Your team/client/manager sees updates in real-time. Zero manual work.**
186
-
187
- ### What This Means in Practice
188
-
189
- **For Solo Founders**:
190
- - ✅ Appear like a full engineering team to investors
191
- - ✅ Professional JIRA/ADO tracking (without the overhead)
192
- - ✅ 80% of time coding, 20% everything else (not 50/50!)
193
-
194
- **For Agencies/Consultants**:
195
- - ✅ Client A (JIRA) + Client B (ADO) + Client C (GitHub) = Zero context-switching
196
- - ✅ Clients see real-time updates (without you doing PM work)
197
- - ✅ Reclaim 20+ hours/month = $3K-$5K more billable time
198
-
199
- **For Small Teams (2-10 people)**:
200
- - ✅ No dedicated PM needed (Claude orchestrates everything)
201
- - ✅ Save $130K/year OR free up senior dev to build
202
- - ✅ Management self-service (no "What's the status?" meetings)
87
+ Then in Claude Code:
88
+ ```bash
89
+ /specweave:increment "User authentication with OAuth" # AI creates spec + plan + tasks
90
+ /specweave:do # Autonomous implementation
91
+ /specweave:done 0001 # Quality-validated completion
92
+ ```
203
93
 
204
- **For Enterprises**:
205
- - ✅ SOC2/ISO audit trails (automatic compliance documentation)
206
- - ✅ Real-time visibility (management dashboards fed by AI)
207
- - ✅ Multi-project tracking (unlimited repos, one SpecWeave instance)
94
+ **[Full Quickstart Guide](https://spec-weave.com/docs/guides/getting-started/quickstart)**
208
95
 
209
- ### Supported Enterprise Platforms
96
+ ---
210
97
 
211
- | Platform | Status | Capabilities |
212
- |----------|--------|--------------|
213
- | **GitHub Issues** | ✅ Production | Three-permission sync, task tracking, auto-close, multi-repo |
214
- | **JIRA** | ✅ Production | Three-permission sync, Epic/Story sync, status updates, comments |
215
- | **Azure DevOps** | ✅ Production | Three-permission sync, Work items, hierarchy, area paths |
216
- | **Linear** | 🔄 Coming Q1 2026 | Full integration planned |
217
- | **Asana** | 🔄 Coming Q2 2026 | Full integration planned |
98
+ ## Why SpecWeave Over Alternatives?
218
99
 
219
- ### Real ROI Example
100
+ ### vs. BMAD Method (18K GitHub Stars)
220
101
 
221
- **5-person engineering team**:
222
- - **Before SpecWeave**: 3 hours/week/person on JIRA/PM = 780 hours/year = **$58,500 wasted**
223
- - **After SpecWeave**: 0 hours (Claude does it) = **$58,500 saved**
102
+ | Aspect | BMAD | SpecWeave |
103
+ |--------|------|-----------|
104
+ | **Focus** | Greenfield microservices | **Brownfield + Greenfield** |
105
+ | **Context Efficiency** | Context crashes documented | **70%+ token reduction** |
106
+ | **Multi-Repo** | Single repo focus | **Multi-project mode** |
107
+ | **External Sync** | None | **GitHub/JIRA/ADO bidirectional** |
108
+ | **Quality Gates** | Optional | **3-gate PM validation** |
109
+ | **Learning Curve** | Steep (YAML/agents) | Medium (CLI commands) |
224
110
 
225
- **Plus intangibles**:
226
- - ✅ 30% more features shipped (time reclaimed)
227
- - ✅ Audit-ready always (compliance automatic)
228
- - ✅ Real-time visibility (stakeholders self-service)
229
- - ✅ Professional appearance (even as solo founder)
111
+ ### vs. GitHub Spec Kit
230
112
 
231
- **[→ Multi-Project Sync Guide](https://spec-weave.com/docs/integrations/multi-project-sync)** | **[→ 5-Minute Setup](https://spec-weave.com/docs/guides/getting-started/quickstart)**
113
+ | Aspect | Spec Kit | SpecWeave |
114
+ |--------|----------|-----------|
115
+ | **Maturity** | Experimental | **Production-ready** |
116
+ | **Brownfield** | Not supported | **Core strength** |
117
+ | **Implementation Quality** | "Poor" (user reports) | **Quality gates enforce standards** |
118
+ | **Human Oversight** | Batch execution | **Milestone validation** |
119
+ | **Enterprise Features** | None | **Compliance, multi-team, DORA** |
232
120
 
233
121
  ---
234
122
 
235
- ## Works for Both
123
+ ## External Tool Integration
236
124
 
237
- **🌱 Greenfield** (New Projects)
238
- - Start with best practices from day one
239
- - Spec-driven development from the beginning
240
- - Clean, documented, maintainable
125
+ SpecWeave keeps your project management tools in sync **automatically**:
241
126
 
242
- **🏭 Brownfield** (Existing Projects)
243
- - Import docs from Notion, Confluence, Wiki
244
- - AI-powered classification (85%+ accuracy)
245
- - Gradual migration without disruption
127
+ ```mermaid
128
+ flowchart LR
129
+ subgraph SPECWEAVE["SpecWeave"]
130
+ TASK["Task Completed"]
131
+ US["User Story Updated"]
132
+ INC["Increment Progress"]
133
+ end
134
+
135
+ subgraph EXTERNAL["Your Tools (Bidirectional)"]
136
+ GH["<b>GitHub Issues</b><br/>Checkboxes, comments,<br/>labels auto-update"]
137
+ JIRA["<b>JIRA</b><br/>Epic/Story hierarchy,<br/>status transitions"]
138
+ ADO["<b>Azure DevOps</b><br/>Work items,<br/>area paths"]
139
+ end
140
+
141
+ TASK -->|"hooks auto-fire"| GH
142
+ TASK -->|"hooks auto-fire"| JIRA
143
+ TASK -->|"hooks auto-fire"| ADO
144
+
145
+ GH -->|"import existing"| INC
146
+ JIRA -->|"import existing"| INC
147
+ ADO -->|"import existing"| INC
148
+
149
+ style SPECWEAVE fill:#e3f2fd,stroke:#2196f3,stroke-width:2px
150
+ style EXTERNAL fill:#f3e5f5,stroke:#9c27b0,stroke-width:2px
151
+ ```
246
152
 
247
- **[→ Brownfield Import Guide](https://spec-weave.com/docs/workflows/brownfield)**
153
+ | Platform | Capabilities |
154
+ |----------|--------------|
155
+ | **GitHub Issues** | Create, update, close, bidirectional sync, checkbox tracking |
156
+ | **JIRA** | Epic/Story hierarchy, bidirectional sync, custom fields |
157
+ | **Azure DevOps** | Work items, area paths, bidirectional sync |
158
+ | **Linear** | Coming Q1 2026 |
248
159
 
249
160
  ---
250
161
 
251
- ## Quick Start
252
-
253
- ### Greenfield (New Project)
254
- ```bash
255
- # Install SpecWeave
256
- npm install -g specweave
162
+ ## What You Get
257
163
 
258
- # Initialize with Strategic Init (AI-powered research)
259
- specweave init my-project
164
+ | Before | After SpecWeave |
165
+ |--------|-----------------|
166
+ | Specs in chat history | **Permanent, searchable specs** |
167
+ | Manual JIRA/GitHub updates | **Auto-sync on every task** |
168
+ | Tests? Maybe later... | **Tests embedded in tasks (60%+ enforced)** |
169
+ | Architecture in your head | **ADRs captured automatically** |
170
+ | "Ask John, he knows" | **Living docs, always current** |
171
+ | Onboarding: 2 weeks | **Onboarding: 1 day** |
260
172
 
261
- # Strategic Init guides you through 6 phases:
262
- # Phase 1: Vision & Market Research
263
- # Phase 2: Scaling & Performance Goals
264
- # Phase 3: Data & Compliance Detection
265
- # Phase 4: Budget & Cloud Credits
266
- # Phase 5: Methodology & Organization
267
- # Phase 6: Repository Selection (optional)
173
+ ---
268
174
 
269
- # Result: Architecture recommendation, team plan, cost estimates
270
- cd my-project
175
+ ## DORA Metrics Integration
271
176
 
272
- # Start building
273
- /specweave:increment "User authentication" # Plan increment
274
- /specweave:do # Implement tasks
275
- /specweave:done 0001 # Complete increment
276
- ```
177
+ SpecWeave automatically calculates your team's [DORA metrics](https://dora.dev/) from GitHub data:
277
178
 
278
- ### Multi-Project Setup
279
179
  ```bash
280
- # Initialize with multiple projects
281
- specweave init --projects backend,frontend,mobile
282
-
283
- # Tasks automatically split by project keyword detection
284
- # Each project gets its own user stories and GitHub issues
180
+ npm run metrics:dora
285
181
  ```
286
182
 
287
- ### Brownfield (Existing Project)
288
- ```bash
289
- # Initialize SpecWeave in existing project
290
- cd my-existing-project
291
- specweave init .
292
-
293
- # Import existing docs
294
- /specweave:import-docs ~/Downloads/notion-export --source=notion
295
-
296
- # Continue normally
297
- /specweave:increment "Add dark mode"
298
- ```
183
+ | Metric | What It Measures | Elite Performance |
184
+ |--------|------------------|-------------------|
185
+ | **Deployment Frequency** | How often you release | Multiple per day |
186
+ | **Lead Time for Changes** | Commit to production | Less than 1 day |
187
+ | **Change Failure Rate** | % of releases causing issues | 0-15% |
188
+ | **Mean Time to Recovery** | Time to restore service | Less than 1 hour |
299
189
 
300
- **[→ Complete Quickstart Guide](https://spec-weave.com/docs/guides/getting-started/quickstart)** | **[→ Strategic Init Guide](https://spec-weave.com/docs/guides/strategic-init)**
190
+ **Connect your spec-driven workflow directly to industry-standard metrics.**
301
191
 
302
192
  ---
303
193
 
304
- ## Real-World Example
194
+ ## The Three-File Foundation
305
195
 
306
- **Scenario**: Building authentication for SaaS app
196
+ Every feature generates three permanent files:
307
197
 
308
- ```bash
309
- # 1. Plan increment (PM Agent creates spec with user stories)
310
- /specweave:increment "User authentication with OAuth"
311
-
312
- # Result:
313
- # ✅ spec.md - User stories, acceptance criteria
314
- # ✅ plan.md - Architecture, implementation steps
315
- # ✅ tasks.md - Tasks with embedded tests (BDD format)
316
-
317
- # 2. Implement (auto-pauses if blocked, resumes when ready)
318
- /specweave:do
319
-
320
- # While you work:
321
- # - Living docs sync automatically after each task
322
- # - Tests embedded in tasks guide implementation
323
- # - ADRs document "why we chose X over Y"
324
- # - GitHub issues auto-sync (optional)
325
-
326
- # 3. Complete (Quality Judge validates)
327
- /specweave:done 0001
328
-
329
- # Result:
330
- # ✅ Code implemented
331
- # ✅ Tests passing (90% coverage)
332
- # ✅ Docs synced (ADRs, HLDs, runbooks)
333
- # ✅ GitHub issues updated
334
- # ✅ New dev can onboard in 1 hour (not 1 week!)
198
+ ```
199
+ .specweave/increments/0001-user-authentication/
200
+ ├── spec.md ← WHAT: User stories, acceptance criteria, requirements
201
+ ├── plan.md ← HOW: Architecture, tech decisions, ADRs
202
+ └── tasks.md ← DO: Implementation tasks with embedded tests
335
203
  ```
336
204
 
337
- ---
338
-
339
- ## Key Features
340
-
341
- ### Strategic Init - AI-Powered Architecture Planning (NEW!)
342
-
343
- - 🎯 **Research-Driven Discovery** - Answer 6 phases of questions about your product
344
- - 🏗️ **Architecture Recommendations** - Tech stack, scaling strategy, cost projections
345
- - 🔒 **Compliance Detection** - Auto-detects 30+ standards (HIPAA, GDPR, SOC2, etc.)
346
- - 👥 **Smart Team Planning** - Current and future team structure, hiring roadmap
347
- - ☁️ **Cloud Credits Discovery** - AWS Activate, Azure Startup, GCP eligibility
348
- - 📦 **Repository Selection** - Batch select 1-100+ repos with intelligent routing
349
-
350
- ### Multi-Platform Git Support (NEW!)
205
+ ### spec.md (WHAT)
206
+ ```markdown
207
+ ## User Stories
351
208
 
352
- - 🌐 **Platform Choice** - GitHub (fully supported), GitLab & Bitbucket (coming soon)
353
- - 🔑 **SSH & HTTPS URLs** - Choose your preferred Git authentication method
354
- - 🏢 **Self-Hosted Support** - GitHub Enterprise, GitLab self-hosted, custom domains
355
- - 🔄 **Platform-Agnostic Architecture** - Zero hardcoded platform references
356
- - ✅ **Smart Validation** - Owner/repo/token validation before repository creation
357
- - 📝 **Actionable Errors** - Platform-specific troubleshooting steps when things go wrong
209
+ ### US-001: User Login
210
+ As a user, I want to log in with OAuth so that I don't need to remember passwords.
358
211
 
359
- **During `specweave init`:**
360
- ```bash
361
- ? Select Git hosting platform:
362
- > GitHub (Modern, cloud-native development platform)
363
- GitLab (Coming soon! Q1 2026)
364
- Bitbucket (Coming soon! Q2 2026)
365
-
366
- ? Choose Git URL format:
367
- > SSH (Recommended - More secure, no password prompts)
368
- HTTPS (Uses personal access token for authentication)
212
+ **Acceptance Criteria:**
213
+ - [x] AC-US1-01: Google OAuth integration works
214
+ - [x] AC-US1-02: Session persists across browser refresh
215
+ - [ ] AC-US1-03: Logout clears all tokens
369
216
  ```
370
217
 
371
- **Result:**
372
- ```bash
373
- # SSH URLs (recommended)
374
- git@github.com:owner/repo.git
375
- git@gitlab.com:namespace/project.git
376
- git@bitbucket.org:workspace/repo.git
377
-
378
- # HTTPS URLs
379
- https://github.com/owner/repo.git
380
- https://gitlab.com/namespace/project.git
381
- https://bitbucket.org/workspace/repo.git
218
+ ### tasks.md (DO)
219
+ ```markdown
220
+ ### T-001: Implement OAuth Service
221
+ **User Story**: US-001
222
+ **Satisfies ACs**: AC-US1-01, AC-US1-02
223
+ **Status**: [x] completed
224
+
225
+ **Embedded Tests** (AC-US1-01):
226
+ - test_google_oauth_redirects_correctly
227
+ - test_callback_exchanges_code_for_token
228
+ - test_user_profile_is_fetched
382
229
  ```
383
230
 
384
- ### Production Features
385
-
386
- - 🤖 **AI-Native Enterprise Sync** - Claude updates JIRA/GitHub/ADO automatically (three-permission control)
387
- - 📚 **Living Documentation** - Auto-updates after every task (no manual sync!)
388
- - 🧪 **Test-Aware Planning** - Embedded tests in BDD format (Given/When/Then)
389
- - 🎯 **Disciplined Progress** - Can't start increment N+1 until N is DONE
390
- - ⏸️ **Intelligent Pausing** - Auto-detects blockers, pauses with context, resumes when ready
391
- - 🔄 **Smart Reopen** - Report "broken" → Auto-detects what to reopen, respects WIP limits
392
- - 👥 **Multi-Project Tracking** - Unlimited JIRA/ADO/GitHub repos, intelligent routing
393
- - 🤖 **AI Agents** - PM, Architect, Quality Judge guide your work
394
- - 🔧 **CI/CD Auto-Fix** - Workflow failures auto-fixed by Claude (just mention `@claude`)
395
- - 🌍 **Multilingual** - Work in 11 languages (FREE translation)
396
- - 🏢 **Multi-Project Organization** - Organize by team/repo/microservice
397
-
398
- **[→ Complete Feature List](https://spec-weave.com/docs/overview/features)**
399
-
400
231
  ---
401
232
 
402
- ## 🔧 CI/CD Auto-Fix
403
-
404
- **Workflow fails? Claude fixes it automatically.**
405
-
406
- When any GitHub Actions workflow fails, SpecWeave automatically:
407
- 1. Creates an issue mentioning `@claude`
408
- 2. Claude analyzes the failure logs
409
- 3. Claude creates a PR with the fix
410
- 4. You review and merge
411
- 5. Workflow re-runs and passes ✅
233
+ ## Key Features
412
234
 
413
- **Manual Trigger**:
414
- ```markdown
415
- @claude This workflow failed: https://github.com/your-org/repo/actions/runs/12345
235
+ ### Autonomous Multi-Agent Orchestration
416
236
 
417
- Please analyze the logs and create a fix PR.
237
+ ```mermaid
238
+ flowchart LR
239
+ subgraph AGENTS["15+ Specialized Agents"]
240
+ PM["PM Agent"]
241
+ ARCH["Architect"]
242
+ TECH["Tech Lead"]
243
+ QA["QA Lead"]
244
+ SEC["Security"]
245
+ DEVOPS["DevOps"]
246
+ end
247
+
248
+ PM -->|"spec.md"| ARCH
249
+ ARCH -->|"plan.md"| TECH
250
+ TECH -->|"code"| QA
251
+ QA -->|"tests"| SEC
252
+ SEC -->|"security review"| DEVOPS
253
+
254
+ style AGENTS fill:#e8f5e9,stroke:#4caf50,stroke-width:2px
418
255
  ```
419
256
 
420
- **Automatic** (via GitHub Actions):
421
- - Detects failures automatically
422
- - No manual intervention needed
423
- - Works 24/7 in the cloud
424
- - Zero cost (uses GitHub Actions free tier)
257
+ - **PM Agent**: User stories, acceptance criteria, market analysis
258
+ - **Architect Agent**: System design, ADRs, tech stack decisions
259
+ - **Tech Lead Agent**: Implementation, code review, best practices
260
+ - **QA Lead Agent**: Test strategy, E2E tests, coverage validation
261
+ - **Security Agent**: Threat modeling, OWASP, vulnerability assessment
262
+ - **DevOps Agent**: IaC, Kubernetes, CI/CD pipelines
425
263
 
426
- **Common fixes**:
427
- - TypeScript compilation errors
428
- - Test failures
429
- - Linting violations
430
- - Missing imports
431
- - Type mismatches
432
- - Configuration issues
264
+ ### Living Documentation
433
265
 
434
- **[→ Setup Guide](https://spec-weave.com/docs/features/cicd-autofix)**
266
+ Documentation updates **after every task** via hooks:
267
+ - Strategic specs sync to `.specweave/docs/`
268
+ - ADRs captured automatically
269
+ - Runbooks and SLOs generated
270
+ - No manual doc updates ever
435
271
 
436
- ---
272
+ ### Quality Gates
437
273
 
438
- ## 🔄 Smart Reopen (v0.19.0)
274
+ Three gates before any increment closes:
275
+ 1. **Tasks**: All tasks marked complete
276
+ 2. **Tests**: 60%+ coverage minimum (configurable)
277
+ 3. **Documentation**: Living docs updated
439
278
 
440
- **Production bug? Just say "it's broken" - AI figures out what to reopen.**
279
+ ### Token Efficiency
441
280
 
442
- ### Auto-Detection Feature
281
+ 70%+ context reduction through:
282
+ - Progressive plugin loading (load only what you need)
283
+ - Skills auto-activate based on keywords
284
+ - Context optimizer removes irrelevant specs
285
+ - Sub-agent parallelization isolates context
443
286
 
444
- Report issues naturally:
445
- ```
446
- "The GitHub sync isn't working"
447
- ```
287
+ ---
448
288
 
449
- SpecWeave automatically:
450
- 1. 🔍 Scans recent work (active + 7 days completed)
451
- 2. 🎯 Finds related items (relevance scoring)
452
- 3. 💡 Suggests exact reopen command
453
- 4. ⚠️ Validates WIP limits
289
+ ## Commands Reference
454
290
 
455
- ```bash
456
- # Suggested by AI:
457
- /specweave:reopen 0031 --reason "GitHub sync failing"
458
-
459
- # Result:
460
- Increment 0031 reopened
461
- ⚠️ WIP LIMIT: 3/2 active (EXCEEDED)
462
- 📋 Reopened 5 tasks
463
- 💡 Continue work: /specweave:do 0031
464
- ```
291
+ | Command | Purpose |
292
+ |---------|---------|
293
+ | `/specweave:increment "feature"` | Plan new increment (PM → Architect → Tasks) |
294
+ | `/specweave:do` | Execute all tasks autonomously |
295
+ | `/specweave:done 0001` | Complete with quality gate validation |
296
+ | `/specweave:progress` | Show real-time status |
297
+ | `/specweave:validate 0001` | Run quality checks |
298
+ | `/specweave:sync-progress` | Sync to GitHub/JIRA/ADO |
299
+ | `/specweave:tdd-cycle` | Full red-green-refactor workflow |
465
300
 
466
- ### Three Reopen Levels
301
+ **[Full Command Reference](https://spec-weave.com/docs/commands/overview)**
467
302
 
468
- **Task-Level** (Surgical Fix):
469
- ```bash
470
- /specweave:reopen 0031 --task T-003 --reason "API rate limiting"
471
- ```
303
+ ---
472
304
 
473
- **User Story-Level** (Feature Fix):
474
- ```bash
475
- /specweave:reopen 0031 --user-story US-001 --reason "AC not met"
476
- ```
305
+ ## Brownfield & Greenfield
477
306
 
478
- **Increment-Level** (Systemic Fix):
479
- ```bash
480
- /specweave:reopen 0031 --reason "Multiple production issues"
481
- ```
307
+ **New Projects**: Start spec-driven from day one.
482
308
 
483
- ### Complete Audit Trail
484
-
485
- Every reopen is tracked:
486
- ```json
487
- {
488
- "reopened": {
489
- "count": 1,
490
- "history": [
491
- {
492
- "date": "2025-11-14T15:30:00Z",
493
- "reason": "GitHub sync failing",
494
- "previousStatus": "completed"
495
- }
496
- ]
497
- }
498
- }
309
+ **Existing Projects**:
310
+ ```bash
311
+ specweave init .
312
+ /specweave:import-docs ~/exports/notion --source=notion
499
313
  ```
500
314
 
501
- **WIP Limits Respected** - No more "I'll just squeeze in one more fix" chaos!
315
+ Import from Notion, Confluence, GitHub Wiki. AI classifies docs automatically and creates retroactive specifications.
502
316
 
503
317
  ---
504
318
 
505
- ## 📖 Documentation
506
-
507
- **Complete guides, tutorials, and API reference:**
508
-
509
- ### **[spec-weave.com](https://spec-weave.com)**
319
+ ## Requirements
510
320
 
511
- **Start here:**
512
- - 🚀 [Quickstart Guide](https://spec-weave.com/docs/guides/getting-started/quickstart) - 5-minute setup
513
- - 📘 [Complete Workflow](https://spec-weave.com/docs/workflows/overview) - End-to-end journey
514
- - 📋 [Commands Reference](https://spec-weave.com/docs/commands/status-management) - All commands
515
- - ❓ [FAQ](https://spec-weave.com/docs/faq) - Common questions
321
+ - Node.js 20+
322
+ - Claude Code (recommended) or compatible AI assistant
323
+ - Git repository
516
324
 
517
325
  ---
518
326
 
519
327
  ## Community
520
328
 
521
- - 💬 **[Discord](https://discord.gg/UYg4BGJ65V)** - Get help, share tips
522
- - 🎥 **[YouTube](https://www.youtube.com/@antonabyzov)** - Tutorials, demos
523
- - 🐛 **[GitHub Issues](https://github.com/anton-abyzov/specweave/issues)** - Report bugs
524
- - 💡 **[Discussions](https://github.com/anton-abyzov/specweave/discussions)** - Q&A, feature requests
329
+ - **[Documentation](https://spec-weave.com)** - Full guides and tutorials
330
+ - **[Discord](https://discord.gg/UYg4BGJ65V)** - Get help, share tips
331
+ - **[YouTube](https://www.youtube.com/@antonabyzov)** - Video tutorials
332
+ - **[GitHub Issues](https://github.com/anton-abyzov/specweave/issues)** - Bug reports and features
525
333
 
526
334
  ---
527
335
 
528
336
  ## Contributing
529
337
 
530
338
  ```bash
531
- # Setup
532
339
  git clone https://github.com/anton-abyzov/specweave.git
533
340
  cd specweave
534
341
  npm install && npm run build
535
-
536
- # Test
537
342
  npm test
538
343
  ```
539
344
 
540
- **[Contributor Guide](https://spec-weave.com/docs/guides/contributing)**
541
-
542
- ---
543
-
544
- ## Best with Claude Code
545
-
546
- SpecWeave works best with **[Claude Code](https://claude.com/claude-code)** (native plugins, auto-activating skills, lifecycle hooks).
547
-
548
- Also works with: Cursor, GitHub Copilot, ChatGPT (manual workflow).
549
-
550
- **[→ Tool Comparison](https://spec-weave.com/docs/overview/features#claude-code-native)**
345
+ **[Contributor Guide](https://spec-weave.com/docs/guides/contributing)**
551
346
 
552
347
  ---
553
348
 
@@ -557,4 +352,8 @@ MIT - [github.com/anton-abyzov/specweave](https://github.com/anton-abyzov/specwe
557
352
 
558
353
  ---
559
354
 
560
- **Get started**: `npm install -g specweave` **[Read the Docs](https://spec-weave.com)**
355
+ **Stop losing your AI work. Start building permanent knowledge.**
356
+
357
+ ```bash
358
+ npm install -g specweave
359
+ ```