Files
Claude-Code-Workflow/docs/zh/guide/installation.md
catlog22 99d6438303 feat: add documentation for Checkbox, Input, and Select components; enhance Queue and Terminal features
- Introduced Checkbox component documentation in Chinese, covering usage, properties, and examples.
- Added Input component documentation in Chinese, detailing its attributes and various states.
- Created Select component documentation in Chinese, including subcomponents and usage examples.
- Developed Queue management documentation, outlining its core functionalities and component structure.
- Added Terminal dashboard documentation, describing its layout, core features, and usage examples.
- Documented team workflows, detailing various team skills and their applications in project management.
2026-03-02 19:38:30 +08:00

6.4 KiB
Raw Blame History

安装

了解如何在您的系统上安装和配置 CCW。

前置要求

安装 CCW 之前,请确保您有:

  • Node.js >= 18.0.0
  • npm >= 9.0.0 或 yarn >= 1.22.0
  • Git 用于版本控制功能

安装 CCW

全局安装(推荐)

npm install -g claude-code-workflow

项目特定安装

# 在您的项目目录中
npm install --save-dev claude-code-workflow

# 使用 npx 运行
npx ccw [命令]

使用 Yarn

# 全局
yarn global add claude-code-workflow

# 项目特定
yarn add -D claude-code-workflow

验证安装

ccw --version
# 输出: CCW v1.0.0

ccw --help
# 显示所有可用命令

配置

CLI 工具配置

创建或编辑 ~/.claude/cli-tools.json

{
  "version": "3.3.0",
  "tools": {
    "gemini": {
      "enabled": true,
      "primaryModel": "gemini-2.5-flash",
      "secondaryModel": "gemini-2.5-flash",
      "tags": ["分析", "调试"],
      "type": "builtin"
    },
    "codex": {
      "enabled": true,
      "primaryModel": "gpt-5.2",
      "secondaryModel": "gpt-5.2",
      "tags": [],
      "type": "builtin"
    }
  }
}

CLAUDE.md 指令

在项目根目录创建 CLAUDE.md

# 项目指令

## 编码标准
- 使用 TypeScript 确保类型安全
- 遵循 ESLint 配置
- 为所有新功能编写测试

## 架构
- 前端: Vue 3 + Vite
- 后端: Node.js + Express
- 数据库: PostgreSQL

更新 CCW

# 更新到最新版本
npm update -g claude-code-workflow

# 或安装特定版本
npm install -g claude-code-workflow@latest

卸载

CCW 提供了智能卸载命令,会自动处理安装清单、孤立文件清理和全局文件保护。

使用 CCW 卸载命令(推荐)

ccw uninstall

卸载流程:

  1. 扫描安装清单 - 自动检测所有已安装的 CCW 实例Global 和 Path 模式)
  2. 交互选择 - 显示安装列表,让您选择要卸载的实例
  3. 智能保护 - 卸载 Path 模式时,如果存在 Global 安装会自动保护全局文件workflows、scripts、templates
  4. 孤立文件清理 - 自动清理不再被任何安装引用的 skills 和 commands 文件
  5. 空目录清理 - 移除安装留下的空目录
  6. Git Bash 修复移除 - Windows 上最后一个安装卸载后,询问是否移除 Git Bash 多行提示修复

卸载输出示例

  Found installations:

  1. Global
     Path: /Users/username/my-project
     Date: 2026/3/2
     Version: 7.0.5
     Files: 156 | Dirs: 23

──────────────────────────────────────
? Select installation to uninstall: Global - /Users/username/my-project
? Are you sure you want to uninstall Global installation? Yes

✔ Removing files...
✔ Uninstall complete!

╔══════════════════════════════════════╗
║           Uninstall Summary          ║
╠══════════════════════════════════════╣
║ ✓ Successfully Uninstalled           ║
║                                      ║
║ Files removed: 156                   ║
║ Directories removed: 23              ║
║ Orphan files cleaned: 3              ║
║                                      ║
║ Manifest removed                     ║
╚══════════════════════════════════════╝

手动卸载 npm 包

如果需要完全移除 CCW npm 包:

# 卸载全局 npm 包
npm uninstall -g claude-code-workflow

手动删除 CCW 文件(不推荐)

如果必须手动删除,以下是 CCW 安装的具体路径:

# CCW 安装的目录(可安全删除)
rm -rf ~/.claude/commands/ccw.md
rm -rf ~/.claude/commands/ccw-coordinator.md
rm -rf ~/.claude/commands/workflow
rm -rf ~/.claude/commands/issue
rm -rf ~/.claude/commands/cli
rm -rf ~/.claude/commands/memory
rm -rf ~/.claude/commands/idaw
rm -rf ~/.claude/skills/workflow-*
rm -rf ~/.claude/skills/team-*
rm -rf ~/.claude/skills/review-*
rm -rf ~/.claude/agents/team-worker.md
rm -rf ~/.claude/agents/cli-*-agent.md
rm -rf ~/.claude/workflows
rm -rf ~/.claude/scripts
rm -rf ~/.claude/templates
rm -rf ~/.claude/manifests
rm -rf ~/.claude/version.json

# Codex 相关目录
rm -rf ~/.codex/prompts
rm -rf ~/.codex/skills
rm -rf ~/.codex/agents

# 其他 CLI 目录
rm -rf ~/.gemini
rm -rf ~/.qwen

# CCW 核心目录
rm -rf ~/.ccw

::: danger 危险 不要执行 rm -rf ~/.claude,这会删除您的 Claude Code 个人配置:

  • ~/.claude/settings.json - 您的 Claude Code 设置
  • ~/.claude/settings.local.json - 本地覆盖设置
  • MCP 服务器配置等

建议始终使用 ccw uninstall 进行受控卸载。 :::

故障排除

权限问题

如果遇到权限错误:

# 使用 sudo不推荐
sudo npm install -g claude-code-workflow

# 或修复 npm 权限(推荐)
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH

PATH 问题

将 npm 全局 bin 添加到您的 PATH

# 对于 bash/zsh
echo 'export PATH=$(npm config get prefix)/bin:$PATH' >> ~/.bashrc

# 对于 fish
echo 'set -gx PATH (npm config get prefix)/bin $PATH' >> ~/.config/fish/config.fish

::: info 下一步 安装完成后,查看第一个工作流指南。 :::

快速开始示例

安装完成后,尝试以下命令验证一切正常:

# 1. 在您的项目中初始化
cd your-project
ccw init

# 2. 尝试简单的分析
ccw cli -p "分析项目结构" --tool gemini --mode analysis

# 3. 运行主编排器
/ccw "总结代码库架构"

# 4. 检查可用命令
ccw --help

预期输出

$ ccw --version
CCW v7.0.5

$ ccw init
✔ Created .claude/CLAUDE.md
✔ Created .ccw/workflows/
✔ Configuration complete

$ ccw cli -p "Analyze project" --tool gemini --mode analysis
Analyzing with Gemini...
✔ Analysis complete

常见首次使用问题

问题 解决方案
ccw: command not found 将 npm 全局 bin 添加到 PATH或重新安装
Permission denied 使用 sudo 或修复 npm 权限
API key not found ~/.claude/cli-tools.json 中配置 API 密钥
Node version mismatch 更新到 Node.js >= 18.0.0