/** * CLI handlers for `instructions:*` commands. * * Each subcommand resolves a PromptContext for the given harness, * calls the appropriate composer, and outputs the result. * * @module cli/commands/instructions */ export interface InstructionsCommandArgs { subcommand: "babysit-skill" | "process-create" | "orchestrate" | "breakpoint-handling"; harness?: string; interactive: boolean | undefined; json: boolean; showStrata?: boolean; } /** * Route and handle an `instructions:*` subcommand. */ export declare function handleInstructionsCommand(args: InstructionsCommandArgs): Promise; //# sourceMappingURL=instructions.d.ts.map