/** * pi-agents — A pi extension providing Claude Code-style autonomous sub-agents. * * Tools: * agent — LLM-callable: spawn a sub-agent * get_subagent_result — LLM-callable: check background agent status/result * steer_subagent — LLM-callable: send a steering message to a running agent * * Commands: * /agents — Interactive agent management menu */ import { type ExtensionAPI } from "@earendil-works/pi-coding-agent"; import { Container } from "@earendil-works/pi-tui"; import { type Theme } from "./ui/agent-widget.js"; export type { AgentExecutionProfile, RunOptions, RunResult } from "./agent-runner.js"; export { executeAgentProfile, parseThinkingLevel } from "./agent-runner.js"; export declare function renderRunningAgentStatus(frame: string, statsText: string, activity: string, theme: Pick): Container; export declare function registerHepiSubagents(pi: ExtensionAPI): void; export default registerHepiSubagents;