mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 15:42:53 +00:00
Simplify native subagent completion handoff and remove manual subagent control surfaces. Co-authored-by: brokemac79 <martin_cleary@yahoo.co.uk>
19 lines
483 B
TypeScript
19 lines
483 B
TypeScript
import type { SubagentRunRecord } from "../../agents/subagent-registry.types.js";
|
|
import type { HandleCommandsParams } from "./commands-types.js";
|
|
|
|
export {
|
|
COMMAND,
|
|
resolveHandledPrefix,
|
|
resolveRequesterSessionKey,
|
|
resolveSubagentsAction,
|
|
stopWithText,
|
|
} from "./commands-subagents/shared.js";
|
|
|
|
export type SubagentsCommandContext = {
|
|
params: HandleCommandsParams;
|
|
handledPrefix: string;
|
|
requesterKey: string;
|
|
runs: SubagentRunRecord[];
|
|
restTokens: string[];
|
|
};
|