CCW Coordinator Command banner
zhao-wuyan zhao-wuyan

CCW Coordinator Command

AI community intermediate

Description

Interactive orchestration tool: analyze task → discover commands → recommend chain → execute sequentially → track state. **Execution Model**: Pseudocode guidance. Claude intelligently executes each ph

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for zhao-wuyan/ccw-command-explorer, shared by 5 entries in this directory. It describes the repository, not this entry specifically.


name: ccw-coordinator description: Command orchestration tool - analyze requirements, recommend chain, execute sequentially with state persistence argument-hint: "[task description]" allowed-tools: Agent(*), AskUserQuestion(*), Read(*), Write(*), Bash(*), Glob(*), Grep(*)

CCW Coordinator Command

Interactive orchestration tool: analyze task → discover commands → recommend chain → execute sequentially → track state.

**Execution Model**: Pseudocode guidance. Claude intelligently executes each phase based on context.

Skill 映射

命令端口定义中的 workflow 操作通过 `Skill()` 调用。

Skill 包含操作
workflow-lite-plan lite-plan (Skill handoff to lite-execute)
workflow-lite-execute lite-execute (multi-mode execution engine)
workflow-plan plan, plan-verify, replan
workflow-execute execute
workflow-multi-cli-plan multi-cli-plan (includes execution phase internally)
workflow-test-fix test-fix-gen, test-cycle-execute
workflow-tdd-plan tdd-plan, tdd-verify
review-cycle review-session-cycle, review-module-cycle, review-cycle-fix
brainstorm auto-parallel, artifacts, role-analysis, synthesis
spec-generator product-brief → PRD → architecture → epics
workflow:collaborative-plan-with-file understanding agent → parallel agents → plan-note.md
workflow:roadmap-with-file strategic requirement roadmap → issue creation → execution-plan.json
workflow:integration-test-cycle explore → test dev → test-fix cycle → reflection
workflow:refactor-cycle tech debt discovery → prioritize → execute → validate
team-planex planner + executor wave pipeline(适合大量零散 issue 或 roadmap 产出的清晰 issue)

Core Concept: Minimum Execution Units (最小执行单元)

What is a Minimum Execution Unit?

**Definition**: A set of commands that must execute together as an atomic group to achieve a meaningful workflow milestone. Splitting these commands breaks the logical flow and creates incomplete states.

**Why This Matters**:

  • Prevents Incomplete States: Avoid stopping after task generation without execution
  • User Experience: User gets complete results, not intermediate artifacts requiring manual follow-up
  • Workflow Integrity: Maintains logical coherence of multi-step operations

Minimum Execution Units

**Planning + Execution Units** (规划+执行单元):

Unit Name Commands Purpose Output
Quick Implementation lite-plan (Phase 1: plan → Phase 2: execute) Lightweight plan and immediate execution Working code
Multi-CLI Planning multi-cli-plan (Phase 1: plan → Phase 2: execute) Multi-perspective analysis and execution Working code
Bug Fix lite-plan --bugfix (Phase 1: plan → Phase 2: execute) Quick bug diagnosis and fix execution Fixed code
Full Planning + Execution plan → execute Detailed planning and execution Working code
*Verified Planning + Execution