import { getChatChannelMeta } from "../channels/chat-meta.js"; import { buildAccountScopedDmSecurityPolicy } from "../channels/plugins/helpers.js"; import { createScopedAccountReplyToModeResolver, createTopLevelChannelReplyToModeResolver, } from "../channels/plugins/threading-helpers.js"; import type { ChannelOutboundAdapter, ChannelPairingAdapter, ChannelSecurityAdapter, } from "../channels/plugins/types.adapters.js"; import type { ChannelMessagingAdapter, ChannelOutboundSessionRoute, ChannelPollResult, ChannelThreadingAdapter, } from "../channels/plugins/types.core.js"; import type { ChannelPlugin } from "../channels/plugins/types.plugin.js"; import type { OpenClawConfig } from "../config/config.js"; import type { ReplyToMode } from "../config/types.base.js"; import { buildOutboundBaseSessionKey } from "../infra/outbound/base-session-key.js"; import type { OutboundDeliveryResult } from "../infra/outbound/deliver.js"; import { emptyPluginConfigSchema } from "../plugins/config-schema.js"; import type { PluginRuntime } from "../plugins/runtime/types.js"; import type { OpenClawPluginApi, OpenClawPluginConfigSchema } from "../plugins/types.js"; export type { AnyAgentTool, MediaUnderstandingProviderPlugin, OpenClawPluginApi, OpenClawPluginCommandDefinition, OpenClawPluginConfigSchema, OpenClawPluginDefinition, OpenClawPluginService, OpenClawPluginServiceContext, PluginCommandContext, PluginInteractiveTelegramHandlerContext, PluginLogger, ProviderAuthContext, ProviderAuthDoctorHintContext, ProviderAuthMethod, ProviderAuthMethodNonInteractiveContext, ProviderAuthResult, ProviderAugmentModelCatalogContext, ProviderBuildMissingAuthMessageContext, ProviderBuildUnknownModelHintContext, ProviderBuiltInModelSuppressionContext, ProviderBuiltInModelSuppressionResult, ProviderCacheTtlEligibilityContext, ProviderCatalogContext, ProviderCatalogResult, ProviderDefaultThinkingPolicyContext, ProviderDiscoveryContext, ProviderFetchUsageSnapshotContext, ProviderModernModelPolicyContext, ProviderNormalizeResolvedModelContext, ProviderPrepareDynamicModelContext, ProviderPrepareExtraParamsContext, ProviderPrepareRuntimeAuthContext, ProviderPreparedRuntimeAuth, ProviderResolveDynamicModelContext, ProviderResolvedUsageAuth, ProviderResolveUsageAuthContext, ProviderRuntimeModel, ProviderThinkingPolicyContext, ProviderWrapStreamFnContext, SpeechProviderPlugin, } from "./plugin-entry.js"; export type { OpenClawPluginToolContext, OpenClawPluginToolFactory } from "../plugins/types.js"; export type { OpenClawConfig } from "../config/config.js"; export { isSecretRef } from "../config/types.secrets.js"; export type { GatewayRequestHandlerOptions } from "../gateway/server-methods/types.js"; export type { ChannelOutboundSessionRoute, ChannelMessagingAdapter, } from "../channels/plugins/types.core.js"; function createInlineTextPairingAdapter(params: { idLabel: string; message: string; normalizeAllowEntry?: ChannelPairingAdapter["normalizeAllowEntry"]; notify: ( params: Parameters>[0] & { message: string; }, ) => Promise | void; }): ChannelPairingAdapter { return { idLabel: params.idLabel, normalizeAllowEntry: params.normalizeAllowEntry, notifyApproval: async (ctx) => { await params.notify({ ...ctx, message: params.message }); }, }; } export type { ProviderUsageSnapshot, UsageProviderId, UsageWindow, } from "../infra/provider-usage.types.js"; export type { ChannelMessageActionContext } from "../channels/plugins/types.js"; export type { ChannelConfigUiHint, ChannelPlugin } from "../channels/plugins/types.plugin.js"; export type { PluginRuntime } from "../plugins/runtime/types.js"; export { definePluginEntry } from "./plugin-entry.js"; export { buildPluginConfigSchema, emptyPluginConfigSchema } from "../plugins/config-schema.js"; export { KeyedAsyncQueue, enqueueKeyedTask } from "./keyed-async-queue.js"; export { createDedupeCache, resolveGlobalDedupeCache } from "../infra/dedupe.js"; export { generateSecureToken, generateSecureUuid } from "../infra/secure-random.js"; export { delegateCompactionToRuntime } from "../context-engine/delegate.js"; export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../routing/session-key.js"; export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js"; export { applyAccountNameToChannelSection, migrateBaseNameToDefaultAccount, } from "../channels/plugins/setup-helpers.js"; export { clearAccountEntryFields, deleteAccountFromConfigSection, setAccountEnabledInConfigSection, } from "../channels/plugins/config-helpers.js"; export { formatPairingApproveHint, parseOptionalDelimitedEntries, } from "../channels/plugins/helpers.js"; export { getChatChannelMeta } from "../channels/chat-meta.js"; export { channelTargetSchema, channelTargetsSchema, optionalStringEnum, stringEnum, } from "../agents/schema/typebox.js"; export { DEFAULT_SECRET_FILE_MAX_BYTES, loadSecretFileSync, readSecretFileSync, tryReadSecretFileSync, } from "../infra/secret-file.js"; export type { SecretFileReadOptions, SecretFileReadResult } from "../infra/secret-file.js"; export { resolveGatewayBindUrl } from "../shared/gateway-bind-url.js"; export type { GatewayBindUrlResult } from "../shared/gateway-bind-url.js"; export { resolveGatewayPort } from "../config/paths.js"; export { createSubsystemLogger } from "../logging/subsystem.js"; export { normalizeAtHashSlug, normalizeHyphenSlug } from "../shared/string-normalization.js"; export { resolveTailnetHostWithRunner } from "../shared/tailscale-status.js"; export type { TailscaleStatusCommandResult, TailscaleStatusCommandRunner, } from "../shared/tailscale-status.js"; export { buildAgentSessionKey, type RoutePeer, type RoutePeerKind, } from "../routing/resolve-route.js"; export { resolveThreadSessionKeys } from "../routing/session-key.js"; export type ChannelOutboundSessionRouteParams = Parameters< NonNullable >[0]; /** Remove one of the known provider prefixes from a free-form target string. */ export function stripChannelTargetPrefix(raw: string, ...providers: string[]): string { const trimmed = raw.trim(); for (const provider of providers) { const prefix = `${provider.toLowerCase()}:`; if (trimmed.toLowerCase().startsWith(prefix)) { return trimmed.slice(prefix.length).trim(); } } return trimmed; } /** Remove generic target-kind prefixes such as `user:` or `group:`. */ export function stripTargetKindPrefix(raw: string): string { return raw.replace(/^(user|channel|group|conversation|room|dm):/i, "").trim(); } /** * Build the canonical outbound session route payload returned by channel * message adapters. */ export function buildChannelOutboundSessionRoute(params: { cfg: OpenClawConfig; agentId: string; channel: string; accountId?: string | null; peer: { kind: "direct" | "group" | "channel"; id: string }; chatType: "direct" | "group" | "channel"; from: string; to: string; threadId?: string | number; }): ChannelOutboundSessionRoute { const baseSessionKey = buildOutboundBaseSessionKey({ cfg: params.cfg, agentId: params.agentId, channel: params.channel, accountId: params.accountId, peer: params.peer, }); return { sessionKey: baseSessionKey, baseSessionKey, peer: params.peer, chatType: params.chatType, from: params.from, to: params.to, ...(params.threadId !== undefined ? { threadId: params.threadId } : {}), }; } /** Options for a channel plugin entry that should register a channel capability. */ type DefineChannelPluginEntryOptions = { id: string; name: string; description: string; plugin: TPlugin; configSchema?: OpenClawPluginConfigSchema | (() => OpenClawPluginConfigSchema); setRuntime?: (runtime: PluginRuntime) => void; registerCliMetadata?: (api: OpenClawPluginApi) => void; registerFull?: (api: OpenClawPluginApi) => void; }; type DefinedChannelPluginEntry = { id: string; name: string; description: string; configSchema: OpenClawPluginConfigSchema; register: (api: OpenClawPluginApi) => void; channelPlugin: TPlugin; setChannelRuntime?: (runtime: PluginRuntime) => void; }; type CreateChannelPluginBaseOptions = { id: ChannelPlugin["id"]; meta?: Partial["meta"]>>; setupWizard?: NonNullable["setupWizard"]>; capabilities?: ChannelPlugin["capabilities"]; agentPrompt?: ChannelPlugin["agentPrompt"]; streaming?: ChannelPlugin["streaming"]; reload?: ChannelPlugin["reload"]; gatewayMethods?: ChannelPlugin["gatewayMethods"]; configSchema?: ChannelPlugin["configSchema"]; config?: ChannelPlugin["config"]; security?: ChannelPlugin["security"]; setup: NonNullable["setup"]>; groups?: ChannelPlugin["groups"]; }; type CreatedChannelPluginBase = Pick< ChannelPlugin, "id" | "meta" | "setup" > & Partial< Pick< ChannelPlugin, | "setupWizard" | "capabilities" | "agentPrompt" | "streaming" | "reload" | "gatewayMethods" | "configSchema" | "config" | "security" | "groups" > >; /** * Canonical entry helper for channel plugins. * * This wraps `definePluginEntry(...)`, registers the channel capability, and * optionally exposes extra full-runtime registration such as tools or gateway * handlers that only make sense outside setup-only registration modes. */ export function defineChannelPluginEntry({ id, name, description, plugin, configSchema = emptyPluginConfigSchema, setRuntime, registerCliMetadata, registerFull, }: DefineChannelPluginEntryOptions): DefinedChannelPluginEntry { const resolvedConfigSchema = typeof configSchema === "function" ? configSchema() : configSchema; const entry = { id, name, description, configSchema: resolvedConfigSchema, register(api: OpenClawPluginApi) { if (api.registrationMode === "cli-metadata") { registerCliMetadata?.(api); return; } setRuntime?.(api.runtime); api.registerChannel({ plugin: plugin as ChannelPlugin }); if (api.registrationMode !== "full") { return; } registerCliMetadata?.(api); registerFull?.(api); }, }; return { ...entry, channelPlugin: plugin, ...(setRuntime ? { setChannelRuntime: setRuntime } : {}), }; } /** * Minimal setup-entry helper for channels that ship a separate `setup-entry.ts`. * * The setup entry only needs to export `{ plugin }`, but using this helper * keeps the shape explicit in examples and generated typings. */ export function defineSetupPluginEntry(plugin: TPlugin) { return { plugin }; } type ChatChannelPluginBase = Omit< ChannelPlugin, "security" | "pairing" | "threading" | "outbound" > & Partial< Pick< ChannelPlugin, "security" | "pairing" | "threading" | "outbound" > >; type ChatChannelSecurityOptions = { dm: { channelKey: string; resolvePolicy: (account: TResolvedAccount) => string | null | undefined; resolveAllowFrom: (account: TResolvedAccount) => Array | null | undefined; resolveFallbackAccountId?: (account: TResolvedAccount) => string | null | undefined; defaultPolicy?: string; allowFromPathSuffix?: string; policyPathSuffix?: string; approveChannelId?: string; approveHint?: string; normalizeEntry?: (raw: string) => string; }; collectWarnings?: ChannelSecurityAdapter["collectWarnings"]; }; type ChatChannelPairingOptions = { text: { idLabel: string; message: string; normalizeAllowEntry?: ChannelPairingAdapter["normalizeAllowEntry"]; notify: ( params: Parameters>[0] & { message: string; }, ) => Promise | void; }; }; type ChatChannelThreadingReplyModeOptions = | { topLevelReplyToMode: string } | { scopedAccountReplyToMode: { resolveAccount: (cfg: OpenClawConfig, accountId?: string | null) => TResolvedAccount; resolveReplyToMode: ( account: TResolvedAccount, chatType?: string | null, ) => ReplyToMode | null | undefined; fallback?: ReplyToMode; }; } | { resolveReplyToMode: NonNullable; }; type ChatChannelThreadingOptions = ChatChannelThreadingReplyModeOptions & Omit; type ChatChannelAttachedOutboundOptions = { base: Omit; attachedResults: { channel: string; sendText?: ( ctx: Parameters>[0], ) => MaybePromise>; sendMedia?: ( ctx: Parameters>[0], ) => MaybePromise>; sendPoll?: ( ctx: Parameters>[0], ) => MaybePromise>; }; }; type MaybePromise = T | Promise; function createInlineAttachedChannelResultAdapter( params: ChatChannelAttachedOutboundOptions["attachedResults"], ) { return { sendText: params.sendText ? async (ctx: Parameters>[0]) => ({ channel: params.channel, ...(await params.sendText!(ctx)), }) : undefined, sendMedia: params.sendMedia ? async (ctx: Parameters>[0]) => ({ channel: params.channel, ...(await params.sendMedia!(ctx)), }) : undefined, sendPoll: params.sendPoll ? async (ctx: Parameters>[0]) => ({ channel: params.channel, ...(await params.sendPoll!(ctx)), }) : undefined, } satisfies Pick; } function resolveChatChannelSecurity( security: | ChannelSecurityAdapter | ChatChannelSecurityOptions | undefined, ): ChannelSecurityAdapter | undefined { if (!security) { return undefined; } if (!("dm" in security)) { return security; } return { resolveDmPolicy: ({ cfg, accountId, account }) => buildAccountScopedDmSecurityPolicy({ cfg, channelKey: security.dm.channelKey, accountId, fallbackAccountId: security.dm.resolveFallbackAccountId?.(account) ?? account.accountId, policy: security.dm.resolvePolicy(account), allowFrom: security.dm.resolveAllowFrom(account) ?? [], defaultPolicy: security.dm.defaultPolicy, allowFromPathSuffix: security.dm.allowFromPathSuffix, policyPathSuffix: security.dm.policyPathSuffix, approveChannelId: security.dm.approveChannelId, approveHint: security.dm.approveHint, normalizeEntry: security.dm.normalizeEntry, }), ...(security.collectWarnings ? { collectWarnings: security.collectWarnings } : {}), }; } function resolveChatChannelPairing( pairing: ChannelPairingAdapter | ChatChannelPairingOptions | undefined, ): ChannelPairingAdapter | undefined { if (!pairing) { return undefined; } if (!("text" in pairing)) { return pairing; } return createInlineTextPairingAdapter(pairing.text); } function resolveChatChannelThreading( threading: ChannelThreadingAdapter | ChatChannelThreadingOptions | undefined, ): ChannelThreadingAdapter | undefined { if (!threading) { return undefined; } if (!("topLevelReplyToMode" in threading) && !("scopedAccountReplyToMode" in threading)) { return threading; } let resolveReplyToMode: ChannelThreadingAdapter["resolveReplyToMode"]; if ("topLevelReplyToMode" in threading) { resolveReplyToMode = createTopLevelChannelReplyToModeResolver(threading.topLevelReplyToMode); } else { resolveReplyToMode = createScopedAccountReplyToModeResolver( threading.scopedAccountReplyToMode, ); } return { ...threading, resolveReplyToMode, }; } function resolveChatChannelOutbound( outbound: ChannelOutboundAdapter | ChatChannelAttachedOutboundOptions | undefined, ): ChannelOutboundAdapter | undefined { if (!outbound) { return undefined; } if (!("attachedResults" in outbound)) { return outbound; } return { ...outbound.base, ...createInlineAttachedChannelResultAdapter(outbound.attachedResults), }; } // Shared higher-level builder for chat-style channels that mostly compose // scoped DM security, text pairing, reply threading, and attached send results. export function createChatChannelPlugin< TResolvedAccount extends { accountId?: string | null }, Probe = unknown, Audit = unknown, >(params: { base: ChatChannelPluginBase; security?: | ChannelSecurityAdapter | ChatChannelSecurityOptions; pairing?: ChannelPairingAdapter | ChatChannelPairingOptions; threading?: ChannelThreadingAdapter | ChatChannelThreadingOptions; outbound?: ChannelOutboundAdapter | ChatChannelAttachedOutboundOptions; }): ChannelPlugin { return { ...params.base, conversationBindings: { supportsCurrentConversationBinding: true, ...params.base.conversationBindings, }, ...(params.security ? { security: resolveChatChannelSecurity(params.security) } : {}), ...(params.pairing ? { pairing: resolveChatChannelPairing(params.pairing) } : {}), ...(params.threading ? { threading: resolveChatChannelThreading(params.threading) } : {}), ...(params.outbound ? { outbound: resolveChatChannelOutbound(params.outbound) } : {}), } as ChannelPlugin; } // Shared base object for channel plugins that only need to override a few optional surfaces. export function createChannelPluginBase( params: CreateChannelPluginBaseOptions, ): CreatedChannelPluginBase { return { id: params.id, meta: { ...getChatChannelMeta(params.id as Parameters[0]), ...params.meta, }, ...(params.setupWizard ? { setupWizard: params.setupWizard } : {}), ...(params.capabilities ? { capabilities: params.capabilities } : {}), ...(params.agentPrompt ? { agentPrompt: params.agentPrompt } : {}), ...(params.streaming ? { streaming: params.streaming } : {}), ...(params.reload ? { reload: params.reload } : {}), ...(params.gatewayMethods ? { gatewayMethods: params.gatewayMethods } : {}), ...(params.configSchema ? { configSchema: params.configSchema } : {}), ...(params.config ? { config: params.config } : {}), ...(params.security ? { security: params.security } : {}), ...(params.groups ? { groups: params.groups } : {}), setup: params.setup, } as CreatedChannelPluginBase; }