import type { SourceMeta } from "./types"; /** * Parsed frontmatter from a skill file. */ export interface SkillFrontmatter { name?: string; description?: string; globs?: string[]; alwaysApply?: boolean; /** * When `true`, the skill is loaded and accessible via `skill://` (and * `/skill:` slash commands), but is omitted from the rendered system * prompt's skill listing. Use for skills the user opts into explicitly * rather than ones the model should auto-discover. */ hide?: boolean; [key: string]: unknown; } /** * A skill that provides specialized knowledge or workflows. */ export interface Skill { /** Skill name (unique key, derived from filename or frontmatter) */ name: string; /** Absolute path to skill file */ path: string; /** Skill content (markdown) */ content: string; /** Parsed frontmatter */ frontmatter?: SkillFrontmatter; /** Source level */ level: "user" | "project"; /** Source metadata */ _source: SourceMeta; } export declare const skillCapability: import("./types").Capability;