import { getChannelPlugin, listChannelPlugins } from "../channels/plugins/index.js"; import {
createMessageActionDiscoveryContext,
resolveMessageActionDiscoveryForPlugin,
resolveMessageActionDiscoveryChannelId,
resolveCurrentChannelMessageToolDiscoveryAdapter,
__testing as messageActionTesting,
} from "../channels/plugins/message-action-discovery.js"; import type {
ChannelAgentTool,
ChannelMessageActionName,
} from "../channels/plugins/types.public.js"; import { normalizeAnyChannelId } from "../channels/registry.js"; import type { OpenClawConfig } from "../config/types.openclaw.js";
type ChannelAgentToolMeta = {
channelId: string;
};
export function copyChannelAgentToolMeta(source: ChannelAgentTool, target: ChannelAgentTool): void { const meta = channelAgentToolMeta.get(source); if (meta) {
channelAgentToolMeta.set(target, meta);
}
}
/** * Get the list of supported message actions for a specific channel. * Returns an empty array if channel is not found or has no actions configured.
*/
export function listChannelSupportedActions(
params: ChannelMessageActionDiscoveryParams & {
channel?: string;
},
): ChannelMessageActionName[] { const channelId = resolveMessageActionDiscoveryChannelId(params.channel); if (!channelId) { return [];
} const pluginActions = resolveCurrentChannelMessageToolDiscoveryAdapter(channelId); if (!pluginActions?.actions) { return [];
} return resolveMessageActionDiscoveryForPlugin({
pluginId: pluginActions.pluginId,
actions: pluginActions.actions,
context: createMessageActionDiscoveryContext(params),
includeActions: true,
}).actions;
}
/** * Get the list of all supported message actions across all configured channels.
*/
export function listAllChannelSupportedActions(
params: ChannelMessageActionDiscoveryParams,
): ChannelMessageActionName[] { const actions = new Set<ChannelMessageActionName>(); for (const plugin of listChannelPlugins()) { const channelActions = resolveMessageActionDiscoveryForPlugin({
pluginId: plugin.id,
actions: plugin.actions,
context: createMessageActionDiscoveryContext({
...params,
currentChannelProvider: plugin.id,
}),
includeActions: true,
}).actions; for (const action of channelActions) {
actions.add(action);
}
} return Array.from(actions);
}
export function listChannelAgentTools(params: { cfg?: OpenClawConfig }): ChannelAgentTool[] { // Channel docking: aggregate channel-owned tools (login, etc.). const tools: ChannelAgentTool[] = []; for (const plugin of listChannelPlugins()) { const entry = plugin.agentTools; if (!entry) { continue;
} const resolved = typeof entry === "function" ? entry(params) : entry; if (Array.isArray(resolved)) { for (const tool of resolved) {
channelAgentToolMeta.set(tool, { channelId: plugin.id });
}
tools.push(...resolved);
}
} return tools;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.