Conversation
📝 WalkthroughWalkthroughThe README documentation was updated to include instructions for using a new CLI command: Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
README.md (1)
33-34: Consider documenting the--versionand-Vflags.The CLI parser also supports
--versionand-Vflags (as shown in src/index.ts:85-90), but these are not mentioned in the README. Adding them would improve discoverability for users who might try the conventional--versionflag.📝 Suggested documentation enhancement
# Print version -ergosum-proxy version +ergosum-proxy version # or --version, -V🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@README.md` around lines 33 - 34, The README's "Print version" section is missing documentation for the CLI's supported --version and -V flags; update the README (under the "Print version" heading) to mention that the CLI supports both --version and -V (alias) and show their expected output/usage (e.g., "ergosum-proxy --version" prints the current version), referencing the CLI parser's version flag behavior implemented in the index CLI code (the flags handled around the version parsing logic). Ensure the new text briefly states both flag names and an example invocation.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Nitpick comments:
In `@README.md`:
- Around line 33-34: The README's "Print version" section is missing
documentation for the CLI's supported --version and -V flags; update the README
(under the "Print version" heading) to mention that the CLI supports both
--version and -V (alias) and show their expected output/usage (e.g.,
"ergosum-proxy --version" prints the current version), referencing the CLI
parser's version flag behavior implemented in the index CLI code (the flags
handled around the version parsing logic). Ensure the new text briefly states
both flag names and an example invocation.
Adds
ergosum-proxy versionto the Use section of the README — the command was added in #1 but not documented.Summary by CodeRabbit
New Features
Documentation