antigravity-usage 0.2.3 → 0.2.5
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 +19 -15
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -78,10 +78,23 @@ By default, `antigravity-usage` runs in **Auto Mode**, seamlessly switching betw
|
|
|
78
78
|
|
|
79
79
|
## Features
|
|
80
80
|
|
|
81
|
+
### 🤖 Auto Wakeup (macOS & Linux)
|
|
82
|
+
Never waste quota again. Automatically wake up your AI models to maximize your daily limits.
|
|
83
|
+
- **Fully Automatic**: Runs in the background via native system scheduler - no need to keep terminal or Antigravity open
|
|
84
|
+
- **Native Cron Integration**: Schedule-based triggers (every N hours, daily, or custom cron)
|
|
85
|
+
- **Smart Quota-Reset Detection**: Zero-waste mode that detects when quota resets
|
|
86
|
+
- **Multi-Account Support**: Trigger all your accounts simultaneously
|
|
87
|
+
- **Built-in Safety**: Cooldown protection, retry logic, detailed history tracking
|
|
88
|
+
- **Platform Support**: Currently available on **macOS and Linux** (Windows support coming soon)
|
|
89
|
+
|
|
90
|
+
See the [Wakeup Command](#antigravity-usage-wakeup-) section for full details.
|
|
91
|
+
|
|
81
92
|
### 🔐 Multi-Account Management
|
|
82
|
-
|
|
83
|
-
- **
|
|
84
|
-
- **
|
|
93
|
+
Manage multiple Google accounts and compare quota across Personal, Work, and other accounts.
|
|
94
|
+
- **Check All Accounts**: Use `--all` flag to fetch and compare quota across all logged-in accounts simultaneously
|
|
95
|
+
- **Side-by-Side Comparison**: View quota usage and reset times for all accounts in a single table
|
|
96
|
+
- **Easy Switching**: Switch between accounts to use different credentials for API calls
|
|
97
|
+
- **Privacy Focused**: All tokens stored locally on your machine, never sent to third-party servers
|
|
85
98
|
|
|
86
99
|
### 🔌 Offline Capabilities
|
|
87
100
|
Designed for plane rides and spotty wifi.
|
|
@@ -96,16 +109,6 @@ To keep the CLI snappy and avoid hitting API rate limits:
|
|
|
96
109
|
antigravity-usage quota --refresh
|
|
97
110
|
```
|
|
98
111
|
|
|
99
|
-
### 🤖 Auto Wakeup (macOS & Linux)
|
|
100
|
-
Never waste quota again. Automatically wake up your AI models to maximize your daily limits.
|
|
101
|
-
- **Native Cron Integration**: Schedule-based triggers (every N hours, daily, or custom cron)
|
|
102
|
-
- **Smart Quota-Reset Detection**: Zero-waste mode that detects when quota resets
|
|
103
|
-
- **Multi-Account Support**: Trigger all your accounts simultaneously
|
|
104
|
-
- **Built-in Safety**: Cooldown protection, retry logic, detailed history tracking
|
|
105
|
-
- **Platform Support**: Currently available on **macOS and Linux** (Windows support coming soon)
|
|
106
|
-
|
|
107
|
-
See the [Wakeup Command](#antigravity-usage-wakeup-) section for full details.
|
|
108
|
-
|
|
109
112
|
### 📱 Responsive UI
|
|
110
113
|
Tables automatically adapt to your terminal size, switching between "Compact" and "Spacious" views to show you the most relevant data without wrapping.
|
|
111
114
|
|
|
@@ -167,9 +170,10 @@ Your Antigravity quota resets every ~5 hours, but if you don't use it, you lose
|
|
|
167
170
|
#### 🎯 Intelligent Model Selection
|
|
168
171
|
Zero configuration needed. Automatically wakes up:
|
|
169
172
|
- **`claude-sonnet-4-5`** → Triggers the entire Claude family
|
|
170
|
-
- **`gemini-3-flash`** → Triggers
|
|
173
|
+
- **`gemini-3-flash`** → Triggers Gemini flash quota group
|
|
174
|
+
- **`gemini-3-pro-low`** → Triggers Gemini pro quota group
|
|
171
175
|
|
|
172
|
-
|
|
176
|
+
All three models combined ensure comprehensive coverage and optimal quota utilization across all available AI models and quota groups.
|
|
173
177
|
|
|
174
178
|
#### ⚡️ Two Powerful Trigger Modes
|
|
175
179
|
|
package/dist/index.js
CHANGED
|
@@ -3144,7 +3144,7 @@ import Table4 from "cli-table3";
|
|
|
3144
3144
|
function getDefaultConfig() {
|
|
3145
3145
|
return {
|
|
3146
3146
|
enabled: false,
|
|
3147
|
-
selectedModels: ["claude-sonnet-4-5", "gemini-3-flash"],
|
|
3147
|
+
selectedModels: ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"],
|
|
3148
3148
|
selectedAccounts: void 0,
|
|
3149
3149
|
customPrompt: void 0,
|
|
3150
3150
|
maxOutputTokens: 1,
|
|
@@ -3214,7 +3214,7 @@ function getOrCreateConfig() {
|
|
|
3214
3214
|
const existing = loadWakeupConfig();
|
|
3215
3215
|
if (existing) {
|
|
3216
3216
|
if (!existing.selectedModels || existing.selectedModels.length === 0) {
|
|
3217
|
-
existing.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash"];
|
|
3217
|
+
existing.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"];
|
|
3218
3218
|
saveWakeupConfig(existing);
|
|
3219
3219
|
debug("wakeup-storage", "Migrated config to new default models");
|
|
3220
3220
|
}
|
|
@@ -3908,8 +3908,8 @@ async function configureWakeup() {
|
|
|
3908
3908
|
}]);
|
|
3909
3909
|
config.resetCooldownMinutes = resetCooldown;
|
|
3910
3910
|
}
|
|
3911
|
-
config.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash"];
|
|
3912
|
-
console.log("\n \u{1F4E6} Models: claude-sonnet-4-5, gemini-3-flash");
|
|
3911
|
+
config.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"];
|
|
3912
|
+
console.log("\n \u{1F4E6} Models: claude-sonnet-4-5, gemini-3-flash, gemini-3-pro-low");
|
|
3913
3913
|
console.log(" (Triggers both Claude and Gemini families)");
|
|
3914
3914
|
if (accounts.length > 1) {
|
|
3915
3915
|
const { selectedAccounts } = await inquirer.prompt([{
|