/** * @fileoverview Ad-hoc recipe factory for CLI-driven fitness runs * * Converts CLI arguments into a {@link FitnessRecipe} for one-off check execution. */ import { type FitnessRecipe } from './types.js'; /** CLI arguments for building an ad-hoc fitness recipe. */ export interface AdHocRecipeArgs { check?: string; tagFilters?: string[]; file?: string; parallel?: boolean; json?: boolean; unified?: boolean; verbose?: boolean; retry?: boolean; maxRetries?: number; maxParallel?: number; timeout?: number; successThreshold?: number; } /** Convert CLI arguments to an ad-hoc {@link FitnessRecipe}. */ export declare function createAdHocRecipe(args: AdHocRecipeArgs): FitnessRecipe; //# sourceMappingURL=service-adhoc.d.ts.map