import { type FoundSkillSource } from './find.js'; export type SkillInventoryStatus = 'available' | 'ambiguous' | 'missing'; export interface SkillInventoryItem { name: string; description: string; capabilityGroup: string; sources: FoundSkillSource[]; hashes: string[]; status: SkillInventoryStatus; duplicateInstall: boolean; recommended: boolean; reason: string; } export declare function buildSkillInventory(options: { projectRoot: string; homeDir?: string; builtinRoot?: string; }): Promise; //# sourceMappingURL=inventory.d.ts.map