get-shit-done-cc 1.5.3 → 1.5.4
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.
|
@@ -42,6 +42,14 @@ Phase number: $ARGUMENTS (required)
|
|
|
42
42
|
**Load roadmap:**
|
|
43
43
|
@.planning/ROADMAP.md
|
|
44
44
|
|
|
45
|
+
**Load requirements:**
|
|
46
|
+
@.planning/REQUIREMENTS.md
|
|
47
|
+
|
|
48
|
+
Extract phase requirements before research:
|
|
49
|
+
1. Find the phase in ROADMAP.md, get its `Requirements:` list
|
|
50
|
+
2. Look up each REQ-ID in REQUIREMENTS.md for full description
|
|
51
|
+
3. Use concrete requirements to focus research domains
|
|
52
|
+
|
|
45
53
|
**Load phase context if exists:**
|
|
46
54
|
Check for `.planning/phases/XX-name/{phase}-CONTEXT.md` - bonus context from discuss-phase.
|
|
47
55
|
</context>
|
|
@@ -113,7 +113,24 @@ If CONTEXT.md exists, use it to understand:
|
|
|
113
113
|
- Constraints mentioned
|
|
114
114
|
- Any preferences stated
|
|
115
115
|
|
|
116
|
-
**3.
|
|
116
|
+
**3. Phase requirements:**
|
|
117
|
+
```bash
|
|
118
|
+
cat .planning/REQUIREMENTS.md 2>/dev/null
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Extract requirements for this phase:
|
|
122
|
+
1. Find phase in ROADMAP.md, get its `Requirements:` list (e.g., "AUTH-01, AUTH-02")
|
|
123
|
+
2. Look up each REQ-ID in REQUIREMENTS.md for full description
|
|
124
|
+
3. Present concrete requirements:
|
|
125
|
+
```
|
|
126
|
+
Phase ${PHASE} Requirements:
|
|
127
|
+
- AUTH-01: User can sign up with email and password
|
|
128
|
+
- AUTH-02: User receives email verification after signup
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Requirements inform research focus — "email verification" tells us to research email delivery, verification flows, etc.
|
|
132
|
+
|
|
133
|
+
**4. Prior phase decisions:**
|
|
117
134
|
```bash
|
|
118
135
|
cat .planning/STATE.md 2>/dev/null | grep -A20 "## Accumulated Decisions"
|
|
119
136
|
```
|
|
@@ -126,6 +143,10 @@ Research context for Phase ${PHASE}: ${PHASE_NAME}
|
|
|
126
143
|
|
|
127
144
|
Roadmap description: ${PHASE_DESCRIPTION}
|
|
128
145
|
|
|
146
|
+
Requirements:
|
|
147
|
+
- [REQ-ID]: [requirement description]
|
|
148
|
+
- [REQ-ID]: [requirement description]
|
|
149
|
+
|
|
129
150
|
[If CONTEXT.md exists:]
|
|
130
151
|
Phase context available - will incorporate user preferences.
|
|
131
152
|
|
package/package.json
CHANGED