Skip to content

docs: fix argus doc command and font lint#68

Merged
Meru143 merged 1 commit into
mainfrom
codex/argus-doc-fixes
Apr 4, 2026
Merged

docs: fix argus doc command and font lint#68
Meru143 merged 1 commit into
mainfrom
codex/argus-doc-fixes

Conversation

@Meru143

@Meru143 Meru143 commented Apr 4, 2026

Copy link
Copy Markdown
Owner

Summary

  • remove the unnecessary quotes around the single-word Sora font family in docs/styles.css
  • update root README npm command examples to use the actual npm binary name, argus

Verification

  • rg found no remaining font-family: "Sora" or npx argus-ai in the touched files
  • git diff --check

Copilot AI review requested due to automatic review settings April 4, 2026 09:52
@coderabbitai

coderabbitai Bot commented Apr 4, 2026

Copy link
Copy Markdown

Warning

Rate limit exceeded

@Meru143 has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 2 minutes and 33 seconds before requesting another review.

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 2 minutes and 33 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

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 configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: addcc507-ae81-4da9-9a88-1d1fbaf32c35

📥 Commits

Reviewing files that changed from the base of the PR and between d3764ae and f9ba345.

📒 Files selected for processing (2)
  • README.md
  • docs/styles.css
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch codex/argus-doc-fixes

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: f9ba345724

ℹ️ 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".

Comment thread README.md

```bash
git diff HEAD~1 | npx argus-ai review --repo .
git diff HEAD~1 | npx argus review --repo .

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Invoke npx with the published package name

These examples now use npx argus, but this repo publishes the npm package as argus-ai (npm/package.json), so in a clean environment npx will try to resolve package argus instead of this project and the quick-start flow can fail or run the wrong tool. This specifically impacts first-time users following the README install/review commands without a prior global install.

Useful? React with 👍 / 👎.

@Meru143
Meru143 merged commit 8ef4ef0 into main Apr 4, 2026
6 checks passed
@Meru143
Meru143 deleted the codex/argus-doc-fixes branch April 4, 2026 09:54

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates documentation to align CLI usage examples and styling with current linting/conventions.

Changes:

  • Adjusts README command examples to use argus instead of argus-ai.
  • Removes quotes around the single-word Sora font family in docs/styles.css to satisfy font-family linting.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.

File Description
README.md Updates CLI command examples shown to users.
docs/styles.css Tweaks font-family formatting to avoid lint issues.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread README.md

```bash
git diff HEAD~1 | npx argus-ai review --repo .
git diff HEAD~1 | npx argus review --repo .

Copilot AI Apr 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

npx argus ... is likely incorrect here: the npm package is named argus-ai (it only exposes a bin named argus). With npx, the argument is treated as the package/command to resolve, so npx argus will try to run/install an argus npm package instead of argus-ai. Consider using npx argus-ai ... or npx -p argus-ai argus ... (or use argus ... after a global install).

Copilot uses AI. Check for mistakes.
Comment thread README.md
```bash
# 1. Install via npm
npx argus-ai init # creates .argus.toml
npx argus init # creates .argus.toml

Copilot AI Apr 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

npx argus init will not run the argus binary from this repo’s npm package (argus-ai); npx will try to resolve an argus package instead. Use npx argus-ai init or npx -p argus-ai argus init (or document npm i -g argus-ai followed by running argus init).

Copilot uses AI. Check for mistakes.
Comment thread README.md

# 3. Review your changes
git diff HEAD~1 | npx argus-ai review --repo .
git diff HEAD~1 | npx argus review --repo .

Copilot AI Apr 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as above: git diff ... | npx argus review will not reliably invoke this project’s CLI because the npm package name is argus-ai. Prefer git diff ... | npx argus-ai review ... or git diff ... | npx -p argus-ai argus review ... (or git diff ... | argus review ... after global install).

Copilot uses AI. Check for mistakes.
Comment thread README.md

```bash
npx argus-ai --help
npx argus --help

Copilot AI Apr 4, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

npx argus --help has the same resolution problem: the npm package is argus-ai, while argus is the installed binary name. Either keep npx argus-ai --help, or switch this section to npm install -g argus-ai followed by argus --help (or npx -p argus-ai argus --help).

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants