fix: align npm package usage across docs and launcher#71
Conversation
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 18 minutes and 13 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ 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.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 6dd4802c15
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
npm/bin/argus
Outdated
| if (!fs.existsSync(binary)) { | ||
| console.error( | ||
| "argus binary not found. Run `npm install` or `npx argus-ai` to download it." | ||
| "argus binary not found. Run `npm install` or `npx argus` to download it." |
There was a problem hiding this comment.
Use the published npm package name in fallback guidance
The new recovery hint uses npx argus, but this package is published as argus-ai (npm/package.json), so the suggested command may resolve a different package (or fail) when users try to recover from a missing binary. I checked npx --help in this environment, which shows npm exec -- <pkg>[@<version>], i.e. the first token is treated as a package spec, not this package’s bin alias. In the missing-binary path this can block users from redownloading the correct artifact.
Useful? React with 👍 / 👎.
Restore one-off npm examples to use the actual package name (
npx argus-ai), keep installed binary usage asargus, and update the npm launcher missing-binary message to point atargus-ai.