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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-cook",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode and Gemini by TÂCHES.",
5
5
  "bin": {
6
6
  "claude-cook": "bin/install.js"
@@ -309,7 +309,9 @@ while true; do
309
309
  echo ""
310
310
 
311
311
  # Build the prompt
312
- if [ -n "$PHASE" ]; then
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"