/** * Bundled workflow management for the spec-kit plugin. * * Provides canonical workflow YAML files and a resolution helper that * checks for local overrides before falling back to bundled defaults. */ /** Names of bundled workflows */ export type BuiltinWorkflowName = 'speckit-feature' | 'speckit-bugfix'; /** * Map of bundled workflow names to their absolute file paths. * * Paths are resolved relative to the compiled module location. * The actual YAML files live in `../workflows/` relative to `dist/`. */ export declare const BUILTIN_WORKFLOWS: Record; /** * Get the absolute path to a bundled workflow file. * * @param name - The workflow name * @returns The absolute path, or undefined if the name is not a known bundled workflow */ export declare function getBuiltinWorkflowPath(name: string): string | undefined; /** * Resolve a workflow by name, checking for a local override first. * * Resolution order: * 1. `/.generacy/.yaml` (local override) * 2. Bundled workflow from this package (fallback) * * @param name - Workflow name (e.g. 'speckit-feature') * @param repoRoot - Absolute path to the repository root * @returns The absolute path to the resolved workflow, or undefined if not found */ export declare function resolveWorkflow(name: string, repoRoot: string): string | undefined; //# sourceMappingURL=workflows.d.ts.map