Linux 应用
Linux 应用
Section titled “Linux 应用”Gateway 网关在 Linux 上完全支持。Node 是推荐的运行时。 不推荐 Bun 用于 Gateway 网关(WhatsApp/Telegram 存在 bug)。
原生 Linux 配套应用已在计划中。如果你想帮助构建,欢迎贡献。
新手快速路径(VPS)
Section titled “新手快速路径(VPS)”- 安装 Node 22+
npm i -g coderclaw@latestcoderclaw onboard --install-daemon- 从你的笔记本电脑:
ssh -N -L 18789:127.0.0.1:18789 <user>@<host> - 打开
http://127.0.0.1:18789/并粘贴你的令牌
分步 VPS 指南:exe.dev
Gateway 网关
Section titled “Gateway 网关”Gateway 网关服务安装(CLI)
Section titled “Gateway 网关服务安装(CLI)”使用以下任一方式:
coderclaw onboard --install-daemon或:
coderclaw gateway install或:
coderclaw configure出现提示时选择 Gateway service。
修复/迁移:
coderclaw doctor系统控制(systemd 用户单元)
Section titled “系统控制(systemd 用户单元)”CoderClaw 默认安装 systemd 用户服务。对于共享或常驻服务器使用系统 服务。完整的单元示例和指南 在 Gateway 网关运行手册 中。
最小设置:
创建 ~/.config/systemd/user/coderclaw-gateway[-<profile>].service:
[Unit]Description=CoderClaw Gateway (profile: <profile>, v<version>)After=network-online.targetWants=network-online.target
[Service]ExecStart=/usr/local/bin/coderclaw gateway --port 18789Restart=alwaysRestartSec=5
[Install]WantedBy=default.target启用它:
systemctl --user enable --now coderclaw-gateway[-<profile>].service