Summary
Three CLI flags are shown in cve-lite --help but are missing from the CLI reference docs page (website/docs/cli-reference.md):
--create-pr - After --fix, commit changes and open a GitHub pull request (requires gh)
--base <branch> - Base branch for --create-pr (default: main)
--debug - Write verbose runtime/network diagnostics to a timestamped log file
What to do
Add an entry for each of these three flags to website/docs/cli-reference.md, following the format already used for the other flags on that page. The authoritative descriptions are the help strings in src/cli/help.ts (see lines 45-50) - keep the wording consistent with those.
How to verify
cd website && npm run build succeeds with no broken-link errors.
- The three flags render in the CLI reference page.
Notes
Docs-only, no code changes. Good first issue - if you'd like to take it, comment here and go ahead.
Summary
Three CLI flags are shown in
cve-lite --helpbut are missing from the CLI reference docs page (website/docs/cli-reference.md):--create-pr- After--fix, commit changes and open a GitHub pull request (requiresgh)--base <branch>- Base branch for--create-pr(default:main)--debug- Write verbose runtime/network diagnostics to a timestamped log fileWhat to do
Add an entry for each of these three flags to
website/docs/cli-reference.md, following the format already used for the other flags on that page. The authoritative descriptions are the help strings insrc/cli/help.ts(see lines 45-50) - keep the wording consistent with those.How to verify
cd website && npm run buildsucceeds with no broken-link errors.Notes
Docs-only, no code changes. Good first issue - if you'd like to take it, comment here and go ahead.