import { type LlmOptions } from "./api.js"; import { type Message } from "./providers/index.js"; export type AgentContext = { history: Message[]; llm: LlmOptions; sessionFile: string | undefined; setSessionFile: (file: string) => void; }; export declare function command(context: AgentContext, task: string): Promise; //# sourceMappingURL=commands.d.ts.map