Task summary
The batch command accepts -v, --verbose in src/index.ts, but the batch entry in SUBCOMMANDS inside src/commands/completion.ts omits it. Shell completion scripts therefore do not offer --verbose for batch.
Why this is a good first issue
This is a one-line fix in a single file. The existing completion test suite compares CLI --help output against generated scripts and should catch the mismatch once fixed.
Suggested files or areas
src/commands/completion.ts — add --verbose / -v to the batch subcommand options
src/index.ts — reference for the flag definition
tests/completion-command.test.mjs — run tests to verify
Acceptance criteria
Extra context
The suggest subcommand already lists --verbose in SUBCOMMANDS; mirror that pattern for batch.
Task summary
The
batchcommand accepts-v, --verboseinsrc/index.ts, but thebatchentry inSUBCOMMANDSinsidesrc/commands/completion.tsomits it. Shell completion scripts therefore do not offer--verboseforbatch.Why this is a good first issue
This is a one-line fix in a single file. The existing completion test suite compares CLI
--helpoutput against generated scripts and should catch the mismatch once fixed.Suggested files or areas
src/commands/completion.ts— add--verbose/-vto thebatchsubcommand optionssrc/index.ts— reference for the flag definitiontests/completion-command.test.mjs— run tests to verifyAcceptance criteria
batchsubcommand options incompletion.tsinclude-v, --verbose--verboseforbatchnpm testpasses (especially completion tests)Extra context
The
suggestsubcommand already lists--verboseinSUBCOMMANDS; mirror that pattern forbatch.