Fix missing ccw install step in installation documentation

- Added the crucial `ccw install` step after npm installation in both
  English (INSTALL.md) and Chinese (INSTALL_CN.md) documentation
- Included detailed explanation of what ccw install does:
  * Installs workflows, scripts, templates to ~/.claude/
  * Installs skill definitions to ~/.codex/
  * Configures shell integration (optional)

This step is essential for the complete installation of CCW system files.

Co-Authored-By: Claude (Kimi-K2-Instruct-0905) <noreply@anthropic.com>
This commit is contained in:
laoman.wzp
2026-01-30 14:47:21 +08:00
parent 67a578450c
commit e464d93e29
2 changed files with 32 additions and 0 deletions

View File

@@ -14,6 +14,22 @@ Installation guide for Claude Code Agent workflow coordination and distributed m
npm install -g claude-code-workflow
```
### Complete Installation
After installing the npm package, you need to run the installation command to set up workflows, scripts, and templates:
```bash
# Install CCW system files (workflows, scripts, templates)
ccw install
```
The `ccw install` command will:
- Install workflow definitions to `~/.claude/workflows/`
- Install utility scripts to `~/.claude/scripts/`
- Install prompt templates to `~/.claude/templates/`
- Install skill definitions to `~/.codex/skills/`
- Configure shell integration (optional)
### Verify Installation
```bash