/** * Pi Flow Extension (fork-only) * * Dives into specialized flow states running as isolated pi processes. * Each flow receives a forked snapshot of the current session context. */ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; import { logWarn, logError } from "./config/log.js"; export { logWarn, logError }; declare global { var __pi_agent_flow_shutdown_registered: boolean | undefined; } export declare const FlowParams: any; export declare const FLOW_TOOL_DESCRIPTION = "Spawns specialized [scout] [build] [audit] [debug] [craft] [ideas] agent flows. The [flow] array holds complete task objects only; each needs [type] [intent] [aim] [concern] [complexity]."; export declare const FLOW_TOOL_PROMPT_SNIPPET = "Dive into specialized flows (scout, debug, build, craft, audit, ideas) via a `flow` array."; export declare const FLOW_TOOL_PROMPT_GUIDELINES: readonly string[]; export { type FlowColorConfig } from "./tui/flow-colors.js"; export default function (pi: ExtensionAPI): void; //# sourceMappingURL=index.d.ts.map