ANTIGRAVITY LABJP
TAG

AGENTS

128 articles
Back to all tags
Related:
antigravity71Antigravity37production24automation15troubleshooting11orchestration10workflow7reliability6architecture6multi-agent6Python5parallel-execution5
Agents/2026-06-12Intermediate

Running Gemini's Managed Agents API: Where Cloud Execution Ends and My Local Agents Begin

A hands-on record of launching Gemini's Managed Agents (public preview) from Python — polling, artifact retrieval, and a cost guard — plus five criteria I use to decide what stays on my local CLI agents.

Agents/2026-06-12Intermediate

Size Antigravity Agent Tasks by What You Can Review — a Practical Cure for Rework

A one-line request cost me forty minutes of agent time and a Monday rewrite. Here is the sizing rule I switched to — tasks I can review in fifteen minutes — with the three actual briefs, acceptance criteria phrasing, and file-boundary rules for worktree parallelism.

Agents/2026-06-02Intermediate

Teaching Antigravity's Agent to Keep Diffs Small: How a Month Changed the Way I Review

When an agent hands you one giant diff, a solo developer's review can't keep up. After a month of asking Antigravity to break work into small steps first, here's how the experience of reviewing changed — with the exact instructions I now use.

Agents/2026-06-02Advanced

Rehearsing an Agent's Actions Before They Touch Production — Designing a Zero-Side-Effect Dry-Run Layer

Some accidents survive shadow mode and canaries: the very first time an agent touches an external API. This is the design and TypeScript implementation of a zero-side-effect dry-run layer you can bolt onto Antigravity's parallel agents, with the real numbers from running six sites autonomously.

Agents/2026-05-30Beginner

When the Antigravity Agent Says 'command not found' for node or python: Causes and Fixes

It works in your own terminal, but the Antigravity agent hits command not found. Starting from how PATH inheritance works, here are concrete fixes for nvm, pyenv, Homebrew, and WSL setups—plus how to confirm the fix actually took.

Agents/2026-05-29Advanced

Designing a Negative Spec for Antigravity Agents — The Forbidden-Territory List I Use Across 50M-Download Apps

Hand your Antigravity agents a list of things they must never touch — not just what they should do. Here is the FORBIDDEN.md template, subagent bootstrap, and reinjection script I run across 6 indie apps and 50M downloads.

Agents/2026-05-29Advanced

Supervising Long-Running Antigravity Agents — Watchdog and Tiered Recovery

Eight weeks of running AdMob revenue optimization on Antigravity background agents revealed three quiet failure modes. Here is the watchdog plus tiered recovery design I landed on.

Agents/2026-05-27Advanced

Orchestrating Six iOS App Updates in Parallel with Antigravity's Main and Sub Agents

Running six iOS app updates in parallel — new resolutions, Firebase SPM migration, StoreKit 2, and ATT ordering — with Antigravity's Main + 6 Sub agents. The notes on what to parallelize and what to keep serial.

Agents/2026-05-27Intermediate

Running 50+ AdMob Mediation Groups With Agents — What I Hand Over and What I Keep

Two wallpaper apps on iOS and Android (50M+ downloads in total) put me past 50 AdMob mediation groups. After a month of pushing parts of the workflow onto an agent, here's where it pays off, where I refused to hand over the steering wheel, and the operating templates I now use.

Agents/2026-05-27Advanced

Record & Replay for Antigravity Agents — A Production Pattern to Reproduce Failures in 3 Minutes

How to deterministically replay a failed Antigravity Agent run offline, drawn from a month of running it across four production sites. Covers boundary recording, R2 + KV storage costs, PII masking, and a working TypeScript harness.

Agents/2026-05-26Intermediate

Why Antigravity's Browser Sub-Agent Reads SPAs as Empty Pages — and Three Wait Strategies That Stuck for Me

When you hand an SPA dashboard to Antigravity's Browser Sub-Agent, get_page_text often returns before the real content is rendered, and the agent reports an empty page. Here is how I diagnose the symptom and the three wait strategies that have stabilized my routine.

Agents/2026-05-26Advanced

Antigravity Multi-Agent State Tiers — A Three-Layer Design with Ephemeral, Journal, and Canonical

Before your Antigravity Background Agents and Sub-agents start mixing up their memory, split agent state into three lifetimes — ephemeral, journal, canonical — and map each to the right Cloudflare store. Includes the write-back boundary rules I rely on across a 12-year wallpaper-app portfolio.