export declare function skillManifestPath(): Promise; /** * aiws skill add [source] [--dir ] [--dry-run] * * Installs skills into .agents/skills/ (shared Pi + OpenCode location). When called without , * reads the default skill-manifest.json and installs all listed sources. */ export declare function skillAddCommand(args: Record): Promise; /** * aiws skill remove [--dry-run] * * Uninstalls a single skill from .agents/skills// and its pi mirror * .pi/skills// (when present). */ export declare function skillRemoveCommand(args: { name: string; dryRun?: boolean; dir?: string; }): Promise; export declare function skillListCommand(): Promise; /** * aiws skill update [--yes] [--dry-run] * * Deprecated: skills are vendored into template .agents/skills/ and projected * by `aiws update`. Upstream sync is manual via the `p-aiws-skill-sync` skill * (clone gitea source -> update template -> update AI_PROJECT.md ยง9 record). */ export declare function skillUpdateCommand(args: { dryRun?: boolean; yes?: boolean; }): Promise;