import { Command } from "commander"; /** * Creates the `skaile integration` command group (agent integration / * workspace-plugin adapter). * * Manages the skaile workspace integration across coding agent backends * (Claude Code, OMP, Codex). Subcommands: `install`, `uninstall`, `enable`, * `disable`, `status`. All subcommands accept `--driver` to target a specific * backend or `all`. * * Renamed from `skaile plugin` — that name now belongs to the registry-plugin * commands (`@skaile/workspaces/plugin-registry`). The subcommand behaviour * here is unchanged. * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/integration#make-integration-command */ export declare function makeIntegrationCommand(): Command; //# sourceMappingURL=integration.d.ts.map