claude-code-workflow 6.1.0 β†’ 6.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,285 +1,274 @@
1
- # πŸš€ Claude Code Workflow (CCW)
2
-
3
- <div align="center">
4
-
5
- [![Version](https://img.shields.io/badge/version-v6.0.0-blue.svg)](https://github.com/catlog22/Claude-Code-Workflow/releases)
6
- [![npm](https://img.shields.io/npm/v/claude-code-workflow.svg)](https://www.npmjs.com/package/claude-code-workflow)
7
- [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
8
- [![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg)]()
9
-
10
- **Languages:** [English](README.md) | [δΈ­ζ–‡](README_CN.md)
11
-
12
- </div>
13
-
14
- ---
15
-
16
- **Claude Code Workflow (CCW)** is a JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution. It transforms AI development from simple prompt chaining into a powerful orchestration system.
17
-
18
- > **πŸŽ‰ Version 6.0.0: npm Package & Simplified Installation**
19
- >
20
- > **Core Improvements**:
21
- > - πŸ“¦ **npm Package**: Now available as `claude-code-workflow` on npm for simplified global installation
22
- > - πŸ–₯️ **CCW CLI Tool**: New `ccw` command with dashboard viewer, installation management, and workflow visualization
23
- > - 🎯 **Simplified Install Flow**: Unified installation via npm with local-only operation (no GitHub API dependency)
24
- > - ✨ **Enhanced Dashboard**: MCP manager, review session improvements, and UI enhancements
25
- >
26
- > See [CHANGELOG.md](CHANGELOG.md) for complete details.
27
-
28
- > πŸ“š **New to CCW?** Check out the [**Getting Started Guide**](GETTING_STARTED.md) for a beginner-friendly 5-minute tutorial!
29
-
30
- ---
31
-
32
- ## ✨ Core Concepts
33
-
34
- CCW is built on a set of core principles that distinguish it from traditional AI development approaches:
35
-
36
- - **Context-First Architecture**: Eliminates uncertainty during execution through pre-defined context gathering, ensuring agents have the right information *before* implementation.
37
- - **JSON-First State Management**: Task state is fully stored in `.task/IMPL-*.json` files as the single source of truth, enabling programmatic orchestration without state drift.
38
- - **Autonomous Multi-Stage Orchestration**: Commands chain-invoke specialized sub-commands and agents to automate complex workflows with zero user intervention.
39
- - **Multi-Model Strategy**: Leverages the unique strengths of different AI models (e.g., Gemini for analysis, Codex for implementation) for superior results.
40
- - **Layered Memory System**: A 4-tier documentation system that provides context at the appropriate abstraction level, preventing information overload.
41
- - **Specialized Role-Based Agents**: A suite of agents (`@code-developer`, `@test-fix-agent`, etc.) that emulate a real software team for diverse tasks.
42
-
43
- ---
44
-
45
- ## βš™οΈ Installation
46
-
47
- ### **πŸ“¦ npm Install (Recommended)**
48
-
49
- Install globally via npm:
50
- ```bash
51
- npm install -g claude-code-workflow
52
- ```
53
-
54
- Then install workflow files to your system:
55
- ```bash
56
- # Interactive installation
57
- ccw install
58
-
59
- # Global installation (to ~/.claude)
60
- ccw install -m Global
61
-
62
- # Project-specific installation
63
- ccw install -m Path -p /path/to/project
64
- ```
65
-
66
- ### **πŸš€ Alternative: One-Click Script Install**
67
-
68
- **Windows (PowerShell):**
69
- ```powershell
70
- Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content
71
- ```
72
-
73
- **Linux/macOS (Bash/Zsh):**
74
- ```bash
75
- bash <(curl -fsSL https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.sh)
76
- ```
77
-
78
- ### **βœ… Verify Installation**
79
- After installation, open **Claude Code** and verify that workflow commands are available by running:
80
- ```bash
81
- /workflow:session:list
82
- ```
83
- If slash commands (e.g., `/workflow:*`) are recognized, the installation was successful.
84
-
85
- ---
86
-
87
- ## πŸ–₯️ CCW CLI Tool
88
-
89
- The `ccw` command provides a powerful CLI for managing your Claude Code Workflow installation:
90
-
91
- ### **Commands**
92
-
93
- | Command | Description |
94
- |---------|-------------|
95
- | `ccw install` | Install workflow files to Global (~/.claude) or specific Path |
96
- | `ccw upgrade` | Upgrade existing installations to current package version |
97
- | `ccw uninstall` | Remove workflow files from an installation |
98
- | `ccw view` | Open the workflow dashboard in browser |
99
- | `ccw serve` | Start dashboard server without opening browser |
100
- | `ccw list` | List all managed installations |
101
-
102
- ### **Usage Examples**
103
-
104
- ```bash
105
- # Install globally
106
- ccw install -m Global
107
-
108
- # Install to specific project
109
- ccw install -m Path -p ./my-project
110
-
111
- # Open dashboard
112
- ccw view
113
-
114
- # Start dashboard server on custom port
115
- ccw serve -p 8080
116
-
117
- # Upgrade all installations
118
- ccw upgrade -a
119
-
120
- # List installations
121
- ccw list
122
- ```
123
-
124
- ### **Dashboard Features**
125
-
126
- The CCW Dashboard (`ccw view`) provides:
127
- - πŸ“Š **Session Overview**: View all workflow sessions with status and progress
128
- - πŸ“‹ **Task Management**: Track task execution and completion
129
- - πŸ” **Review Sessions**: Manage code review cycles
130
- - βš™οΈ **MCP Manager**: Configure and monitor MCP servers
131
- - πŸͺ **Hook Manager**: Manage Claude Code hooks
132
- - πŸ“ **Project Explorer**: Navigate project structure and artifacts
133
-
134
- ---
135
-
136
- ## πŸ› οΈ Command Reference
137
-
138
- CCW provides a rich set of commands for managing workflows, tasks, and interactions with AI tools. For a complete list and detailed descriptions of all available commands, please refer to the [**COMMAND_REFERENCE.md**](COMMAND_REFERENCE.md) file.
139
-
140
- For detailed technical specifications of each command, see [**COMMAND_SPEC.md**](COMMAND_SPEC.md).
141
-
142
- ---
143
-
144
- ### πŸ’‘ **Need Help? Use the Interactive Command Guide**
145
-
146
- CCW includes a built-in **Command Guide Skill** to help you discover and use commands effectively:
147
-
148
- - **`CCW-help`** - Get interactive help and command recommendations
149
- - **`CCW-issue`** - Report bugs or request features using guided templates
150
-
151
- The Command Guide provides:
152
- - πŸ” **Smart Command Search** - Find commands by keyword, category, or use case
153
- - πŸ€– **Next-Step Recommendations** - Get suggestions for what to do after any command
154
- - πŸ“– **Detailed Documentation** - View arguments, examples, and best practices
155
- - πŸŽ“ **Beginner Onboarding** - Learn the 14 core commands through guided learning paths
156
- - πŸ“ **Issue Reporting** - Generate standardized bug reports and feature requests
157
-
158
- **Usage Examples**:
159
- ```
160
- User: "CCW-help"
161
- β†’ Interactive menu with command search, recommendations, and documentation
162
-
163
- User: "What should I do after /workflow:plan?"
164
- β†’ Recommends /workflow:execute, /workflow:action-plan-verify with workflow patterns
165
-
166
- User: "CCW-issue"
167
- β†’ Guided template generation for bugs, features, or question inquiries
168
- ```
169
-
170
- ---
171
-
172
- ## πŸš€ Quick Start
173
-
174
- The best way to get started is by following the 5-minute tutorial in the [**Getting Started Guide**](GETTING_STARTED.md).
175
-
176
- Here's a quick example of a common development workflow:
177
-
178
- ### **Option 1: Lite-Plan Workflow** (⚑ Recommended for Quick Tasks)
179
-
180
- Lightweight interactive workflow with in-memory planning and immediate execution:
181
-
182
- ```bash
183
- # Basic usage with auto-detection
184
- /workflow:lite-plan "Add JWT authentication to user login"
185
-
186
- # Force code exploration
187
- /workflow:lite-plan -e "Refactor logging module for better performance"
188
-
189
- # Basic usage
190
- /workflow:lite-plan "Add unit tests for authentication service"
191
- ```
192
-
193
- **Interactive Flow**:
194
- 1. **Phase 1**: Automatic task analysis and smart code exploration (if needed)
195
- 2. **Phase 2**: Answer clarification questions (if any)
196
- 3. **Phase 3**: Review generated plan and task breakdown
197
- 4. **Phase 4**: Three-dimensional confirmation:
198
- - βœ… Confirm/Modify/Cancel task
199
- - πŸ”§ Choose execution: Agent / Provide Plan Only / CLI (Gemini/Qwen/Codex)
200
- - πŸ” Optional code review: No / Claude / Gemini / Qwen / Codex
201
- 5. **Phase 5**: Watch live execution and task tracking
202
-
203
- ### **Option 2: Lite-Fix Workflow** (πŸ› Recommended for Bug Fixes)
204
-
205
- Intelligent bug diagnosis and fix workflow with adaptive severity assessment:
206
-
207
- ```bash
208
- # Standard bug fix (auto-adapts based on severity)
209
- /workflow:lite-fix "User avatar upload fails with 413 error"
210
-
211
- # Production hotfix mode
212
- /workflow:lite-fix --hotfix "Payment gateway 5xx errors"
213
- ```
214
-
215
- **Workflow Features**:
216
- - **Phase 1**: Intelligent root cause diagnosis with adaptive search
217
- - **Phase 2**: Automatic impact assessment and risk scoring
218
- - **Phase 3**: Fix strategy generation based on complexity
219
- - **Phase 4**: Risk-aware verification planning
220
- - **Phase 5**: User confirmation with execution selection
221
- - **Phase 6**: Execution dispatch with complete artifact tracking
222
-
223
- **Session Artifacts** (saved to `.workflow/.lite-fix/{bug-slug}-{timestamp}/`):
224
- - `diagnosis.json` - Root cause analysis and reproduction steps
225
- - `impact.json` - Risk score, severity, and workflow adaptations
226
- - `fix-plan.json` - Fix strategy and implementation tasks
227
- - `task.json` - Enhanced Task JSON with complete context
228
- - `followup.json` - Auto-generated follow-up tasks (hotfix mode only)
229
-
230
- ### **Option 3: Full Workflow** (πŸ“‹ Comprehensive Planning)
231
-
232
- Traditional multi-stage workflow for complex projects:
233
-
234
- 1. **Create Plan** (auto-starts session):
235
- ```bash
236
- /workflow:plan "Implement JWT-based user login and registration"
237
- ```
238
- 2. **Execute Plan**:
239
- ```bash
240
- /workflow:execute
241
- ```
242
- 3. **View Status** (optional):
243
- ```bash
244
- /workflow:status
245
- ```
246
-
247
- ---
248
-
249
- ## πŸ“š Documentation
250
-
251
- CCW provides comprehensive documentation to help you get started quickly and master advanced features:
252
-
253
- ### πŸ“– **Getting Started**
254
- - [**Getting Started Guide**](GETTING_STARTED.md) - 5-minute quick start tutorial
255
- - [**Installation Guide**](INSTALL.md) - Detailed installation instructions ([δΈ­ζ–‡](INSTALL_CN.md))
256
- - [**Workflow Decision Guide**](WORKFLOW_DECISION_GUIDE.md) - 🌳 Interactive flowchart to choose the right command
257
- - [**Examples**](EXAMPLES.md) - Real-world use cases and practical examples
258
- - [**FAQ**](FAQ.md) - Common questions and troubleshooting
259
-
260
- ### πŸ—οΈ **Architecture & Design**
261
- - [**Architecture Overview**](ARCHITECTURE.md) - System design and core components
262
- - [**Project Introduction**](PROJECT_INTRODUCTION.md) - Detailed project overview
263
- - [**Workflow Diagrams**](WORKFLOW_DIAGRAMS.md) - Visual workflow representations
264
-
265
- ### πŸ“‹ **Command Reference**
266
- - [**Command Reference**](COMMAND_REFERENCE.md) - Complete list of all commands
267
- - [**Command Spec**](COMMAND_SPEC.md) - Detailed technical specifications
268
- - [**Command Flow Standard**](COMMAND_FLOW_STANDARD.md) - Command design patterns
269
-
270
- ### 🀝 **Contributing**
271
- - [**Contributing Guide**](CONTRIBUTING.md) - How to contribute to CCW
272
- - [**Changelog**](CHANGELOG.md) - Version history and release notes
273
-
274
- ---
275
-
276
- ## 🀝 Contributing & Support
277
-
278
- - **Repository**: [GitHub - Claude-Code-Workflow](https://github.com/catlog22/Claude-Code-Workflow)
279
- - **Issues**: Report bugs or request features on [GitHub Issues](https://github.com/catlog22/Claude-Code-Workflow/issues).
280
- - **Discussions**: Join the [Community Forum](https://github.com/catlog22/Claude-Code-Workflow/discussions).
281
- - **Contributing**: See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
282
-
283
- ## πŸ“„ License
284
-
285
- This project is licensed under the **MIT License**. See the [LICENSE](LICENSE) file for details.
1
+ # πŸš€ Claude Code Workflow (CCW)
2
+
3
+ [![Run in Smithery](https://smithery.ai/badge/skills/catlog22)](https://smithery.ai/skills?ns=catlog22&utm_source=github&utm_medium=badge)
4
+
5
+
6
+ <div align="center">
7
+
8
+ [![Version](https://img.shields.io/badge/version-v6.1.2-blue.svg)](https://github.com/catlog22/Claude-Code-Workflow/releases)
9
+ [![npm](https://img.shields.io/npm/v/claude-code-workflow.svg)](https://www.npmjs.com/package/claude-code-workflow)
10
+ [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
11
+ [![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg)]()
12
+
13
+ **Languages:** [English](README.md) | [δΈ­ζ–‡](README_CN.md)
14
+
15
+ </div>
16
+
17
+ ---
18
+
19
+ **Claude Code Workflow (CCW)** is a JSON-driven multi-agent development framework with intelligent CLI orchestration (Gemini/Qwen/Codex), context-first architecture, and automated workflow execution. It transforms AI development from simple prompt chaining into a powerful orchestration system.
20
+
21
+ > **πŸŽ‰ Version 6.1.2: Dashboard Update Notification & Bug Fixes**
22
+ >
23
+ > **Core Improvements**:
24
+ > - πŸ”” **Version Update Notification**: Dashboard now checks npm for updates and displays upgrade banner
25
+ > - πŸ”§ **Hook Manager Fix**: Fixed button click event handling for edit/delete operations
26
+ >
27
+ > See [CHANGELOG.md](CHANGELOG.md) for complete details.
28
+
29
+ > πŸ“š **New to CCW?** Check out the [**Getting Started Guide**](GETTING_STARTED.md) for a beginner-friendly 5-minute tutorial!
30
+
31
+ ---
32
+
33
+ ## ✨ Core Concepts
34
+
35
+ CCW is built on a set of core principles that distinguish it from traditional AI development approaches:
36
+
37
+ - **Context-First Architecture**: Eliminates uncertainty during execution through pre-defined context gathering, ensuring agents have the right information *before* implementation.
38
+ - **JSON-First State Management**: Task state is fully stored in `.task/IMPL-*.json` files as the single source of truth, enabling programmatic orchestration without state drift.
39
+ - **Autonomous Multi-Stage Orchestration**: Commands chain-invoke specialized sub-commands and agents to automate complex workflows with zero user intervention.
40
+ - **Multi-Model Strategy**: Leverages the unique strengths of different AI models (e.g., Gemini for analysis, Codex for implementation) for superior results.
41
+ - **Layered Memory System**: A 4-tier documentation system that provides context at the appropriate abstraction level, preventing information overload.
42
+ - **Specialized Role-Based Agents**: A suite of agents (`@code-developer`, `@test-fix-agent`, etc.) that emulate a real software team for diverse tasks.
43
+
44
+ ---
45
+
46
+ ## βš™οΈ Installation
47
+
48
+ ### **πŸ“¦ npm Install (Recommended)**
49
+
50
+ Install globally via npm:
51
+ ```bash
52
+ npm install -g claude-code-workflow
53
+ ```
54
+
55
+ Then install workflow files to your system:
56
+ ```bash
57
+ # Interactive installation
58
+ ccw install
59
+
60
+ # Global installation (to ~/.claude)
61
+ ccw install -m Global
62
+
63
+ # Project-specific installation
64
+ ccw install -m Path -p /path/to/project
65
+ ```
66
+
67
+ ### **βœ… Verify Installation**
68
+ After installation, open **Claude Code** and verify that workflow commands are available by running:
69
+ ```bash
70
+ /workflow:session:list
71
+ ```
72
+ If slash commands (e.g., `/workflow:*`) are recognized, the installation was successful.
73
+
74
+ ---
75
+
76
+ ## πŸ–₯️ CCW CLI Tool
77
+
78
+ The `ccw` command provides a powerful CLI for managing your Claude Code Workflow installation:
79
+
80
+ ### **Commands**
81
+
82
+ | Command | Description |
83
+ |---------|-------------|
84
+ | `ccw install` | Install workflow files to Global (~/.claude) or specific Path |
85
+ | `ccw upgrade` | Upgrade existing installations to current package version |
86
+ | `ccw uninstall` | Remove workflow files from an installation |
87
+ | `ccw view` | Open the workflow dashboard in browser |
88
+ | `ccw serve` | Start dashboard server without opening browser |
89
+ | `ccw list` | List all managed installations |
90
+
91
+ ### **Usage Examples**
92
+
93
+ ```bash
94
+ # Install globally
95
+ ccw install -m Global
96
+
97
+ # Install to specific project
98
+ ccw install -m Path -p ./my-project
99
+
100
+ # Open dashboard
101
+ ccw view
102
+
103
+ # Start dashboard server on custom port
104
+ ccw serve -p 8080
105
+
106
+ # Upgrade all installations
107
+ ccw upgrade -a
108
+
109
+ # List installations
110
+ ccw list
111
+ ```
112
+
113
+ ### **Dashboard Features**
114
+
115
+ The CCW Dashboard (`ccw view`) provides:
116
+ - πŸ“Š **Session Overview**: View all workflow sessions with status and progress
117
+ - πŸ“‹ **Task Management**: Track task execution and completion
118
+ - πŸ” **Review Sessions**: Manage code review cycles
119
+ - βš™οΈ **MCP Manager**: Configure and monitor MCP servers
120
+ - πŸͺ **Hook Manager**: Manage Claude Code hooks
121
+ - πŸ“ **Project Explorer**: Navigate project structure and artifacts
122
+
123
+ ---
124
+
125
+ ## πŸ› οΈ Command Reference
126
+
127
+ CCW provides a rich set of commands for managing workflows, tasks, and interactions with AI tools. For a complete list and detailed descriptions of all available commands, please refer to the [**COMMAND_REFERENCE.md**](COMMAND_REFERENCE.md) file.
128
+
129
+ For detailed technical specifications of each command, see [**COMMAND_SPEC.md**](COMMAND_SPEC.md).
130
+
131
+ ---
132
+
133
+ ### πŸ’‘ **Need Help? Use the Interactive Command Guide**
134
+
135
+ CCW includes a built-in **Command Guide Skill** to help you discover and use commands effectively:
136
+
137
+ - **`CCW-help`** - Get interactive help and command recommendations
138
+ - **`CCW-issue`** - Report bugs or request features using guided templates
139
+
140
+ The Command Guide provides:
141
+ - πŸ” **Smart Command Search** - Find commands by keyword, category, or use case
142
+ - πŸ€– **Next-Step Recommendations** - Get suggestions for what to do after any command
143
+ - πŸ“– **Detailed Documentation** - View arguments, examples, and best practices
144
+ - πŸŽ“ **Beginner Onboarding** - Learn the 14 core commands through guided learning paths
145
+ - πŸ“ **Issue Reporting** - Generate standardized bug reports and feature requests
146
+
147
+ **Usage Examples**:
148
+ ```
149
+ User: "CCW-help"
150
+ β†’ Interactive menu with command search, recommendations, and documentation
151
+
152
+ User: "What should I do after /workflow:plan?"
153
+ β†’ Recommends /workflow:execute, /workflow:action-plan-verify with workflow patterns
154
+
155
+ User: "CCW-issue"
156
+ β†’ Guided template generation for bugs, features, or question inquiries
157
+ ```
158
+
159
+ ---
160
+
161
+ ## πŸš€ Quick Start
162
+
163
+ The best way to get started is by following the 5-minute tutorial in the [**Getting Started Guide**](GETTING_STARTED.md).
164
+
165
+ Here's a quick example of a common development workflow:
166
+
167
+ ### **Option 1: Lite-Plan Workflow** (⚑ Recommended for Quick Tasks)
168
+
169
+ Lightweight interactive workflow with in-memory planning and immediate execution:
170
+
171
+ ```bash
172
+ # Basic usage with auto-detection
173
+ /workflow:lite-plan "Add JWT authentication to user login"
174
+
175
+ # Force code exploration
176
+ /workflow:lite-plan -e "Refactor logging module for better performance"
177
+
178
+ # Basic usage
179
+ /workflow:lite-plan "Add unit tests for authentication service"
180
+ ```
181
+
182
+ **Interactive Flow**:
183
+ 1. **Phase 1**: Automatic task analysis and smart code exploration (if needed)
184
+ 2. **Phase 2**: Answer clarification questions (if any)
185
+ 3. **Phase 3**: Review generated plan and task breakdown
186
+ 4. **Phase 4**: Three-dimensional confirmation:
187
+ - βœ… Confirm/Modify/Cancel task
188
+ - πŸ”§ Choose execution: Agent / Provide Plan Only / CLI (Gemini/Qwen/Codex)
189
+ - πŸ” Optional code review: No / Claude / Gemini / Qwen / Codex
190
+ 5. **Phase 5**: Watch live execution and task tracking
191
+
192
+ ### **Option 2: Lite-Fix Workflow** (πŸ› Recommended for Bug Fixes)
193
+
194
+ Intelligent bug diagnosis and fix workflow with adaptive severity assessment:
195
+
196
+ ```bash
197
+ # Standard bug fix (auto-adapts based on severity)
198
+ /workflow:lite-fix "User avatar upload fails with 413 error"
199
+
200
+ # Production hotfix mode
201
+ /workflow:lite-fix --hotfix "Payment gateway 5xx errors"
202
+ ```
203
+
204
+ **Workflow Features**:
205
+ - **Phase 1**: Intelligent root cause diagnosis with adaptive search
206
+ - **Phase 2**: Automatic impact assessment and risk scoring
207
+ - **Phase 3**: Fix strategy generation based on complexity
208
+ - **Phase 4**: Risk-aware verification planning
209
+ - **Phase 5**: User confirmation with execution selection
210
+ - **Phase 6**: Execution dispatch with complete artifact tracking
211
+
212
+ **Session Artifacts** (saved to `.workflow/.lite-fix/{bug-slug}-{timestamp}/`):
213
+ - `diagnosis.json` - Root cause analysis and reproduction steps
214
+ - `impact.json` - Risk score, severity, and workflow adaptations
215
+ - `fix-plan.json` - Fix strategy and implementation tasks
216
+ - `task.json` - Enhanced Task JSON with complete context
217
+ - `followup.json` - Auto-generated follow-up tasks (hotfix mode only)
218
+
219
+ ### **Option 3: Full Workflow** (πŸ“‹ Comprehensive Planning)
220
+
221
+ Traditional multi-stage workflow for complex projects:
222
+
223
+ 1. **Create Plan** (auto-starts session):
224
+ ```bash
225
+ /workflow:plan "Implement JWT-based user login and registration"
226
+ ```
227
+ 2. **Execute Plan**:
228
+ ```bash
229
+ /workflow:execute
230
+ ```
231
+ 3. **View Status** (optional):
232
+ ```bash
233
+ /workflow:status
234
+ ```
235
+
236
+ ---
237
+
238
+ ## πŸ“š Documentation
239
+
240
+ CCW provides comprehensive documentation to help you get started quickly and master advanced features:
241
+
242
+ ### πŸ“– **Getting Started**
243
+ - [**Getting Started Guide**](GETTING_STARTED.md) - 5-minute quick start tutorial
244
+ - [**Installation Guide**](INSTALL.md) - Detailed installation instructions ([δΈ­ζ–‡](INSTALL_CN.md))
245
+ - [**Workflow Decision Guide**](WORKFLOW_DECISION_GUIDE.md) - 🌳 Interactive flowchart to choose the right command
246
+ - [**Examples**](EXAMPLES.md) - Real-world use cases and practical examples
247
+ - [**FAQ**](FAQ.md) - Common questions and troubleshooting
248
+
249
+ ### πŸ—οΈ **Architecture & Design**
250
+ - [**Architecture Overview**](ARCHITECTURE.md) - System design and core components
251
+ - [**Project Introduction**](PROJECT_INTRODUCTION.md) - Detailed project overview
252
+ - [**Workflow Diagrams**](WORKFLOW_DIAGRAMS.md) - Visual workflow representations
253
+
254
+ ### πŸ“‹ **Command Reference**
255
+ - [**Command Reference**](COMMAND_REFERENCE.md) - Complete list of all commands
256
+ - [**Command Spec**](COMMAND_SPEC.md) - Detailed technical specifications
257
+ - [**Command Flow Standard**](COMMAND_FLOW_STANDARD.md) - Command design patterns
258
+
259
+ ### 🀝 **Contributing**
260
+ - [**Contributing Guide**](CONTRIBUTING.md) - How to contribute to CCW
261
+ - [**Changelog**](CHANGELOG.md) - Version history and release notes
262
+
263
+ ---
264
+
265
+ ## 🀝 Contributing & Support
266
+
267
+ - **Repository**: [GitHub - Claude-Code-Workflow](https://github.com/catlog22/Claude-Code-Workflow)
268
+ - **Issues**: Report bugs or request features on [GitHub Issues](https://github.com/catlog22/Claude-Code-Workflow/issues).
269
+ - **Discussions**: Join the [Community Forum](https://github.com/catlog22/Claude-Code-Workflow/discussions).
270
+ - **Contributing**: See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
271
+
272
+ ## πŸ“„ License
273
+
274
+ This project is licensed under the **MIT License**. See the [LICENSE](LICENSE) file for details.
package/ccw/src/cli.js CHANGED
@@ -108,9 +108,12 @@ export function run(argv) {
108
108
 
109
109
  // Tool command
110
110
  program
111
- .command('tool [subcommand] [args] [json]')
111
+ .command('tool [subcommand] [args]')
112
112
  .description('Execute CCW tools')
113
- .action((subcommand, args, json) => toolCommand(subcommand, args, { json }));
113
+ .option('--path <path>', 'File path (for edit_file)')
114
+ .option('--old <text>', 'Old text to replace (for edit_file)')
115
+ .option('--new <text>', 'New text (for edit_file)')
116
+ .action((subcommand, args, options) => toolCommand(subcommand, args, options));
114
117
 
115
118
  program.parse(argv);
116
119
  }