config
remoteclaw config
Config helpers: get/set/unset values by path. Run without a subcommand to open
the configure wizard (same as remoteclaw configure).
Examples
remoteclaw config get browser.executablePathremoteclaw config set browser.executablePath "/usr/bin/google-chrome"remoteclaw config set agents.defaults.heartbeat.every "2h"remoteclaw config set agents.list[0].tools.exec.node "node-id-or-name"remoteclaw config unset tools.web.search.apiKeyPaths
Paths use dot or bracket notation:
remoteclaw config get agents.defaults.workspaceremoteclaw config get agents.list[0].idUse the agent list index to target a specific agent:
remoteclaw config get agents.listremoteclaw config set agents.list[1].tools.exec.node "node-id-or-name"Values
Values are parsed as JSON5 when possible; otherwise they are treated as strings.
Use --strict-json to require JSON5 parsing. --json remains supported as a legacy alias.
remoteclaw config set agents.defaults.heartbeat.every "0m"remoteclaw config set gateway.port 19001 --strict-jsonremoteclaw config set channels.whatsapp.groups '["*"]' --strict-jsonRestart the gateway after edits.