Skip to content

Conversation

Copy link

Copilot AI commented Jan 16, 2026

The CliArgs interface documentation in plugin.md showed listEnabled?: boolean while the actual implementation in src/cli.ts uses listEnabledPlugins: boolean.

Changes:

  • Updated plugin.md to use listEnabledPlugins: boolean to match the implementation
export interface CliArgs {
  command: "run" | "operator" | "plugin";
  // ... existing fields ...
  pluginSubcommand?: "enable" | "disable";
  listEnabledPlugins: boolean;  // was: listEnabled?: boolean
  marketplaceSubcommand?: "list" | "add" | "remove" | "update";
  pluginName?: string;
  marketplaceTarget?: string;
  updateAll?: boolean;
}

✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Update listEnabled to listEnabledPlugins to match actual implementation in src/cli.ts

Co-authored-by: scaryrawr <661373+scaryrawr@users.noreply.github.com>
Copilot AI changed the title [WIP] Update to address feedback on plugin marketplace commands Fix CliArgs interface documentation to match implementation Jan 16, 2026
Copilot AI requested a review from scaryrawr January 16, 2026 01:39
@scaryrawr scaryrawr closed this Jan 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants