@leeovery/claude-technical-workflows 2.0.21 → 2.0.22
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/package.json
CHANGED
|
@@ -139,52 +139,75 @@ If working notes exist, they show where you left off.
|
|
|
139
139
|
|
|
140
140
|
## Dependencies Section
|
|
141
141
|
|
|
142
|
-
At the end of every specification, add a **Dependencies** section that identifies
|
|
142
|
+
At the end of every specification, add a **Dependencies** section that identifies **prerequisites** - systems that must exist before this feature can be built.
|
|
143
143
|
|
|
144
144
|
The same workflow applies: present the dependencies section for approval, then log verbatim when approved.
|
|
145
145
|
|
|
146
|
+
### What Dependencies Are
|
|
147
|
+
|
|
148
|
+
Dependencies are **blockers** - things that must exist before implementation can begin.
|
|
149
|
+
|
|
150
|
+
Think of it like building a house: if you're specifying the roof, the walls are a dependency. You cannot build a roof without walls to support it. The walls must exist first.
|
|
151
|
+
|
|
152
|
+
**The test**: "If system X doesn't exist, can we still build this feature?"
|
|
153
|
+
- If **no** → X is a dependency
|
|
154
|
+
- If **yes** → X is not a dependency (even if the systems work together)
|
|
155
|
+
|
|
156
|
+
### What Dependencies Are NOT
|
|
157
|
+
|
|
158
|
+
**Do not list systems just because they:**
|
|
159
|
+
- Work together with this feature
|
|
160
|
+
- Share data or communicate with this feature
|
|
161
|
+
- Are related or in the same domain
|
|
162
|
+
- Would be nice to have alongside this feature
|
|
163
|
+
|
|
164
|
+
Two systems that cooperate are not necessarily dependent. A notification system and a user preferences system might work together (preferences control notification settings), but if you can build the notification system with hardcoded defaults and add preference integration later, then preferences are not a dependency.
|
|
165
|
+
|
|
146
166
|
### How to Identify Dependencies
|
|
147
167
|
|
|
148
|
-
Review the specification for
|
|
149
|
-
|
|
150
|
-
- Data
|
|
151
|
-
-
|
|
152
|
-
-
|
|
168
|
+
Review the specification for cases where implementation is **literally blocked** without another system:
|
|
169
|
+
|
|
170
|
+
- **Data that must exist first** (e.g., "FK to users" → User model must exist, you can't create the FK otherwise)
|
|
171
|
+
- **Events you consume** (e.g., "listens for payment.completed" → Payment system must emit this event)
|
|
172
|
+
- **APIs you call** (e.g., "fetches inventory levels" → Inventory API must exist)
|
|
173
|
+
- **Infrastructure requirements** (e.g., "stores files in S3" → S3 bucket configuration must exist)
|
|
174
|
+
|
|
175
|
+
**Do not include** systems where you merely reference their concepts or where integration could be deferred.
|
|
153
176
|
|
|
154
177
|
### Categorization
|
|
155
178
|
|
|
156
|
-
**Required**:
|
|
179
|
+
**Required**: Implementation cannot start without this. The code literally cannot be written.
|
|
157
180
|
|
|
158
|
-
**Partial Requirement**: Only specific elements are needed, not the full system. Note the minimum scope.
|
|
181
|
+
**Partial Requirement**: Only specific elements are needed, not the full system. Note the minimum scope that unblocks implementation.
|
|
159
182
|
|
|
160
183
|
### Format
|
|
161
184
|
|
|
162
185
|
## Dependencies
|
|
163
186
|
|
|
164
|
-
|
|
187
|
+
Prerequisites that must exist before implementation can begin:
|
|
165
188
|
|
|
166
189
|
### Required
|
|
167
190
|
|
|
168
|
-
| Dependency | Why
|
|
169
|
-
|
|
170
|
-
| **[System Name]** | [
|
|
191
|
+
| Dependency | Why Blocked | What's Unblocked When It Exists |
|
|
192
|
+
|------------|-------------|--------------------------------|
|
|
193
|
+
| **[System Name]** | [Why implementation literally cannot proceed] | [What parts of this spec can then be built] |
|
|
171
194
|
|
|
172
195
|
### Partial Requirement
|
|
173
196
|
|
|
174
|
-
| Dependency | Why
|
|
175
|
-
|
|
176
|
-
| **[System Name]** | [
|
|
197
|
+
| Dependency | Why Blocked | Minimum Scope Needed |
|
|
198
|
+
|------------|-------------|---------------------|
|
|
199
|
+
| **[System Name]** | [Why implementation cannot proceed] | [Specific subset that unblocks us] |
|
|
177
200
|
|
|
178
201
|
### Notes
|
|
179
202
|
|
|
180
|
-
- [
|
|
181
|
-
- [Workarounds
|
|
203
|
+
- [What can be built independently, without waiting]
|
|
204
|
+
- [Workarounds if dependencies don't exist yet]
|
|
182
205
|
|
|
183
206
|
### Purpose
|
|
184
207
|
|
|
185
208
|
This section feeds into the planning phase, where dependencies become blocking relationships between epics/phases. It helps sequence implementation correctly.
|
|
186
209
|
|
|
187
|
-
|
|
210
|
+
**Key distinction**: This is about sequencing what must come first, not mapping out what works together. A feature may integrate with many systems - only list the ones that block you from starting.
|
|
188
211
|
|
|
189
212
|
## Completion
|
|
190
213
|
|