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.
- package/.claude/commands/issue/execute.md +133 -18
- package/.claude/commands/workflow/debug.md +6 -0
- package/.claude/commands/workflow/execute.md +4 -0
- package/.claude/commands/workflow/lite-execute.md +4 -0
- package/.claude/commands/workflow/lite-lite-lite.md +179 -544
- package/.claude/commands/workflow/review-fix.md +4 -0
- package/.claude/commands/workflow/test-cycle-execute.md +4 -0
- package/.codex/prompts/issue-execute.md +72 -12
- package/README.md +3 -0
- package/ccw/dist/core/lite-scanner.d.ts.map +1 -1
- package/ccw/dist/core/lite-scanner.js +56 -3
- package/ccw/dist/core/lite-scanner.js.map +1 -1
- package/ccw/dist/tools/memory-update-queue.d.ts.map +1 -1
- package/ccw/dist/tools/memory-update-queue.js +5 -11
- package/ccw/dist/tools/memory-update-queue.js.map +1 -1
- package/ccw/src/core/lite-scanner.ts +58 -3
- package/ccw/src/templates/dashboard-css/03-tasks.css +5 -0
- package/ccw/src/templates/dashboard-css/04-lite-tasks.css +630 -1
- package/ccw/src/templates/dashboard-js/components/hook-manager.js +30 -21
- package/ccw/src/templates/dashboard-js/i18n.js +100 -0
- package/ccw/src/templates/dashboard-js/views/lite-tasks.js +1138 -334
- package/ccw/src/tools/memory-update-queue.js +5 -11
- package/package.json +1 -1
|
@@ -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
|
-
|
|
407
|
-
|
|
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
|
-
|
|
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.
|
|
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",
|