From 656550210e5a370efacb4f0cc6cede1ded1f2909 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Fri, 27 Mar 2026 22:27:01 +0800 Subject: [PATCH] chore: bump version to 7.2.24 Add multi_agent_v2=true to Codex config documentation in both README.md and README_CN.md, required for v4 agent API features (fork_context, task_name, send_message, assign_task, list_agents). Co-Authored-By: Claude Opus 4.6 --- README.md | 1 + README_CN.md | 1 + package.json | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4daf6986..0e406ed0 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ If you use **Codex CLI** with the `.codex/skills/` workflow skills, add these re [features] default_mode_request_user_input = true # Enable request_user_input tool for interactive confirmations multi_agent = true # Enable multi-agent coordination (spawn_agent, wait, etc.) +multi_agent_v2 = true # Enable v4 agent API (fork_context, task_name, send_message, assign_task, list_agents) enable_fanout = true # Enable spawn_agents_on_csv for parallel wave execution ``` diff --git a/README_CN.md b/README_CN.md index 69d4c801..7ba3fe54 100644 --- a/README_CN.md +++ b/README_CN.md @@ -95,6 +95,7 @@ ccw install -m Global [features] default_mode_request_user_input = true # 启用 request_user_input 工具,用于交互式确认 multi_agent = true # 启用多智能体协调(spawn_agent、wait 等) +multi_agent_v2 = true # 启用 v4 智能体 API(fork_context、task_name、send_message、assign_task、list_agents) enable_fanout = true # 启用 spawn_agents_on_csv 并行波次执行 ``` diff --git a/package.json b/package.json index 30b92f75..8d7df6db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-code-workflow", - "version": "7.2.23", + "version": "7.2.24", "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/dist/index.js",