Direct answer
Check Google Antigravity desktop limits in Antigravity itself: open the model selector and choose View Usage, or open Settings to see baseline quota by model. Confirm the Google AI plan and any AI-credit balance in your Google account. If you use the separate Antigravity Agent API, set a per-run budget with agent_config.max_total_tokens and read the result from interaction.usage.total_tokens.
These are two different products and two different meters. A desktop subscription quota is not an API token budget. whoburnedmore can detect that Antigravity desktop is installed, but it cannot decrypt its conversations, calculate desktop token totals, or import Agent API interactions.
Which Antigravity limit are you checking?
“Google Antigravity usage limits” can mean either remaining access in the desktop product or the token budget for one programmatic Agent API interaction. Start by identifying the surface; otherwise a valid number from one system can look like a contradiction in the other.
Antigravity desktop
Remaining quota
Google shows percentage remaining for the relevant model families and reset windows. Availability depends on the signed-in account, plan, model, current capacity, and the amount of work the agent performs.
- Authority
- Antigravity UI
- Unit shown
- Quota remaining
Antigravity Agent API
Tokens per interaction
The request can carry an explicit token ceiling. The response reports actual total tokens for that interaction. Project rate limits and provider billing still live in Google AI Studio or the Gemini API project—not in the desktop meter.
- Budget field
- max_total_tokens
- Actual field
- usage.total_tokens
How to check desktop usage accurately
Open View Usage
In the conversation model selector, choose View Usage. Read both the five-hour and weekly percentage that Antigravity displays for the model family you use.
Check Settings
Open Settings and review baseline quota across models. This is the useful cross-check when one family appears available and another does not.
Verify the account
Confirm which Google account and Google AI plan are active. If overages are enabled, review the account's AI-credit balance separately from baseline quota.
Trust the shown reset
Use Antigravity's displayed remaining percentage and reset window. Do not substitute a community prompt count or assume every task consumes equal quota.
Why there is no trustworthy universal prompt count
Google says baseline rate limits are correlated with work performed. Model choice, reasoning, context, tool use, and task duration can therefore make two prompts consume different amounts. Plan tiers also receive different quota treatment, and Google can adjust limits for capacity and service stability. A page that promises a fixed number of Antigravity prompts for every user would be fabricating precision that the official product does not provide.
How to budget an Agent API interaction
For programmatic Antigravity, put the ceiling in the request and persist the returned usage next to the interaction ID. Google defines max_total_tokens as input, output, and thinking tokens for that interaction; cached tokens do not count toward the cap. The check happens between agent steps, so it is a best-effort guardrail and actual usage can slightly exceed it.
const interaction = await client.interactions.create({
agent: "antigravity-preview-05-2026",
input: "Review this repository and return a risk report.",
agent_config: {
type: "antigravity",
max_total_tokens: 50_000,
},
environment: { type: "remote", sources },
});
console.log({
id: interaction.id,
status: interaction.status,
tokens: interaction.usage.total_tokens,
});Before
max_total_tokens
Your per-interaction safety budget.
After
usage.total_tokens
The interaction's reported token total.
At the cap
status: incomplete
Resume with a new interaction budget if needed.
Source-of-truth comparison
| Question | Authoritative source | What it measures | Do not use instead |
|---|---|---|---|
| Can I start more desktop work? | Model selector → View Usage; Settings | Remaining baseline quota and reset windows | Local token estimates or Agent API usage |
| Which plan and credits apply? | Signed-in Google account / Google One | Plan membership and available AI credits | A community plan comparison |
| How large may this API run become? | agent_config.max_total_tokens | Requested input + output + thinking budget | Desktop remaining percentage |
| How many tokens did this API run use? | interaction.usage.total_tokens | Reported tokens for that API interaction | whoburnedmore desktop detection |
| Is Antigravity installed locally? | npx whoburnedmore doctor | Presence of the desktop data directory | Any usage, quota, cost, or conversation count |
What whoburnedmore can—and cannot—show
Detection available
- • Detect that Antigravity's local application data directory exists.
- • Explain the limitation in a normal scan or with
npx whoburnedmore doctor. - • Track other supported coding agents whose local logs expose token records.
No Antigravity totals
- • No decryption or parsing of Antigravity desktop conversations.
- • No desktop token, cost, prompt, remaining-quota, or reset calculation.
- • No automatic import of Gemini Interactions API results or billing records.
Encrypted storage is a hard data boundary, not a temporary reporting delay. Seeing an install path proves only that the application is present. It does not reveal how many conversations ran, which models they used, or how much subscription quota remains.
Common mismatches, explained
The desktop percentage fell faster than expected
Quota tracks work performed, not a fixed prompt count. A long, tool-heavy task can consume more than a short request, and model families can have separate displays.
The API used more than max_total_tokens
Google describes the budget as best effort. The agent checks between steps, so the final total can slightly overshoot the requested ceiling.
The API total does not match the desktop meter
That is expected: API interactions belong to a Gemini API project and desktop access belongs to the signed-in Antigravity plan. Do not reconcile them as one ledger.
whoburnedmore found Antigravity but shows zero Antigravity tokens
Detection is working as designed. There is no readable local usage ledger to aggregate, and API interactions are not imported automatically.
Official sources and review notes
Reviewed August 28, 2026. Google can change plan treatment, available models, and limits; re-check the live native surfaces before making a purchase or capacity plan.
- Antigravity plans and baseline quotaPlan tiers, reset behavior, variable work-based limits, and AI-credit overages.
- Antigravity models and View UsageModel availability and the native five-hour and weekly usage display.
- Antigravity SettingsHow to open Settings and identify the active account and model configuration.
- Gemini API Antigravity AgentOfficial Interactions API budget and usage fields for programmatic runs.