跳转到内容

config

配置辅助命令:通过路径获取/设置/取消设置值。不带子命令运行将打开 配置向导(与 coderclaw configure 相同)。

Terminal window
coderclaw config get browser.executablePath
coderclaw config set browser.executablePath "/usr/bin/google-chrome"
coderclaw config set agents.defaults.heartbeat.every "2h"
coderclaw config set agents.list[0].tools.exec.node "node-id-or-name"
coderclaw config unset tools.web.search.apiKey

路径使用点号或括号表示法:

Terminal window
coderclaw config get agents.defaults.workspace
coderclaw config get agents.list[0].id

使用智能体列表索引来定位特定智能体:

Terminal window
coderclaw config get agents.list
coderclaw config set agents.list[1].tools.exec.node "node-id-or-name"

值会尽可能解析为 JSON5;否则将被视为字符串。 使用 --json 强制要求 JSON5 解析。

Terminal window
coderclaw config set agents.defaults.heartbeat.every "0m"
coderclaw config set gateway.port 19001 --json
coderclaw config set channels.whatsapp.groups '["*"]' --json

编辑后请重启 Gateway 网关。