declare const SKILL_CATALOG: { readonly agentbuilder: { readonly description: "Compose Standard Agents from models, prompts, tools, hooks, APIs, and subagents using markdown-authored guidance."; }; }; type SkillName = keyof typeof SKILL_CATALOG; interface SkillDefinition { name: SkillName; description: string; directory: string; entryFile: string; } interface CopySkillOptions { overwrite?: boolean; } declare function listSkills(): SkillDefinition[]; declare function getSkill(name: SkillName): SkillDefinition; declare function resolveSkillDir(name: SkillName): string; declare function resolveSkillFile(name: SkillName, ...segments: string[]): string; declare function skillPackageVersion(): Promise; declare function readSkillFile(name: SkillName, ...segments: string[]): Promise; declare function copySkill(name: SkillName, destinationRoot: string, options?: CopySkillOptions): Promise; declare const skillPackageRoot: string; declare const skillsRoot: string; export { type CopySkillOptions, type SkillDefinition, type SkillName, copySkill, getSkill, listSkills, readSkillFile, resolveSkillDir, resolveSkillFile, skillPackageRoot, skillPackageVersion, skillsRoot };