@@ -22,7 +22,7 @@ Interactive orchestration tool: analyze task → discover commands → recommend
2222| ` workflow-execute ` | execute |
2323| ` workflow-multi-cli-plan ` | multi-cli-plan |
2424| ` workflow-test-fix ` | test-fix-gen, test-cycle-execute |
25- | ` workflow-tdd ` | tdd-plan, tdd-verify |
25+ | ` workflow-tdd-plan ` | tdd-plan, tdd-verify |
2626| ` review-cycle ` | review-session-cycle, review-module-cycle, review-cycle-fix |
2727| ` brainstorm ` | auto-parallel, artifacts, role-analysis, synthesis |
2828| ` workflow:collaborative-plan-with-file ` | understanding agent → parallel agents → plan-note.md |
@@ -257,7 +257,7 @@ Each command has input/output ports (tags) for pipeline composition:
257257// workflow-execute (execute),
258258// workflow-multi-cli-plan (multi-cli-plan),
259259// workflow-test-fix (test-fix-gen, test-cycle-execute),
260- // workflow-tdd (tdd-plan, tdd-verify),
260+ // workflow-tdd-plan (tdd-plan, tdd-verify),
261261// review-cycle (review-session-cycle, review-module-cycle, review-cycle-fix)
262262// command: debug, test-gen, review, workflow:brainstorm-with-file,
263263// workflow:debug-with-file, workflow:analyze-with-file, issue:*
@@ -646,9 +646,9 @@ Pipeline (管道视图):
646646需求 → lite- plan → 计划 → lite- execute → 代码 → test- cycle- execute → 测试通过
647647
648648Commands (命令列表):
649- 1. / workflow: lite- plan
649+ 1. / workflow- lite- plan
6506502. / workflow: lite- execute
651- 3. / workflow: test- cycle - execute
651+ 3. / workflow- test- fix
652652
653653Proceed? [Confirm / Show Details / Adjust / Cancel]
654654` ` `
@@ -737,7 +737,7 @@ async function executeCommandChain(chain, analysis) {
737737 // Execute CLI command in background and stop
738738 // Format: ccw cli -p "PROMPT" --tool <tool> --mode <mode>
739739 // Note: -y is a command parameter INSIDE the prompt, not a ccw cli parameter
740- // Example prompt: "/workflow: plan -y \" task description here\" "
740+ // Example prompt: "/workflow- plan -y \" task description here\" "
741741 try {
742742 const taskId = Bash(
743743 ` ccw cli - p " ${escapePrompt(prompt)}" -- tool claude -- mode write` ,
@@ -1000,31 +1000,31 @@ function parseOutput(output) {
10001000 "command_chain": [
10011001 {
10021002 "index": 0,
1003- "command": "/workflow: plan",
1003+ "command": "/workflow- plan",
10041004 "name": "plan",
10051005 "description": "Detailed planning",
10061006 "argumentHint": "[--explore] \" task\" ",
10071007 "status": "completed"
10081008 },
10091009 {
10101010 "index": 1,
1011- "command": "/workflow: execute",
1011+ "command": "/workflow- execute",
10121012 "name": "execute",
10131013 "description": "Execute with state resume",
10141014 "argumentHint": "[--resume-session=\" WFS-xxx\" ]",
10151015 "status": "completed"
10161016 },
10171017 {
10181018 "index": 2,
1019- "command": "/workflow: test-cycle-execute ",
1019+ "command": "/workflow- test-fix ",
10201020 "name": "test-cycle-execute",
10211021 "status": "pending"
10221022 }
10231023 ],
10241024 "execution_results": [
10251025 {
10261026 "index": 0,
1027- "command": "/workflow: plan",
1027+ "command": "/workflow- plan",
10281028 "status": "completed",
10291029 "task_id": "task-001",
10301030 "session_id": "WFS-plan-20250124",
@@ -1034,7 +1034,7 @@ function parseOutput(output) {
10341034 },
10351035 {
10361036 "index": 1,
1037- "command": "/workflow: execute",
1037+ "command": "/workflow- execute",
10381038 "status": "in-progress",
10391039 "task_id": "task-002",
10401040 "session_id": null,
@@ -1046,13 +1046,13 @@ function parseOutput(output) {
10461046 "prompts_used": [
10471047 {
10481048 "index": 0,
1049- "command": "/workflow: plan",
1050- "prompt": "/workflow: plan -y \" Implement user registration...\"\n\n Task: Implement user registration..."
1049+ "command": "/workflow- plan",
1050+ "prompt": "/workflow- plan -y \" Implement user registration...\"\n\n Task: Implement user registration..."
10511051 },
10521052 {
10531053 "index": 1,
1054- "command": "/workflow: execute",
1055- "prompt": "/workflow: execute -y --resume-session=\" WFS-plan-20250124\"\n\n Task: Implement user registration\n\n Previous results:\n - /workflow: plan: WFS-plan-20250124 (IMPL_PLAN.md)"
1054+ "command": "/workflow- execute",
1055+ "prompt": "/workflow- execute -y --resume-session=\" WFS-plan-20250124\"\n\n Task: Implement user registration\n\n Previous results:\n - /workflow- plan: WFS-plan-20250124 (IMPL_PLAN.md)"
10561056 }
10571057 ]
10581058}
@@ -1131,40 +1131,40 @@ Task: <task_description>
11311131| ` -y` | Auto- confirm flag (inside prompt) | Always include for automation |
11321132| ` <command_parameters>` | Command- specific parameters | Task description, session ID , flags |
11331133| ` <task_description>` | Brief task description | " Implement user authentication" , " Fix memory leak" |
1134- | ` <optional_previous_results>` | Context from previous commands | " Previous results:\n - /workflow: plan: WFS-xxx" |
1134+ | ` <optional_previous_results>` | Context from previous commands | " Previous results:\n - /workflow- plan: WFS-xxx" |
11351135
11361136### Command Parameter Patterns
11371137
11381138| Command Type | Parameter Pattern | Example |
11391139| -------------- | ------------------ | -------- - |
1140- | ** Planning** | ` "task description"` | ` /workflow: plan -y "Implement OAuth2"` |
1141- | ** Execution (with plan)** | ` --resume-session="WFS-xxx"` | ` /workflow: execute -y --resume-session="WFS-plan-001"` |
1140+ | ** Planning** | ` "task description"` | ` /workflow- plan -y "Implement OAuth2"` |
1141+ | ** Execution (with plan)** | ` --resume-session="WFS-xxx"` | ` /workflow- execute -y --resume-session="WFS-plan-001"` |
11421142| ** Execution (standalone)** | ` --in-memory` or ` "task"` | ` /workflow:lite-execute -y --in-memory` |
1143- | ** Session- based** | ` --session="WFS-xxx"` | ` /workflow: test-fix-gen -y --session="WFS-impl-001"` |
1144- | ** Fix/ Debug** | ` --bugfix "problem description"` | ` /workflow: lite-plan -y --bugfix "Fix timeout bug"` |
1143+ | ** Session- based** | ` --session="WFS-xxx"` | ` /workflow- test-fix -y --session="WFS-impl-001"` |
1144+ | ** Fix/ Debug** | ` --bugfix "problem description"` | ` /workflow- lite-plan -y --bugfix "Fix timeout bug"` |
11451145
11461146### Complete Examples
11471147
11481148** Planning Command** :
11491149` ` ` bash
1150- ccw cli -p '/workflow: plan -y "Implement user registration with email validation"
1150+ ccw cli -p '/workflow- plan -y "Implement user registration with email validation"
11511151
11521152Task: Implement user registration' --tool claude --mode write
11531153` ` `
11541154
11551155** Execution with Context** :
11561156` ` ` bash
1157- ccw cli -p '/workflow: execute -y --resume-session="WFS-plan-20250124"
1157+ ccw cli -p '/workflow- execute -y --resume-session="WFS-plan-20250124"
11581158
11591159Task: Implement user registration
11601160
11611161Previous results:
1162- - /workflow: plan: WFS-plan-20250124 (IMPL_PLAN.md)' --tool claude --mode write
1162+ - /workflow- plan: WFS-plan-20250124 (IMPL_PLAN.md)' --tool claude --mode write
11631163` ` `
11641164
11651165** Standalone Lite Execution** :
11661166` ` ` bash
1167- ccw cli -p '/workflow: lite-plan -y --bugfix "Fix login timeout in auth module"
1167+ ccw cli -p '/workflow- lite-plan -y --bugfix "Fix login timeout in auth module"
11681168
11691169Task: Fix login timeout' --tool claude --mode write
11701170` ` `
@@ -1232,17 +1232,17 @@ Task: <description>
12321232** Examples** :
12331233` ` ` bash
12341234# Planning command
1235- ccw cli -p '/workflow: plan -y "Implement user registration feature"
1235+ ccw cli -p '/workflow- plan -y "Implement user registration feature"
12361236
12371237Task: Implement user registration' --tool claude --mode write
12381238
12391239# Execution command (with session reference)
1240- ccw cli -p '/workflow: execute -y --resume-session="WFS-plan-20250124"
1240+ ccw cli -p '/workflow- execute -y --resume-session="WFS-plan-20250124"
12411241
12421242Task: Implement user registration
12431243
12441244Previous results:
1245- - /workflow: plan: WFS-plan-20250124' --tool claude --mode write
1245+ - /workflow- plan: WFS-plan-20250124' --tool claude --mode write
12461246
12471247# Lite execution (in-memory from previous plan)
12481248ccw cli -p '/workflow:lite-execute -y --in-memory
@@ -1261,7 +1261,7 @@ Task: Implement user registration' --tool claude --mode write
12611261
12621262` ` ` javascript
12631263// Example: Execute command and stop
1264- const prompt = '/workflow: plan -y "Implement user authentication"\n\n Task: Implement user auth system';
1264+ const prompt = '/workflow- plan -y "Implement user authentication"\n\n Task: Implement user auth system';
12651265const taskId = Bash(` ccw cli - p " ${prompt}" -- tool claude -- mode write` , { run_in_background: true }).task_id;
12661266state.execution_results.push({ status: 'in-progress', task_id: taskId, ... });
12671267Write(` ${stateDir}/ state .json ` , JSON.stringify(state, null, 2));
@@ -1283,7 +1283,7 @@ break; // ⚠️ STOP HERE - DO NOT use TaskOutput polling
12831283| ` workflow-execute` | execute |
12841284| ` workflow-multi-cli-plan` | multi- cli- plan |
12851285| ` workflow-test-fix` | test- fix- gen, test- cycle- execute |
1286- | ` workflow-tdd` | tdd- plan, tdd- verify |
1286+ | ` workflow-tdd-plan ` | tdd- plan, tdd- verify |
12871287| ` review-cycle` | review- session- cycle, review- module - cycle, review- cycle- fix |
12881288| ` brainstorm` | auto- parallel, artifacts, role- analysis, synthesis |
12891289| ` team-planex` | planner + executor wave pipeline |
0 commit comments