diff --git a/src/agent/message.ts b/src/agent/message.ts index 644aae9..ecda6ea 100644 --- a/src/agent/message.ts +++ b/src/agent/message.ts @@ -23,6 +23,7 @@ import { } from "./approval-result-normalization"; import { getClient } from "./client"; import { buildClientSkillsPayload } from "./clientSkills"; +import { ALL_SKILL_SOURCES } from "./skillSources"; const streamRequestStartTimes = new WeakMap(); const streamToolContextIds = new WeakMap(); @@ -132,6 +133,7 @@ export async function sendMessageStream( const { clientSkills, errors: clientSkillDiscoveryErrors } = await buildClientSkillsPayload({ agentId: opts.agentId, + skillSources: ALL_SKILL_SOURCES, }); const resolvedConversationId = conversationId;