ANTIGRAVITY LABJP
TAG

antigravity

810 articles
Back to all tags
Related:
agents114troubleshooting89automation65production59workflow46app-dev42ios35multi-agent34tips33editor29monetization26comparison26
Antigravity/2026-09-02Intermediate

Why Filename Search Misses Every Error String in Your Repo

Antigravity 2.12 improved partial filename search. Measuring name lookups against full-text search across a 2,088-file repository, the reading cost differed by 67x and error strings hit filenames only 4.5% of the time. Here is where the line actually falls.

Tips/2026-09-02Intermediate

The work-root guard I run before letting an agent near several repositories

When several repositories share one machine, an agent's working root is remarkably easy to mix up. Here is a small guard that compares resolved paths, tested against seven inputs.

App Dev/2026-08-31Advanced

Why I took the show-or-not decision away from every dialog

A paywall prompt, a review request and a rewarded-ad confirmation landed on the same frame. Here is how I moved the show-or-not decision out of each dialog into a single gate, how I rewrote the agent instructions as invariants, and how a CI check keeps it that way.

Tips/2026-08-30Intermediate

Before You Narrow the Page Range in Antigravity 2.11.0, Find Your Resolution Floor

I measured the new page range and MediaResolution options in view_file against a 240-page document. Resolution moved the numbers more than the page range did, and setting it too low drops words without raising a single error.

Agents/2026-08-30Advanced

What @ Includes Actually Shrink When You Split Agent Rule Files

I split my rule files using Antigravity 2.11.0's @path/to/file includes and measured the before and after across four real repositories. Maintenance surface dropped 62 percent. What a session actually reads dropped 1.7 percent. Here is why, plus the code that catches the silent failure mode.

App Dev/2026-08-29Advanced

A Green Build Is Not Proof That Your pbxproj Edit Was Correct

When an agent edits project.pbxproj, the build stays green while resources and script phases quietly fall out. Four structural checks and an audit script that finishes in 0.1 seconds on a 1,200-file project, drawn from running iOS apps in production.

AI Tools/2026-08-28Intermediate

Three things I had to fix before my status line could tell me what a session cost

Getting real session cost into a custom Antigravity CLI status line took three fixes: how the script reads stdin, how to tell whether your build sends a cost field, and how to keep a usage ledger that does not double-count.

Editor/2026-08-27Intermediate

Building a Verification Loop With Antigravity 2.10.0's Embedded Terminal

Antigravity 2.10.0 puts a terminal in the sidebar. Here is how I pinned my pre-merge checks down to three commands, scoped them to changed files only, and what the measured difference turned out to be.

Editor/2026-08-27Intermediate

Three Byte-Level Checks I Run Before an Agent Edits Files That Contain Japanese

When an agent edit swaps a single multi-byte character, git shows it as an ordinary one-line change. Here is how I fold invalid UTF-8, replacement characters, and normalization drift into one pass.

Antigravity/2026-08-26Intermediate

Redrawing Your Workspace Boundary Now That Review Mode Auto-Approves Reads

Antigravity CLI 1.1.20 made in-workspace reads auto-approved in review mode. Here is what I found when I actually counted what became readable across two real working trees.

Tips/2026-08-25Beginner

What I Line Up in PowerShell Before Letting Antigravity Agents Run Commands on Windows

Antigravity agents tend to write bash-shaped commands, and on Windows those do not survive the trip. I ran PowerShell 7.6.5 locally and measured four things: chaining operators, aliases, exit codes, and output encoding. Here is where Windows PowerShell 5.1 diverges, and what belongs in a rules file.

App Dev/2026-08-25Advanced

How Silently Ignored Config Keys Slip Through CI, and Where to Block Them

A key you added to a config file can be discarded without a single warning. Measured behavior across tsc, ESLint, wrangler, npm and vitest, plus a probe that verifies a setting is actually in effect and a wrapper that turns warnings into build failures.