ANTIGRAVITY LABJP
ARTICLES

All Articles

All (954) Antigravity Basics (143) Editor View (63) Agents & Manager (248) Integrations (126) App Development (216) AI Tools (63) Tips & Best Practices (95)
Agents & Manager/2026-06-12Advanced

Handing Dependency Updates to Antigravity Agents — Risk Tiers, Verification, and Rollback

How far can you trust Antigravity agents with dependency updates? A four-tier risk model that corrects semver optimism, worktree-isolated lots, a fixed verification script, and a rollback-first ledger — the operations design I settled on while maintaining multiple apps.

Agents & Manager/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.

App Development/2026-06-12Intermediate

Replacing a Decade-Old SKPaymentQueue with StoreKit 2 — Migrating 4 Wallpaper Apps with an Antigravity Agent

A field report on migrating SKPaymentQueue-based purchase code to StoreKit 2's Transaction.currentEntitlements across four wallpaper apps — what I delegated to an Antigravity agent, and the traps I only found on real devices.

AI Tools/2026-06-12Advanced

Cutting Down 'Plausible but Wrong' RAG Answers — A Retrieval Evaluation Harness for Gemma 4 and Antigravity

Replace gut feeling with recall@5, MRR and faithfulness scores — a 30-question golden dataset and a small Python harness for evaluating a local Gemma 4 RAG stack.

Agents & Manager/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.

Integrations/2026-06-09Advanced

Rebuilding Wallpaper Image Delivery Around Resolution Buckets — Letting an Antigravity Agent Own Conversion and Validation

Every new device resolution quietly makes a wallpaper app heavier. I stopped shipping one master image to every device and rebuilt delivery around resolution buckets, WebP/AVIF, and an edge redirect — then handed conversion and validation to an Antigravity agent. Real code and thresholds included.

Agents & Manager/2026-06-04Advanced

Scheduling an autonomous agent fleet to run 6 sites solo — a timetable that avoids collisions and spam flags

A real example of the autonomous-agent scheduling I built to run 6 sites and an app business in parallel, solo: off-peak distribution, a daily generation cap, and collision avoidance, drawn from the actual timetable and the reasoning behind it.

Agents & Manager/2026-06-03Advanced

Choosing the Right Granularity for an Agent's Tools — Bundle or Split?

Should you split an agent's tools finely or bundle them coarsely? A single decision rule, an intentionally asymmetric two-tier design for destructive actions, and real numbers from running six apps.

Antigravity Basics/2026-06-03Intermediate

Why Antigravity Agent Edits Fail With 'patch does not apply' and How to Fix It

Why Antigravity agent edits stall with 'patch does not apply' or 'hunk failed', and how to fix it. Focused on the race where the file changes after the agent reads it, with the settings that stop it from recurring.

Antigravity Basics/2026-06-03Intermediate

Two Months of Maintaining Four Wallpaper Apps with Antigravity and git worktree

A record of two months running Antigravity's agent alongside git worktree to maintain four wallpaper apps in parallel. How the branch-switching tax disappeared and the agent's work stopped bleeding together.

Agents & Manager/2026-06-03Advanced

Delegate the Undoable, Guard the Irreversible — Tiering Agent Autonomy by Reversibility

When you hand production work to an Antigravity agent, the thing that bites first isn't intelligence — it's whether the operation can be undone. Here is a design that sorts every operation into three reversibility tiers and routes each to auto-execution, checkpointed execution, or a human gate, with TypeScript implementations and real numbers from running six apps in parallel.

Agents & Manager/2026-06-02Advanced

Keeping Secrets Out of Your Antigravity Agent's Output: Layered Defenses for Logs, Diffs, and PR Bodies

The three paths through which background agents leak secrets, and how to defend commit diffs, execution logs, and PR bodies with layered protection, drawn from running six apps and measured false-positive rates.