ANTIGRAVITY LABJP
TAG

agents

167 articles
Back to all tags
Related:
antigravity89Antigravity54production25automation23troubleshooting13workflow12orchestration10operations8reliability8architecture6multi-agent6app-dev5
App Dev/2026-09-10Beginner

When the iOS 27 Date Landed, the First File I Grepped Was AGENTS.md

iOS 27 and iPadOS 27 ship on September 14. Old version numbers linger in your source, but also in the files only your agent reads. Here is a script that counts both zones, plus the one line keyword search will never find.

Agents/2026-09-08Intermediate

Before I accept what /boost says it verified, I count what its throwaway worktree never saw

Antigravity's /boost runs its tests inside an ephemeral isolated worktree. If your build reaches for files git never tracked, that verification passed on a different tree than yours. Here is how I measure the gap first.

Agents/2026-09-06Advanced

With scheduled agents, I now look for runs that never happened before I look for failures

My run ledger showed a 100% success rate while the evening slot had not fired for two weeks. Here is the reconciliation I now run against an expected-fire table, with measured notes on cron expansion, exit codes, and how the ledger itself gets written.

Agents/2026-09-04Intermediate

Snapshot Your Agents' Effective Scope So You Notice the Day a Default Changes

Antigravity 1.1.25 made Markdown-defined custom agents inherit the surrounding skills, rules, and subagents by default. Here is the snapshot-and-diff routine I now use to check whether an agent I meant to keep narrow quietly got wider after an update.

App Dev/2026-09-04Advanced

The Five Days Between the iOS 27 RC and Release — I Check Init Order and Entitlement Restore Before Layout

A record of how I narrow the agent's search scope during the short window before an OS release — by launch path rather than by screen. Includes the audit script I run to catch consent and ads init ordering, entitlement restore gaps, and hardcoded size branches.

Editor/2026-09-03Intermediate

How much of Antigravity's generated commit message I actually keep

Where the Review pane's generated commit message stops being enough, and where I start writing. A prepare-commit-msg hook that adds a Why trailer, plus measured behaviour during rebase, cherry-pick and revert.

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.

Agents/2026-08-28Intermediate

Git Tracks the File, but Your Agent Can't See It. Here's Where It Drops Out

An agent's code search returned two files. git grep returned six. I traced the three paths that quietly drop tracked files out of search, measured them on a synthetic repo and a production one, and worked out how to spot the gap in a single line.

App Dev/2026-08-24Advanced

The Cleanup Step Removed the Working Directory, Not Its Contents — Making Unattended Destruction Fail Closed

An unattended cleanup step deleted the working directory itself instead of what was inside it. Here is why the mkdir -p that followed was not a safety net, and how a defensive-looking default value ended up selecting the destructive branch, with the actual verification output.

Agents/2026-08-21Intermediate

Why I Check Description Overlap Before Turning On inheritCustomizations

CLI 1.1.14 collapsed markdown agent inheritance into a single inheritCustomizations switch. Here is what happened when I actually inventoried the 47 skills in my workspace and decided the switch on description overlap rather than on context size.

AI Tools/2026-08-19Advanced

When Antigravity Swaps Its Default Model, Only the Jobs You Narrowed First Survive

Gemini 3.7 Flash is now the default model for Antigravity agents. The places you never configured are exactly the places that shift silently. Here is how to inventory your default-model exposure, then split your jobs into move-now and hold, scored by how much output freedom you left open.