You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CCW provides a comprehensive workflow system built on Team Architecture v2 and Skill-based Workflows, designed to cover the complete software development lifecycle.
What's New in v7.0
Major New Features:
Team Architecture v2: team-coordinate and team-executor with unified team-worker agent
team-lifecycle: Unified team skill for full lifecycle (spec -> impl -> test -> review)
Queue Scheduler: Background task execution with dependency resolution
Workflow Session Commands: start, resume, complete, sync for full lifecycle management
Beat/Cadence Orchestration: Event-driven coordination model
Skills vs Commands
CCW uses two types of invocations:
Type
Format
Examples
Skills
Trigger phrase (no slash)
workflow-lite-plan, brainstorm, workflow-plan
Commands
Slash command
/ccw, /workflow/session:start, /issue/new
Workflow Skills
Lightweight Planning
Skill Trigger
Purpose
Phases
workflow-lite-plan
Lightweight planning with exploration (Skill handoff to lite-execute)
Task Complexity
Low Medium High
│ │ │
────────────────────┼────────────┼─────────────┼────────────
│ │ │
Quick Fix │ │ │
Config Change ───┼──> │ │
Single Module │ │ │
│ lite-plan │ │
│ │ │
────────────────────┼────────────┼─────────────┼────────────
│ │ │
Multi-Module │ │ │
Feature Dev ─┼────────────┼──> │
│ │ plan │
│ │ │
────────────────────┼────────────┼─────────────┼────────────
│ │ │
Architecture │ │ │
New System ─┼────────────┼─────────────┼──>
│ │ │ brainstorm
│ │ │ + plan
│ │ │ + execute
Decision Flowchart
Start
│
├─ Is it a quick fix or config change?
│ └─> Yes: workflow-lite-plan
│
├─ Is it a single module feature?
│ └─> Yes: workflow-lite-plan
│
├─ Does it need multi-CLI analysis?
│ └─> Yes: workflow-multi-cli-plan
│
├─ Is it multi-module with session?
│ └─> Yes: workflow-plan
│
├─ Is it TDD development?
│ └─> Yes: workflow-tdd-plan
│
├─ Is it test generation?
│ └─> Yes: workflow-test-fix
│
└─ Is it architecture/new system?
└─> Yes: brainstorm + workflow-plan
Issue Workflow
Issue Lifecycle
/issue/new Create issue with solution
↓
/issue/plan Batch plan resolution
↓
/issue/queue Form execution queue (DAG)
↓
/issue/execute Execute with parallel orchestration