/** * Agent Runner - Executes AI agents with session management * * Wraps pi-agent-core with OpenClaw-specific functionality: * - Bootstrap context loading (AGENTS.md, SOUL.md, etc.) * - Memory management * - Tool policy enforcement * - Sandbox execution */ import type { AgentContext, AgentResult, AgentRunnerConfig } from "./types.js"; /** Agent runner */ export declare class AgentRunner { private config; constructor(config: AgentRunnerConfig); /** * Run agent with user input */ run(context: AgentContext, input: string): Promise; /** * Build system prompt with bootstrap context */ buildSystemPrompt(): Promise; /** * Load memory for context */ loadMemory(): Promise; /** * Save memory */ saveMemory(content: string): Promise; } //# sourceMappingURL=runner.d.ts.map