docs: true-up README command reference with full flag inventory - #111
Merged
Conversation
- gro init: add missing --credentials-file and --no-browser flags - gro me: add Command Reference entry (--id, --extended, --json) - gro drive search: fix --name type (bool, not string); fix usage example - global: document --verbose / -v persistent flag - all bulk-op commands: add missing `string` type annotation on --query Closes #110
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Full audit of the CLI binary output (
gro --help/gro <cmd> --help) against the README Command Reference. Verified by building from source and walking every command.gro init: missing--credentials-fileand--no-browserfrom Command Reference (both flags exist in code and were documented in the Setup section, just not the reference)gro me: no Command Reference entry at all — added one with--id,--extended, and--jsongro drive search:--namewas documented asstringtype but is abool; fixed the usage example too (--name "budget"→"budget" --name)--verbose/-v: global persistent flag on the root command, not documented anywhere--queryon all bulk-op commands: missingstringtype annotation across 10 occurrences (mail, contacts, drive)Closes #110