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.
@@ -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`.
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: validate-increment
2
+ name: validate
3
3
  description: Validate SpecWeave increment with rule-based checks and optional AI quality assessment
4
4
  ---
5
5