specweave 0.1.5 โ†’ 0.1.7

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/README.md CHANGED
@@ -3,14 +3,18 @@
3
3
  > **Spec-Driven Development Framework** - Where specifications and documentation are the source of truth
4
4
 
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
- [![Version](https://img.shields.io/badge/version-0.1.0--beta.1-blue.svg)](https://github.com/specweave/specweave/releases/tag/v0.1.0-beta.1)
6
+ [![Version](https://img.shields.io/badge/version-0.1.6-blue.svg)](https://github.com/anton-abyzov/specweave/releases/tag/v0.1.6)
7
7
  [![Status](https://img.shields.io/badge/status-beta-blue.svg)]()
8
+ [![Website](https://img.shields.io/badge/website-spec--weave.com-green.svg)](https://spec-weave.com)
8
9
 
9
10
  ---
10
11
 
11
12
  ## Overview
12
13
 
13
- **SpecWeave** is an AI development framework that replaces "vibe coding" with **specification-first development**. Built on the principle that **specifications are the source of truth**, SpecWeave enables building software from solo projects to enterprise systems with confidence, precision, and 70%+ context reduction.
14
+ **SpecWeave** is an AI development framework that replaces "vibe coding" with **specification-first development**. Built on the principle that **specifications are the source of truth**, SpecWeave enables building software from solo projects to enterprise systems with confidence and precision.
15
+
16
+ **๐ŸŒ Website**: [spec-weave.com](https://spec-weave.com)
17
+ **๐Ÿ“ฆ npm**: [npmjs.com/package/specweave](https://www.npmjs.com/package/specweave)
14
18
 
15
19
  ### ๐ŸŽฏ Core Philosophy
16
20
 
@@ -18,16 +22,15 @@
18
22
  2. **Living Documentation** - Specs evolve with code, never diverge
19
23
  3. **Regression Prevention** - Document before modifying existing code
20
24
  4. **Test-Validated Features** - Every feature proven through automated tests
21
- 5. **Context Precision** - Load only relevant specs (70%+ token reduction)
22
- 6. **Auto-Role Routing** - Skills detect and delegate automatically
25
+ 5. **Ready Out of the Box** - All components pre-installed, no setup needed
23
26
 
24
27
  ---
25
28
 
26
29
  ## โœจ Key Features
27
30
 
28
- - ๐Ÿค– **19 Specialized Agents** - PM, Architect, DevOps, QA, Security, Backend, Frontend, and more
29
- - ๐ŸŽฏ **24 AI Skills** - Auto-detection, routing, context loading, orchestration
30
- - ๐Ÿ“Š **Context Manifests** - 70%+ token reduction by loading only relevant specs
31
+ - ๐Ÿค– **10 Specialized Agents** - PM, Architect, DevOps, QA, Security, SRE, Tech Lead, and more (all pre-installed!)
32
+ - ๐ŸŽฏ **35+ AI Skills** - Technology stacks, integrations, utilities (all pre-installed!)
33
+ - ๐Ÿ“ฆ **Pre-Installed Components** - Everything ready immediately after `specweave init`
31
34
  - ๐Ÿงช **4-Level Testing** - Specification โ†’ Feature โ†’ Component โ†’ Automated tests
32
35
  - ๐Ÿ“ **Living Documentation** - Auto-updates via Claude Code hooks
33
36
  - ๐ŸŽจ **Diagram Generation** - C4 Model diagrams (Context, Container, Component)
@@ -87,172 +90,133 @@ specweave init my-saas
87
90
  ### Available Commands
88
91
 
89
92
  ```bash
90
- specweave init [project] # Create new project
91
- specweave list # List all available components
92
- specweave list --installed # Show auto-installed components
93
+ specweave init [project] # Create new project with ALL components
93
94
  specweave --version # Show version
94
95
  specweave --help # Show help
95
96
  ```
96
97
 
97
- **Note**: Components (agents & skills) auto-install on-demand - no manual installation needed!
98
+ **Note**: All 10 agents and 35+ skills are copied to your project during `init` - ready to use immediately!
98
99
 
99
100
  ---
100
101
 
101
102
  ## ๐Ÿš€ Quick Example
102
103
 
104
+ **CRITICAL**: SpecWeave uses **EXPLICIT SLASH COMMANDS** - type them to activate the framework!
105
+
103
106
  ```bash
104
- # SpecWeave auto-activates when .specweave/ detected
107
+ # Initialize project - ALL components pre-installed!
108
+ npx specweave init my-app
109
+ cd my-app
105
110
 
106
- User: "Create Next.js authentication with email and OAuth"
107
- โ†“
108
- SpecWeave: ๐Ÿ”ท SpecWeave Active
111
+ # Everything ready immediately:
112
+ # โœ… 10 agents in .claude/agents/
113
+ # โœ… 35+ skills in .claude/skills/
114
+ # โœ… 10 slash commands in .claude/commands/
109
115
 
110
- ๐Ÿ“ฆ Installing required components...
111
- โœ… Installed nextjs skill
112
- โœ… Installed nodejs-backend skill
113
- โœ… Installed security agent
114
- โœ… Installed pm agent
115
- โœ… Installed architect agent
116
+ # Open Claude Code and use slash commands:
117
+
118
+ User: /pi "Next.js authentication with email and OAuth"
119
+ โ†“
120
+ SpecWeave: ๐Ÿ”ท SpecWeave Active (/create-increment)
116
121
 
117
122
  ๐Ÿš€ Creating increment 0001-user-authentication...
123
+ ๐Ÿ“ Using nextjs skill (already installed!)
124
+ ๐Ÿค– PM agent creating requirements...
125
+ ๐Ÿ—๏ธ Architect agent designing system...
118
126
 
119
127
  โœ… Increment created: .specweave/increments/0001-user-authentication/
120
128
  โœ… Files: spec.md, plan.md, tasks.md, tests.md
121
129
 
122
- User: "Create C4 context diagram for authentication"
130
+ User: "Create C4 context diagram for authentication" # Regular conversation for implementation
123
131
  โ†“
124
- SpecWeave: (coordinates diagrams-generator โ†’ diagrams-architect)
132
+ SpecWeave: ๐ŸŽจ Using diagrams-generator skill
133
+ ๐Ÿค– Coordinating with diagrams-architect agent
134
+
125
135
  โœ… Diagram saved: .specweave/docs/internal/architecture/diagrams/auth.c4-context.mmd
126
136
 
127
- User: "Implement authentication"
137
+ User: "Implement authentication based on plan.md" # Regular conversation
128
138
  โ†“
129
- SpecWeave: (orchestrates PM โ†’ Architect โ†’ Backend โ†’ QA โ†’ Docs)
139
+ SpecWeave: ๐Ÿค– Implementing based on specifications
140
+
130
141
  โœ… Code: src/auth/
131
142
  โœ… Tests: tests/auth/
132
143
  โœ… Docs: Updated automatically
144
+
145
+ User: /done 0001 # Close increment with slash command
146
+ โœ… Increment 0001 closed successfully
133
147
  ```
134
148
 
135
149
  **How it works**:
136
- 1. `.specweave/` detected โ†’ `specweave-detector` activates automatically
137
- 2. **User intent analyzed** โ†’ required components auto-installed (just-in-time)
138
- 3. Request parsed โ†’ routed to appropriate skills
139
- 4. Skills coordinate agents โ†’ artifacts generated
140
- 5. Context loaded precisely โ†’ only relevant specs (70%+ reduction)
150
+ 1. `specweave init` โ†’ ALL components pre-installed (10 agents + 35+ skills)
151
+ 2. **Use `/pi "feature"`** โ†’ Creates increment with specs (spec.md, plan.md, tasks.md, tests.md)
152
+ 3. **Regular conversation** โ†’ Implement code based on specifications
153
+ 4. **Use `/done 0001`** โ†’ Close increment when complete
154
+ 5. All components ready - no waiting, no installation
155
+
156
+ **Why slash commands?** Auto-activation doesn't work reliably - slash commands ensure SpecWeave ALWAYS activates when you want it.
141
157
 
142
158
  ---
143
159
 
144
- ## ๐Ÿค– Agents (19 Total)
145
-
146
- SpecWeave includes **19 specialized AI agents** that provide domain expertise:
147
-
148
- ### Strategic Layer
149
- | Agent | Role | Status |
150
- |-------|------|--------|
151
- | **pm** | Product Manager - requirements, user stories, roadmap | โœ… Implemented |
152
- | **architect** | System Architect - design, ADRs, technology decisions | โœ… Implemented |
153
- | **tech-lead** | Technical Lead - code review, best practices | โœ… Implemented |
154
-
155
- ### Implementation Layer
156
- | Agent | Role | Status |
157
- |-------|------|--------|
158
- | **nodejs-backend** | Node.js/TypeScript backend development | โœ… Implemented |
159
- | **python-backend** | Python/FastAPI backend development | โœ… Implemented |
160
- | **dotnet-backend** | C#/.NET/ASP.NET Core development | โœ… Implemented |
161
- | **frontend** | React/Vue frontend development | โœ… Implemented |
162
- | **nextjs** | Next.js App Router specialist | โœ… Implemented |
163
-
164
- ### Quality & Operations
165
- | Agent | Role | Status |
166
- |-------|------|--------|
167
- | **qa-lead** | QA Lead - test strategy, test cases, quality gates | โœ… Implemented |
168
- | **security** | Security Engineer - threat modeling, OWASP, compliance | โœ… Implemented |
169
- | **devops** | DevOps - CI/CD, infrastructure, deployment | โœ… Implemented |
170
- | **sre** | SRE - monitoring, incidents, reliability | โœ… Implemented |
171
- | **performance** | Performance Engineer - profiling, optimization | โœ… Implemented |
172
-
173
- ### Documentation & Design
174
- | Agent | Role | Status |
175
- |-------|------|--------|
176
- | **docs-writer** | Technical Writer - API docs, guides, tutorials | โœ… Implemented |
177
- | **diagrams-architect** | Diagram generation - C4 Model, Mermaid, architecture | โœ… Implemented |
178
- | **figma-designer** | Figma designer - design systems, UI/UX | โœ… Implemented |
179
- | **figma-implementer** | Figma to code - React/Angular components | โœ… Implemented |
180
-
181
- ### Integration
182
- | Agent | Role | Status |
183
- |-------|------|--------|
184
- | **specweave-jira-mapper** | JIRA โ†” SpecWeave bidirectional sync | โœ… Implemented |
185
- | **specweave-ado-mapper** | Azure DevOps โ†” SpecWeave bidirectional sync | โœ… Implemented |
186
-
187
- **All agents** have AGENT.md with YAML frontmatter and 3+ test cases.
160
+ ## ๐Ÿค– Agents (10 Total - All Pre-Installed!)
161
+
162
+ SpecWeave includes **10 specialized AI agents** that work with slash commands and during implementation:
163
+
164
+ | Agent | Role | When It Activates |
165
+ |-------|------|-------------------|
166
+ | **pm** | Product Manager - requirements, user stories | Planning features, creating increments |
167
+ | **architect** | System Architect - design, ADRs, decisions | Technical design, architecture |
168
+ | **security** | Security Engineer - threat modeling, OWASP | Security review, vulnerability assessment |
169
+ | **qa-lead** | QA Lead - test strategy, quality gates | Testing, quality assurance |
170
+ | **devops** | DevOps Engineer - CI/CD, infrastructure | Deployment, infrastructure needs |
171
+ | **tech-lead** | Technical Lead - code review, best practices | Code review, refactoring |
172
+ | **sre** | SRE - incident response, monitoring | Production incidents, troubleshooting |
173
+ | **docs-writer** | Technical Writer - documentation | Writing docs, API documentation |
174
+ | **performance** | Performance Engineer - optimization | Performance issues, profiling |
175
+ | **diagrams-architect** | Diagram Expert - C4 Model, Mermaid | Creating diagrams (via diagrams-generator skill) |
176
+
177
+ **All agents pre-installed** in `.claude/agents/` after `specweave init` - ready to use immediately!
188
178
 
189
179
  ---
190
180
 
191
- ## ๐ŸŽฏ Skills (24 Total)
192
-
193
- SpecWeave includes **24 AI skills** that coordinate agents and provide specialized capabilities:
194
-
195
- ### Core Orchestration
196
- | Skill | Purpose | Status |
197
- |-------|---------|--------|
198
- | **specweave-detector** | Auto-detect SpecWeave projects (proactive entry point) | โœ… Implemented |
199
- | **skill-router** | Route requests to appropriate skills/agents (>90% accuracy) | โœ… Implemented |
200
- | **context-loader** | Load specs selectively (70%+ token reduction) | โœ… Implemented |
201
- | **role-orchestrator** | Multi-agent coordinator (factory of agents) | โœ… Implemented |
202
-
203
- ### Feature Planning
204
- | Skill | Purpose | Status |
205
- |-------|---------|--------|
206
- | **increment-planner** | Plan features with context awareness | โœ… Implemented |
207
- | **task-builder** | Break features into executable tasks | โœ… Implemented |
208
- | **docs-updater** | Auto-update documentation via hooks | โœ… Implemented |
209
-
210
- ### Brownfield Tools
211
- | Skill | Purpose | Status |
212
- |-------|---------|--------|
213
- | **brownfield-analyzer** | Analyze existing codebases | โœ… Implemented |
214
- | **brownfield-onboarder** | Merge existing CLAUDE.md intelligently | โœ… Implemented |
215
-
216
- ### Integration
217
- | Skill | Purpose | Status |
218
- |-------|---------|--------|
219
- | **jira-sync** | Sync with JIRA (coordinates with specweave-jira-mapper) | โœ… Implemented |
220
- | **ado-sync** | Sync with Azure DevOps (coordinates with specweave-ado-mapper) | โœ… Implemented |
221
- | **github-sync** | Sync with GitHub issues | โœ… Implemented |
222
-
223
- ### Infrastructure
224
- | Skill | Purpose | Status |
225
- |-------|---------|--------|
226
- | **hetzner-provisioner** | Provision Hetzner Cloud infrastructure | โœ… Implemented |
227
- | **cost-optimizer** | Optimize cloud infrastructure costs | โœ… Implemented |
228
-
229
- ### Diagram & Design
230
- | Skill | Purpose | Status |
231
- |-------|---------|--------|
232
- | **diagrams-generator** | Generate C4 diagrams (coordinates with diagrams-architect) | โœ… Implemented |
233
- | **design-system-architect** | Design system creation (Atomic Design) | โœ… Implemented |
234
- | **figma-mcp-connector** | Connect to Figma MCP servers | โœ… Implemented |
235
- | **figma-to-code** | Convert Figma designs to code | โœ… Implemented |
236
-
237
- ### Product Features
238
- | Skill | Purpose | Status |
239
- |-------|---------|--------|
240
- | **calendar-system** | Calendar and scheduling features | โœ… Implemented |
241
- | **notification-system** | Email, push, SMS, in-app notifications | โœ… Implemented |
242
- | **stripe-integrator** | Stripe payment integration | โœ… Implemented |
243
-
244
- ### Framework Comparison
245
- | Skill | Purpose | Status |
246
- |-------|---------|--------|
247
- | **bmad-method-expert** | BMAD-METHOD comparison and gap analysis | โœ… Implemented |
248
- | **spec-kit-expert** | spec-kit comparison and gap analysis | โœ… Implemented |
249
-
250
- ### Meta
251
- | Skill | Purpose | Status |
252
- |-------|---------|--------|
253
- | **skill-creator** | Guide for creating new skills | โœ… Implemented |
254
-
255
- **All skills** have SKILL.md with YAML frontmatter and 3+ test cases.
181
+ ## ๐ŸŽฏ Skills (35+ Total - All Pre-Installed!)
182
+
183
+ SpecWeave includes **35+ AI skills** that work with slash commands:
184
+
185
+ ### Core Framework Skills
186
+ - **specweave-detector** - Slash command documentation
187
+ - **increment-planner** - Plan features via `/pi` command
188
+ - **skill-router** - Route requests to appropriate skills
189
+ - **context-loader** - Load relevant specifications
190
+ - **role-orchestrator** - Coordinate multiple agents
191
+
192
+ ### Technology Stack Skills
193
+ - **nextjs** - Next.js App Router, Server Components
194
+ - **nodejs-backend** - Node.js, Express, NestJS APIs
195
+ - **python-backend** - FastAPI, Django APIs
196
+ - **dotnet-backend** - ASP.NET Core APIs
197
+ - **frontend** - React, Vue, Angular components
198
+
199
+ ### Integration Skills
200
+ - **jira-sync** - Sync with JIRA issues
201
+ - **ado-sync** - Sync with Azure DevOps
202
+ - **github-sync** - Sync with GitHub issues
203
+
204
+ ### Design & Diagram Skills
205
+ - **diagrams-generator** - Generate C4 diagrams
206
+ - **figma-designer** - Create Figma designs
207
+ - **figma-implementer** - Convert Figma to code
208
+
209
+ ### Infrastructure Skills
210
+ - **hetzner-provisioner** - Deploy to Hetzner Cloud
211
+ - **cost-optimizer** - Optimize cloud costs
212
+
213
+ ### Brownfield Skills
214
+ - **brownfield-analyzer** - Analyze existing codebases
215
+ - **brownfield-onboarder** - Merge existing documentation
216
+
217
+ **And many more!** All skills pre-installed in `.claude/skills/` after `specweave init`.
218
+
219
+ **See**: [Complete skill list](https://spec-weave.com/docs/skills) on spec-weave.com
256
220
 
257
221
  ---
258
222
 
@@ -299,11 +263,10 @@ specweave/
299
263
  โ”‚ โ”œโ”€โ”€ hooks/ # Claude Code hooks
300
264
  โ”‚ โ””โ”€โ”€ templates/ # Project templates
301
265
  โ”‚
302
- โ”œโ”€โ”€ .claude/ # Installed components (gitignored)
303
- โ”‚ โ”œโ”€โ”€ agents/ # Installed from src/agents/
304
- โ”‚ โ”œโ”€โ”€ skills/ # Installed from src/skills/
305
- โ”‚ โ”œโ”€โ”€ commands/ # Installed from src/commands/
306
- โ”‚ โ””โ”€โ”€ hooks/ # Symlinks to src/hooks/
266
+ โ”œโ”€โ”€ .claude/ # Pre-installed components (user projects)
267
+ โ”‚ โ”œโ”€โ”€ agents/ # 10 agents (copied during init)
268
+ โ”‚ โ”œโ”€โ”€ skills/ # 35+ skills (copied during init)
269
+ โ”‚ โ””โ”€โ”€ commands/ # 10 slash commands (copied during init)
307
270
  โ”‚
308
271
  โ”œโ”€โ”€ tests/ # Framework tests
309
272
  โ”‚ โ”œโ”€โ”€ unit/
@@ -325,22 +288,30 @@ specweave/
325
288
 
326
289
  ### For Greenfield Projects
327
290
 
291
+ **IMPORTANT**: Use slash commands to activate SpecWeave!
292
+
328
293
  ```bash
329
294
  # 1. Create specifications (optional: comprehensive upfront or incremental)
330
295
  # Option A: Comprehensive (Enterprise) - 500-600+ pages upfront
331
296
  # Option B: Incremental (Startup) - Build as you go
332
297
 
333
- # 2. Create increment
334
- /create-increment "user authentication"
298
+ # 2. Create increment with slash command
299
+ /pi "user authentication"
300
+ # Short alias for /create-increment
301
+ # SpecWeave orchestrates: PM โ†’ Architect โ†’ QA agents
302
+ # Creates: spec.md, plan.md, tasks.md, tests.md
335
303
 
336
- # 3. Implement with auto-role routing
337
- "Implement user authentication"
338
- # SpecWeave orchestrates: PM โ†’ Architect โ†’ Backend โ†’ QA โ†’ Docs
304
+ # 3. Implement with regular conversation (no slash command needed)
305
+ "Implement user authentication based on plan.md"
306
+ # Claude implements based on specifications
339
307
 
340
- # 4. Generate diagrams
308
+ # 4. Generate diagrams (regular conversation)
341
309
  "Create C4 context diagram for authentication"
342
310
 
343
- # 5. Sync with tools (optional)
311
+ # 5. Close increment with slash command
312
+ /done 0001
313
+
314
+ # 6. Sync with tools (optional)
344
315
  /sync-github # Sync to GitHub issues
345
316
  ```
346
317
 
@@ -390,38 +361,6 @@ SpecWeave implements **4 Levels of Testing**:
390
361
 
391
362
  ---
392
363
 
393
- ## ๐Ÿ“Š Context Precision (70%+ Reduction)
394
-
395
- SpecWeave uses **context manifests** to load only relevant specifications:
396
-
397
- **Without context manifests** (traditional):
398
- - Load entire spec/ folder
399
- - 100,000+ tokens
400
- - Slow, expensive, context pollution
401
-
402
- **With context manifests** (SpecWeave):
403
- - Load only relevant sections
404
- - 10,000-30,000 tokens
405
- - **70%+ reduction**
406
- - Fast, efficient, focused
407
-
408
- **Example**:
409
- ```yaml
410
- # .specweave/increments/0001-auth/context-manifest.yaml
411
- spec_sections:
412
- - .specweave/docs/internal/strategy/auth/authentication-spec.md
413
- - .specweave/docs/internal/strategy/auth/authorization-spec.md
414
-
415
- documentation:
416
- - .specweave/docs/internal/architecture/auth-hld.md
417
- - CLAUDE.md#authentication
418
-
419
- max_context_tokens: 10000
420
- ```
421
-
422
- **See [CLAUDE.md#context-precision](CLAUDE.md#scalable-directory-structure)** for details.
423
-
424
- ---
425
364
 
426
365
  ## ๐ŸŽจ Diagram Generation
427
366
 
@@ -502,24 +441,22 @@ sync:
502
441
 
503
442
  ## ๐Ÿ“š Documentation
504
443
 
505
- - **[CLAUDE.md](CLAUDE.md)** - **START HERE** - Complete development guide (source of truth)
506
- - **[INSTALLATION.md](INSTALLATION.md)** - Detailed installation instructions
507
- - **[.specweave/docs/README.md](.specweave/docs/README.md)** - Documentation structure
508
- - **[Diagram Conventions](.specweave/docs/internal/delivery/guides/diagram-conventions.md)** - C4 Model conventions
509
- - **[Tool Concept Mapping](.specweave/docs/internal/delivery/guides/tool-concept-mapping.md)** - Tool mappings
510
- - **[.specweave/increments/README.md](.specweave/increments/README.md)** - Increments guide
444
+ - **[spec-weave.com](https://spec-weave.com)** - **START HERE** - Complete documentation website
445
+ - **[npm Package](https://www.npmjs.com/package/specweave)** - Installation and quick start
446
+ - **[GitHub](https://github.com/anton-abyzov/specweave)** - Source code and examples
447
+ - **[CLAUDE.md](CLAUDE.md)** - Complete development guide (created after `specweave init`)
511
448
 
512
449
  ---
513
450
 
514
451
  ## ๐Ÿค Contributing
515
452
 
516
- We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
453
+ We welcome contributions!
517
454
 
518
455
  ### Development Setup
519
456
 
520
457
  ```bash
521
458
  # Clone repository
522
- git clone https://github.com/specweave/specweave.git
459
+ git clone https://github.com/anton-abyzov/specweave.git
523
460
  cd specweave
524
461
 
525
462
  # Install dependencies
@@ -528,19 +465,14 @@ npm install
528
465
  # Build TypeScript
529
466
  npm run build
530
467
 
531
- # Install components
532
- npm run install:all
533
-
534
468
  # Run tests
535
469
  npm test
536
-
537
- # Restart Claude Code
538
470
  ```
539
471
 
540
472
  **To contribute**:
541
473
  1. Fork repository
542
- 2. Create feature branch: `git checkout -b features/001-new-feature`
543
- 3. Follow [CLAUDE.md](CLAUDE.md) conventions
474
+ 2. Create feature branch: `git checkout -b features/002-new-feature`
475
+ 3. Follow SpecWeave conventions (see CLAUDE.md after init)
544
476
  4. Add 3+ test cases (MANDATORY)
545
477
  5. Create PR to `develop` branch
546
478
 
@@ -548,75 +480,72 @@ npm test
548
480
 
549
481
  ## ๐Ÿท๏ธ Project Status
550
482
 
551
- **Version**: 0.1.0-beta.1
483
+ **Version**: 0.1.6
552
484
  **Status**: Public Beta
553
485
  **License**: MIT
554
- **Release Date**: 2025-10-27
486
+ **Release Date**: 2025-10-28
487
+ **Website**: [spec-weave.com](https://spec-weave.com)
555
488
 
556
- ### โœ… What Works (v0.1.0-beta.1)
489
+ ### โœ… What Works (v0.1.6)
557
490
 
558
- - โœ… **19 Agents** fully implemented with test cases
559
- - โœ… **24 Skills** fully implemented with test cases
560
- - โœ… **CLI Tool** - `specweave` command (`init`, `install`, `list`)
561
- - โœ… **Auto-detection** and intelligent routing (>90% accuracy)
562
- - โœ… **Context manifests** (70%+ token reduction)
491
+ - โœ… **10 Agents** fully implemented and pre-installed
492
+ - โœ… **35+ Skills** fully implemented and pre-installed
493
+ - โœ… **CLI Tool** - `specweave init` with complete component copying
494
+ - โœ… **Ready Out of the Box** - All components installed during init
495
+ - โœ… **Auto-detection** and intelligent routing (fixed in 0.1.6!)
563
496
  - โœ… **Diagram generation** (C4 Model with validation)
564
- - โœ… **Install scripts** (selective installation based on tech stack)
565
497
  - โœ… **4-level testing framework** (spec โ†’ feature โ†’ component โ†’ automated)
566
- - โœ… **JIRA/ADO/GitHub sync** agents
498
+ - โœ… **JIRA/ADO/GitHub sync** integration
567
499
  - โœ… **Brownfield analyzer** (retroactive specs, regression prevention)
568
500
  - โœ… **Increment lifecycle** (5 stages, WIP limits, leftover transfer)
569
501
  - โœ… **Increment validation** (120 rules, auto-validation on save)
570
502
  - โœ… **Hooks system** (auto-update docs, validations)
571
- - โœ… **Documentation** (CHANGELOG.md, INSTALL.md, comprehensive guides)
572
-
573
- ### โณ In Progress (v0.1.0-beta.2)
574
-
575
- - โณ NPM package publishing (beta.1 installable via GitHub only)
576
- - โณ Additional CLI commands (`audit`, `cleanup`)
577
- - โณ More project templates (currently: saas, api, fullstack)
578
- - โณ GitHub Actions CI/CD integration
579
- - โณ MkDocs documentation site deployment
503
+ - โœ… **Living Documentation** - Auto-updated via Claude Code hooks
504
+ - โœ… **npm Package** - Published and ready to use
580
505
 
581
506
  ### ๐Ÿ“… Planned (v0.2.0+)
582
507
 
583
- - ๐Ÿ“… Quality gates (inspired by BMAD `@qa *gate`)
584
- - ๐Ÿ“… Risk scoring (inspired by BMAD `@qa *risk`)
585
- - ๐Ÿ“… Clarification workflow (inspired by spec-kit `/speckit.clarify`)
586
- - ๐Ÿ“… Dependency tracking in tasks (inspired by spec-kit)
587
- - ๐Ÿ“… Agent-agnostic support (Copilot, Cursor, Gemini, etc.)
508
+ - ๐Ÿ“… Quality gates and risk scoring
588
509
  - ๐Ÿ“… Web UI for planning phase
589
510
  - ๐Ÿ“… VS Code extension
590
511
  - ๐Ÿ“… Homebrew formula
591
- - ๐Ÿ“… Test importer (import existing tests)
512
+ - ๐Ÿ“… Additional project templates
592
513
 
593
514
  ---
594
515
 
595
- ## ๐Ÿ“– Example Projects
516
+ ## ๐Ÿ“– Quick Start
596
517
 
597
- ### SaaS Application
518
+ ### Initialize New Project
598
519
 
599
520
  ```bash
600
- git clone https://github.com/specweave/specweave.git my-saas
521
+ # Create new project (all components pre-installed!)
522
+ npx specweave init my-saas
601
523
  cd my-saas
602
- npm install && npm run install:all
603
524
 
604
- # Create features
605
- /create-increment "user authentication"
606
- /create-increment "subscription billing"
607
- /create-increment "admin dashboard"
525
+ # Everything ready:
526
+ # โœ… 10 agents in .claude/agents/
527
+ # โœ… 35+ skills in .claude/skills/
528
+ # โœ… 10 slash commands in .claude/commands/
608
529
 
609
- # Implement
610
- "Implement all increments"
530
+ # Open Claude Code and start building:
531
+ # "Create user authentication with JWT"
532
+ # "Add subscription billing with Stripe"
533
+ # "Build admin dashboard with analytics"
611
534
  ```
612
535
 
613
- ### API Service
536
+ ### For Existing Projects
614
537
 
615
538
  ```bash
616
- # Similar setup, different increments
617
- /create-increment "REST API with OpenAPI"
618
- /create-increment "GraphQL endpoint"
619
- /create-increment "WebSocket real-time features"
539
+ # Add SpecWeave to existing project
540
+ cd my-existing-project
541
+ npx specweave init .
542
+
543
+ # Analyze existing code
544
+ # "Analyze my authentication module"
545
+ # SpecWeave creates retroactive specifications
546
+
547
+ # Safe to modify
548
+ # "Add OAuth to authentication"
620
549
  ```
621
550
 
622
551
  ---
@@ -630,7 +559,7 @@ npm install && npm run install:all
630
559
  | **Documentation** | Outdated, ignored | Living, auto-updated |
631
560
  | **Specifications** | Optional, vague | Source of truth, precise |
632
561
  | **Testing** | Manual, incomplete | 4-level, validated |
633
- | **Context** | Full codebase loaded | 70%+ reduction |
562
+ | **Components** | Manual setup | Pre-installed (10 agents + 35+ skills) |
634
563
  | **Regression** | Frequent breaks | Prevention-first |
635
564
  | **Onboarding** | Weeks | Hours (specs explain everything) |
636
565
  | **Brownfield** | Risky | Safe (document first) |
@@ -638,29 +567,34 @@ npm install && npm run install:all
638
567
  ### vs Other Frameworks
639
568
 
640
569
  **vs spec-kit** (GitHub):
641
- - โœ… SpecWeave: Auto-role routing, context precision
642
- - โœ… SpecWeave: Living documentation via hooks
643
- - โœ… SpecWeave: Brownfield analysis
644
- - โœ… SpecWeave: 19 agents + 24 skills
570
+ - โœ… SpecWeave: **Pre-installed agents** (10) and skills (35+) - spec-kit requires manual setup
571
+ - โœ… SpecWeave: **Living documentation** via Claude Code hooks - auto-updates on changes
572
+ - โœ… SpecWeave: **Brownfield analysis** - retroactive spec generation for existing code
573
+ - โœ… SpecWeave: **Tool integration** - JIRA, ADO, GitHub bidirectional sync
645
574
 
646
575
  **vs BMAD-METHOD**:
647
- - โœ… SpecWeave: Context manifests (70%+ reduction)
648
- - โœ… SpecWeave: 5-pillar documentation
649
- - โœ… SpecWeave: Tool integration (JIRA/ADO/GitHub)
650
- - โœ… SpecWeave: Diagram generation
576
+ - โœ… SpecWeave: **5-pillar documentation** - strategy, architecture, delivery, operations, governance
577
+ - โœ… SpecWeave: **Pre-installed components** - 10 agents + 35+ skills ready immediately
578
+ - โœ… SpecWeave: **Framework agnostic** - TypeScript, Python, Go, Rust, Java, C#
579
+ - โœ… SpecWeave: **Diagram generation** - C4 Model diagrams with validation
580
+ - โœ… SpecWeave: **Tool integration** - JIRA/ADO/GitHub sync built-in
581
+
582
+ **Both frameworks**:
583
+ - โœ… Specification-first development
584
+ - โœ… Automated testing
585
+ - โœ… Quality gates and validation
651
586
 
652
- **See skills**:
653
- - `bmad-method-expert` - Dynamic gap analysis vs BMAD
654
- - `spec-kit-expert` - Dynamic gap analysis vs spec-kit
587
+ **Learn more**: See `bmad-method-expert` and `spec-kit-expert` skills for detailed comparisons
655
588
 
656
589
  ---
657
590
 
658
591
  ## ๐Ÿ“ž Support & Community
659
592
 
660
- - **GitHub**: [github.com/specweave/specweave](https://github.com/specweave/specweave)
661
- - **Issues**: [github.com/specweave/specweave/issues](https://github.com/specweave/specweave/issues)
662
- - **Discussions**: [github.com/specweave/specweave/discussions](https://github.com/specweave/specweave/discussions)
663
- - **Documentation**: [CLAUDE.md](CLAUDE.md)
593
+ - **Website**: [spec-weave.com](https://spec-weave.com)
594
+ - **npm Package**: [npmjs.com/package/specweave](https://www.npmjs.com/package/specweave)
595
+ - **GitHub**: [github.com/anton-abyzov/specweave](https://github.com/anton-abyzov/specweave)
596
+ - **Issues**: [github.com/anton-abyzov/specweave/issues](https://github.com/anton-abyzov/specweave/issues)
597
+ - **Documentation**: See [CLAUDE.md](CLAUDE.md) after running `specweave init`
664
598
 
665
599
  ---
666
600
 
@@ -682,4 +616,4 @@ SpecWeave is inspired by and learns from:
682
616
 
683
617
  **SpecWeave** - Replace vibe coding with spec-driven development.
684
618
 
685
- **Get started**: See [INSTALLATION.md](INSTALLATION.md) | [CLAUDE.md](CLAUDE.md)
619
+ **Get started**: [spec-weave.com](https://spec-weave.com) | [npm install](https://www.npmjs.com/package/specweave) | [GitHub](https://github.com/anton-abyzov/specweave)