Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Argus is a local-first AI code review platform for teams that want an independen
The short version is simple: your coding agent should not grade its own homework.

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

Live page: [merup.me/argus](https://merup.me/argus/)
Expand All @@ -29,13 +29,13 @@ Live page: [merup.me/argus](https://merup.me/argus/)

```bash
# 1. Install via npm
npx argus init # creates .argus.toml
npx argus-ai init # creates .argus.toml

# 2. Set your key (Gemini, Anthropic, or OpenAI)
export GEMINI_API_KEY="your-key"

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

## Install
Expand All @@ -50,7 +50,7 @@ brew install argus
### npm (Recommended)

```bash
npx argus --help
npx argus-ai --help
# or
npm install -g argus-ai
```
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
argus-ai review \
argus review \
--diff origin/${{ github.base_ref }}..HEAD \
--pr ${{ github.repository }}#${{ github.event.pull_request.number }} \
--post-comments \
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 init
<pre><code>npx argus-ai init
export GEMINI_API_KEY=your-key
git diff HEAD~1 | npx argus review --repo .</code></pre>
git diff HEAD~1 | npx argus-ai review --repo .</code></pre>
</article>
<article class="install-card">
<h3>cargo</h3>
Expand Down
2 changes: 1 addition & 1 deletion npm/bin/argus
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (process.platform === "win32") {

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 -g argus-ai` or `npx argus-ai` to download it."
);
process.exit(1);
}
Expand Down
Loading