Skip to content

CCW Commands & Skills Reference Manual

Generated: 2026-03-08 | Project: Claude Code Workspace (CCW)

This reference manual provides quick lookup for all slash commands and skills in the CCW system.


Table of Contents


Section 1: Slash Commands

Core

/ccw

FieldDescription
WhoDeveloper starting any task
WhenEntry point for workflow orchestration
WhatMain workflow orchestrator that analyzes intent, dispatches to appropriate skill chain. Example: /ccw "implement user authentication"
HowParses intent -> Selects skill chain -> Executes orchestrator
OutputDelegates to workflow-plan, issue-manage, or other skills
DoneAppropriate skill completes execution
Failure & RecoveryFallback to manual skill selection if intent unclear
Impact & BoundaryProject-wide orchestration entry point

/ccw-coordinator

FieldDescription
WhoSystem needing command orchestration
WhenMulti-command coordination required
WhatCommand orchestration tool that analyzes requirements and dispatches commands. Example: /ccw-coordinator "review and fix auth module"
HowRequirement analysis -> Command selection -> Sequential execution
OutputCoordinated command execution results
DoneAll dispatched commands complete
Failure & RecoveryPartial results preserved, user notified of failures
Impact & BoundaryCross-command coordination

/flow-create

FieldDescription
WhoDeveloper creating reusable workflow templates
WhenNeed to document and share workflow patterns
WhatFlow template generator for creating reusable command chains. Example: /flow-create "auth-feature-flow"
HowTemplate definition -> Parameter extraction -> Flow file generation
OutputFlow template file in .claude/flows/
DoneTemplate file created and validated
Failure & RecoveryValidation errors show specific issues
Impact & BoundaryWorkflow template creation only

DDD (Document-Driven Development)

/ddd:scan

FieldDescription
WhoDeveloper onboarding to existing project without specs
WhenStarting doc-driven workflow on legacy codebase
WhatScans codebase to build doc-index by reverse-engineering structure. Example: /ddd:scan -y "existing project"
HowFramework detection -> Component discovery -> Feature inference -> Requirement extraction -> doc-index.json
Output.workflow/.doc-index/doc-index.json + feature-maps/ + tech-registry/
Donedoc-index.json created with components, features, IREQ entries
Failure & RecoveryGraceful degradation if DeepWiki unavailable
Impact & BoundaryCode-first entry point, can upgrade to spec-first later

/ddd:index-build

FieldDescription
WhoDeveloper with existing spec-generator outputs
WhenBuilding index from REQ, ADR, EPIC documents
WhatBuilds doc-index from spec outputs and maps entities to code. Example: /ddd:index-build --spec SPEC-auth-2026-03-08
HowParse specs -> Codebase mapping via CLI -> Feature grouping -> doc-index.json
Output.workflow/.doc-index/doc-index.json with spec-first traceability
DoneAll spec entities linked to code components
Failure & RecoveryOrphan components flagged for review
Impact & BoundarySpec-first entry point, merges with existing code-first index

/ddd:plan

FieldDescription
WhoDeveloper planning document-driven task
WhenBefore any development task in DDD workflow
WhatQueries doc-index, explores codebase with doc-aware angles, produces plan.json. Example: /ddd:plan -y "add rate limiting"
HowDoc-index query -> Guided exploration -> Clarification -> Task planning -> Handoff
Output.workflow/.doc-index/planning/{session}/plan.json + TASK-*.json
DonePlan with doc_context traceability generated
Failure & RecoverySchema version mismatch warns but continues
Impact & BoundaryRequires existing doc-index.json

/ddd:execute

FieldDescription
WhoDeveloper executing document-aware tasks
WhenAfter /ddd:plan produces plan.json
WhatDocument-aware execution engine with doc-context loading. Example: /ddd:execute --in-memory
HowLoad plan -> Read doc-context -> Execute task -> Update doc-index
OutputCode changes + updated doc-index traceability
DoneAll tasks executed, doc-index updated
Failure & RecoveryTask failures logged, recovery options presented
Impact & BoundaryRequires plan.json from /ddd:plan

/ddd:doc-generate

FieldDescription
WhoDeveloper regenerating documentation
WhenAfter doc-index built or needs refresh
WhatGenerates full document tree from doc-index.json. Example: /ddd:doc-generate --force --layer all
HowLayer 3 (components) -> Layer 2 (features) -> Layer 1 (indexes)
Outputtech-registry/.md, feature-maps/.md, README.md, ARCHITECTURE.md
DoneAll layers generated, SCHEMA.md created
Failure & RecoveryExisting docs warning, --force to overwrite
Impact & BoundaryRead-only from doc-index, generates MD files

/ddd:doc-refresh

FieldDescription
WhoDeveloper after incremental code changes
WhenCode changed, need targeted doc updates
WhatIncrementally updates affected documents after code changes. Example: /ddd:doc-refresh -y
HowDetect changed files -> Find affected docs -> Regenerate only affected
OutputUpdated subset of documentation files
DoneAffected docs updated, unchanged docs preserved
Failure & RecoveryFalls back to full regeneration if detection fails
Impact & BoundaryIncremental update, more efficient than full regenerate

