docs/antigravity.md
For Google individual, AI Pro, and Ultra accounts blocked by the June 2026 Gemini CLI OAuth
shutdown, Antigravity is the replacement path for Gemini quota tracking in CodexBar. Launch
the Antigravity app or run agy, sign in, then refresh. See docs/gemini.md for the Gemini
provider migration notes. CodexBar offers the handoff only after an observed Google migration
signal and never enables or falls back to Antigravity automatically.
To use the agy CLI source without keeping the desktop app open, install the CLI first
(brew install --cask antigravity-cli; use ANTIGRAVITY_CLI_PATH when it is not on PATH), then
run agy once and sign in. CodexBar keeps the signed-in agy local HTTPS server alive briefly
after each refresh and stops it when idle, or reuses a signed-in agy you already have running
without taking ownership of that process.
Antigravity supports four usage data sources:
language_server (preferred when the app is open).agy CLI's embedded HTTPS localhost server (preferred over the IDE because it exposes richer quota data).language_server (used after agy CLI because current IDE local payloads only expose session/model quota data).The app-local language_server exists only while Antigravity.app is running. With the app closed,
CodexBar relies on the agy CLI HTTPS source or the Google OAuth fallback. Without a signed-in
agy, the OAuth fallback can only prove model availability, so the menu shows an all-100%
placeholder instead of real quota numbers. A freshly spawned agy needs a few seconds for macOS
keyring authentication before its quota endpoints answer, so the first refresh after a cold start
can take a few extra seconds while CodexBar waits for readiness; later refreshes reuse the warmed session.
The local and CLI paths both prefer Antigravity's internal RetrieveUserQuotaSummary quota payload and may fall back to
GetUserStatus, then GetCommandModelConfigs; CodexBar never scrapes the desktop UI or the agy TUI.
As of Antigravity 2.x, the Antigravity app and agy CLI payloads can be richer than Google OAuth and IDE payloads.
RetrieveUserQuotaSummary exposes the same two groups shown by Antigravity's Model Quota UI:
Gemini Models: weekly limit and five-hour limit.Claude and GPT models: weekly limit and five-hour limit.Older local payloads may only include raw Claude, GPT-OSS, Gemini tiers, account plan, and session reset timestamps.
Current Antigravity IDE local endpoints return GetUserStatus, GetAvailableModels, and GetCascadeModelConfigData
with five-hour/session reset data, but not the app/CLI RetrieveUserQuotaSummary weekly/session grouping. OAuth
payloads can be less complete and may only prove model availability. Treat auto as the authoritative user-facing mode:
it accepts the first account-matching source in Antigravity app -> agy CLI -> Antigravity IDE order, and adds OAuth
when CodexBar has a selected/injected Google account or an existing shared credentials file. An all-100%
fetchAvailableModels payload is only accepted after retrieveUserQuota echoes bucket fractions; this can be an
availability-style fallback rather than the full Antigravity quota summary.
When OAuth identifies the account but quota endpoints deny access, CodexBar shows Limits not available instead of an
empty quota card.
Antigravity.app or overridden with ANTIGRAVITY_OAUTH_CLIENT_ID and ANTIGRAVITY_OAUTH_CLIENT_SECRET.~/.codexbar/antigravity/oauth_creds.json and upserts a token-account entry for the Google account.AntigravityOAuthCredentials and is injected into remote fetches through ANTIGRAVITY_OAUTH_CREDENTIALS_JSON.auto mode the ambient Antigravity app, agy CLI, and IDE probes still run first, but a snapshot whose account
does not match the selected account is rejected so the pipeline falls through to the account-scoped OAuth fetch (see
AntigravitySelectedAccountGuard). If no account is selected/injected, auto includes OAuth only when the legacy
shared credentials file already exists. Explicit cli/oauth source modes stay authoritative and are not re-checked.~/.codexbar/antigravity/oauth_creds.json deletes that shared file,
so a removed CodexBar account does not silently continue refreshing through the legacy shared cache.Add Account...; switching between saved accounts scopes Google OAuth fetches.POST https://cloudcode-pa.googleapis.com/v1internal:loadCodeAssistPOST https://cloudcode-pa.googleapis.com/v1internal:onboardUserPOST https://cloudcode-pa.googleapis.com/v1internal:fetchAvailableModelsPOST https://cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaPOST https://cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaSummary (available, but current observed OAuth
responses are model-bucket shaped rather than Antigravity 2.0's two quota groups)When the Antigravity 2.0 app is running:
Process detection
ps -ax -o pid=,command=.AntigravityStatusProbe(processScope: .appOnly)). It deliberately does not
attach to an IDE or agy CLI process: a lower-information IDE payload should not mask
agy's richer quota summary, and a stale or still-initializing agy can accept the
connection before it is ready. agy is owned exclusively by the CLI HTTPS source below,
which waits for real API readiness. The probe still classifies all kinds
(processInfo(scope: .ideAndCLI) is used by isRunning() for status reporting):
language_server, language_server_macos,
language_server_macos_arm, or language-server plus
Antigravity markers (--app_data_dir antigravity, an Antigravity app bundle path,
or a path containing /antigravity/); orAntigravity IDE.app/.../extensions/antigravity/bin/ with --app_data_dir antigravity-ide; orantigravity-cli / antigravity_cli path segment, or the
agy binary (path-anchored so unrelated arguments/binaries do not match).GetUserStatus
two-pool fallback.--csrf_token <token>. Requirement depends on the match kind:
missingCSRFToken
is reported (unchanged behavior).--csrf_token flag and requires none.--extension_server_port <port> (HTTP fallback; app/IDE only).--extension_server_csrf_token <token> (preferred HTTP fallback token when present).Port discovery
lsof -nP -iTCP -sTCP:LISTEN -a -p <pid>.Connect port probe (HTTPS)
POST https://127.0.0.1:<port>/exa.language_server_pb.LanguageServerService/GetUnleashDataX-Codeium-Csrf-Token: <token>Connect-Protocol-Version: 1Quota fetch
POST https://127.0.0.1:<connectPort>/exa.language_server_pb.LanguageServerService/RetrieveUserQuotaSummaryPOST https://127.0.0.1:<connectPort>/exa.language_server_pb.LanguageServerService/GetUserStatusPOST https://127.0.0.1:<connectPort>/exa.language_server_pb.LanguageServerService/GetCommandModelConfigsextension_server_port.agy CLI HTTPS sourceWhen source mode is auto or cli and the desktop local probe fails, CodexBar resolves agy via:
ANTIGRAVITY_CLI_PATHPATH / login-shell path lookup~/.local/bin/agy/opt/homebrew/bin/agy/usr/local/bin/agyCodexBar launches agy in a PTY because the CLI exposes its quota server only while the interactive process is alive.
The implementation still does not scrape terminal output; it only keeps the process alive, drains discarded PTY
rendering, discovers listening ports with lsof, and probes the local HTTPS server:
POST https://127.0.0.1:<port>/exa.language_server_pb.LanguageServerService/RetrieveUserQuotaSummaryPOST https://127.0.0.1:<port>/exa.language_server_pb.LanguageServerService/GetUserStatusPOST https://127.0.0.1:<port>/exa.language_server_pb.LanguageServerService/GetCommandModelConfigsThe fallback can return quota without the account email or plan fields from GetUserStatus.
Differences from the desktop local probe:
X-Codeium-Csrf-Token.agy, both menu-bar refreshes and one-shot CLI invocations spend at most two seconds looking for
an already-running, same-user agy at the selected binary path and reuse its tokenless local HTTPS endpoint when it
returns parseable usage for the selected account. CodexBar-owned pids are excluded from external reuse so managed
probe/idle lifecycle accounting stays balanced; if no eligible external server answers, CodexBar uses its managed
session as before.agy
processes can bind a port before the quota service is initialized.agy is kept alive briefly after a refresh, then stopped on idle. CLI runtime
tears it down immediately after the one-shot fetch.agy
process on the next launch. It never blind-kills a user-launched agy.When the Antigravity 2.0 app and agy CLI are unavailable, CodexBar probes Antigravity IDE language servers with
AntigravityStatusProbe(processScope: .ideOnly). Current observed IDE payloads return model-level/session quota data
through GetUserStatus, GetAvailableModels, and GetCascadeModelConfigData; RetrieveUserQuotaSummary returns 404
from the IDE local server. This means the IDE fallback can show session bars, but should not be expected to provide the
weekly limit shown by Antigravity 2.0.
When source mode is auto, OAuth is used after app, agy CLI, and IDE paths fail if CodexBar has a selected/injected
Google account or an existing shared credentials file. The app, agy CLI, and IDE probes still run first, but in
auto mode their snapshots are accepted only when the reported account matches the selected account; otherwise the
pipeline falls through to this account-scoped OAuth fetch. When source mode is oauth, only OAuth is used and the
shared OAuth file can still be used as a fallback credential source.
ideName: antigravityextensionName: antigravitylocale: enideVersion: unknownresponse.groups[].displayNameresponse.groups[].buckets[].bucketIdresponse.groups[].buckets[].displayNameresponse.groups[].buckets[].remaining.remainingFractionresponse.groups[].buckets[].descriptionuserStatus.cascadeModelConfigData.clientModelConfigs[].quotaInfo.remainingFractionuserStatus.cascadeModelConfigData.clientModelConfigs[].quotaInfo.resetTimeGemini Session, Gemini Weekly, Claude + GPT Session, and Claude + GPT Weekly as named windows.windowMinutes from the bucket ID/display name.Gemini groups Gemini Pro and Gemini Flash text models.Claude + GPT groups Claude text models and GPT/GPT-OSS text models.resetTime parsing:
accountEmail and planName only from GetUserStatus.AntigravityGemini (primary), Claude + GPT (secondary)remainingFraction. Those windows stay
in extraRateWindows for reset context and are marked with usageKnown: false; clients should not render their
usedPercent as a real exhausted quota.idle instead. The codexbar serve web UI skips those rows, so the web card matches the menu without repeating
the family rule in JavaScript. See docs/dashboard-api.md.Local history reads only the existing recognized roots: ~/.gemini/antigravity-cli/conversations/*.db,
~/.gemini/antigravity/*.db, and ~/.gemini/antigravity/conversations/*.db. GEMINI_CLI_HOME replaces
~/.gemini. When SQLite discovery completes without any databases, the reader can use
~/.config/tokscale/antigravity-cache/sessions/*.jsonl; TOKSCALE_CONFIG_DIR replaces ~/.config/tokscale.
Both overrides and HOME come from the same refresh environment. Declared roots and session files may be symlinks;
discovery still visits only the immediate entries of the recognized directories. This is machine-local token history,
not account attribution or dollar pricing. No language server, provider CLI, browser, credentials, or network is used.
SQLite is authoritative when present. An unreadable root, malformed database, unsupported event layout, or exhausted budget never authorizes replacement by a smaller/stale JSONL cache. Complete empty databases and complete histories outside the selected window establish empty history; absent sources and partial scans do not. Partial reports remain diagnostic only: the fetcher withholds their rows. Regular refresh applies its existing failure/retention policy, and neither regular refresh nor the dashboard publishes unavailable results as confirmed zero. Failed dashboard attempts do not acknowledge successful incorporation of a refresh trigger. Overflowed aggregate totals remain unknown rather than becoming saturated or wrapping.
The schema evidence is Tokscale's pinned SQLite parser,
whose header records six databases and 140 turns. SQLite usage fields 1 + 2 are input, 5 is cache read,
9 is text output, and 10 is thinking output: text and thinking are separate counts. Historical model IDs are retained;
missing models stay unknown unless an unambiguous raw label maps to a model within the same session.
Conflicting mappings remain unresolved. Every repeated known protobuf envelope is validated and merged.
The supported database layout is an ordinary gen_metadata table with stored idx and data columns.
Extra ordinary columns and WITHOUT ROWID tables are supported; views, virtual tables, and generated/hidden columns
are rejected before querying payloads. Schema inspection and the payload scan share one read transaction.
Inspection uses sqlite_master and table_xinfo; SQLite builds without that pragma cannot establish coverage.
Supported SQLite event time is chatModel.#9.#4 containing protobuf seconds/nanos. Session creation, file modification,
and refresh time are never substitutes. The opaque agy 1.1.18 timestamp layout remains unsupported: the pinned parser
explicitly labels its newer interpretation an inference. See the session-start misattribution report.
SQLite session identity is the original database filename stem, with gen_metadata.idx identifying rows. Copies
retaining that session name deduplicate across recognized roots; ID-less rows at different indices remain distinct.
Response IDs deduplicate only within a session, after successful validation and aggregation. Conflicting copies mark
coverage partial. Arbitrarily renamed copies cannot be identified by this schema and are not supported as copies;
the reader never guesses identity from equal token payloads.
The separate JSONL producer
records sessionId, retry outputTokens as output, and thinkingOutputTokens as reasoning. These recorded buckets
do not establish whether output already includes thinking. JSONL with nonzero reasoning therefore remains unsupported
until that relationship is independently established; neither adding nor subtracting it is assumed. JSONL requires a session identity and a finite,
exact integer usage timestamp. Numeric lexemes are checked before Foundation decoding can round them: counters must
be exact nonnegative integers through Int.max, and timestamps must be positive integers through 253402300799999 ms.
Whole decimal/exponent equivalents and signed zero are accepted without floating-point conversion; fractional,
underflowing, overflowing, boolean, or quoted-number values are not. Top-level keys must be unique, including escaped
equivalents. Session metadata can supply a model, never a missing usage timestamp. The producer
prefers usage time but can fall back to session start, so its reported dates may be imprecise. The reader honors
explicit usage timestamps, including equality with session start: equality does not distinguish a legitimate first
generation from the producer's fallback. Identical session/line
copies deduplicate, while contradictory copies remain partial.
One cancellable job on CostUsageScanExecutor owns discovery, SQL, decoding, and fallback. Limits are 500 files,
10,000 directory entries, 10,000 rows per file, 50,000 rows overall, 16 MiB per record, 64 MiB per file,
128 MiB of attempted payload bytes overall, and a five-second cooperative scan deadline. Rejected rows consume the budget;
exactly 500 complete databases are accepted. Discovery is incremental and JSONL is read in bounded chunks.
Schema inspection accepts at most 128 catalogue entries and 64 columns per database (one additional row detects
truncation), with a cumulative 64 KiB allowance for inspected schema text and the same cooperative deadline/cancellation.
SQLite values are capped at 64 KiB during
inspection (or the smaller payload limit plus record overhead). SQLite then uses one streaming payload SELECT over the
validated ordinary table. A length-based conditional projection checks the remaining
byte budget before SQLite selects each BLOB, and a SQLite length limit also bounds intermediate values. Rejected
payload lengths still count as attempted work. Before copying, the selected BLOB's own byte count must match the declared
length. There is no view or sorting step that can buffer payloads ahead of accounting;
the reader buffers only validated typed events.
Database access uses ordinary SQLITE_OPEN_READONLY, never immutable=1 or an unsafe file copy. This does not mutate
database records, but SQLite's normal WAL access may create sidecars and coordinate through SHM read marks.
It is not a guarantee of literal SHM-byte preservation. A platform SQLite build that cannot open a WAL database
without sidecars reports unavailable rather than bypassing normal coordination. Temporary fixture tests compare DB/WAL contents without
writer activity, coordinate subsequent writer activity against one read snapshot, and verify reader cleanup after
cancellation. The fixtures are synthetic and source-linked, not private captures or proof of live installation/UI behavior.
lsof for local/CLI port detection.Sources/CodexBarCore/Providers/Antigravity/AntigravityCLISession.swiftSources/CodexBarCore/Providers/Antigravity/AntigravityProviderDescriptor.swiftSources/CodexBarCore/Providers/Antigravity/AntigravityStatusProbe.swiftSources/CodexBar/Providers/Antigravity/AntigravityProviderImplementation.swift