import { A as ToolResultMessage, C as TextContent, O as Tool, b as StreamFn$1, d as Message, f as Model, i as AssistantMessageEvent, l as ImageContent, r as AssistantMessage, v as SimpleStreamOptions } from "./types-Boa_mcGH.js"; import { Static, TSchema } from "typebox"; //#region packages/agent-core/src/types.d.ts /** * Stream function used by the agent loop. * * Contract: * - Must not throw or return a rejected promise for request/model/runtime failures. * - Must return an AssistantMessageEventStream. * - Failures must be encoded in the returned stream via protocol events and a * final AssistantMessage with stopReason "error" or "aborted" and errorMessage. */ type StreamFn = StreamFn$1; /** * Configuration for how tool calls from a single assistant message are executed. * * - "sequential": each tool call is prepared, executed, and finalized before the next one starts. * - "parallel": tool calls are prepared sequentially, then allowed tools execute concurrently. * `tool_execution_end` is emitted in tool completion order after each tool is finalized, * while tool-result message artifacts are emitted later in assistant source order. */ type ToolExecutionMode = "sequential" | "parallel"; /** * Controls how many queued user messages are injected when the agent loop reaches a queue drain point. * * - "all": drain and inject every queued message at that point. * - "one-at-a-time": drain and inject only the oldest queued message, leaving the rest queued for later drain points. */ type QueueMode = "all" | "one-at-a-time"; /** A single tool call content block emitted by an assistant message. */ type AgentToolCall = Extract; /** * Result returned from `beforeToolCall`. * * Returning `{ block: true }` prevents the tool from executing. The loop emits an error tool result instead. * `reason` becomes the text shown in that error result. If omitted, a default blocked message is used. */ interface BeforeToolCallResult { block?: boolean; reason?: string; } interface DeferredToolCallContext { /** The assistant message that requested the deferred tool call. */ assistantMessage: AssistantMessage; /** The raw tool call block whose authorized tool definition is deferred. */ toolCall: AgentToolCall; /** Current agent context before the deferred tool is hydrated. */ context: AgentContext; } /** * Partial override returned from `afterToolCall`. * * Merge semantics are field-by-field: * - `content`: if provided, replaces the tool result content array in full * - `details`: if provided, replaces the tool result details value in full * - `isError`: if provided, replaces the tool result error flag * - `terminate`: if provided, replaces the early-termination hint * * Omitted fields keep the original executed tool result values. * There is no deep merge for `content` or `details`. */ interface AfterToolCallResult { content?: (TextContent | ImageContent)[]; details?: unknown; isError?: boolean; /** * Hint that the agent should stop after the current tool batch. * Early termination only happens when every finalized tool result in the batch sets this to true. */ terminate?: boolean; } /** Context passed to `beforeToolCall`. */ interface BeforeToolCallContext { /** The assistant message that requested the tool call. */ assistantMessage: AssistantMessage; /** The raw tool call block from `assistantMessage.content`. */ toolCall: AgentToolCall; /** Validated tool arguments for the target tool schema. */ args: unknown; /** Current agent context at the time the tool call is prepared. */ context: AgentContext; } /** Context passed to `afterToolCall`. */ interface AfterToolCallContext { /** The assistant message that requested the tool call. */ assistantMessage: AssistantMessage; /** The raw tool call block from `assistantMessage.content`. */ toolCall: AgentToolCall; /** Validated tool arguments for the target tool schema. */ args: unknown; /** The executed tool result before unknown `afterToolCall` overrides are applied. */ result: AgentToolResult; /** Whether the executed tool result is currently treated as an error. */ isError: boolean; /** Current agent context at the time the tool call is finalized. */ context: AgentContext; } /** Context passed to `shouldStopAfterTurn`. */ interface ShouldStopAfterTurnContext { /** The assistant message that completed the turn. */ message: AssistantMessage; /** Tool result messages passed to the preceding `turn_end` event. */ toolResults: ToolResultMessage[]; /** Current agent context after the turn's assistant message and tool results have been appended. */ context: AgentContext; /** Messages that this loop invocation will return if it exits at this point. Prompt runs include the initial prompt messages; continuation runs do not include pre-existing context messages. */ newMessages: AgentMessage[]; } /** Replacement runtime state used by the agent loop before starting another provider request. */ interface AgentLoopTurnUpdate { /** Context for the next provider request. */ context?: AgentContext; /** Model for the next provider request. */ model?: Model; /** Thinking level for the next provider request. */ thinkingLevel?: ThinkingLevel; } interface PrepareNextTurnContext extends ShouldStopAfterTurnContext {} interface AgentLoopConfig extends SimpleStreamOptions { model: Model; /** Logical thinking level retained across model changes before provider mapping. */ thinkingLevel?: ThinkingLevel; /** * Converts AgentMessage[] to LLM-compatible Message[] before each LLM call. * * Each AgentMessage must be converted to a UserMessage, AssistantMessage, or ToolResultMessage * that the LLM can understand. AgentMessages that cannot be converted (e.g., UI-only notifications, * status messages) should be filtered out. * * Contract: must not throw or reject. Return a safe fallback value instead. * Throwing interrupts the low-level agent loop without producing a normal event sequence. * * @example * ```typescript * convertToLlm: (messages) => messages.flatMap(m => { * if (m.role === "custom") { * // Convert custom message to user message * return [{ role: "user", content: m.content, timestamp: m.timestamp }]; * } * if (m.role === "notification") { * // Filter out UI-only messages * return []; * } * // Pass through standard LLM messages * return [m]; * }) * ``` */ convertToLlm: (messages: AgentMessage[]) => Message[] | Promise; /** * Optional transform applied to the context before `convertToLlm`. * * Use this for operations that work at the AgentMessage level: * - Context window management (pruning old messages) * - Injecting context from external sources * * Contract: must not throw or reject. Return the original messages or another * safe fallback value instead. * * @example * ```typescript * transformContext: async (messages) => { * if (estimateTokens(messages) > MAX_TOKENS) { * return pruneOldMessages(messages); * } * return messages; * } * ``` */ transformContext?: (messages: AgentMessage[], signal?: AbortSignal) => Promise; /** * Resolves an API key dynamically for each LLM call. * * Useful for short-lived OAuth tokens (e.g., GitHub Copilot) that may expire * during long-running tool execution phases. * * Contract: must not throw or reject. Return undefined when no key is available. */ getApiKey?: (provider: string) => Promise | string | undefined; /** * Called after each turn fully completes and `turn_end` has been emitted. * * If it returns true, the loop emits `agent_end` and exits before polling steering or follow-up queues, * without starting another LLM call. The current assistant response and any tool executions finish normally. * * Use this to request a graceful stop after the current turn, e.g. before context gets too full. * * Contract: must not throw or reject. Throwing interrupts the low-level agent loop without producing a normal event sequence. */ shouldStopAfterTurn?: (context: ShouldStopAfterTurnContext) => boolean | Promise; /** * Called after `turn_end` and before the loop decides whether another provider request should start. * Return replacement context/model/thinking state to affect the next turn in this run. * Return undefined to keep using the current context/config. */ prepareNextTurn?: (context: PrepareNextTurnContext) => AgentLoopTurnUpdate | undefined | Promise; /** * Returns steering messages to inject into the conversation mid-run. * * Called after the current assistant turn finishes executing its tool calls, unless `shouldStopAfterTurn` exits first. * If messages are returned, they are added to the context before the next LLM call. * Tool calls from the current assistant message are not skipped. * * Use this for "steering" the agent while it's working. * * Contract: must not throw or reject. Return [] when no steering messages are available. */ getSteeringMessages?: () => Promise; /** * Returns follow-up messages to process after the agent would otherwise stop. * * Called when the agent has no more tool calls and no steering messages. * If messages are returned, they're added to the context and the agent * continues with another turn. * * Use this for follow-up messages that should wait until the agent finishes. * * Contract: must not throw or reject. Return [] when no follow-up messages are available. */ getFollowUpMessages?: () => Promise; /** * Tool execution mode. * - "sequential": execute tool calls one by one * - "parallel": preflight tool calls sequentially, then execute allowed tools concurrently; * emit `tool_execution_end` in tool completion order after each tool is finalized, * then emit tool-result message artifacts later in assistant source order * * Default: "parallel" */ toolExecution?: ToolExecutionMode; /** * Called before a tool is executed, after arguments have been validated. * * Return `{ block: true }` to prevent execution. The loop emits an error tool result instead. * The hook receives the agent abort signal and is responsible for honoring it. */ beforeToolCall?: (context: BeforeToolCallContext, signal?: AbortSignal) => Promise; /** * Hydrates an already-authorized tool that was deferred out of the current * provider-visible tool set. Return undefined for every other unknown name so * the loop keeps the normal "Tool not found" result. Thrown or rejected * failures become error tool results for the requested call. */ resolveDeferredTool?: (context: DeferredToolCallContext, signal?: AbortSignal) => Promise | AgentTool | undefined; /** * Called after a tool finishes executing, before `tool_execution_end` and tool-result message events are emitted. * * Return an `AfterToolCallResult` to override parts of the executed tool result: * - `content` replaces the full content array * - `details` replaces the full details payload * - `isError` replaces the error flag * - `terminate` replaces the early-termination hint * * Any omitted fields keep their original values. No deep merge is performed. * The hook receives the agent abort signal and is responsible for honoring it. */ afterToolCall?: (context: AfterToolCallContext, signal?: AbortSignal) => Promise; } /** * Thinking/reasoning level for models that support it. * Note: "xhigh" is only supported by selected model families. Use model thinking-level metadata * from openclaw/plugin-sdk/llm to detect support for a concrete model. */ type ThinkingLevel = "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "max"; interface BashExecutionMessage { /** Harness role for shell command transcripts. */ role: "bashExecution"; /** Command line that was executed. */ command: string; /** Captured command output, usually already truncated for context. */ output: string; /** Process exit code when the command reached process exit. */ exitCode: number | undefined; /** True when the command was interrupted before normal completion. */ cancelled: boolean; /** True when output was shortened for transcript/context storage. */ truncated: boolean; /** Optional path containing the complete output when truncation occurred. */ fullOutputPath?: string; /** Millisecond timestamp for transcript ordering. */ timestamp: number; /** Exclude this command transcript from model context while keeping it in session history. */ excludeFromContext?: boolean; } interface CustomMessage { /** Harness role for application-defined transcript content. */ role: "custom"; /** Application-defined discriminator for rendering or handling this message. */ customType: string; /** Content replayed into model context when this message is included. */ content: string | (TextContent | ImageContent)[]; /** Whether UI surfaces should display this message. */ display: boolean; /** Optional application-specific metadata. */ details?: T; /** Millisecond timestamp for transcript ordering. */ timestamp: number; } interface BranchSummaryMessage { /** Harness role for summaries produced when returning from another branch. */ role: "branchSummary"; /** Summary text inserted back into model context. */ summary: string; /** Entry id of the branch root or source leaf being summarized. */ fromId: string; /** Millisecond timestamp for transcript ordering. */ timestamp: number; } interface CompactionSummaryMessage { /** Harness role for summaries that replace compacted transcript history. */ role: "compactionSummary"; /** Summary text inserted back into model context. */ summary: string; /** Estimated context tokens before compaction. */ tokensBefore: number; /** Timestamp may be numeric in memory or string when loaded from older persisted rows. */ timestamp: number | string; /** Optional estimated context tokens after compaction. */ tokensAfter?: number; /** Optional first retained entry id from the compaction range. */ firstKeptEntryId?: string; /** Optional implementation-specific compaction metadata. */ details?: unknown; } /** * Extensible interface for custom app and harness messages. * Apps can extend via declaration merging. */ interface CustomAgentMessages { bashExecution: BashExecutionMessage; custom: CustomMessage; branchSummary: BranchSummaryMessage; compactionSummary: CompactionSummaryMessage; } /** * AgentMessage: Union of LLM messages + custom messages. * This abstraction allows apps to add custom message types while maintaining * type safety and compatibility with the base LLM messages. */ type AgentMessage = Message | CustomAgentMessages[keyof CustomAgentMessages]; /** * Public agent state. * * `tools` and `messages` use accessor properties so implementations can copy * assigned arrays before storing them. */ interface AgentState { /** System prompt sent with each model request. */ systemPrompt: string; /** Active model used for future turns. */ model: Model; /** Requested reasoning level for future turns. */ thinkingLevel: ThinkingLevel; /** Available tools. Assigning a new array copies the top-level array. */ set tools(tools: AgentTool[]); get tools(): AgentTool[]; /** Conversation transcript. Assigning a new array copies the top-level array. */ set messages(messages: AgentMessage[]); get messages(): AgentMessage[]; /** * True while the agent is processing a prompt or continuation. * * This remains true until awaited `agent_end` listeners settle. */ readonly isStreaming: boolean; /** Partial assistant message for the current streamed response, if any. */ readonly streamingMessage?: AgentMessage; /** Tool call ids currently executing. */ readonly pendingToolCalls: ReadonlySet; /** Error message from the most recent failed or aborted assistant turn, if any. */ readonly errorMessage?: string; } /** Channel-safe progress text emitted by a running tool. */ interface AgentToolProgress { /** Public text suitable for user-facing progress surfaces. */ text: string; /** Tool progress is rendered by channel progress UIs. */ visibility: "channel"; /** Progress text must not contain secrets, private args, or fetched content. */ privacy: "public"; /** Optional stable id for progress line replacement. */ id?: string; } /** Final or partial result produced by a tool. */ interface AgentToolResult { /** Text or image content returned to the model. */ content: (TextContent | ImageContent)[]; /** Arbitrary structured details for logs or UI rendering. */ details: T; /** Optional public progress hint for partial tool updates; never model content. */ progress?: AgentToolProgress; /** * Hint that the agent should stop after the current tool batch. * Early termination only happens when every finalized tool result in the batch sets this to true. */ terminate?: boolean; } /** Callback used by tools to stream partial execution updates. */ type AgentToolUpdateCallback = (partialResult: AgentToolResult) => void; /** Tool definition used by the agent runtime. */ interface AgentTool extends Tool { /** Human-readable label for UI display. */ label: string; /** * Optional compatibility shim for raw tool-call arguments before schema validation. * Must return an object that matches `TParameters`. */ prepareArguments?: (args: unknown) => Static; /** Execute the tool call. Throw on failure instead of encoding errors in `content`. */ execute: (toolCallId: string, params: Static, signal?: AbortSignal, onUpdate?: AgentToolUpdateCallback) => Promise>; /** * Per-tool execution mode override. * - "sequential": this tool must execute one at a time with other tool calls. * - "parallel": this tool can execute concurrently with other tool calls. * * If omitted, the default execution mode applies. */ executionMode?: ToolExecutionMode; } /** Context snapshot passed into the low-level agent loop. */ interface AgentContext { /** System prompt included with the request. */ systemPrompt: string; /** Transcript visible to the model. */ messages: AgentMessage[]; /** Tools available for this run. */ tools?: AgentTool[]; } /** * Events emitted by the Agent for UI updates. * * `agent_end` is the last event emitted for a run, but awaited `Agent.subscribe()` * listeners for that event are still part of run settlement. The agent becomes * idle only after those listeners finish. */ type AgentEvent = { type: "agent_start"; } | { type: "agent_end"; messages: AgentMessage[]; } | { type: "turn_start"; } | { type: "turn_end"; message: AgentMessage; toolResults: ToolResultMessage[]; } | { type: "message_start"; message: AgentMessage; } | { type: "message_update"; message: AgentMessage; assistantMessageEvent: AssistantMessageEvent; } | { type: "message_end"; message: AgentMessage; } | { type: "tool_execution_start"; toolCallId: string; toolName: string; args: unknown; } | { type: "tool_execution_update"; toolCallId: string; toolName: string; args: unknown; partialResult: unknown; } | { type: "tool_execution_end"; toolCallId: string; toolName: string; result: unknown; isError: boolean; /** False when resolution, argument preparation, validation, or policy blocked execution. */ executionStarted?: boolean; }; //#endregion export { QueueMode as C, ToolExecutionMode as D, ThinkingLevel as E, PrepareNextTurnContext as S, StreamFn as T, BranchSummaryMessage as _, AgentLoopConfig as a, CustomMessage as b, AgentState as c, AgentToolProgress as d, AgentToolResult as f, BeforeToolCallResult as g, BeforeToolCallContext as h, AgentEvent as i, AgentTool as l, BashExecutionMessage as m, AfterToolCallResult as n, AgentLoopTurnUpdate as o, AgentToolUpdateCallback as p, AgentContext as r, AgentMessage as s, AfterToolCallContext as t, AgentToolCall as u, CompactionSummaryMessage as v, ShouldStopAfterTurnContext as w, DeferredToolCallContext as x, CustomAgentMessages as y };