/** * SkillsCommand — J3 skills hub + sync (`skills_hub.py` + * `npx skills add`). * * Subcommands: * buff skills search — Search the skills registry * buff skills install — Install a skill from the registry * buff skills update — Update installed skills to newer versions * buff skills list [--origin registry|local] — List installed skills with provenance * * Distinct from `buff skill` (singular): that manages INTERNAL skills compiled * from trajectories; `buff skills` manages EXTERNAL community skills installed * into `/.agents/skills/` (sandboxed, provenance + checksum recorded). */ import { Command } from 'commander'; export declare class SkillsCommand { create(): Command; } /** Kept for clarity in the command help (the source-kind vocabulary). */ export declare const SKILL_SOURCE_KINDS: readonly ["github-raw", "local-dir", "browse-sh", "git-repo"]; //# sourceMappingURL=skills.d.ts.map