安装
除非有特殊原因,否则请使用安装器。它会设置 CLI 并运行新手引导。
快速安装(推荐)
Section titled “快速安装(推荐)”curl -fsSL https://coderclaw.ai/install.sh | bashWindows(PowerShell):
iwr -useb https://coderclaw.ai/install.ps1 | iex下一步(如果你跳过了新手引导):
coderclaw onboard --install-daemon- Node >=22
- macOS、Linux 或通过 WSL2 的 Windows
pnpm仅在从源代码构建时需要
选择安装路径
Section titled “选择安装路径”1)安装器脚本(推荐)
Section titled “1)安装器脚本(推荐)”通过 npm 全局安装 coderclaw 并运行新手引导。
curl -fsSL https://coderclaw.ai/install.sh | bash安装器标志:
curl -fsSL https://coderclaw.ai/install.sh | bash -s -- --help详情:安装器内部原理。
非交互式(跳过新手引导):
curl -fsSL https://coderclaw.ai/install.sh | bash -s -- --no-onboard2)全局安装(手动)
Section titled “2)全局安装(手动)”如果你已经有 Node:
npm install -g coderclaw@latest如果你全局安装了 libvips(macOS 上通过 Homebrew 安装很常见)且 sharp 安装失败,请强制使用预构建二进制文件:
SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm install -g coderclaw@latest如果你看到 sharp: Please add node-gyp to your dependencies,要么安装构建工具(macOS:Xcode CLT + npm install -g node-gyp),要么使用上面的 SHARP_IGNORE_GLOBAL_LIBVIPS=1 变通方法来跳过原生构建。
或使用 pnpm:
pnpm add -g coderclaw@latestpnpm approve-builds -g # 批准 coderclaw、node-llama-cpp、sharp 等pnpm add -g coderclaw@latest # 重新运行以执行 postinstall 脚本pnpm 需要显式批准带有构建脚本的包。在首次安装显示”Ignored build scripts”警告后,运行 pnpm approve-builds -g 并选择列出的包,然后重新运行安装以执行 postinstall 脚本。
然后:
coderclaw onboard --install-daemon3)从源代码(贡献者/开发)
Section titled “3)从源代码(贡献者/开发)”git clone https://github.com/SeanHogg/coderClaw.gitcd coderclawpnpm installpnpm ui:build # 首次运行时自动安装 UI 依赖pnpm buildcoderclaw onboard --install-daemon提示:如果你还没有全局安装,请通过 pnpm coderclaw ... 运行仓库命令。
4)其他安装选项
Section titled “4)其他安装选项”- 运行新手引导:
coderclaw onboard --install-daemon - 快速检查:
coderclaw doctor - 检查 Gateway 网关健康状态:
coderclaw status+coderclaw health - 打开仪表板:
coderclaw dashboard
安装方式:npm vs git(安装器)
Section titled “安装方式:npm vs git(安装器)”安装器支持两种方式:
npm(默认):npm install -g coderclaw@latestgit:从 GitHub 克隆/构建并从源代码 checkout 运行
CLI 标志
Section titled “CLI 标志”# 显式 npmcurl -fsSL https://coderclaw.ai/install.sh | bash -s -- --install-method npm
# 从 GitHub 安装(源代码 checkout)curl -fsSL https://coderclaw.ai/install.sh | bash -s -- --install-method git常用标志:
--install-method npm|git--git-dir <path>(默认:~/coderclaw)--no-git-update(使用现有 checkout 时跳过git pull)--no-prompt(禁用提示;CI/自动化中必需)--dry-run(打印将要执行的操作;不做任何更改)--no-onboard(跳过新手引导)
等效的环境变量(对自动化有用):
CODERCLAW_INSTALL_METHOD=git|npmCODERCLAW_GIT_DIR=...CODERCLAW_GIT_UPDATE=0|1CODERCLAW_NO_PROMPT=1CODERCLAW_DRY_RUN=1CODERCLAW_NO_ONBOARD=1SHARP_IGNORE_GLOBAL_LIBVIPS=0|1(默认:1;避免sharp针对系统 libvips 构建)
故障排除:找不到 coderclaw(PATH)
Section titled “故障排除:找不到 coderclaw(PATH)”快速诊断:
node -vnpm -vnpm prefix -gecho "$PATH"如果 $(npm prefix -g)/bin(macOS/Linux)或 $(npm prefix -g)(Windows)不在 echo "$PATH" 的输出中,你的 shell 无法找到全局 npm 二进制文件(包括 coderclaw)。
修复:将其添加到你的 shell 启动文件(zsh:~/.zshrc,bash:~/.bashrc):
# macOS / Linuxexport PATH="$(npm prefix -g)/bin:$PATH"在 Windows 上,将 npm prefix -g 的输出添加到你的 PATH。
然后打开新终端(或在 zsh 中执行 rehash / 在 bash 中执行 hash -r)。