From 310a248a440cab2b443c01643951e2103e65a6ad Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 23 Jan 2026 09:00:32 +0000 Subject: [PATCH] docs: add exe.dev ops note --- AGENTS.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index ff19e79bd..b381ceb2f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,6 +22,15 @@ - README (GitHub): keep absolute docs URLs (`https://docs.clawd.bot/...`) so links work on GitHub. - Docs content must be generic: no personal device names/hostnames/paths; use placeholders like `user@gateway-host` and “gateway host”. +## exe.dev VM ops (general) +- Access: SSH to the VM directly: `ssh vm-name.exe.xyz` (or use exe.dev web terminal). +- Updates: `sudo npm i -g clawdbot@latest` (global install needs root on `/usr/lib/node_modules`). +- Config: use `clawdbot config set ...`; set `gateway.mode=local` if unset. +- Restart: exe.dev often lacks systemd user bus; stop old gateway and run: + `pkill -9 -f clawdbot-gateway || true; nohup clawdbot gateway run --bind loopback --port 18789 --force > /tmp/clawdbot-gateway.log 2>&1 &` +- Verify: `clawdbot --version`, `clawdbot health`, `ss -ltnp | rg 18789`. +- SSH flaky: use exe.dev web terminal or Shelley (web agent) instead of CLI SSH. + ## Build, Test, and Development Commands - Runtime baseline: Node **22+** (keep Node + Bun paths working). - Install deps: `pnpm install`