/ddd:sync

FieldDescription
WhoDeveloper after task completion
WhenPost-task synchronization to update index
WhatPost-task synchronization updates doc-index with completed work. Example: /ddd:sync -y "auth feature complete"
HowDetect changes -> Update components -> Update requirements status -> Add action log
OutputUpdated doc-index.json with action entries
DoneIndex reflects current codebase state
Failure & RecoveryMerge conflicts resolved automatically
Impact & BoundaryPost-execution sync only

/ddd:update

FieldDescription
WhoDeveloper maintaining doc-index
WhenDetecting drift between code and docs
WhatIncremental index update detecting code changes. Example: /ddd:update --scope src/auth
HowFile hash comparison -> Detect changes -> Update affected entries
OutputUpdated doc-index.json entries
DoneIndex entries match current code
Failure & RecoveryUnchanged files skipped
Impact & BoundaryLightweight incremental update

/ddd:auto

FieldDescription
WhoDeveloper wanting full automation
WhenQuick feature implementation with docs
WhatChain command for automated DDD workflow. Example: /ddd:auto -y "implement search feature"
Howplan -> execute -> sync in single command
OutputComplete implementation + updated docs
DoneFeature implemented and documented
Failure & RecoveryStops at first failing phase
Impact & BoundaryFull automation, less control

Issue

/issue:new

FieldDescription
WhoDeveloper creating structured issue
WhenStarting issue tracking for a task
WhatCreates structured issue from GitHub URL or description. Example: /issue:new "Fix login timeout bug"
HowParse input -> Structure issue -> Create in issues.jsonl
OutputIssue entry in .workflow/issues/issues.jsonl
DoneIssue created with status "registered"
Failure & RecoveryDuplicate detection warns user
Impact & BoundaryIssue creation only, no planning

/issue:discover

FieldDescription
WhoDeveloper finding potential issues
WhenStarting issue management workflow
WhatDiscovers potential issues from multiple sources. Example: /issue:discover --scope src/auth
HowScan codebase -> Detect patterns -> Generate issue candidates
OutputList of discovered issue candidates
DoneCandidates presented for user selection
Failure & RecoveryEmpty results suggest manual creation
Impact & BoundaryDiscovery only, no automatic creation

/issue:discover-by-prompt

FieldDescription
WhoDeveloper with natural language query
WhenFinding issues via description
WhatDiscovers issues from user prompt with Gemini analysis. Example: /issue:discover-by-prompt "authentication problems"
HowGemini analysis -> Pattern matching -> Issue suggestions
OutputIssue candidates matching prompt
DoneCandidates presented for confirmation
Failure & RecoveryFalls back to keyword search
Impact & BoundaryNatural language discovery

/issue:from-brainstorm

FieldDescription
WhoDeveloper converting ideas to issues
WhenAfter brainstorm session
WhatConverts brainstorm session ideas into issues. Example: /issue:from-brainstorm BRAIN-2026-03-08
HowParse brainstorm -> Extract actionables -> Create issues
OutputMultiple issues from brainstorm artifacts
DoneAll actionables converted to issues
Failure & RecoveryPartial conversion on parse errors
Impact & BoundaryRequires completed brainstorm session

/issue:plan

FieldDescription
WhoDeveloper planning issue resolution
WhenIssue registered, needs solution
WhatBatch plans issue resolution using issue-planning-agent. Example: /issue:plan ISS-001 ISS-002
HowLoad issues -> Generate solutions -> Bind to issues
OutputSolution files in .workflow/issues/solutions/
DoneIssues have bound solutions
Failure & RecoveryPartial planning on complex issues
Impact & BoundaryPlanning only, no execution

/issue:queue

FieldDescription
WhoDeveloper forming execution queue
WhenSolutions planned, ready to execute
WhatForms execution queue from bound solutions. Example: /issue:queue ISS-001 ISS-002
HowBuild DAG -> Resolve dependencies -> Create queue
OutputQueue file in .workflow/issues/queues/
DoneQueue ready for execution
Failure & RecoveryCircular dependency detection
Impact & BoundaryQueue formation only

/issue:execute

FieldDescription
WhoDeveloper executing queued issues
WhenQueue formed, ready to run
WhatExecutes queue with DAG-based parallel orchestration. Example: /issue:execute -y
HowDAG traversal -> Parallel execution -> Progress tracking
OutputTask execution results, code changes
DoneAll queued tasks completed
Failure & RecoveryFailed tasks skipped, dependents notified
Impact & BoundaryExecution engine for issue workflow

/issue:convert-to-plan

FieldDescription
WhoDeveloper with existing planning artifacts
WhenConverting lite-plan or brainstorm to issue
WhatConverts planning artifacts to issue format. Example: /issue:convert-to-plan plan.json
HowParse artifact -> Extract tasks -> Create issue + solution
OutputIssue and solution from plan
DonePlan converted to trackable issue
Failure & RecoveryPartial conversion preserved
Impact & BoundaryArtifact conversion only

IDAW (Iterative Development Automation Workflow)

