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:
@@ -2,7 +2,7 @@
|
||||
name: team-uidesign
|
||||
description: UI design team pipeline. Research existing design system, generate design tokens (W3C format), audit quality, and implement code. CSV wave pipeline with GC loop (designer <-> reviewer) and dual-track parallel support.
|
||||
argument-hint: "[-y|--yes] [-c|--concurrency N] [--continue] \"UI design task description\""
|
||||
allowed-tools: spawn_agents_on_csv, spawn_agent, wait, send_input, close_agent, Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion
|
||||
allowed-tools: spawn_agents_on_csv, spawn_agent, wait, send_input, close_agent, Read, Write, Edit, Bash, Glob, Grep, request_user_input
|
||||
---
|
||||
|
||||
## Auto Mode
|
||||
@@ -710,7 +710,7 @@ Convergence: audit.score >= 8 AND audit.critical_count === 0
|
||||
| discoveries.ndjson corrupt | Ignore malformed lines, continue with valid entries |
|
||||
| Audit score < 6 over 2 GC rounds | Escalate to user for manual intervention |
|
||||
| ui-ux-pro-max unavailable | Degrade to LLM general design knowledge |
|
||||
| Task description too vague | AskUserQuestion for clarification in Phase 0 |
|
||||
| Task description too vague | request_user_input for clarification in Phase 0 |
|
||||
| Continue mode: no session found | List available sessions, prompt user to select |
|
||||
|
||||
---
|
||||
|
||||
@@ -38,7 +38,7 @@ Handle pipeline completion action for the UI design workflow. Loads final pipeli
|
||||
| `Write` | builtin | Write completion reports and session markers |
|
||||
| `Bash` | builtin | File operations for archive/export |
|
||||
| `Glob` | builtin | Discover deliverable artifacts across directories |
|
||||
| `AskUserQuestion` | builtin | Present completion options and get user choice |
|
||||
| `request_user_input` | builtin | Present completion options and get user choice |
|
||||
|
||||
---
|
||||
|
||||
@@ -89,7 +89,7 @@ Handle pipeline completion action for the UI design workflow. Loads final pipeli
|
||||
- Group by category with file counts and total size
|
||||
- Highlight key artifacts (design tokens, component specs)
|
||||
- Note any missing expected deliverables
|
||||
3. Present three completion options to user via AskUserQuestion:
|
||||
3. Present three completion options to user via request_user_input:
|
||||
- **Archive & Clean**: Summarize results, mark session complete, clean temp files
|
||||
- **Keep Active**: Keep session directory for follow-up iterations
|
||||
- **Export Results**: Copy deliverables to a user-specified location
|
||||
@@ -118,7 +118,7 @@ Handle pipeline completion action for the UI design workflow. Loads final pipeli
|
||||
- Report session ID for `--continue` flag usage
|
||||
|
||||
3. **Export Results**:
|
||||
- Ask user for target export directory via AskUserQuestion
|
||||
- Ask user for target export directory via request_user_input
|
||||
- Create export directory structure mirroring deliverable categories
|
||||
- Copy all deliverables to target location
|
||||
- Generate export manifest listing all copied files
|
||||
|
||||
Reference in New Issue
Block a user