From 381ee4d218fd689edd2fb6d9cf458520f8dbfedc Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 4 Apr 2026 07:38:55 +0100 Subject: [PATCH] docs: align bundled plugin defaults in docs --- docs/cli/plugins.md | 5 +++-- docs/tools/plugin.md | 7 +++++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/cli/plugins.md b/docs/cli/plugins.md index 0583de90b5b..e526a95abf0 100644 --- a/docs/cli/plugins.md +++ b/docs/cli/plugins.md @@ -32,8 +32,9 @@ openclaw plugins update --all openclaw plugins marketplace list ``` -Bundled plugins ship with OpenClaw but start disabled. Use `plugins enable` to -activate them. +Bundled plugins ship with OpenClaw. Some are enabled by default (for example +bundled model providers, bundled speech providers, and the bundled browser +plugin); others require `plugins enable`. Native OpenClaw plugins must ship `openclaw.plugin.json` with an inline JSON Schema (`configSchema`, even if empty). Compatible bundles use their own bundle diff --git a/docs/tools/plugin.md b/docs/tools/plugin.md index b500bd7e6db..625558d091b 100644 --- a/docs/tools/plugin.md +++ b/docs/tools/plugin.md @@ -215,11 +215,18 @@ openclaw plugins install --dangerously-force-unsafe-install openclaw plugins update # update one plugin openclaw plugins update --dangerously-force-unsafe-install openclaw plugins update --all # update all +openclaw plugins uninstall # remove config/install records +openclaw plugins uninstall --keep-files +openclaw plugins marketplace list openclaw plugins enable openclaw plugins disable ``` +Bundled plugins ship with OpenClaw. Many are enabled by default (for example +bundled model providers, bundled speech providers, and the bundled browser +plugin). Other bundled plugins still need `openclaw plugins enable `. + `--force` overwrites an existing installed plugin or hook pack in place. It is not supported with `--link`, which reuses the source path instead of copying over a managed install target.