specweave 0.1.6 → 0.1.8
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 +50 -28
- package/SPECWEAVE.md +93 -50
- package/package.json +2 -2
- package/src/agents/pm/AGENT.md +286 -0
- package/src/commands/README.md +7 -5
- package/src/commands/build.md +433 -0
- package/src/commands/done.md +544 -56
- package/src/commands/inc.md +85 -0
- package/src/commands/{validate-increment.md → validate.md} +1 -1
- package/src/skills/specweave-detector/SKILL.md +270 -402
- package/src/templates/CLAUDE.md.template +59 -19
- package/src/commands/add-tasks.md +0 -176
- package/src/commands/at.md +0 -114
- package/src/commands/ci.md +0 -63
- package/src/commands/close-increment.md +0 -347
- package/src/commands/init.md +0 -123
- package/src/commands/ls.md +0 -100
- package/src/commands/si.md +0 -83
- package/src/commands/start-increment.md +0 -139
- package/src/commands/vi.md +0 -89
- /package/src/commands/{create-increment.md → increment.md} +0 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: inc
|
|
3
|
+
description: Shorthand for /increment - Plan new Product Increment (PM-led process)
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Plan Product Increment (Quick Alias)
|
|
7
|
+
|
|
8
|
+
**⚡ Quick Alias**: This is a shorthand for `/increment`.
|
|
9
|
+
|
|
10
|
+
This is the **most frequently used command** in SpecWeave's append-only increment workflow. Every new feature starts here.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Why This Alias Exists
|
|
15
|
+
|
|
16
|
+
In an append-only increment workflow:
|
|
17
|
+
- `/increment` is your starting point for ALL new work
|
|
18
|
+
- You'll use it dozens/hundreds of times
|
|
19
|
+
- Short alias saves time and mental overhead
|
|
20
|
+
- Other commands are used less frequently (no aliases needed)
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
/inc "feature description"
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
**Examples**:
|
|
31
|
+
```bash
|
|
32
|
+
/inc "User authentication with JWT"
|
|
33
|
+
/inc "Payment processing with Stripe"
|
|
34
|
+
/inc "Real-time notifications"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## What This Does
|
|
40
|
+
|
|
41
|
+
Runs the full `/increment` command, which:
|
|
42
|
+
|
|
43
|
+
1. **Detects tech stack** (TypeScript, Python, Go, etc.)
|
|
44
|
+
2. **PM-led planning**:
|
|
45
|
+
- Market research
|
|
46
|
+
- Create spec.md (WHAT & WHY)
|
|
47
|
+
- Create plan.md (HOW)
|
|
48
|
+
- **Auto-generate tasks.md** from plan
|
|
49
|
+
- Create tests.md (test strategy)
|
|
50
|
+
3. **Strategic agent review**:
|
|
51
|
+
- Architect designs system
|
|
52
|
+
- Security reviews threats
|
|
53
|
+
- QA defines test strategy
|
|
54
|
+
- DevOps plans infrastructure
|
|
55
|
+
4. **User review checkpoint**
|
|
56
|
+
5. **Ready to build**: `/build 0001`
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Typical Workflow
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
# 1. Plan increment (most common command - use alias!)
|
|
64
|
+
/inc "User authentication"
|
|
65
|
+
|
|
66
|
+
# 2. Review generated docs
|
|
67
|
+
# spec.md, plan.md, tasks.md, tests.md
|
|
68
|
+
|
|
69
|
+
# 3. Build it
|
|
70
|
+
/build 0001
|
|
71
|
+
|
|
72
|
+
# 4. Validate quality (optional)
|
|
73
|
+
/validate 0001 --quality
|
|
74
|
+
|
|
75
|
+
# 5. Close when done
|
|
76
|
+
/done 0001
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
**💡 Pro Tip**: `/inc` is the ONLY aliased command. Use full names for others (`/build`, `/validate`, `/done`) to keep the workflow clear and explicit.
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
For complete documentation, see `/increment`.
|