From 9f90d0721a8993cdadf67e18bd326432b57adc6f Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 12 Jan 2026 22:32:33 +0000 Subject: [PATCH] docs: note relative plugin install paths --- docs/plugin.md | 1 + docs/plugins/voice-call.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/plugin.md b/docs/plugin.md index 7230bef44..0fec66e92 100644 --- a/docs/plugin.md +++ b/docs/plugin.md @@ -148,6 +148,7 @@ export default { clawdbot plugins list clawdbot plugins info clawdbot plugins install # add a local file/dir to plugins.load.paths +clawdbot plugins install ./extensions/voice-call # relative path ok clawdbot plugins install ./plugin.tgz # install from a local tarball clawdbot plugins install @clawdbot/voice-call # install from npm clawdbot plugins enable diff --git a/docs/plugins/voice-call.md b/docs/plugins/voice-call.md index 566155688..4c4119bf1 100644 --- a/docs/plugins/voice-call.md +++ b/docs/plugins/voice-call.md @@ -40,8 +40,8 @@ Restart the Gateway afterwards. ### Option B: install from a local folder (dev, no copying) ```bash -clawdbot plugins install /absolute/path/to/voice-call -cd /absolute/path/to/voice-call && pnpm install +clawdbot plugins install ./extensions/voice-call +cd ./extensions/voice-call && pnpm install ``` Restart the Gateway afterwards.