/** * Local Registry Adapter * * Scans agentic/code/ for skill manifests and SKILL.md files. * Also checks deployed skills in the current project's provider directory. * * @implements #539 */ import type { RegistryAdapter, SkillResult, SkillDetails, InstallOptions } from '../types.js'; export declare class LocalAdapter implements RegistryAdapter { readonly id = "local"; readonly name = "Local (AIWG Installation)"; private cachedSkills; isAvailable(): Promise; list(): Promise; search(query: string): Promise; info(name: string): Promise; install(name: string, options: InstallOptions): Promise; /** * Find all SKILL.md files recursively */ private findSkillMds; } //# sourceMappingURL=local.d.ts.map