mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-16 00:51:25 -07:00
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { type CommandModule } from 'yargs';
|
|
import { FatalConfigError, getErrorMessage } from '@google/gemini-cli-core';
|
|
import { enableExtension } from '../../config/extension.js';
|
|
import { SettingScope } from '../../config/settings.js';
|
|
|
|
interface EnableArgs {
|
|
name: string;
|
|
scope?: SettingScope;
|
|
}
|
|
|
|
export async function handleEnable(args: EnableArgs) {
|
|
try {
|
|
const scopes = args.scope
|
|
? [args.scope]
|
|
: [SettingScope.User, SettingScope.Workspace];
|
|
enableExtension(args.name, scopes);
|
|
if (args.scope) {
|
|
console.log(
|
|
`Extension "${args.name}" successfully enabled for scope "${args.scope}".`,
|
|
);
|
|
} else {
|
|
console.log(
|
|
`Extension "${args.name}" successfully enabled in all scopes.`,
|
|
);
|
|
}
|
|
} catch (error) {
|
|
throw new FatalConfigError(getErrorMessage(error));
|
|
}
|
|
}
|
|
|
|
export const enableCommand: CommandModule = {
|
|
command: 'enable [--scope] <name>',
|
|
describe: 'Enables an extension.',
|
|
builder: (yargs) =>
|
|
yargs
|
|
.positional('name', {
|
|
describe: 'The name of the extension to enable.',
|
|
type: 'string',
|
|
})
|
|
.option('scope', {
|
|
describe:
|
|
'The scope to enable the extenison in. If not set, will be enabled in all scopes.',
|
|
type: 'string',
|
|
choices: [SettingScope.User, SettingScope.Workspace],
|
|
})
|
|
.check((_argv) => true),
|
|
handler: async (argv) => {
|
|
await handleEnable({
|
|
name: argv['name'] as string,
|
|
scope: argv['scope'] as SettingScope,
|
|
});
|
|
},
|
|
};
|