antigravity-claude-proxy 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +6 -6
- package/package.json +2 -2
package/bin/cli.js
CHANGED
|
@@ -17,12 +17,12 @@ const command = args[0];
|
|
|
17
17
|
|
|
18
18
|
function showHelp() {
|
|
19
19
|
console.log(`
|
|
20
|
-
antigravity-proxy v${packageJson.version}
|
|
20
|
+
antigravity-claude-proxy v${packageJson.version}
|
|
21
21
|
|
|
22
22
|
Proxy server for using Antigravity's Claude models with Claude Code CLI.
|
|
23
23
|
|
|
24
24
|
USAGE:
|
|
25
|
-
antigravity-proxy <command> [options]
|
|
25
|
+
antigravity-claude-proxy <command> [options]
|
|
26
26
|
|
|
27
27
|
COMMANDS:
|
|
28
28
|
start Start the proxy server (default port: 8080)
|
|
@@ -41,10 +41,10 @@ ENVIRONMENT:
|
|
|
41
41
|
PORT Server port (default: 8080)
|
|
42
42
|
|
|
43
43
|
EXAMPLES:
|
|
44
|
-
antigravity-proxy start
|
|
45
|
-
PORT=3000 antigravity-proxy start
|
|
46
|
-
antigravity-proxy accounts add
|
|
47
|
-
antigravity-proxy accounts list
|
|
44
|
+
antigravity-claude-proxy start
|
|
45
|
+
PORT=3000 antigravity-claude-proxy start
|
|
46
|
+
antigravity-claude-proxy accounts add
|
|
47
|
+
antigravity-claude-proxy accounts list
|
|
48
48
|
|
|
49
49
|
CONFIGURATION:
|
|
50
50
|
Claude Code CLI (~/.claude/settings.json):
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antigravity-claude-proxy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Proxy server to use Antigravity's Claude models with Claude Code CLI",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"antigravity-proxy": "
|
|
8
|
+
"antigravity-claude-proxy": "bin/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"src",
|