-
Notifications
You must be signed in to change notification settings - Fork 3
docs: promote independent review headline #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ | |
| <section class="hero"> | ||
| <div class="copy-card"> | ||
| <p class="eyebrow">Local-first AI review for serious codebases</p> | ||
| <h1>AI code review that actually understands your codebase.</h1> | ||
| <h1>Your coding agent should not grade its own homework.</h1> | ||
| <p class="lede"> | ||
| Argus gives you an independent reviewer with structural maps, semantic | ||
| search, git history, and diff-aware analysis, so the model reviewing the | ||
|
|
@@ -90,7 +90,7 @@ <h1>AI code review that actually understands your codebase.</h1> | |
| <section id="why" class="section"> | ||
| <div class="section-head"> | ||
| <p class="eyebrow">Why Argus</p> | ||
| <h2>Your coding agent should not grade its own homework.</h2> | ||
| <h2>AI code review that actually understands your codebase.</h2> | ||
| <p> | ||
| Most AI review workflows reuse the same shallow context that produced the | ||
| patch. Argus takes the opposite stance: review should be independent, | ||
|
|
@@ -175,9 +175,9 @@ <h2>Start with the package manager you already trust.</h2> | |
| <div class="install-grid"> | ||
| <article class="install-card"> | ||
| <h3>npm</h3> | ||
| <pre><code>npx argus-ai init | ||
| <pre><code>npx argus init | ||
| export GEMINI_API_KEY=your-key | ||
| git diff HEAD~1 | npx argus-ai review --repo .</code></pre> | ||
| git diff HEAD~1 | npx argus review --repo .</code></pre> | ||
|
Comment on lines
+178
to
+180
|
||
| </article> | ||
| <article class="install-card"> | ||
| <h3>cargo</h3> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The npm install snippet now calls
npx argus ..., but this repo publishes the package asargus-ai(npm/package.jsonline 2) and only mapsargusas its bin (line 13). npm exec/npx treats the first positional token as the package spec when--packageis not provided (npm exec -- <pkg>[@<version>] ...), so on a clean environmentnpx argusresolves packageargusrather thanargus-ai; this can make the documented install path run the wrong package or fail.Useful? React with 👍 / 👎.