ANTIGRAVITY LABJP
TAG

antigravity

775 articles
Back to all tags
Related:
agents109troubleshooting87automation63production59workflow43app-dev41multi-agent34ios34tips33editor28monetization26comparison26
Agents/2026-07-15Advanced

The File Is Right There in ls, and Your Agent Still Can't Open It

The agent says the file does not exist. Your terminal says it does. After three days of blaming cloud sync, the answer turned out to be that one voiced consonant mark was never a single character. Detection script and a three-layer gate included.

App Dev/2026-07-14Advanced

Protecting Screenshot Tests for AdMob Screens from Ad Nondeterminism

Screens with ads turn red on every screenshot run, and eventually nobody reviews the diffs. Here is a design that seals off AdMob banner nondeterminism and leaves only real layout breaks in your checks, with Compose code and Antigravity-driven diff triage.

App Dev/2026-07-14Advanced

When the Deploy Was Green but Users Still Saw the Old Build: Field Notes on a Gate That Verifies Your Shipped Commit Reached the Edge

When a deploy reports success but production keeps serving the old build, a post-deploy gate that verifies your shipped commit actually reached the edge via a build stamp closes the gap. Field notes with real operational numbers.

AI Tools/2026-07-14Advanced

Routing Between Local Gemma and Cloud Gemini 3.5 Flash by How Easily You Can Verify the Output

When I split local and cloud work by whether it was sensitive, or by which was faster, my decisions wobbled every time. The axis that finally held was different: if the output is wrong, can I catch it cheaply and undo it cheaply? Here is a router that chooses a model from verifiability and recovery cost, with working code and a measurement ledger.

Agents/2026-07-14Advanced

I Changed One Line in AGENTS.md and Broke the Agent — Regression-Testing the Instructions Themselves

Every time you edit the instructions you hand an agent — AGENTS.md, skill text — some other task quietly breaks. Here is a regression harness whose subject is the instructions, not the code: fixed tasks, deterministic assertions, and a way to wire it into unattended runs.

Agents/2026-07-13Intermediate

Passing API Keys to Agents Safely: Runtime Env Injection and Log Redaction

How to hand secrets to an Antigravity agent without leaving them in your repo or your logs, using runtime environment injection and output masking.

App Dev/2026-07-13Intermediate

The Gate That Stops Visual Damage Before You Hand Bulk Image Optimization to an Agent

When an agent bulk re-encoded a few hundred wallpaper assets, a handful came back with dulled color. Size-reduction alone cannot catch that. Here is how to design a gate that stops bad conversions before merge using three axes — SSIM, ΔE, and file size — with a checker that runs on Pillow and scikit-image.

Integrations/2026-07-13Advanced

Pour Your Unattended Run Logs into SQLite and Count Failures Across Every Run

Running Antigravity CLI on an unattended schedule leaves a growing pile of JSON Lines logs. Instead of grepping files, I pour them into a tiny SQLite database and answer 'which step fails, and when' with a single query. Here is the ingest script, six diagnostic queries, and six weeks of real numbers.

Editor/2026-07-12Intermediate

Widening one panel made my agent reviews faster

A field note on turning two quiet additions in Antigravity v2.2.1 — Conversation Width and broader syntax highlighting — into a faster way to read the diffs your agents produce. Small display tweaks, but they changed how quickly I could review.

Agents/2026-07-12Advanced

What to Delegate to an Antigravity Agent and What to Keep by Hand, After Two Weeks

After two weeks of handing my daily solo-dev tasks to Antigravity agents, a clear line emerged between the work I was glad to delegate and the work I had to pull back. A retrospective with the operational log.

Editor/2026-07-12Intermediate

The Day My Own DSL Stayed Gray: Adding a Minimal TextMate Grammar to Antigravity

When a custom config file you use every day renders as flat gray text, misreads pile up. This walkthrough builds a minimal TextMate grammar and language-configuration so Antigravity highlights your own file type, with working code and the pitfalls that trip people up.

Agents/2026-07-12Advanced

The Scarier Permission Was Reach, Not Write: Locking an Agent's Outbound Traffic to an Allowlist

When I hand real work to an agent, the thing I guard most isn't file edits, it's where it connects. Here is an 80-line deny-by-default egress gate, plus what 21 nights of unattended runs revealed about the traffic I never saw.