From 61e37477680bbc1d8de6e583562ca41acd588dc2 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Fri, 23 Jan 2026 16:56:08 +0800 Subject: [PATCH] feat: Add batch solutions endpoint (ccw issue solutions) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add solutionsAction() to query all bound solutions in one call - Reduces O(N) queries to O(1) for queue formation - Update /issue:queue command to use new endpoint - Performance: 18 individual queries → 1 batch query Version: 6.3.42 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 37198860..2ef12249 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "claude-code-workflow", - "version": "6.3.41", + "version": "6.3.42", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "claude-code-workflow", - "version": "6.3.41", + "version": "6.3.42", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", diff --git a/package.json b/package.json index cd5ed9b6..e2588a5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-code-workflow", - "version": "6.3.41", + "version": "6.3.42", "description": "JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution", "type": "module", "main": "ccw/src/index.js",