antigravity-usage 0.2.6 → 0.2.8
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/README.md +16 -2
- package/dist/index.js +236 -98
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,13 @@ Want to check quota for **multiple accounts** or when your IDE is closed?
|
|
|
49
49
|
antigravity-usage login
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
+
### 1a. Manual Login (Headless/SSH)
|
|
53
|
+
If you are on a headless server or cannot open a browser locally:
|
|
54
|
+
```bash
|
|
55
|
+
antigravity-usage login --manual
|
|
56
|
+
```
|
|
57
|
+
Follow the on-screen instructions to paste the authentication URL into your local browser and copy the result back.
|
|
58
|
+
|
|
52
59
|
### 2. Add more accounts
|
|
53
60
|
```bash
|
|
54
61
|
antigravity-usage accounts add
|
|
@@ -109,8 +116,14 @@ To keep the CLI snappy and avoid hitting API rate limits:
|
|
|
109
116
|
antigravity-usage quota --refresh
|
|
110
117
|
```
|
|
111
118
|
|
|
112
|
-
|
|
113
|
-
|
|
119
|
+
|
|
120
|
+
### 🎯 Focused Model View
|
|
121
|
+
By default, `antigravity-usage` hides "autocomplete" models (like `gemini-2.5-flash-002`) to reduce clutter, as these typically share quota with their main counterparts or are less relevant for tracking.
|
|
122
|
+
|
|
123
|
+
To see **ALL** available models, including autocomplete ones:
|
|
124
|
+
```bash
|
|
125
|
+
antigravity-usage quota --all-models
|
|
126
|
+
```
|
|
114
127
|
|
|
115
128
|
---
|
|
116
129
|
|
|
@@ -124,6 +137,7 @@ antigravity-usage # Auto-detect (Local -> Cloud)
|
|
|
124
137
|
antigravity-usage --all # Fetch ALL accounts
|
|
125
138
|
antigravity-usage --method local # Force local IDE connection
|
|
126
139
|
antigravity-usage --method google # Force google IDE connection
|
|
140
|
+
antigravity-usage --all-models # Show ALL models (including autocomplete)
|
|
127
141
|
antigravity-usage --json # Output JSON for scripts
|
|
128
142
|
antigravity-usage --version # Show version number
|
|
129
143
|
```
|