/** * Workflow commands - FABER workflow management * * Provides run-inspect, workflow-create, workflow-update, workflow-inspect, * workflow-resolve, workflow-debug, workflow-execute, and workflow-batch-plan commands. * * NOTE: workflow-run, workflow-resume, workflow-pause, and workflow-batch-run * have been removed. Workflow execution should go through the * fractary-faber-workflow-run skill, not the CLI. */ import { Command } from 'commander'; /** * Create the run-inspect command /** * Create the run-inspect command */ export declare function createStatusCommand(): Command; /** * Create the workflow-recover command */ export declare function createRecoverCommand(): Command; /** * Create the workflow-cleanup command */ export declare function createCleanupCommand(): Command; /** * Create the workflow-create command */ export declare function createWorkflowCreateCommand(): Command; /** * Create the workflow-update command */ export declare function createWorkflowUpdateCommand(): Command; /** * Create the workflow-inspect command */ export declare function createWorkflowInspectCommand(): Command; /** * Create the workflow-resolve command. * * Resolves a workflow with full inheritance chain merging via WorkflowResolver. * Unlike workflow-inspect (which only looks in project-local registry), * workflow-resolve also searches bundled plugin defaults — making it the * CLI equivalent of merge-workflows.sh and the correct tool for agents and * skills that need a fully-merged workflow definition. * * Works identically in Claude Code and pi installs: WorkflowResolver uses * __dirname to locate bundled workflows without any environment configuration. */ export declare function createWorkflowResolveCommand(): Command; /** * Create the workflow-debug command */ export declare function createWorkflowDebugCommand(): Command; /** * Create the workflow-batch-plan command */ export declare function createBatchPlanCommand(): Command; /** * Create the workflow-execute command (multi-model CLI-native execution) */ /** * Create the workflow-execute command (multi-model CLI-native execution) * * Deterministic workflow execution: code controls the step iteration loop, * each step is an isolated invocation with fresh context. * * Routing: `!` prefix → shell command | harness → Agent SDK/API | legacy executor */ export declare function createWorkflowExecuteCommand(): Command; //# sourceMappingURL=index.d.ts.map