From 68ec7c9bbf92aa4b0bd80d836beebde67c72bb29 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 4 Apr 2026 14:20:48 +0100 Subject: [PATCH] docs: refresh plugin config schema refs --- docs/plugins/architecture.md | 2 ++ docs/plugins/sdk-migration.md | 1 + docs/plugins/sdk-overview.md | 2 ++ 3 files changed, 5 insertions(+) diff --git a/docs/plugins/architecture.md b/docs/plugins/architecture.md index 81b9a8dffff..6d4c638e502 100644 --- a/docs/plugins/architecture.md +++ b/docs/plugins/architecture.md @@ -1034,6 +1034,8 @@ authoring plugins: - `openclaw/plugin-sdk/plugin-entry` for plugin registration primitives. - `openclaw/plugin-sdk/core` for the generic shared plugin-facing contract. +- `openclaw/plugin-sdk/config-schema` for the root `openclaw.json` Zod schema + export (`OpenClawSchema`). - Stable channel primitives such as `openclaw/plugin-sdk/channel-setup`, `openclaw/plugin-sdk/channel-pairing`, `openclaw/plugin-sdk/channel-contract`, diff --git a/docs/plugins/sdk-migration.md b/docs/plugins/sdk-migration.md index c59200c9598..8501d463f9f 100644 --- a/docs/plugins/sdk-migration.md +++ b/docs/plugins/sdk-migration.md @@ -157,6 +157,7 @@ Current bundled provider examples: | --- | --- | --- | | `plugin-sdk/plugin-entry` | Canonical plugin entry helper | `definePluginEntry` | | `plugin-sdk/core` | Legacy umbrella re-export for channel entry definitions/builders | `defineChannelPluginEntry`, `createChatChannelPlugin` | + | `plugin-sdk/config-schema` | Root config schema export | `OpenClawSchema` | | `plugin-sdk/provider-entry` | Single-provider entry helper | `defineSingleProviderPluginEntry` | | `plugin-sdk/channel-core` | Focused channel entry definitions and builders | `defineChannelPluginEntry`, `defineSetupPluginEntry`, `createChatChannelPlugin`, `createChannelPluginBase` | | `plugin-sdk/setup` | Shared setup wizard helpers | Allowlist prompts, setup status builders | diff --git a/docs/plugins/sdk-overview.md b/docs/plugins/sdk-overview.md index e972aa5253c..a0701898b33 100644 --- a/docs/plugins/sdk-overview.md +++ b/docs/plugins/sdk-overview.md @@ -64,6 +64,7 @@ explicitly promotes one as public. | --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | `plugin-sdk/plugin-entry` | `definePluginEntry` | | `plugin-sdk/core` | `defineChannelPluginEntry`, `createChatChannelPlugin`, `createChannelPluginBase`, `defineSetupPluginEntry`, `buildChannelConfigSchema` | +| `plugin-sdk/config-schema` | `OpenClawSchema` | | `plugin-sdk/provider-entry` | `defineSingleProviderPluginEntry` | @@ -71,6 +72,7 @@ explicitly promotes one as public. | Subpath | Key exports | | --- | --- | | `plugin-sdk/channel-core` | `defineChannelPluginEntry`, `defineSetupPluginEntry`, `createChatChannelPlugin`, `createChannelPluginBase` | + | `plugin-sdk/config-schema` | Root `openclaw.json` Zod schema export (`OpenClawSchema`) | | `plugin-sdk/channel-setup` | `createOptionalChannelSetupSurface` | | `plugin-sdk/setup` | Shared setup wizard helpers, allowlist prompts, setup status builders | | `plugin-sdk/setup-runtime` | Account-scoped setup runtime helpers, delegated setup proxies, setup status builders |