get-shit-done-cc 1.3.16 → 1.3.17

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.
@@ -245,7 +245,7 @@ Use AskUserQuestion:
245
245
  - "Standard" — Balanced scope and speed (5-8 phases, 3-5 plans each)
246
246
  - "Comprehensive" — Thorough coverage, more phases/plans (8-12 phases, 5-10 plans each)
247
247
 
248
- **Depth controls quantity, not quality.** All depths use 2-3 tasks per plan. Depth determines how many plans get createdmore depth means more plans, not bigger plans.
248
+ **Depth controls compression tolerance, not artificial inflation.** All depths use 2-3 tasks per plan. Comprehensive means "don't compress complex work"it doesn't mean "pad simple work to hit a number."
249
249
 
250
250
  Create `.planning/config.json` with chosen mode and depth using `templates/config.json` structure.
251
251
 
@@ -103,17 +103,22 @@ Each: 30-40% context, peak quality, focused commits
103
103
  </estimating_context>
104
104
 
105
105
  <depth_calibration>
106
- **Depth controls plan count, not plan size.**
106
+ **Depth controls compression tolerance, not artificial inflation.**
107
107
 
108
- | Depth | Phases | Plans/Phase | Tasks/Plan |
109
- |-------|--------|-------------|------------|
108
+ | Depth | Typical Phases | Typical Plans/Phase | Tasks/Plan |
109
+ |-------|----------------|---------------------|------------|
110
110
  | Quick | 3-5 | 1-3 | 2-3 |
111
111
  | Standard | 5-8 | 3-5 | 2-3 |
112
112
  | Comprehensive | 8-12 | 5-10 | 2-3 |
113
113
 
114
114
  Tasks/plan is CONSTANT at 2-3. The 50% context rule applies universally.
115
115
 
116
- Depth determines thoroughness by creating more phases and more plans—never by cramming more into each plan.
116
+ **Key principle:** Derive from actual work. Depth determines how aggressively you combine things, not a target to hit.
117
+
118
+ - Comprehensive auth = 8 plans (because auth genuinely has 8 concerns)
119
+ - Comprehensive "add favicon" = 1 plan (because that's all it is)
120
+
121
+ Don't pad small work to hit a number. Don't compress complex work to look efficient.
117
122
 
118
123
  **Comprehensive depth example:**
119
124
  Auth system at comprehensive depth = 8 plans (not 3 big ones):
@@ -89,20 +89,23 @@ cat .planning/config.json 2>/dev/null | grep depth
89
89
  ```
90
90
 
91
91
  <depth_guidance>
92
- **Phase count targets by depth:**
92
+ **Depth controls compression tolerance, not artificial inflation.**
93
93
 
94
- | Depth | Target Phases | Plans/Phase | Tasks/Plan |
95
- |-------|---------------|-------------|------------|
94
+ | Depth | Typical Phases | Typical Plans/Phase | Tasks/Plan |
95
+ |-------|----------------|---------------------|------------|
96
96
  | Quick | 3-5 | 1-3 | 2-3 |
97
97
  | Standard | 5-8 | 3-5 | 2-3 |
98
98
  | Comprehensive | 8-12 | 5-10 | 2-3 |
99
99
 
100
- **Tasks/plan is constant (2-3). Depth scales phases and plans, not task density.**
100
+ **Key principle:** Derive phases from actual work. Depth determines how aggressively you combine things, not a target to hit.
101
+
102
+ - Comprehensive auth system = 8 phases (because auth genuinely has 8 concerns)
103
+ - Comprehensive "add favicon" = 1 phase (because that's all it is)
101
104
 
102
105
  For comprehensive depth:
103
106
  - Don't compress multiple features into single phases
104
107
  - Each major capability gets its own phase
105
- - "Too many phases" is NOT a concern—thoroughness is the goal
108
+ - Let small things stay small—don't pad to hit a number
106
109
  - If you're tempted to combine two things, make them separate phases instead
107
110
 
108
111
  For quick depth:
@@ -232,20 +232,24 @@ cat .planning/config.json 2>/dev/null | grep depth
232
232
  ```
233
233
 
234
234
  <depth_aware_splitting>
235
- **Plan count targets by depth:**
235
+ **Depth controls compression tolerance, not artificial inflation.**
236
236
 
237
- | Depth | Plans/Phase | Tasks/Plan |
238
- |-------|-------------|------------|
237
+ | Depth | Typical Plans/Phase | Tasks/Plan |
238
+ |-------|---------------------|------------|
239
239
  | Quick | 1-3 | 2-3 |
240
240
  | Standard | 3-5 | 2-3 |
241
241
  | Comprehensive | 5-10 | 2-3 |
242
242
 
243
- **Tasks/plan is ALWAYS 2-3. Depth determines how many plans you create, not how big each plan is.**
243
+ **Key principle:** Derive plans from actual work. Depth determines how aggressively you combine things, not a target to hit.
244
+
245
+ - Comprehensive auth phase = 8 plans (because auth genuinely has 8 concerns)
246
+ - Comprehensive "add config file" phase = 1 plan (because that's all it is)
244
247
 
245
248
  For comprehensive depth:
246
- - Create MORE plans, not bigger ones
249
+ - Create MORE plans when the work warrants it, not bigger ones
247
250
  - If a phase has 15 tasks, that's 5-8 plans (not 3 plans with 5 tasks each)
248
251
  - Don't compress to look efficient—thoroughness is the goal
252
+ - Let small phases stay small—don't pad to hit a number
249
253
  - Each plan stays focused: 2-3 tasks, single concern
250
254
 
251
255
  For quick depth:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"