mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-25 19:48:33 +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:
@@ -389,17 +389,19 @@ await updateDiscoveryState(outputDir, {
|
||||
});
|
||||
|
||||
// Prompt user for next action
|
||||
await ASK_USER([{
|
||||
id: "next_step",
|
||||
type: "select",
|
||||
prompt: `Discovery complete: ${issues.length} issues from ${cumulativeFindings.length} findings across ${iteration} iterations. What next?`,
|
||||
options: [
|
||||
{ label: "Export to Issues (Recommended)", description: `Export ${issues.length} issues for planning` },
|
||||
{ label: "Review Details", description: "View comparison analysis and iteration details" },
|
||||
{ label: "Run Deeper", description: "Continue with more iterations" },
|
||||
{ label: "Skip", description: "Complete without exporting" }
|
||||
]
|
||||
}]); // BLOCKS (wait for user response)
|
||||
await request_user_input({
|
||||
questions: [{
|
||||
header: "Next Step",
|
||||
id: "next_step",
|
||||
question: `Discovery complete: ${issues.length} issues from ${cumulativeFindings.length} findings across ${iteration} iterations. What next?`,
|
||||
options: [
|
||||
{ label: "Export to Issues (Recommended)", description: `Export ${issues.length} issues for planning` },
|
||||
{ label: "Review Details", description: "View comparison analysis and iteration details" },
|
||||
{ label: "Run Deeper", description: "Continue with more iterations" }
|
||||
]
|
||||
}]
|
||||
}); // BLOCKS (wait for user response)
|
||||
// answer.answers.next_step.answers[0] → selected label
|
||||
```
|
||||
|
||||
## Dimension Agent Prompt Template
|
||||
|
||||
Reference in New Issue
Block a user