Skip to content

Core Orchestration Commands

One-Liner

Core orchestration commands are the workflow brain of Claude Code Workflow — analyzing task intent, selecting appropriate workflows, and automatically executing command chains.

Command List

CommandFunctionSyntax
/ccwMain workflow orchestrator - intent analysis -> workflow selection -> command chain execution/ccw "task description"
/ccw-coordinatorCommand orchestration tool - chained command execution and state persistence/ccw-coordinator "task description"

Command Details

/ccw

Function: Main workflow orchestrator - intent analysis -> workflow selection -> command chain execution

Syntax:

bash
/ccw "task description"

Options:

  • --yes / -y: Auto mode, skip confirmation steps

Workflow:

Task Type Detection:

TypeTrigger KeywordsWorkflow
Bug Fixurgent, production, critical + fix, bugdebug-with-file
Brainstormingbrainstorm, ideationbrainstorm-with-file
Debug Documentdebug document, hypothesisdebug-with-file
Collaborative Analysisanalyze documentanalyze-with-file
Collaborative Planningcollaborative plancollaborative-plan-with-file
Requirements Roadmaproadmapreq-plan-with-file
Integration Testintegration testintegration-test-cycle
Refactoringrefactorrefactor-cycle
Team Workflowteam + keywordscorresponding team workflow
TDDtdd, test-firsttdd-plan -> execute
Test Fixtest fix, failing testtest-fix-gen -> test-cycle-execute

Examples:

bash
# Basic usage - auto-select workflow
/ccw "implement user authentication"

# Bug fix
/ccw "fix login failure bug"

# TDD development
/ccw "implement payment using TDD"

# Team collaboration
/ccw "team-planex implement user notification system"

/ccw-coordinator

Function: Command orchestration tool - analyze tasks, recommend command chains, sequential execution, state persistence

Syntax:

bash
/ccw-coordinator "task description"

Minimal Execution Units:

Unit NameCommand ChainOutput
Quick Implementationlite-plan (Phase 1: plan → Phase 2: execute)Working code
Multi-CLI Planningmulti-cli-plan (Phase 1: plan → Phase 2: execute)Working code
Bug Fixlite-plan --bugfix (Phase 1: plan → Phase 2: execute)Fixed code
Full Plan+Executeplan -> executeWorking code
Verified Plan+Executeplan -> plan-verify -> executeWorking code
TDD Plan+Executetdd-plan -> executeWorking code
Test Gen+Executetest-gen -> executeGenerated tests
Review Cyclereview-session-cycle -> review-cycle-fixFixed code
Issue Workflowdiscover -> plan -> queue -> executeCompleted issue

Workflow:

Examples:

bash
# Auto-orchestrate bug fix
/ccw-coordinator "production login failure"

# Auto-orchestrate feature implementation
/ccw-coordinator "add user avatar upload"

Auto Mode

Both commands support the --yes flag for auto mode:

bash
# Auto mode - skip all confirmations
/ccw "implement user authentication" --yes
/ccw-coordinator "fix login bug" --yes

Auto mode behavior:

  • Skip requirement clarification
  • Skip user confirmation
  • Execute command chain directly
SkillFunction
workflow-lite-planLightweight planning workflow
workflow-planFull planning workflow
workflow-executeExecution workflow
workflow-tdd-planTDD workflow
review-cycleCode review cycle

Comparison

Feature/ccw/ccw-coordinator
Execution LocationMain processExternal CLI + background tasks
State PersistenceNoYes
Hook CallbacksNot supportedSupported
Complex WorkflowsSimple chainsSupports parallel, dependencies
Use CasesDaily developmentComplex projects, team collaboration

Released under the MIT License.