claude-cook 1.10.3 → 1.10.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.
- package/package.json +1 -1
- package/scripts/pm-loop.sh +3 -1
package/package.json
CHANGED
package/scripts/pm-loop.sh
CHANGED
|
@@ -309,7 +309,9 @@ while true; do
|
|
|
309
309
|
echo ""
|
|
310
310
|
|
|
311
311
|
# Build the prompt
|
|
312
|
-
|
|
312
|
+
# Only pass phase hint on cycle 1 — after that, pm-cycle auto-detects
|
|
313
|
+
# from STATE.md so it can advance through phases autonomously.
|
|
314
|
+
if [ "$CYCLE" -eq 1 ] && [ -n "$PHASE" ]; then
|
|
313
315
|
PROMPT="/gsd:pm-cycle $PHASE"
|
|
314
316
|
else
|
|
315
317
|
PROMPT="/gsd:pm-cycle"
|