mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-26 19:56:37 +08:00
feat: standardize request_user_input schema across all codex skills and add config reminder
- Update all 68 .codex/skills files to use correct request_user_input schema (header, id, question, options with label/description) - Remove deprecated multiSelect, type, value, prompt fields - Add mandatory confirmation gates to planning-only skills - Add Codex config.toml reminder to ccw install CLI - Add Codex configuration section to README.md and README_CN.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
13
README_CN.md
13
README_CN.md
@@ -87,6 +87,19 @@ npm install -g claude-code-workflow
|
||||
ccw install -m Global
|
||||
```
|
||||
|
||||
### Codex 配置(`.codex/skills/` 所需)
|
||||
|
||||
如果你使用 **Codex CLI** 配合 `.codex/skills/` 工作流技能,需要在 `~/.codex/config.toml` 中添加以下必要配置:
|
||||
|
||||
```toml
|
||||
[features]
|
||||
default_mode_request_user_input = true # 启用 request_user_input 工具,用于交互式确认
|
||||
multi_agent = true # 启用多智能体协调(spawn_agent、wait 等)
|
||||
enable_fanout = true # 启用 spawn_agents_on_csv 并行波次执行
|
||||
```
|
||||
|
||||
> 这些功能是工作流技能正常运行的必要条件。缺少它们,交互式确认门控(`request_user_input`)、子智能体编排和 CSV 驱动的并行执行将无法工作。
|
||||
|
||||
### 工作流 Skill 与命令
|
||||
|
||||
CCW 使用两种调用方式:
|
||||
|
||||
Reference in New Issue
Block a user