/** * `skaile plugin` — manage registry plugins (drivers / connectors / deploy * targets) declared via `plugins:` in `skaile.yaml`. * * Not to be confused with `skaile integration` (the coding-agent adapter, * formerly `skaile plugin`). This group edits the `plugins:` list, reconciles * the project-local plugin store, and lists what each declared plugin * contributes to `pluginRegistry`. * * skaile plugin install [--project-dir

] * skaile plugin remove [--project-dir

] * skaile plugin list [--project-dir

] */ import { Command } from "commander"; /** * Creates the `skaile plugin` command group (registry plugins). * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/plugin#make-plugin-command */ export declare function makePluginCommand(): Command; //# sourceMappingURL=plugin-registry-cmd.d.ts.map