/** * graph-recipes command — list all available graph recipes. * * Mirrors fitness's `listRecipes` (`cli/fit-recipes.ts`): maps the * scope-bound recipe registry to the shared `ListRecipesResult` contract so * the existing CLI renderer (`viewListRecipes`) handles the output with no * contracts change. `checkCount` is a free-form label; graph reuses it as a * rule count ("all rules" / "N rules"). * * Reads `currentGraphRecipes()`, so it runs inside the entered RunScope (the * command action body does). */ import type { ListRecipesResult } from '@opensip-cli/contracts'; /** * Returns metadata for every registered graph recipe. * * Returns a `Promise` to mirror fitness's `listRecipes` signature (which is * genuinely async — it loads user plugins first). Graph has no async * pre-step today; the registry is scope-seeded at construction, so this * resolves synchronously. */ export declare function listGraphRecipes(): Promise; //# sourceMappingURL=graph-recipes.d.ts.map