mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 17:54:32 +00:00
fix: propagate agent run context for subagent announce
This commit is contained in:
18
src/commands/agent/run-context.ts
Normal file
18
src/commands/agent/run-context.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { normalizeAccountId } from "../../utils/account-id.js";
|
||||
import { resolveMessageChannel } from "../../utils/message-channel.js";
|
||||
import type { AgentCommandOpts, AgentRunContext } from "./types.js";
|
||||
|
||||
export function resolveAgentRunContext(opts: AgentCommandOpts): AgentRunContext {
|
||||
const merged: AgentRunContext = opts.runContext ? { ...opts.runContext } : {};
|
||||
|
||||
const normalizedChannel = resolveMessageChannel(
|
||||
merged.messageChannel ?? opts.messageChannel,
|
||||
opts.replyChannel ?? opts.channel,
|
||||
);
|
||||
if (normalizedChannel) merged.messageChannel = normalizedChannel;
|
||||
|
||||
const normalizedAccountId = normalizeAccountId(merged.accountId ?? opts.accountId);
|
||||
if (normalizedAccountId) merged.accountId = normalizedAccountId;
|
||||
|
||||
return merged;
|
||||
}
|
||||
Reference in New Issue
Block a user