Update npx and npm install commands to use @latest

Ensures users always get the latest version when running via npx or global install.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Badri Narayanan S
2026-01-08 17:13:48 +05:30
parent f34aa50ba4
commit 040713ed9a

View File

@@ -39,10 +39,10 @@ A proxy server that exposes an **Anthropic-compatible API** backed by **Antigrav
```bash
# Run directly with npx (no install needed)
npx antigravity-claude-proxy start
npx antigravity-claude-proxy@latest start
# Or install globally
npm install -g antigravity-claude-proxy
npm install -g antigravity-claude-proxy@latest
antigravity-claude-proxy start
```
@@ -78,7 +78,7 @@ Add one or more Google accounts for load balancing.
antigravity-claude-proxy accounts add
# If using npx
npx antigravity-claude-proxy accounts add
npx antigravity-claude-proxy@latest accounts add
# If cloned locally
npm run accounts:add
@@ -93,7 +93,7 @@ This opens your browser for Google OAuth. Sign in and authorize access. Repeat f
antigravity-claude-proxy accounts add --no-browser
# If using npx
npx antigravity-claude-proxy accounts add -- --no-browser
npx antigravity-claude-proxy@latest accounts add -- --no-browser
# If cloned locally
npm run accounts:add -- --no-browser
@@ -121,7 +121,7 @@ antigravity-claude-proxy accounts
antigravity-claude-proxy start
# If using npx
npx antigravity-claude-proxy start
npx antigravity-claude-proxy@latest start
# If cloned locally
npm start