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
Copy file name to clipboardExpand all lines: COMMAND_REFERENCE.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
This document provides a comprehensive reference for all commands available in the Claude Code Workflow (CCW) system.
4
4
5
+
> **Version 5.0 Update**: Streamlined command structure focusing on essential tools. Removed MCP code-index dependency for better stability and performance.
6
+
5
7
## Unified CLI Commands (`/cli:*`)
6
8
7
9
These commands provide direct access to AI tools for quick analysis and interaction without initiating a full workflow.
@@ -47,7 +49,7 @@ These commands orchestrate complex, multi-phase development processes, from plan
47
49
|---|---|
48
50
|`/workflow:brainstorm:artifacts`| Generate role-specific guidance-specification.md dynamically based on selected roles. |
49
51
|`/workflow:brainstorm:auto-parallel`| Parallel brainstorming automation with dynamic role selection and concurrent execution. |
50
-
|`/workflow:brainstorm:synthesis`|Generate synthesis-specification.md from guidance-specification and role analyses with @ references using conceptual-planning-agent. |
52
+
|`/workflow:brainstorm:synthesis`|Clarify and refine role analyses through intelligent Q&A and targeted updates. |
51
53
|`/workflow:brainstorm:api-designer`| Generate or update api-designer/analysis.md addressing guidance-specification discussion points. |
52
54
|`/workflow:brainstorm:data-architect`| Generate or update data-architect/analysis.md addressing guidance-specification discussion points. |
53
55
|`/workflow:brainstorm:product-manager`| Generate or update product-manager/analysis.md addressing guidance-specification discussion points. |
@@ -62,7 +64,6 @@ These commands orchestrate complex, multi-phase development processes, from plan
62
64
63
65
| Command | Description |
64
66
|---|---|
65
-
|`/workflow:concept-clarify`| Identify underspecified areas in brainstorming artifacts through targeted clarification questions before action planning. |
66
67
|`/workflow:action-plan-verify`| Perform non-destructive cross-artifact consistency and quality analysis of IMPL_PLAN.md and task.json before execution. |
67
68
68
69
### Test-Driven Development (TDD)
@@ -76,9 +77,9 @@ These commands orchestrate complex, multi-phase development processes, from plan
76
77
77
78
| Command | Description |
78
79
|---|---|
79
-
|`/workflow:test-gen`|Create independent test-fix workflow session by analyzing completed implementation. |
80
-
|`/workflow:test-fix-gen`|Create independent test-fix workflow session from existing implementation (session or prompt-based). |
81
-
|`/workflow:test-cycle-execute`| Execute test-fix workflow with dynamic task generation and iterative fix cycles. |
80
+
|`/workflow:test-gen`|Generate test plan and tasks by analyzing completed implementation. Use `/workflow:execute` to run generated tasks. |
81
+
|`/workflow:test-fix-gen`|Generate test-fix plan and tasks from existing implementation or prompt. Use `/workflow:execute` to run generated tasks. |
82
+
|`/workflow:test-cycle-execute`| Execute test-fix workflow with dynamic task generation and iterative fix cycles. Tasks are executed by `/workflow:execute`. |
Copy file name to clipboardExpand all lines: COMMAND_SPEC.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,15 @@
1
1
2
2
# Claude Code Workflow (CCW) - Command Specification
3
3
4
-
**Version**: 4.6.0
5
-
**Generated**: 2025年10月18日星期六
4
+
**Version**: 5.0.0
5
+
**Updated**: 2025年10月24日星期六
6
6
7
7
## 1. Introduction
8
8
9
9
This document provides a detailed technical specification for every command available in the Claude Code Workflow (CCW) system. It is intended for advanced users and developers who wish to understand the inner workings of CCW, customize commands, or build new workflows.
10
10
11
+
> **Version 5.0 Changes**: Removed MCP code-index dependency, streamlined TDD workflow with conflict resolution, and refocused brainstorming on role analysis instead of synthesis documents.
12
+
11
13
For a user-friendly overview, please see [COMMAND_REFERENCE.md](COMMAND_REFERENCE.md).
12
14
13
15
## 2. Command Categories
@@ -308,7 +310,7 @@ Commands for managing individual tasks within a workflow session.
308
310
-**Agent-Driven Execution**: Fully delegates to general-purpose agent which autonomously:
309
311
1. Analyzes project structure and documentation
310
312
2. Extracts keywords from task description
311
-
3. Discovers relevant files using MCP code-index or search tools
313
+
3. Discovers relevant files using ripgrep/find search tools
-**Responsibilities**: Executes a test-fix workflow by delegating to `/workflow:execute`. Generates test tasks dynamically and creates intermediate fix tasks based on test results.
495
+
-**Agent Calls**: Delegates to `/workflow:execute` which invokes `@test-fix-agent` for task execution.
496
+
-**Note**: This command generates tasks; actual execution is performed by `/workflow:execute`.
Copy file name to clipboardExpand all lines: GETTING_STARTED.md
+10-34Lines changed: 10 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,12 @@
1
1
2
2
# 🚀 Claude Code Workflow (CCW) - Getting Started Guide
3
3
4
-
Welcome to Claude Code Workflow (CCW) v4.6.2! This guide will help you get up and running in 5 minutes and experience AI-driven automated software development with our latest workflow system optimizations.
4
+
Welcome to Claude Code Workflow (CCW) v5.0! This guide will help you get up and running in 5 minutes and experience AI-driven automated software development with our streamlined, dependency-free workflow system.
> **🎉 What's New in v5.0**: Less is more! We've removed external MCP dependencies and simplified workflows. CCW now uses standard tools (ripgrep/find) for better stability and performance. The brainstorming workflow focuses on role analysis for clearer planning.
9
+
8
10
---
9
11
10
12
## ⏱️ 5-Minute Quick Start
@@ -138,33 +140,7 @@ For complex features requiring thorough analysis, use the complete workflow: **b
138
140
- Architectural decisions with significant impact
139
141
- When you need thorough requirements before implementation
0 commit comments