UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

24 lines 831 B
/** * 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<boolean>; list(): Promise<SkillResult[]>; search(query: string): Promise<SkillResult[]>; info(name: string): Promise<SkillDetails | undefined>; install(name: string, options: InstallOptions): Promise<void>; /** * Find all SKILL.md files recursively */ private findSkillMds; } //# sourceMappingURL=local.d.ts.map