chore: add general usage message to --help message (#3500)

This commit is contained in:
Jack Wotherspoon 2025-07-07 21:13:31 -04:00 committed by GitHub
parent a4097ae6f9
commit ba58e077eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,11 @@ interface CliArgs {
async function parseArguments(): Promise<CliArgs> {
const argv = await yargs(hideBin(process.argv))
.scriptName('gemini')
.usage(
'$0 [options]',
'Gemini CLI - Launch an interactive CLI, use -p/--prompt for non-interactive mode',
)
.option('model', {
alias: 'm',
type: 'string',