claude-code-workflow 6.3.28 → 6.3.29

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.
@@ -391,11 +391,7 @@ async function execute(params) {
391
391
  if (timeoutCheck.flushed) {
392
392
  // Queue was flushed due to timeout, add to fresh queue
393
393
  const result = addToQueue(path, { tool, strategy });
394
- return {
395
- ...result,
396
- timeoutFlushed: true,
397
- flushResult: timeoutCheck.result
398
- };
394
+ return `[MemoryQueue] Timeout flush (${timeoutCheck.result.processed} items) → ${result.message}`;
399
395
  }
400
396
 
401
397
  const addResult = addToQueue(path, { tool, strategy });
@@ -403,14 +399,12 @@ async function execute(params) {
403
399
  // Auto-flush if threshold reached
404
400
  if (addResult.willFlush) {
405
401
  const flushResult = await flushQueue();
406
- return {
407
- ...addResult,
408
- flushed: true,
409
- flushResult
410
- };
402
+ // Return string for hook-friendly output
403
+ return `[MemoryQueue] ${addResult.message} → Flushed ${flushResult.processed} items`;
411
404
  }
412
405
 
413
- return addResult;
406
+ // Return string for hook-friendly output
407
+ return `[MemoryQueue] ${addResult.message}`;
414
408
 
415
409
  case 'status':
416
410
  // Check timeout first
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-workflow",
3
- "version": "6.3.28",
3
+ "version": "6.3.29",
4
4
  "description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution",
5
5
  "type": "module",
6
6
  "main": "ccw/src/index.js",