diff --git a/.openclaw-sync/source.json b/.openclaw-sync/source.json index af0e747ed..baad439cf 100644 --- a/.openclaw-sync/source.json +++ b/.openclaw-sync/source.json @@ -1,5 +1,5 @@ { "repository": "openclaw/openclaw", - "sha": "84fb62170a56b18907891b83861092e4933366d4", - "syncedAt": "2026-04-05T09:07:10.945Z" + "sha": "219afbc2ccb4c1e8997403f2c124836fb0943197", + "syncedAt": "2026-04-05T09:31:05.969Z" } diff --git a/docs/docs.json b/docs/docs.json index 37786e952..96f8b198b 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -124,6 +124,14 @@ "source": "/context", "destination": "/concepts/context" }, + { + "source": "/zh-CN", + "destination": "/zh-CN/index" + }, + { + "source": "/zh-CN/", + "destination": "/zh-CN/index" + }, { "source": "/compaction", "destination": "/concepts/compaction" diff --git a/docs/plugins/community.md b/docs/plugins/community.md index ad7e94457..8eaa047c2 100644 --- a/docs/plugins/community.md +++ b/docs/plugins/community.md @@ -13,6 +13,10 @@ channels, tools, providers, or other capabilities. They are built and maintained by the community, published on [ClawHub](/tools/clawhub) or npm, and installable with a single command. +ClawHub is the canonical discovery surface for community plugins. Do not open +docs-only PRs just to add your plugin here for discoverability; publish it on +ClawHub instead. + ```bash openclaw plugins install ``` @@ -116,14 +120,13 @@ We welcome community plugins that are useful, documented, and safe to operate. - - Add your plugin to this page with: + + You do not need a docs PR just to make your plugin discoverable. Publish it + on ClawHub instead. - - Plugin name - - npm package name - - GitHub repository URL - - One-line description - - Install command + Open a docs PR only when OpenClaw's source docs need an actual content + change, such as correcting install guidance or adding cross-repo + documentation that belongs in the main docs set. diff --git a/docs/start/getting-started.md b/docs/start/getting-started.md index 7e25f9d15..321de2179 100644 --- a/docs/start/getting-started.md +++ b/docs/start/getting-started.md @@ -88,6 +88,38 @@ Need to install Node? See [Node setup](/install/node). + + If you maintain a localized or customized dashboard build, point + `gateway.controlUi.root` to a directory that contains your built static + assets and `index.html`. + +```bash +mkdir -p "$HOME/.openclaw/control-ui-custom" +# Copy your built static files into that directory. +``` + +Then set: + +```json +{ + "gateway": { + "controlUi": { + "enabled": true, + "root": "$HOME/.openclaw/control-ui-custom" + } + } +} +``` + +Restart the gateway and reopen the dashboard: + +```bash +openclaw gateway restart +openclaw dashboard +``` + + + ## What to do next