/** * Runs command - Query FABER run paths * * This command provides access to run directory and file paths for scripts and tools. * It uses the SDK's centralized path definitions, ensuring consistency across all tools. * * All run files are stored in: .fractary/faber/runs/{run_id}/ * - plan.json: The execution plan * - state.json: The workflow state * * Active workflow tracking: .fractary/faber/runs/.active-run-id * - Contains the run ID of the currently active workflow in this worktree */ import { Command } from 'commander'; export declare function createRunsCommand(): Command; //# sourceMappingURL=runs.d.ts.map