From 72f54059c455df810e6dd4e12c32301b708c2146 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 4 Apr 2026 12:56:02 +0100 Subject: [PATCH] docs: refresh setup helper import refs --- docs/plugins/sdk-migration.md | 3 +++ docs/plugins/sdk-overview.md | 3 +++ 2 files changed, 6 insertions(+) diff --git a/docs/plugins/sdk-migration.md b/docs/plugins/sdk-migration.md index dcf0990bc8a..6f9001f45fe 100644 --- a/docs/plugins/sdk-migration.md +++ b/docs/plugins/sdk-migration.md @@ -159,6 +159,7 @@ Current bundled provider examples: | `plugin-sdk/core` | Legacy umbrella re-export for channel entry definitions/builders | `defineChannelPluginEntry`, `createChatChannelPlugin` | | `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 | | `plugin-sdk/channel-setup` | Setup wizard adapters | `createOptionalChannelSetupSurface` | | `plugin-sdk/channel-pairing` | DM pairing primitives | `createChannelPairingController` | | `plugin-sdk/channel-reply-pipeline` | Reply prefix + typing wiring | `createChannelReplyPipeline` | @@ -183,6 +184,8 @@ Current bundled provider examples: | `plugin-sdk/webhook-ingress` | Webhook request helpers | Webhook target utilities | | `plugin-sdk/webhook-request-guards` | Webhook body guard helpers | Request body read/limit helpers | | `plugin-sdk/reply-payload` | Message reply types | Reply payload types | + | `plugin-sdk/provider-setup` | Curated local/self-hosted provider setup helpers | Self-hosted provider discovery/config helpers | + | `plugin-sdk/self-hosted-provider-setup` | Focused OpenAI-compatible self-hosted provider setup helpers | Same self-hosted provider discovery/config helpers | | `plugin-sdk/provider-onboard` | Provider onboarding patches | Onboarding config helpers | | `plugin-sdk/keyed-async-queue` | Ordered async queue | `KeyedAsyncQueue` | | `plugin-sdk/testing` | Test utilities | Test helpers and mocks | diff --git a/docs/plugins/sdk-overview.md b/docs/plugins/sdk-overview.md index da5dec92240..80daa1ec1ef 100644 --- a/docs/plugins/sdk-overview.md +++ b/docs/plugins/sdk-overview.md @@ -61,6 +61,7 @@ The most commonly used subpaths, grouped by purpose. The generated full list of | --- | --- | | `plugin-sdk/channel-core` | `defineChannelPluginEntry`, `defineSetupPluginEntry`, `createChatChannelPlugin`, `createChannelPluginBase` | | `plugin-sdk/channel-setup` | `createOptionalChannelSetupSurface` | + | `plugin-sdk/setup` | Shared setup wizard helpers, allowlist prompts, setup status builders | | `plugin-sdk/channel-pairing` | `createChannelPairingController` | | `plugin-sdk/channel-reply-pipeline` | `createChannelReplyPipeline` | | `plugin-sdk/channel-config-helpers` | `createHybridChannelConfigAdapter` | @@ -79,6 +80,8 @@ The most commonly used subpaths, grouped by purpose. The generated full list of | Subpath | Key exports | | --- | --- | | `plugin-sdk/provider-entry` | `defineSingleProviderPluginEntry` | + | `plugin-sdk/provider-setup` | Curated local/self-hosted provider setup helpers | + | `plugin-sdk/self-hosted-provider-setup` | Focused OpenAI-compatible self-hosted provider setup helpers | | `plugin-sdk/cli-backend` | CLI backend defaults + watchdog constants | | `plugin-sdk/provider-auth` | `createProviderApiKeyAuthMethod`, `ensureApiKeyFromOptionEnvOrPrompt`, `upsertAuthProfile` | | `plugin-sdk/provider-model-shared` | `normalizeModelCompat`, `buildProviderReplayFamilyHooks`, `sanitizeGoogleGeminiReplayHistory`, `resolveTaggedReasoningOutputMode` |