/** * Canonical portable Mastermind workflow inventory. * * Additions require a shipped `.claude/skills//SKILL.md` package and a * manifest fixture. Consumers must use this manifest rather than maintaining * their own workflow lists. */ import { type MastermindSkill } from './manifest-data.js'; export { MASTERMIND_SKILLS, type MastermindSkill } from './manifest-data.js'; /** Resolve a canonical workflow name or an accepted shorthand, case-insensitively. */ export declare function resolveMastermindSkill(name: string): MastermindSkill | undefined; /** Locate the package's shipped Mastermind skill source tree. */ export declare function getMastermindSkillSourceDir(sourceBaseDir?: string): string | null; /** * Load a canonical skill package for display or a platform projection. * * The packages are already platform-neutral. `target` is deliberately part of * the stable API so renderers can select target-specific transformations later * without changing callers. */ export declare function renderSkillPackage(skill: MastermindSkill, _target?: string): string; //# sourceMappingURL=manifest.d.ts.map