claude-cook 1.11.0 → 1.11.1
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/agents/cook-pm.md +5 -0
- package/commands/cook/pm-start.md +25 -9
- package/package.json +1 -1
package/agents/cook-pm.md
CHANGED
|
@@ -107,6 +107,10 @@ When running under `/cook:pm-start` and `pm-loop.sh`, you MUST avoid asking the
|
|
|
107
107
|
- If a choice is required, pick a safe default and **log the choice** in PM-LOG.md.
|
|
108
108
|
- Only ask the user if a **critical, irreversible** decision cannot be made safely.
|
|
109
109
|
|
|
110
|
+
## PM Loop Launch is MANDATORY
|
|
111
|
+
|
|
112
|
+
When spawned by `/cook:pm-start`, you MUST launch `pm-loop.sh` via Bash after executing the first cycle. The only exception is when `--manual` flag is explicitly set. Without the loop, the PM does one cycle and stops — defeating the purpose of autonomous operation. Always launch it in background with `nohup ... &`.
|
|
113
|
+
|
|
110
114
|
</philosophy>
|
|
111
115
|
|
|
112
116
|
<never_do>
|
|
@@ -117,6 +121,7 @@ When running under `/cook:pm-start` and `pm-loop.sh`, you MUST avoid asking the
|
|
|
117
121
|
- Dispatch wave N+1 before wave N is fully done
|
|
118
122
|
- Replan more than max_replan_attempts times without escalating to human
|
|
119
123
|
- Run its own code reviewer — delegate review to Vibe Kanban's review agent
|
|
124
|
+
- Skip launching pm-loop.sh after first cycle (unless --manual is set)
|
|
120
125
|
</never_do>
|
|
121
126
|
|
|
122
127
|
<tools_usage>
|
|
@@ -138,28 +138,44 @@ Follow the action for the detected state as defined in `pm-cycle.md`:
|
|
|
138
138
|
- NEEDS_DISPATCH → dispatch workers
|
|
139
139
|
- MONITORING → poll and react
|
|
140
140
|
|
|
141
|
-
## 5. Launch PM Loop
|
|
141
|
+
## 5. Launch PM Loop (MANDATORY)
|
|
142
142
|
|
|
143
|
-
|
|
143
|
+
**You MUST launch pm-loop.sh unless `--manual` flag is explicitly set.** This is not optional. The loop is what makes the PM autonomous — without it, the PM does one cycle and stops.
|
|
144
144
|
|
|
145
|
-
|
|
145
|
+
**If `--manual` is NOT set**, run this command via Bash tool immediately after the first cycle completes:
|
|
146
146
|
|
|
147
147
|
```bash
|
|
148
|
-
~/.claude/scripts/pm-loop.sh \
|
|
148
|
+
nohup ~/.claude/scripts/pm-loop.sh \
|
|
149
149
|
--phase={X} \
|
|
150
150
|
--interval={poll_interval} \
|
|
151
151
|
--max-iterations={max_iterations} \
|
|
152
152
|
--background \
|
|
153
|
-
${
|
|
153
|
+
${init_flag} \
|
|
154
|
+
${prd_flag} \
|
|
155
|
+
> /dev/null 2>&1 &
|
|
154
156
|
```
|
|
155
157
|
|
|
156
|
-
Where
|
|
158
|
+
Where:
|
|
159
|
+
- `${init_flag}` is `--init` if the `--init` flag was provided
|
|
160
|
+
- `${prd_flag}` is `--prd=<file>` if provided
|
|
161
|
+
- Phase is auto-detected or from arguments
|
|
157
162
|
|
|
158
|
-
|
|
163
|
+
After launching, confirm to user:
|
|
164
|
+
```
|
|
165
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
166
|
+
PM ► LOOP STARTED
|
|
167
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
159
168
|
|
|
160
|
-
|
|
169
|
+
PM loop running in background (PID: {pid})
|
|
170
|
+
Polling every {interval}s
|
|
171
|
+
|
|
172
|
+
Stop with: /cook:pm-stop
|
|
173
|
+
Status: /cook:pm-status
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Stop with: `touch .planning/.pm-stop` | `/cook:pm-stop`
|
|
161
177
|
|
|
162
|
-
Present:
|
|
178
|
+
**If `--manual` IS set**, do NOT launch the loop. Present:
|
|
163
179
|
```
|
|
164
180
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
165
181
|
PM ► MANUAL MODE
|
package/package.json
CHANGED