diff --git a/extensions/twitch/setup-entry.ts b/extensions/twitch/setup-entry.ts index c4f4957c76c..2c06653ec9a 100644 --- a/extensions/twitch/setup-entry.ts +++ b/extensions/twitch/setup-entry.ts @@ -3,7 +3,7 @@ import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entr export default defineBundledChannelSetupEntry({ importMetaUrl: import.meta.url, plugin: { - specifier: "./src/setup-surface.js", + specifier: "./setup-plugin-api.js", exportName: "twitchSetupPlugin", }, }); diff --git a/extensions/twitch/setup-plugin-api.ts b/extensions/twitch/setup-plugin-api.ts new file mode 100644 index 00000000000..ed9ff5909df --- /dev/null +++ b/extensions/twitch/setup-plugin-api.ts @@ -0,0 +1,3 @@ +// Keep bundled setup entry imports narrow so setup loads do not pull the +// broader Twitch channel plugin surface. +export { twitchSetupPlugin } from "./src/setup-surface.js";