docs(cli): surface --code-only in the extract usage and README (#2071)#2075
Open
HerenderKumar wants to merge 1 commit into
Open
docs(cli): surface --code-only in the extract usage and README (#2071)#2075HerenderKumar wants to merge 1 commit into
HerenderKumar wants to merge 1 commit into
Conversation
…ify-Labs#2071) The top-level `graphify --help` has listed --code-only since Graphify-Labs#1734, but the `graphify extract` usage string and the README never mentioned it. A user evaluating graphify on a "can this run with no network call" constraint sees the extract usage / README first and can conclude the flag doesn't exist. Add --code-only to the extract usage line, name it in the Privacy section and the command reference, and add a test asserting the usage advertises it.
safishamsi
added a commit
that referenced
this pull request
Jul 21, 2026
safishamsi
added a commit
that referenced
this pull request
Jul 21, 2026
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.
Fixes #2071.
--code-onlyhas been in the top-levelgraphify --helpsince #1734, but two other surfaces still never mention it:graphify extractusage string (printed on an empty/bad invocation) lists--no-cluster,--no-gitignore,--postgres,--cargo… but not--code-only.Someone evaluating graphify under a "can this run with no network call?" constraint reads the extract usage / README first, so they can reasonably conclude the flag doesn't exist — which is exactly what the reporter almost did before finding it by triggering the no-key error.
Changes
graphify/cli.py— add[--code-only]to the extract usage string.README.md— name--code-onlyin the Privacy section, and add it to the command reference.tests/test_extract_code_only_cli.py— newtest_extract_usage_advertises_code_onlyasserting the usage advertises the flag.Verification
tests/test_extract_code_only_cli.py— 9 passed (incl. the new test)tests/test_extract_cli.py— 25 passed