/idaw:status

FieldDescription
WhoDeveloper checking IDAW progress
WhenDuring IDAW session
WhatViews IDAW task and session progress. Example: /idaw:status
HowRead session state -> Display progress
OutputStatus summary of active IDAW session
DoneStatus displayed
Failure & RecoveryNo active session message
Impact & BoundaryRead-only status check

/idaw:add

FieldDescription
WhoDeveloper adding IDAW tasks
WhenBuilding IDAW task list
WhatAdds IDAW tasks via manual creation or import. Example: /idaw:add "Implement caching layer"
HowParse input -> Create task entry -> Add to session
OutputTask added to IDAW session
DoneTask registered in session
Failure & RecoveryDuplicate task warning
Impact & BoundaryTask creation only

/idaw:run

FieldDescription
WhoDeveloper starting IDAW execution
WhenTasks added, ready to run
WhatIDAW orchestrator executing task skill chain. Example: /idaw:run -y
HowTask dispatch -> Skill execution -> Progress tracking
OutputTask execution results
DoneAll tasks processed
Failure & RecoveryFailed tasks logged, continue others
Impact & BoundaryMain IDAW execution engine

/idaw:run-coordinate

FieldDescription
WhoDeveloper needing coordinated execution
WhenComplex multi-task IDAW session
WhatIDAW coordinator executing task skill chain. Example: /idaw:run-coordinate
HowCoordinate multiple task executions -> Handle dependencies
OutputCoordinated execution results
DoneAll coordinated tasks complete
Failure & RecoveryDependency failures handled
Impact & BoundaryCoordinated execution mode

/idaw:resume

FieldDescription
WhoDeveloper resuming interrupted IDAW
WhenIDAW session interrupted
WhatResumes interrupted IDAW session from last checkpoint. Example: /idaw:resume
HowLoad state -> Resume from checkpoint -> Continue execution
OutputContinued execution from interruption point
DoneSession completes
Failure & RecoveryCheckpoint validation on load
Impact & BoundaryResume capability for IDAW

Workflow

/workflow:session:start

FieldDescription
WhoDeveloper starting workflow session
WhenBeginning any workflow work
WhatDiscovers or starts workflow session with conflict detection. Example: /workflow:session:start --auto "implement OAuth2"
HowCheck active -> Detect conflicts -> Create/reuse session
OutputSESSION_ID: WFS-{slug}
DoneSession ready for work
Failure & RecoveryMultiple sessions warning
Impact & BoundarySession initialization, calls /workflow:spec:setup if needed

/workflow:session:list

FieldDescription
WhoDeveloper reviewing sessions
WhenChecking available sessions
WhatLists all workflow sessions with status filtering. Example: /workflow:session:list --status active
HowScan .workflow/active -> Parse session metadata -> Display
OutputSession list with status, dates
DoneList displayed
Failure & RecoveryEmpty list if no sessions
Impact & BoundaryRead-only listing

/workflow:session:sync

