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.
- package/CLAUDE.md +73 -1
- package/README.md +245 -446
- package/dist/plugins/specweave-jira/lib/setup-wizard.d.ts.map +1 -1
- package/dist/plugins/specweave-jira/lib/setup-wizard.js +57 -78
- package/dist/plugins/specweave-jira/lib/setup-wizard.js.map +1 -1
- package/dist/src/cli/commands/import-docs.d.ts.map +1 -1
- package/dist/src/cli/commands/import-docs.js +23 -31
- package/dist/src/cli/commands/import-docs.js.map +1 -1
- package/dist/src/cli/commands/import-external.d.ts.map +1 -1
- package/dist/src/cli/commands/import-external.js +6 -10
- package/dist/src/cli/commands/import-external.js.map +1 -1
- package/dist/src/cli/commands/init-multiproject.d.ts.map +1 -1
- package/dist/src/cli/commands/init-multiproject.js +58 -73
- package/dist/src/cli/commands/init-multiproject.js.map +1 -1
- package/dist/src/cli/commands/init.d.ts +17 -11
- package/dist/src/cli/commands/init.d.ts.map +1 -1
- package/dist/src/cli/commands/init.js +221 -1874
- package/dist/src/cli/commands/init.js.map +1 -1
- package/dist/src/cli/commands/install.d.ts.map +1 -1
- package/dist/src/cli/commands/install.js +14 -22
- package/dist/src/cli/commands/install.js.map +1 -1
- package/dist/src/cli/commands/migrate-config.d.ts.map +1 -1
- package/dist/src/cli/commands/migrate-config.js +6 -10
- package/dist/src/cli/commands/migrate-config.js.map +1 -1
- package/dist/src/cli/commands/switch-project.d.ts.map +1 -1
- package/dist/src/cli/commands/switch-project.js.map +1 -1
- package/dist/src/cli/helpers/ado-area-path-mapper.d.ts.map +1 -1
- package/dist/src/cli/helpers/ado-area-path-mapper.js +36 -49
- package/dist/src/cli/helpers/ado-area-path-mapper.js.map +1 -1
- package/dist/src/cli/helpers/github/increment-profile-selector.d.ts.map +1 -1
- package/dist/src/cli/helpers/github/increment-profile-selector.js.map +1 -1
- package/dist/src/cli/helpers/github/profile-manager.d.ts.map +1 -1
- package/dist/src/cli/helpers/github/profile-manager.js +8 -11
- package/dist/src/cli/helpers/github/profile-manager.js.map +1 -1
- package/dist/src/cli/helpers/github-repo-selector.d.ts.map +1 -1
- package/dist/src/cli/helpers/github-repo-selector.js +26 -50
- package/dist/src/cli/helpers/github-repo-selector.js.map +1 -1
- package/dist/src/cli/helpers/import-strategy-prompter.d.ts.map +1 -1
- package/dist/src/cli/helpers/import-strategy-prompter.js +39 -52
- package/dist/src/cli/helpers/import-strategy-prompter.js.map +1 -1
- package/dist/src/cli/helpers/init/config-detection.d.ts +40 -0
- package/dist/src/cli/helpers/init/config-detection.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/config-detection.js +125 -0
- package/dist/src/cli/helpers/init/config-detection.js.map +1 -0
- package/dist/src/cli/helpers/init/directory-structure.d.ts +26 -0
- package/dist/src/cli/helpers/init/directory-structure.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/directory-structure.js +190 -0
- package/dist/src/cli/helpers/init/directory-structure.js.map +1 -0
- package/dist/src/cli/helpers/init/external-import.d.ts +15 -0
- package/dist/src/cli/helpers/init/external-import.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/external-import.js +251 -0
- package/dist/src/cli/helpers/init/external-import.js.map +1 -0
- package/dist/src/cli/helpers/init/index.d.ts +15 -0
- package/dist/src/cli/helpers/init/index.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/index.js +26 -0
- package/dist/src/cli/helpers/init/index.js.map +1 -0
- package/dist/src/cli/helpers/init/next-steps.d.ts +15 -0
- package/dist/src/cli/helpers/init/next-steps.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/next-steps.js +72 -0
- package/dist/src/cli/helpers/init/next-steps.js.map +1 -0
- package/dist/src/cli/helpers/init/path-utils.d.ts +41 -0
- package/dist/src/cli/helpers/init/path-utils.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/path-utils.js +146 -0
- package/dist/src/cli/helpers/init/path-utils.js.map +1 -0
- package/dist/src/cli/helpers/init/plugin-installer.d.ts +28 -0
- package/dist/src/cli/helpers/init/plugin-installer.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/plugin-installer.js +238 -0
- package/dist/src/cli/helpers/init/plugin-installer.js.map +1 -0
- package/dist/src/cli/helpers/init/repository-setup.d.ts +28 -0
- package/dist/src/cli/helpers/init/repository-setup.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/repository-setup.js +78 -0
- package/dist/src/cli/helpers/init/repository-setup.js.map +1 -0
- package/dist/src/cli/helpers/init/smart-reinit.d.ts +30 -0
- package/dist/src/cli/helpers/init/smart-reinit.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/smart-reinit.js +140 -0
- package/dist/src/cli/helpers/init/smart-reinit.js.map +1 -0
- package/dist/src/cli/helpers/init/testing-config.d.ts +27 -0
- package/dist/src/cli/helpers/init/testing-config.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/testing-config.js +131 -0
- package/dist/src/cli/helpers/init/testing-config.js.map +1 -0
- package/dist/src/cli/helpers/init/types.d.ts +86 -0
- package/dist/src/cli/helpers/init/types.d.ts.map +1 -0
- package/dist/src/cli/helpers/init/types.js +5 -0
- package/dist/src/cli/helpers/init/types.js.map +1 -0
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js +10 -12
- package/dist/src/cli/helpers/issue-tracker/ado-auto-discover.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/ado.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/ado.js +43 -60
- package/dist/src/cli/helpers/issue-tracker/ado.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js +193 -230
- package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/github.js +43 -54
- package/dist/src/cli/helpers/issue-tracker/github.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/index.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/index.js +27 -40
- package/dist/src/cli/helpers/issue-tracker/index.js.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/jira.d.ts.map +1 -1
- package/dist/src/cli/helpers/issue-tracker/jira.js +54 -70
- package/dist/src/cli/helpers/issue-tracker/jira.js.map +1 -1
- package/dist/src/cli/helpers/smart-filter.d.ts.map +1 -1
- package/dist/src/cli/helpers/smart-filter.js +62 -85
- package/dist/src/cli/helpers/smart-filter.js.map +1 -1
- package/dist/src/core/increment/auto-transition-manager.d.ts +12 -0
- package/dist/src/core/increment/auto-transition-manager.d.ts.map +1 -1
- package/dist/src/core/increment/auto-transition-manager.js +45 -0
- package/dist/src/core/increment/auto-transition-manager.js.map +1 -1
- package/dist/src/core/increment/metadata-manager.d.ts.map +1 -1
- package/dist/src/core/increment/metadata-manager.js +46 -0
- package/dist/src/core/increment/metadata-manager.js.map +1 -1
- package/dist/src/core/increment/status-change-sync-trigger.d.ts +12 -0
- package/dist/src/core/increment/status-change-sync-trigger.d.ts.map +1 -1
- package/dist/src/core/increment/status-change-sync-trigger.js +48 -2
- package/dist/src/core/increment/status-change-sync-trigger.js.map +1 -1
- package/dist/src/core/living-docs/living-docs-sync.d.ts +13 -0
- package/dist/src/core/living-docs/living-docs-sync.d.ts.map +1 -1
- package/dist/src/core/living-docs/living-docs-sync.js +40 -0
- package/dist/src/core/living-docs/living-docs-sync.js.map +1 -1
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts +5 -1
- package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-bulk-discovery.js +68 -86
- package/dist/src/core/repo-structure/repo-bulk-discovery.js.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
- package/dist/src/core/repo-structure/repo-structure-manager.js +345 -425
- package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
- package/dist/src/core/sync/bidirectional-engine.d.ts.map +1 -1
- package/dist/src/core/sync/bidirectional-engine.js +21 -29
- package/dist/src/core/sync/bidirectional-engine.js.map +1 -1
- package/dist/src/init/InitFlow.js +15 -19
- package/dist/src/init/InitFlow.js.map +1 -1
- package/dist/src/init/repo/types.d.ts +1 -1
- package/dist/src/integrations/ado/area-path-mapper.d.ts.map +1 -1
- package/dist/src/integrations/ado/area-path-mapper.js +19 -23
- package/dist/src/integrations/ado/area-path-mapper.js.map +1 -1
- package/dist/src/utils/external-resource-validator.d.ts.map +1 -1
- package/dist/src/utils/external-resource-validator.js +41 -65
- package/dist/src/utils/external-resource-validator.js.map +1 -1
- package/dist/src/utils/project-detection.d.ts.map +1 -1
- package/dist/src/utils/project-detection.js +19 -21
- package/dist/src/utils/project-detection.js.map +1 -1
- package/dist/src/utils/project-validator.d.ts.map +1 -1
- package/dist/src/utils/project-validator.js +5 -7
- package/dist/src/utils/project-validator.js.map +1 -1
- package/package.json +2 -3
- package/plugins/specweave/agents/tech-lead/AGENT.md +9 -0
- package/plugins/specweave/hooks/post-edit-write-consolidated.sh +87 -0
- package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.d.ts +12 -0
- package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.js +45 -0
- package/plugins/specweave/lib/vendor/core/increment/auto-transition-manager.js.map +1 -1
- package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js +46 -0
- package/plugins/specweave/lib/vendor/core/increment/metadata-manager.js.map +1 -1
- package/plugins/specweave/skills/increment-planner/SKILL.md +10 -5
- package/plugins/specweave/skills/specweave-framework/SKILL.md +6 -4
- package/plugins/specweave/templates/coding-standards.md.template +36 -0
- package/plugins/specweave-ado/lib/project-selector.js +56 -67
- package/plugins/specweave-ado/lib/project-selector.ts +72 -85
- package/plugins/specweave-github/lib/repo-selector.js +55 -66
- package/plugins/specweave-github/lib/repo-selector.ts +73 -84
- package/plugins/specweave-jira/commands/import-projects.js +3 -5
- package/plugins/specweave-jira/commands/import-projects.ts +3 -5
- package/plugins/specweave-jira/lib/project-selector.js +60 -71
- package/plugins/specweave-jira/lib/project-selector.ts +78 -91
- package/plugins/specweave-jira/lib/setup-wizard.js +51 -72
- package/plugins/specweave-jira/lib/setup-wizard.ts +56 -74
- package/src/templates/CLAUDE.md.template +14 -0
package/README.md
CHANGED
|
@@ -1,553 +1,348 @@
|
|
|
1
1
|
# SpecWeave
|
|
2
2
|
|
|
3
|
-
|
|
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
|
+
[](https://www.npmjs.com/package/specweave)
|
|
7
6
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
-
[](https://discord.gg/UYg4BGJ65V)
|
|
11
|
-
[](https://www.youtube.com/@antonabyzov)
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## 📊 Engineering Metrics (DORA)
|
|
16
|
-
|
|
17
|
-
[](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
|
|
18
|
-
[](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
|
|
19
|
-
[](https://github.com/anton-abyzov/specweave/blob/develop/.specweave/docs/internal/delivery/dora-metrics.md)
|
|
20
|
-
[](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
|
+
[](https://discord.gg/UYg4BGJ65V)
|
|
8
|
+
[](https://www.youtube.com/@antonabyzov)
|
|
61
9
|
|
|
62
10
|
---
|
|
63
11
|
|
|
64
|
-
##
|
|
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
|
-
|
|
14
|
+
Every AI coding tool promises productivity. But after the chat ends:
|
|
77
15
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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
|
-
**
|
|
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
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
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
|
-
|
|
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
|
-
|
|
79
|
+
## Quick Start
|
|
177
80
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
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
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
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
|
-
**
|
|
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
|
-
|
|
96
|
+
---
|
|
210
97
|
|
|
211
|
-
|
|
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
|
-
###
|
|
100
|
+
### vs. BMAD Method (18K GitHub Stars)
|
|
220
101
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
123
|
+
## External Tool Integration
|
|
236
124
|
|
|
237
|
-
|
|
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
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
252
|
-
|
|
253
|
-
### Greenfield (New Project)
|
|
254
|
-
```bash
|
|
255
|
-
# Install SpecWeave
|
|
256
|
-
npm install -g specweave
|
|
162
|
+
## What You Get
|
|
257
163
|
|
|
258
|
-
|
|
259
|
-
|
|
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
|
-
|
|
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
|
-
|
|
270
|
-
cd my-project
|
|
175
|
+
## DORA Metrics Integration
|
|
271
176
|
|
|
272
|
-
|
|
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
|
-
|
|
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
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
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
|
-
**
|
|
190
|
+
**Connect your spec-driven workflow directly to industry-standard metrics.**
|
|
301
191
|
|
|
302
192
|
---
|
|
303
193
|
|
|
304
|
-
##
|
|
194
|
+
## The Three-File Foundation
|
|
305
195
|
|
|
306
|
-
|
|
196
|
+
Every feature generates three permanent files:
|
|
307
197
|
|
|
308
|
-
```
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
353
|
-
|
|
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
|
-
**
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
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
|
-
|
|
372
|
-
```
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
414
|
-
```markdown
|
|
415
|
-
@claude This workflow failed: https://github.com/your-org/repo/actions/runs/12345
|
|
235
|
+
### Autonomous Multi-Agent Orchestration
|
|
416
236
|
|
|
417
|
-
|
|
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
|
-
**
|
|
421
|
-
-
|
|
422
|
-
-
|
|
423
|
-
-
|
|
424
|
-
-
|
|
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
|
-
|
|
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
|
-
**
|
|
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
|
-
|
|
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
|
-
|
|
279
|
+
### Token Efficiency
|
|
441
280
|
|
|
442
|
-
|
|
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
|
-
|
|
445
|
-
```
|
|
446
|
-
"The GitHub sync isn't working"
|
|
447
|
-
```
|
|
287
|
+
---
|
|
448
288
|
|
|
449
|
-
|
|
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
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
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
|
-
|
|
301
|
+
**[Full Command Reference](https://spec-weave.com/docs/commands/overview)**
|
|
467
302
|
|
|
468
|
-
|
|
469
|
-
```bash
|
|
470
|
-
/specweave:reopen 0031 --task T-003 --reason "API rate limiting"
|
|
471
|
-
```
|
|
303
|
+
---
|
|
472
304
|
|
|
473
|
-
|
|
474
|
-
```bash
|
|
475
|
-
/specweave:reopen 0031 --user-story US-001 --reason "AC not met"
|
|
476
|
-
```
|
|
305
|
+
## Brownfield & Greenfield
|
|
477
306
|
|
|
478
|
-
**
|
|
479
|
-
```bash
|
|
480
|
-
/specweave:reopen 0031 --reason "Multiple production issues"
|
|
481
|
-
```
|
|
307
|
+
**New Projects**: Start spec-driven from day one.
|
|
482
308
|
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
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
|
-
|
|
315
|
+
Import from Notion, Confluence, GitHub Wiki. AI classifies docs automatically and creates retroactive specifications.
|
|
502
316
|
|
|
503
317
|
---
|
|
504
318
|
|
|
505
|
-
##
|
|
506
|
-
|
|
507
|
-
**Complete guides, tutorials, and API reference:**
|
|
508
|
-
|
|
509
|
-
### **[spec-weave.com](https://spec-weave.com)**
|
|
319
|
+
## Requirements
|
|
510
320
|
|
|
511
|
-
|
|
512
|
-
-
|
|
513
|
-
-
|
|
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
|
-
-
|
|
522
|
-
-
|
|
523
|
-
-
|
|
524
|
-
-
|
|
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
|
-
**[
|
|
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
|
-
**
|
|
355
|
+
**Stop losing your AI work. Start building permanent knowledge.**
|
|
356
|
+
|
|
357
|
+
```bash
|
|
358
|
+
npm install -g specweave
|
|
359
|
+
```
|