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

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',