get-shit-done-cc 1.3.32 → 1.3.33
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
CHANGED
|
@@ -330,6 +330,7 @@ You're never locked in. The system adapts.
|
|
|
330
330
|
| `/gsd:list-phase-assumptions [N]` | See what Claude thinks before you correct it |
|
|
331
331
|
| `/gsd:pause-work` | Create handoff file when stopping mid-phase |
|
|
332
332
|
| `/gsd:resume-work` | Restore from last session |
|
|
333
|
+
| `/gsd:resume-task [id]` | Resume interrupted subagent execution |
|
|
333
334
|
| `/gsd:consider-issues` | Review deferred issues, close resolved, identify urgent |
|
|
334
335
|
| `/gsd:help` | Show all commands and usage guide |
|
|
335
336
|
|
|
@@ -104,7 +104,7 @@ Examples:
|
|
|
104
104
|
- Phase 72 with 72.1 → next is 72.2
|
|
105
105
|
- Phase 72 with 72.1, 72.2 → next is 72.3
|
|
106
106
|
|
|
107
|
-
Store as: `decimal_phase="$
|
|
107
|
+
Store as: `decimal_phase="$(printf "%02d" $after_phase).${next_decimal}"`
|
|
108
108
|
</step>
|
|
109
109
|
|
|
110
110
|
<step name="generate_slug">
|
|
@@ -115,7 +115,7 @@ slug=$(echo "$description" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g'
|
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
Phase directory name: `{decimal-phase}-{slug}`
|
|
118
|
-
Example: `
|
|
118
|
+
Example: `06.1-fix-critical-auth-bug` (phase 6 insertion)
|
|
119
119
|
</step>
|
|
120
120
|
|
|
121
121
|
<step name="create_phase_directory">
|
package/package.json
CHANGED