From 040713ed9a9223cf84cdec875cda99462e07dc0b Mon Sep 17 00:00:00 2001 From: Badri Narayanan S Date: Thu, 8 Jan 2026 17:13:48 +0530 Subject: [PATCH] Update npx and npm install commands to use @latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 23f0700..f25217e 100644 --- a/README.md +++ b/README.md @@ -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