oh-my-claude-sisyphus 3.8.14 → 3.8.15

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.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "oh-my-claudecode",
12
12
  "description": "Claude Code native multi-agent orchestration with intelligent model routing, 28 agent variants, and 30 powerful skills. Zero learning curve. Maximum power.",
13
- "version": "3.8.14",
13
+ "version": "3.8.15",
14
14
  "author": {
15
15
  "name": "Yeachan Heo",
16
16
  "email": "hurrc04@gmail.com"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claudecode",
3
- "version": "3.8.13",
3
+ "version": "3.8.15",
4
4
  "description": "Multi-agent orchestration system for Claude Code",
5
5
  "author": {
6
6
  "name": "oh-my-claudecode contributors"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "3.8.14",
3
+ "version": "3.8.15",
4
4
  "description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -217,8 +217,8 @@ async function main() {
217
217
  writeJsonFile(ralph.path, ralph.state);
218
218
 
219
219
  console.log(JSON.stringify({
220
- continue: true,
221
- message: `[RALPH LOOP - ITERATION ${iteration + 1}/${maxIter}] Work is NOT done. Continue. When complete, output: <promise>${ralph.state.completion_promise || 'DONE'}</promise>\n${ralph.state.prompt ? `Task: ${ralph.state.prompt}` : ''}`
220
+ decision: 'block',
221
+ reason: `[RALPH LOOP - ITERATION ${iteration + 1}/${maxIter}] Work is NOT done. Continue. When complete, output: <promise>${ralph.state.completion_promise || 'DONE'}</promise>\n${ralph.state.prompt ? `Task: ${ralph.state.prompt}` : ''}`
222
222
  }));
223
223
  return;
224
224
  }
@@ -234,8 +234,8 @@ async function main() {
234
234
  writeJsonFile(autopilot.path, autopilot.state);
235
235
 
236
236
  console.log(JSON.stringify({
237
- continue: true,
238
- message: `[AUTOPILOT - Phase: ${phase}] Autopilot not complete. Continue working.`
237
+ decision: 'block',
238
+ reason: `[AUTOPILOT - Phase: ${phase}] Autopilot not complete. Continue working.`
239
239
  }));
240
240
  return;
241
241
  }
@@ -253,8 +253,8 @@ async function main() {
253
253
  writeJsonFile(ultrapilot.path, ultrapilot.state);
254
254
 
255
255
  console.log(JSON.stringify({
256
- continue: true,
257
- message: `[ULTRAPILOT] ${incomplete} workers still running. Continue.`
256
+ decision: 'block',
257
+ reason: `[ULTRAPILOT] ${incomplete} workers still running. Continue.`
258
258
  }));
259
259
  return;
260
260
  }
@@ -271,8 +271,8 @@ async function main() {
271
271
  writeJsonFile(join(stateDir, 'swarm-summary.json'), swarmSummary);
272
272
 
273
273
  console.log(JSON.stringify({
274
- continue: true,
275
- message: `[SWARM ACTIVE] ${pending} tasks remain. Continue working.`
274
+ decision: 'block',
275
+ reason: `[SWARM ACTIVE] ${pending} tasks remain. Continue working.`
276
276
  }));
277
277
  return;
278
278
  }
@@ -290,8 +290,8 @@ async function main() {
290
290
  writeJsonFile(pipeline.path, pipeline.state);
291
291
 
292
292
  console.log(JSON.stringify({
293
- continue: true,
294
- message: `[PIPELINE - Stage ${currentStage + 1}/${totalStages}] Pipeline not complete. Continue.`
293
+ decision: 'block',
294
+ reason: `[PIPELINE - Stage ${currentStage + 1}/${totalStages}] Pipeline not complete. Continue.`
295
295
  }));
296
296
  return;
297
297
  }
@@ -307,8 +307,8 @@ async function main() {
307
307
  writeJsonFile(ultraqa.path, ultraqa.state);
308
308
 
309
309
  console.log(JSON.stringify({
310
- continue: true,
311
- message: `[ULTRAQA - Cycle ${cycle + 1}/${maxCycles}] Tests not all passing. Continue fixing.`
310
+ decision: 'block',
311
+ reason: `[ULTRAQA - Cycle ${cycle + 1}/${maxCycles}] Tests not all passing. Continue fixing.`
312
312
  }));
313
313
  return;
314
314
  }
@@ -321,10 +321,8 @@ async function main() {
321
321
  const maxReinforcements = ultrawork.state.max_reinforcements || 50;
322
322
 
323
323
  if (newCount > maxReinforcements) {
324
- console.log(JSON.stringify({
325
- continue: true,
326
- reason: `[ULTRAWORK ESCAPE] Max reinforcements (${maxReinforcements}) reached. Allowing stop.`
327
- }));
324
+ // Max reinforcements reached - allow stop
325
+ console.log(JSON.stringify({ continue: true }));
328
326
  return;
329
327
  }
330
328
 
@@ -343,8 +341,8 @@ async function main() {
343
341
  }
344
342
 
345
343
  console.log(JSON.stringify({
346
- continue: true,
347
- message: reason
344
+ decision: 'block',
345
+ reason: reason
348
346
  }));
349
347
  return;
350
348
  }
@@ -355,10 +353,8 @@ async function main() {
355
353
  const maxReinforcements = ecomode.state.max_reinforcements || 50;
356
354
 
357
355
  if (newCount > maxReinforcements) {
358
- console.log(JSON.stringify({
359
- continue: true,
360
- reason: `[ECOMODE ESCAPE] Max reinforcements (${maxReinforcements}) reached. Allowing stop.`
361
- }));
356
+ // Max reinforcements reached - allow stop
357
+ console.log(JSON.stringify({ continue: true }));
362
358
  return;
363
359
  }
364
360
 
@@ -372,8 +368,8 @@ async function main() {
372
368
  }
373
369
 
374
370
  console.log(JSON.stringify({
375
- continue: true,
376
- message: reason
371
+ decision: 'block',
372
+ reason: reason
377
373
  }));
378
374
  return;
379
375
  }
@@ -215,8 +215,8 @@ async function main() {
215
215
  writeJsonFile(ralph.path, ralph.state);
216
216
 
217
217
  console.log(JSON.stringify({
218
- continue: true,
219
- message: `[RALPH LOOP - ITERATION ${iteration + 1}/${maxIter}] Work is NOT done. Continue. When complete, output: <promise>${ralph.state.completion_promise || 'DONE'}</promise>\n${ralph.state.prompt ? `Task: ${ralph.state.prompt}` : ''}`
218
+ decision: 'block',
219
+ reason: `[RALPH LOOP - ITERATION ${iteration + 1}/${maxIter}] Work is NOT done. Continue. When complete, output: <promise>${ralph.state.completion_promise || 'DONE'}</promise>\n${ralph.state.prompt ? `Task: ${ralph.state.prompt}` : ''}`
220
220
  }));
221
221
  return;
222
222
  }
@@ -232,8 +232,8 @@ async function main() {
232
232
  writeJsonFile(autopilot.path, autopilot.state);
233
233
 
234
234
  console.log(JSON.stringify({
235
- continue: true,
236
- message: `[AUTOPILOT - Phase: ${phase}] Autopilot not complete. Continue working.`
235
+ decision: 'block',
236
+ reason: `[AUTOPILOT - Phase: ${phase}] Autopilot not complete. Continue working.`
237
237
  }));
238
238
  return;
239
239
  }
@@ -251,8 +251,8 @@ async function main() {
251
251
  writeJsonFile(ultrapilot.path, ultrapilot.state);
252
252
 
253
253
  console.log(JSON.stringify({
254
- continue: true,
255
- message: `[ULTRAPILOT] ${incomplete} workers still running. Continue.`
254
+ decision: 'block',
255
+ reason: `[ULTRAPILOT] ${incomplete} workers still running. Continue.`
256
256
  }));
257
257
  return;
258
258
  }
@@ -269,8 +269,8 @@ async function main() {
269
269
  writeJsonFile(join(stateDir, 'swarm-summary.json'), swarmSummary);
270
270
 
271
271
  console.log(JSON.stringify({
272
- continue: true,
273
- message: `[SWARM ACTIVE] ${pending} tasks remain. Continue working.`
272
+ decision: 'block',
273
+ reason: `[SWARM ACTIVE] ${pending} tasks remain. Continue working.`
274
274
  }));
275
275
  return;
276
276
  }
@@ -288,8 +288,8 @@ async function main() {
288
288
  writeJsonFile(pipeline.path, pipeline.state);
289
289
 
290
290
  console.log(JSON.stringify({
291
- continue: true,
292
- message: `[PIPELINE - Stage ${currentStage + 1}/${totalStages}] Pipeline not complete. Continue.`
291
+ decision: 'block',
292
+ reason: `[PIPELINE - Stage ${currentStage + 1}/${totalStages}] Pipeline not complete. Continue.`
293
293
  }));
294
294
  return;
295
295
  }
@@ -305,8 +305,8 @@ async function main() {
305
305
  writeJsonFile(ultraqa.path, ultraqa.state);
306
306
 
307
307
  console.log(JSON.stringify({
308
- continue: true,
309
- message: `[ULTRAQA - Cycle ${cycle + 1}/${maxCycles}] Tests not all passing. Continue fixing.`
308
+ decision: 'block',
309
+ reason: `[ULTRAQA - Cycle ${cycle + 1}/${maxCycles}] Tests not all passing. Continue fixing.`
310
310
  }));
311
311
  return;
312
312
  }
@@ -319,10 +319,8 @@ async function main() {
319
319
  const maxReinforcements = ultrawork.state.max_reinforcements || 50;
320
320
 
321
321
  if (newCount > maxReinforcements) {
322
- console.log(JSON.stringify({
323
- continue: true,
324
- reason: `[ULTRAWORK ESCAPE] Max reinforcements (${maxReinforcements}) reached. Allowing stop.`
325
- }));
322
+ // Max reinforcements reached - allow stop
323
+ console.log(JSON.stringify({ continue: true }));
326
324
  return;
327
325
  }
328
326
 
@@ -340,8 +338,8 @@ async function main() {
340
338
  }
341
339
 
342
340
  console.log(JSON.stringify({
343
- continue: true,
344
- message: reason
341
+ decision: 'block',
342
+ reason: reason
345
343
  }));
346
344
  return;
347
345
  }
@@ -352,10 +350,8 @@ async function main() {
352
350
  const maxReinforcements = ecomode.state.max_reinforcements || 50;
353
351
 
354
352
  if (newCount > maxReinforcements) {
355
- console.log(JSON.stringify({
356
- continue: true,
357
- reason: `[ECOMODE ESCAPE] Max reinforcements (${maxReinforcements}) reached. Allowing stop.`
358
- }));
353
+ // Max reinforcements reached - allow stop
354
+ console.log(JSON.stringify({ continue: true }));
359
355
  return;
360
356
  }
361
357
 
@@ -369,8 +365,8 @@ async function main() {
369
365
  }
370
366
 
371
367
  console.log(JSON.stringify({
372
- continue: true,
373
- message: reason
368
+ decision: 'block',
369
+ reason: reason
374
370
  }));
375
371
  return;
376
372
  }