FieldDescription
WhoDeveloper syncing session work
WhenAfter completing work in session
WhatQuick-sync session work to specs/*.md and project-tech. Example: /workflow:session:sync -y "auth complete"
HowGather context -> Extract updates -> Write specs + project-tech
OutputUpdated specs/*.md and project-tech.json
DoneSync complete message
Failure & RecoveryDuplicate rules skipped silently
Impact & BoundaryUpdates project guidelines

/workflow:session:resume

FieldDescription
WhoDeveloper resuming paused session
WhenReturning to paused work
WhatResumes most recently paused workflow session. Example: /workflow:session:resume
HowFind paused session -> Load state -> Continue
OutputSession context restored
DoneReady to continue work
Failure & RecoveryNo paused session error
Impact & BoundarySession resumption

/workflow:session:complete

FieldDescription
WhoDeveloper finishing session
WhenSession work complete
WhatArchives completed session and removes from active. Example: /workflow:session:complete -y
HowFinalize state -> Archive -> Remove from active
OutputArchived session in .workflow/archived/
DoneSession archived, specs updated
Failure & RecoveryPending tasks warning
Impact & BoundarySession finalization

/workflow:spec:setup

FieldDescription
WhoDeveloper initializing project specs
WhenFirst time setup or regenerating
WhatInitializes project-level state via cli-explore-agent analysis. Example: /workflow:spec:setup --regenerate
Howcli-explore-agent -> Generate project-tech.json -> Interactive questionnaire -> Write specs
Output.workflow/project-tech.json + .ccw/specs/*.md
DoneProject specs configured
Failure & RecoveryAgent failure falls back to basic init
Impact & BoundaryProject-level initialization

/workflow:spec:add

FieldDescription
WhoDeveloper adding project rules
WhenAdding conventions, constraints, or learnings
WhatAdds specs, conventions, constraints to project guidelines. Example: /workflow:spec:add -y "Use functional components"
HowParse input -> Auto-detect type -> Append to spec file
OutputUpdated spec file in .ccw/specs/
DoneRule added confirmation
Failure & RecoveryDuplicate detection
Impact & BoundarySingle rule addition

/workflow:clean

FieldDescription
WhoDeveloper cleaning code
WhenBefore commits or after refactoring
WhatIntelligent code cleanup with mainline detection. Example: /workflow:clean -y
HowDetect unused -> Remove dead code -> Format
OutputCleaned code files
DoneCleanup report displayed
Failure & RecoveryPreserves files with unclear usage
Impact & BoundaryCode cleanup only

/workflow:debug-with-file

FieldDescription
WhoDeveloper debugging issues
WhenEncountering bugs or errors
WhatInteractive hypothesis-driven debugging with file output. Example: /workflow:debug-with-file "login fails on timeout"
HowHypothesis generation -> Evidence collection -> Validation -> Fix
OutputDebug report + potential fixes
DoneRoot cause identified or fix applied
Failure & RecoveryMultiple hypothesis iteration
Impact & BoundaryDebugging workflow

/workflow:analyze-with-file

FieldDescription
WhoDeveloper analyzing code
WhenUnderstanding codebase or issues
WhatInteractive collaborative analysis with multi-CLI support. Example: /workflow:analyze-with-file "analyze auth flow"
HowDiscovery -> Analysis -> Synthesis -> Report
OutputAnalysis report in session folder
DoneAnalysis complete with insights
Failure & RecoveryPartial analysis on errors
Impact & BoundaryAnalysis workflow

/workflow:brainstorm-with-file

FieldDescription
WhoDeveloper exploring solutions
WhenStarting new feature or solving complex problem
WhatInteractive brainstorming with multi-CLI support. Example: /workflow:brainstorm-with-file "caching strategy"
HowMulti-perspective analysis -> Idea synthesis -> Recommendations
OutputBrainstorm report with actionables
DoneIdeas documented and prioritized
Failure & RecoveryPartial results preserved
Impact & BoundaryIdeation workflow

/workflow:collaborative-plan-with-file

FieldDescription
WhoDeveloper planning collaboratively
WhenComplex feature planning
WhatCollaborative planning with Plan Note output. Example: /workflow:collaborative-plan-with-file "user dashboard redesign"
HowContext gathering -> Planning -> Plan Note generation
OutputPlan with structured notes
DonePlan ready for execution
Failure & RecoveryIterative refinement
Impact & BoundaryPlanning workflow

/workflow:integration-test-cycle

FieldDescription
WhoDeveloper running integration tests
WhenAfter implementation, before merge
WhatSelf-iterating integration test workflow with reflection log. Example: /workflow:integration-test-cycle -y "test auth flow"
HowGenerate tests -> Execute -> Reflect -> Iterate until pass
OutputPassing tests + reflection-log.md
DoneAll tests passing
Failure & RecoveryReflection-driven adjustment loop
Impact & BoundaryIntegration testing workflow

/workflow:refactor-cycle

FieldDescription
WhoDeveloper addressing tech debt
WhenSystematic code improvement
WhatTech debt discovery and self-iterating refactoring. Example: /workflow:refactor-cycle -y "src/auth module"
HowDebt discovery -> Prioritization -> Refactor -> Validate -> Reflect
Outputreflection-log.md + state.json + code changes
DoneAll queued debt items processed
Failure & RecoveryPer-item validation with rollback
Impact & BoundaryTech debt lifecycle management

/workflow:roadmap-with-file

FieldDescription
WhoDeveloper planning strategic requirements
WhenLarge feature or project planning
WhatStrategic requirement roadmap with iterative decomposition. Example: /workflow:roadmap-with-file -y "implement auth system"
HowUnderstand -> Decompose -> Iterate -> Validate -> Handoff
Outputroadmap.md + issues.jsonl
DoneRoadmap approved, issues ready
Failure & RecoveryMax iteration rounds force proceed
Impact & BoundaryStrategic planning workflow

/workflow:unified-execute-with-file

FieldDescription
WhoDeveloper executing plans
WhenAfter planning, ready to implement
WhatUniversal execution engine for any planning output. Example: /workflow:unified-execute-with-file -y plan.json
HowLoad plan -> Validate -> Wave execution -> Track progress
OutputCode changes + execution-events.md
DoneAll tasks executed
Failure & RecoveryPer-task retry with rollback
Impact & BoundaryUniversal execution engine

UI Design Commands

CommandWhoWhenWhatOutput
/workflow:ui-design:explore-autoDesigner/DeveloperStarting UI designInteractive exploratory workflowStyle variants + layout templates + prototypes
/workflow:ui-design:imitate-autoDesigner/DeveloperImitating referenceUI design imitation workflowPrototypes matching reference style
/workflow:ui-design:generateDesigner/DeveloperAssembling prototypesPure assembler combining layouts + tokensHTML/CSS prototypes
/workflow:ui-design:style-extractDesigner/DeveloperExtracting stylesExtract design tokens from imagesdesign-tokens.json + style-guide.md
/workflow:ui-design:layout-extractDesigner/DeveloperExtracting layoutsExtract layout templateslayout-*.json files
/workflow:ui-design:animation-extractDesigner/DeveloperExtracting animationsExtract animation patternsanimation-tokens.json
/workflow:ui-design:codify-styleDeveloperFrom code to designExtract styles from code filesDesign tokens from CSS/SCSS
/workflow:ui-design:import-from-codeDeveloperCode-based designImport design from existing codeDesign system from codebase
/workflow:ui-design:design-syncDesignerSyncing designSynchronize design referencesUpdated design system docs
/workflow:ui-design:reference-page-generatorDeveloperReference docsGenerate component reference pagesMulti-component reference pages

Memory

/memory:prepare

FieldDescription
WhoDeveloper preparing memory capture
WhenBefore capturing session knowledge
WhatDelegates to universal-executor agent to prepare memory. Example: /memory:prepare "auth session"
HowContext gathering -> Memory structure preparation
OutputPrepared memory structure
DoneReady for memory capture
Failure & RecoveryAgent failure handled
Impact & BoundaryMemory preparation only

/memory:style-skill-memory

FieldDescription
WhoDeveloper documenting style knowledge
WhenAfter learning project patterns
WhatGenerates SKILL memory package from style patterns. Example: /memory:style-skill-memory "React patterns"
HowPattern extraction -> Skill memory generation
OutputSKILL memory package
DoneSkill memory documented
Failure & RecoveryPartial patterns preserved
Impact & BoundaryStyle-specific memory

CLI

/cli:codex-review

FieldDescription
WhoDeveloper reviewing code
WhenCode review needed
WhatInteractive code review using Codex CLI. Example: /cli:codex-review --uncommitted
HowCodex CLI -> Review analysis -> Interactive feedback
OutputCode review report
DoneReview complete with recommendations
Failure & RecoveryCodex unavailability fallback
Impact & BoundaryGit-aware code review

/cli:cli-init

FieldDescription
WhoDeveloper setting up CLI config
WhenFirst time setup
WhatGenerates .gemini/ and .qwen/ config directories. Example: /cli:cli-init
HowCreate directories -> Generate default configs
OutputCLI configuration directories
DoneConfigs ready for customization
Failure & RecoveryExisting configs preserved
Impact & BoundaryCLI configuration setup

Section 2: Skills

Workflow Skills

workflow-plan

FieldDescription
WhoDeveloper planning tasks
WhenStarting any planned work
WhatUnified 4-phase planning: session discovery -> context gathering -> conflict resolution -> task generation
HowPhase 0: Session -> Phase 1: Context -> Phase 2: Conflicts -> Phase 3: Tasks
Outputplan.json + TASK-*.json in session folder
DonePlan with TodoWrite tracking complete
Failure & RecoveryConflict resolution prompts user
Impact & BoundaryCore planning skill

workflow-execute

FieldDescription
WhoDeveloper executing planned tasks
WhenAfter workflow-plan
WhatAgent execution orchestration with lazy task loading, auto-commit
HowLoad plan -> Spawn agents -> Execute -> Commit
OutputCode changes + task completion status
DoneAll tasks executed or user-stopped
Failure & RecoveryPer-task retry, auto-rollback
Impact & BoundaryCore execution skill

workflow-lite-plan

FieldDescription
WhoDeveloper needing quick planning
WhenSimple tasks without full session
WhatLightweight planning - task analysis + breakdown
HowAnalyze -> Break down -> Generate tasks
OutputSimplified plan.json
DoneQuick plan ready
Failure & RecoveryFalls back to workflow-plan for complex cases
Impact & BoundaryLightweight alternative

workflow-lite-execute

FieldDescription
WhoDeveloper executing simple plans
WhenAfter lite-plan or standalone
WhatLightweight execution engine - multi-model collaboration
HowLoad tasks -> Execute -> Verify
OutputCode changes
DoneTasks completed
Failure & RecoverySimple retry mechanism
Impact & BoundaryLightweight alternative

workflow-tdd-plan

FieldDescription
WhoDeveloper using TDD approach
WhenTest-driven development
WhatTDD workflow combining 6-phase planning with test-first
HowPlan tests -> Write tests -> Implement -> Verify
OutputTests + implementation
DoneAll tests passing
Failure & RecoveryTest failure iteration
Impact & BoundaryTDD-specific workflow

workflow-test-fix

FieldDescription
WhoDeveloper fixing test failures
WhenTests failing
WhatTest-fix pipeline combining test runner with fix agent
HowRun tests -> Identify failures -> Fix -> Re-run
OutputPassing tests
DoneAll tests pass
Failure & RecoveryIterative fix loop
Impact & BoundaryTest fixing workflow

workflow-multi-cli-plan

FieldDescription
WhoDeveloper using multiple CLIs
WhenComplex multi-perspective planning
WhatMulti-CLI collaborative planning with ACE integration
HowParallel CLI analysis -> Merge perspectives -> Generate plan
OutputComprehensive plan from multiple models
DoneMerged plan complete
Failure & RecoveryPartial results merged
Impact & BoundaryMulti-model planning

workflow-skill-designer

FieldDescription
WhoDeveloper creating skills
WhenBuilding new workflow skills
WhatMeta-skill for designing orchestrator+phase skills
HowDesign -> Template -> Generate skill files
OutputNew skill SKILL.md + phases
DoneSkill ready for use
Failure & RecoveryValidation errors guide fixes
Impact & BoundarySkill meta-creation

Team Skills

team-coordinate

FieldDescription
WhoDeveloper coordinating multi-agent work
WhenComplex multi-role tasks
WhatUniversal team coordination with dynamic role generation
HowAnalyze task -> Generate role-specs -> Dispatch workers -> Execute -> Deliver
OutputCoordinated multi-agent results
DonePipeline complete, artifacts delivered
Failure & RecoveryRole regeneration on capability gaps
Impact & BoundaryUniversal team orchestrator

team-edict

FieldDescription
WhoDeveloper using Edict architecture
WhenLarge-scale multi-agent coordination
WhatThree-Six Ministry multi-agent framework replicating Edict architecture
HowMinistry-based role assignment -> Task dispatch -> Report aggregation
OutputComprehensive multi-role deliverables
DoneAll ministries report complete
Failure & RecoveryMinistry-level retry
Impact & BoundaryLarge-scale coordination

team-planex

FieldDescription
WhoDeveloper planning and executing
WhenPlan-and-execute workflow
WhatUnified team skill for plan-and-execute team
HowPlan -> Execute -> Verify
OutputPlanned and executed work
DonePlan executed completely
Failure & RecoveryPlan adjustment on failures
Impact & BoundaryPlan-execute team

team-frontend

FieldDescription
WhoFrontend developer
WhenFrontend development work
WhatUnified team skill for frontend development
HowComponent design -> Implementation -> Testing
OutputFrontend components and features
DoneFrontend work complete
Failure & RecoveryComponent-level retry
Impact & BoundaryFrontend-specific team

team-frontend-debug

FieldDescription
WhoFrontend developer debugging
WhenFrontend issues
WhatFrontend debugging team using Chrome DevTools MCP
HowInspect -> Diagnose -> Fix -> Verify
OutputFixed frontend issues
DoneIssues resolved
Failure & RecoveryIterative debugging
Impact & BoundaryFrontend debugging specific

team-testing

FieldDescription
WhoDeveloper writing tests
WhenTest generation needed
WhatUnified team skill for testing team
HowTest planning -> Generation -> Execution
OutputTest suites
DoneTests passing
Failure & RecoveryTest iteration
Impact & BoundaryTesting-specific team

team-review

FieldDescription
WhoDeveloper reviewing code
WhenCode review needed
WhatUnified team skill for code review
HowMulti-perspective review -> Feedback aggregation
OutputReview reports
DoneReview complete
Failure & RecoveryPartial review preserved
Impact & BoundaryReview-specific team

team-quality-assurance

FieldDescription
WhoQA engineer
WhenQuality verification
WhatUnified team skill for quality assurance
HowQuality checks -> Issue identification -> Remediation
OutputQA reports and fixes
DoneQuality verified
Failure & RecoveryIssue-driven iteration
Impact & BoundaryQA-specific team

team-arch-opt

FieldDescription
WhoDeveloper optimizing architecture
WhenArchitecture improvement
WhatUnified team skill for architecture optimization
HowAnalysis -> Optimization plan -> Implementation
OutputImproved architecture
DoneOptimization complete
Failure & RecoveryGradual optimization
Impact & BoundaryArchitecture-specific team

team-perf-opt

FieldDescription
WhoDeveloper optimizing performance
WhenPerformance issues
WhatUnified team skill for performance optimization
HowProfiling -> Bottleneck identification -> Optimization
OutputPerformance improvements
DonePerformance targets met
Failure & RecoveryIterative optimization
Impact & BoundaryPerformance-specific team

team-tech-debt

FieldDescription
WhoDeveloper addressing tech debt
WhenTech debt cleanup
WhatUnified team skill for tech debt identification
HowDetection -> Prioritization -> Resolution
OutputTech debt reduction
DoneDebt items resolved
Failure & RecoveryPrioritized resolution
Impact & BoundaryTech debt specific

team-ux-improve

FieldDescription
WhoUX designer/developer
WhenUX improvements
WhatUnified team skill for UX improvement
HowUX audit -> Improvement plan -> Implementation
OutputUX improvements
DoneUX enhanced
Failure & RecoveryUser feedback iteration
Impact & BoundaryUX-specific team

team-uidesign

FieldDescription
WhoUI designer
WhenUI design work
WhatUnified team skill for UI design team
HowDesign system -> Components -> Prototypes
OutputUI designs and prototypes
DoneDesign complete
Failure & RecoveryDesign iteration
Impact & BoundaryUI design specific

team-brainstorm

FieldDescription
WhoTeam brainstorming
WhenIdeation sessions
WhatUnified team skill for brainstorming team
HowMulti-perspective ideation -> Synthesis
OutputBrainstorm results
DoneIdeas documented
Failure & RecoveryPartial synthesis
Impact & BoundaryBrainstorming specific

team-issue

FieldDescription
WhoDeveloper managing issues
WhenIssue resolution workflow
WhatUnified team skill for issue resolution
HowIssue analysis -> Resolution -> Verification
OutputResolved issues
DoneIssues closed
Failure & RecoveryIssue-specific handling
Impact & BoundaryIssue-specific team

team-iterdev

FieldDescription
WhoDeveloper in iterative mode
WhenIterative development
WhatUnified team skill for iterative development
HowIteration -> Feedback -> Refinement
OutputIteratively improved code
DoneIteration goals met
Failure & RecoveryIteration adjustment
Impact & BoundaryIterative development team

team-roadmap-dev

FieldDescription
WhoDeveloper on roadmap features
WhenRoadmap-driven development
WhatUnified team skill for roadmap-driven development
HowRoadmap parsing -> Feature development -> Tracking
OutputRoadmap feature completions
DoneRoadmap items complete
Failure & RecoveryRoadmap adjustment
Impact & BoundaryRoadmap-specific team

team-ultra-analyze

FieldDescription
WhoDeveloper needing deep analysis
WhenComplex analysis required
WhatDeep collaborative analysis team skill
HowMulti-angle analysis -> Deep dive -> Synthesis
OutputComprehensive analysis reports
DoneAnalysis complete
Failure & RecoveryPartial analysis preserved
Impact & BoundaryDeep analysis team

team-executor

FieldDescription
WhoDeveloper executing tasks
WhenTask execution needed
WhatLightweight session execution skill
HowLoad session -> Execute tasks -> Report
OutputTask execution results
DoneSession tasks complete
Failure & RecoveryTask-level retry
Impact & BoundaryLightweight execution

team-lifecycle-v4

FieldDescription
WhoDeveloper managing full lifecycle
WhenComplete feature lifecycle
WhatFull lifecycle team skill with clean architecture
HowPlan -> Develop -> Test -> Deploy -> Monitor
OutputComplete feature lifecycle
DoneFeature fully delivered
Failure & RecoveryLifecycle stage retry
Impact & BoundaryFull lifecycle management

team-designer

FieldDescription
WhoDeveloper designing teams
WhenCreating new team skills
WhatMeta-skill for generating team skills for different domains
HowDomain analysis -> Role definition -> Skill generation
OutputNew team skill files
DoneTeam skill ready
Failure & RecoveryTemplate validation
Impact & BoundaryTeam skill meta-creation

Utility Skills

brainstorm

FieldDescription
WhoDeveloper exploring ideas
WhenStarting new work, exploring solutions
WhatUnified brainstorming with dual-mode (auto/single-role) and 9 available roles
HowRole selection -> Perspective analysis -> Idea synthesis
OutputBrainstorm report with actionables
DoneIdeas documented
Failure & RecoveryPartial analysis preserved
Impact & BoundaryIdeation support

spec-generator

FieldDescription
WhoDeveloper creating specifications
WhenStarting new project or feature
What6-phase specification chain producing product brief, PRD, architecture, epics
HowPhase 1-6 chain: Brief -> PRD -> Architecture -> Epics -> Docs
OutputComplete specification documents
DoneAll spec documents generated
Failure & RecoveryPhase-level retry
Impact & BoundarySpecification generation

issue-manage

FieldDescription
WhoDeveloper managing issues
WhenIssue CRUD operations
WhatInteractive menu-driven interface for issue CRUD via ccw issue CLI
HowMenu selection -> CLI execution -> Result display
OutputIssue management operations
DoneOperation complete
Failure & RecoveryCLI error handling
Impact & BoundaryIssue CRUD only

review-code

FieldDescription
WhoDeveloper reviewing code
WhenCode review needed
WhatMulti-dimensional code review with 6 dimensions: correctness, readability, performance, security, testing, architecture
HowCollect context -> Quick scan -> Deep review -> Generate report
OutputStructured review report
DoneReview complete
Failure & RecoveryPartial review preserved
Impact & BoundaryCode review only

review-cycle

FieldDescription
WhoDeveloper in review cycle
WhenIterative code review
WhatUnified multi-dimensional code review with iterative cycle
HowReview -> Feedback -> Fix -> Re-review
OutputIteratively improved code
DoneAll issues addressed
Failure & RecoveryCycle iteration
Impact & BoundaryIterative review

memory-capture

FieldDescription
WhoDeveloper capturing knowledge
WhenAfter important learnings
WhatUnified memory capture with routing - session/tech/module context
HowContext detection -> Memory extraction -> Storage
OutputCaptured memory entries
DoneMemory captured
Failure & RecoveryPartial capture preserved
Impact & BoundaryMemory capture only

memory-manage

FieldDescription
WhoDeveloper managing memory
WhenMemory maintenance
WhatUnified memory management - CLAUDE.md updates and memory cleanup
HowLoad memory -> Organize -> Update CLAUDE.md
OutputUpdated memory files
DoneMemory organized
Failure & RecoveryBackup before changes
Impact & BoundaryMemory management

skill-tuning

FieldDescription
WhoDeveloper improving skills
WhenSkill optimization needed
WhatUniversal skill diagnosis and optimization
HowDiagnose -> Optimize -> Validate
OutputImproved skill files
DoneSkill optimized
Failure & RecoveryIncremental improvement
Impact & BoundarySkill optimization

skill-simplify

FieldDescription
WhoDeveloper simplifying skills
WhenSkill too complex
WhatSKILL.md simplification with functional preservation
HowAnalyze -> Simplify -> Verify functionality
OutputSimplified skill file
DoneSkill simplified
Failure & RecoveryFunctional verification
Impact & BoundarySkill simplification

skill-generator

FieldDescription
WhoDeveloper creating skills
WhenNew skill needed
WhatMeta-skill for creating new Claude Code skills
HowRequirements -> Template -> Skill generation
OutputNew skill SKILL.md + supporting files
DoneSkill ready for use
Failure & RecoveryTemplate validation
Impact & BoundarySkill creation

command-generator

FieldDescription
WhoDeveloper creating commands
WhenNew slash command needed
WhatCommand file generator - 5 phase workflow
HowRequirements -> Template -> Command generation
OutputNew command .md file
DoneCommand ready for use
Failure & RecoverySchema validation
Impact & BoundaryCommand creation

ccw-help

FieldDescription
WhoDeveloper seeking help
WhenLearning CCW system
WhatCCW command help system - search, browse, documentation
HowQuery -> Search -> Display help
OutputHelp information
DoneHelp displayed
Failure & RecoveryFuzzy matching
Impact & BoundaryHelp system only

Appendix A: Quick Reference Table

Commands by Category

CategoryCommandsCount
Coreccw, ccw-coordinator, flow-create3
DDDscan, index-build, plan, execute, doc-generate, doc-refresh, sync, update, auto9
Issuenew, discover, discover-by-prompt, from-brainstorm, plan, queue, execute, convert-to-plan8
IDAWstatus, add, run, run-coordinate, resume5
Workflow Sessionstart, list, sync, resume, complete5
Workflow Specsetup, add2
Workflow Coreclean, debug-with-file, analyze-with-file, brainstorm-with-file, collaborative-plan-with-file5
Workflow Cycleintegration-test-cycle, refactor-cycle, roadmap-with-file, unified-execute-with-file4
Workflow UI Designexplore-auto, imitate-auto, generate, style-extract, layout-extract, animation-extract, codify-style, import-from-code, design-sync, reference-page-generator10
Memoryprepare, style-skill-memory2
CLIcodex-review, cli-init2
Total Commands55

Skills by Category

CategorySkillsCount
Workflowworkflow-plan, workflow-execute, workflow-lite-plan, workflow-lite-execute, workflow-tdd-plan, workflow-test-fix, workflow-multi-cli-plan, workflow-skill-designer8
Teamteam-coordinate, team-edict, team-planex, team-frontend, team-frontend-debug, team-testing, team-review, team-quality-assurance, team-arch-opt, team-perf-opt, team-tech-debt, team-ux-improve, team-uidesign, team-brainstorm, team-issue, team-iterdev, team-roadmap-dev, team-ultra-analyze, team-executor, team-lifecycle-v4, team-designer21
Utilitybrainstorm, spec-generator, issue-manage, review-code, review-cycle, memory-capture, memory-manage, skill-tuning, skill-simplify, skill-generator, command-generator, ccw-help12
Total Skills41

Appendix B: Command Chain Examples

Document-Driven Development Flow

/ddd:scan                     # Code-first: scan existing codebase
  -> /ddd:plan "add feature"   # Plan with doc context
    -> /ddd:execute            # Execute with doc awareness
      -> /ddd:sync             # Sync changes to docs

Spec-First Development Flow

Skill: spec-generator          # Generate specifications
  -> /ddd:index-build          # Build index from specs
    -> /ddd:plan               # Plan with spec context
      -> /ddd:execute          # Execute
        -> /ddd:doc-refresh    # Refresh affected docs

Issue Resolution Flow

/issue:new "bug description"  # Create issue
  -> /issue:plan ISS-001       # Generate solution
    -> /issue:queue ISS-001    # Add to queue
      -> /issue:execute        # Execute queue

Team Coordination Flow

Skill: team-coordinate "implement auth"
  -> Dynamic role generation
    -> Parallel worker execution
      -> Result aggregation
        -> Completion action

UI Design Flow

/workflow:ui-design:explore-auto --input "modern dashboard"
  -> /workflow:ui-design:style-extract    # Extract styles
    -> /workflow:ui-design:layout-extract # Extract layouts
      -> /workflow:ui-design:generate     # Assemble prototypes

Integration Test Flow

/workflow:integration-test-cycle "test auth flow"
  -> Generate tests
    -> Execute tests
      -> Reflect on failures
        -> Iterate until pass
          -> Reflection log

Refactoring Flow

/workflow:refactor-cycle "src/auth"
  -> Debt discovery
    -> Prioritization
      -> Per-item refactor
        -> Validation
          -> Reflection

Summary

MetricCount
Total Commands55
Total Skills41
DDD Commands9
Issue Commands8
Team Skills21
Workflow Skills8

End of Reference Manual

Released under the MIT License.