export type SkillHealthCategory = "missing" | "duplicate" | "stale" | "malformed" | "unsupported" | "unbound" | "runtime"; export interface SkillHealthIssue { category: SkillHealthCategory; skill?: string; path?: string; reason: string; } export interface SkillHealthReport { pluginRoot: string | null; registryVersion: number | null; skills: number; commands: number; issues: SkillHealthIssue[]; healthy: boolean; } export declare function inspectSkillHealth(pluginRoot?: string | null): SkillHealthReport; export declare function showSkillHealth(options?: { root?: string; json?: boolean; }): number; //# sourceMappingURL=skill-health.d.ts.map