/** * Dynamic Flow Loader * * Discovers and loads flow definitions from the filesystem. * Each flow is a directory containing: flow.json, handler.ts, instructions.md * * Kept as talker's own implementation (not chatter's) because chatter's * loader requires at least one schema property per flow, which would silently * drop zero-parameter flows like a keyword-triggered human handoff. */ import type { LoadedFlow } from "./types"; /** * Load all flows from a directory */ export declare function loadFlowsFromDirectory(flowsDir: string): Promise>;