/** * skills.sh Integration * Wrapper for the skills.sh registry (Vercel's Agent Skills) */ export interface SkillMetadata { name: string; description?: string; path: string; source?: string; } export interface SearchResult { name: string; repo: string; downloads?: number; description?: string; } /** * Search skills.sh registry */ export declare function searchSkills(query: string): Promise; /** * Install a skill from skills.sh registry */ export declare function installSkill(skillRef: string, options?: { skillName?: string; scope?: 'project' | 'global'; }): Promise<{ success: boolean; skill?: SkillMetadata; error?: string; }>; /** * Scan local .agent/skills directory for installed skills */ export declare function scanLocalSkills(cwd: string): Promise; /** * Sync installed skills to AGENTS.md * Converts SKILL.md files to compressed index format */ export declare function syncSkillsToAgentsMd(cwd: string): Promise; /** * Get skill suggestions based on detected frameworks */ export declare function getSuggestedSkills(frameworks: string[]): SearchResult[]; //# sourceMappingURL=index.d.ts.map