AgentsSetupCommand constructor
AgentsSetupCommand()
Constructs an AgentsSetupCommand and configures command options.
Implementation
AgentsSetupCommand() {
argParser.addFlag(
'all',
abbr: 'a',
help:
'Configure all available AI agents without showing selection prompt.',
negatable: false,
);
argParser.addMultiOption(
'agent',
abbr: 'g',
help: 'Specify agent(s) to configure.',
allowed: [
'cursor',
'claude',
'copilot',
'github',
'gemini',
'antigravity'
],
);
}