/** * 合并通道静态 systemPrompt、IM 下发的 userInfo 用户块与 agentContext 项目块。 */ import type { OpenClawConfig } from "openclaw/plugin-sdk"; import type { Log } from "./auth.js"; import type { RobotMentionAgentContext } from "./agent-context-types.js"; import type { XgImConfig } from "./types.js"; export interface ResolveInboundGroupSystemPromptArgs { cfg: OpenClawConfig; accountId: string; config: XgImConfig; agentContext?: RobotMentionAgentContext; senderId?: string; senderName?: string; senderBackground?: string; workspaceHostRoot?: string; log?: Log; logPrefix?: string; } export declare function resolveInboundGroupSystemPrompt(args: ResolveInboundGroupSystemPromptArgs): string | undefined; //# sourceMappingURL=resolve-inbound-group-prompt.d.ts.map