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:
catlog22
2026-03-24 15:19:18 +08:00
parent ccb5f1e615
commit fe7945eaa2
72 changed files with 1020 additions and 901 deletions

View File

@@ -496,6 +496,19 @@ export async function installCommand(options: InstallOptions): Promise<void> {
borderColor: 'green'
});
// Show Codex config.toml reminder when .codex skills are installed
if (availableDirs.includes('.codex')) {
console.log('');
console.log(chalk.yellow.bold('⚠ Codex CLI Configuration Required'));
console.log(chalk.gray(' To use .codex/skills/ workflow skills, add the following to your'));
console.log(chalk.gray(` ${chalk.cyan('~/.codex/config.toml')}:`));
console.log('');
console.log(chalk.gray(' [features]'));
console.log(chalk.gray(' default_mode_request_user_input = true'));
console.log(chalk.gray(' multi_agent = true'));
console.log(chalk.gray(' enable_fanout = true'));
}
// Install Git Bash fix on Windows
if (platform() === 'win32' && !options.force) {
console.log('');