mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-20 18:14:29 -07:00
26 lines
742 B
TypeScript
26 lines
742 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright 2025 Google LLC
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
import type { CommandModule } from 'yargs';
|
||
|
|
import { migrateCommand } from './hooks/migrate.js';
|
||
|
|
import { initializeOutputListenersAndFlush } from '../gemini.js';
|
||
|
|
|
||
|
|
export const hooksCommand: CommandModule = {
|
||
|
|
command: 'hooks <command>',
|
||
|
|
aliases: ['hook'],
|
||
|
|
describe: 'Manage Gemini CLI hooks.',
|
||
|
|
builder: (yargs) =>
|
||
|
|
yargs
|
||
|
|
.middleware(() => initializeOutputListenersAndFlush())
|
||
|
|
.command(migrateCommand)
|
||
|
|
.demandCommand(1, 'You need at least one command before continuing.')
|
||
|
|
.version(false),
|
||
|
|
handler: () => {
|
||
|
|
// This handler is not called when a subcommand is provided.
|
||
|
|
// Yargs will show the help menu.
|
||
|
|
},
|
||
|
|
};
|