ANTIGRAVITY LABJP
TAG

Antigravity

798 articles
Back to all tags
Related:
agents113troubleshooting89automation65production59workflow44app-dev42multi-agent34ios34tips33editor29monetization26comparison26
Tips/2026-07-18Advanced

When the JSDoc an AI Wrote Quietly Stopped Matching the Code: Field Notes on Measuring Documentation Drift

AI-generated JSDoc gets written once, looks authoritative, and is then trusted and left to rot. Field notes on hashing function signatures to detect staleness, tracking a drift rate, and fixing only the blocks that actually diverged.

App Dev/2026-07-18Advanced

After Compose-First: Choosing Which View Screens to Migrate, Ranked by Churn Instead of Count

Google has declared Android development Compose-first. Here is how I rank View-based screens for migration using git history rather than screen counts, with the scoring script I actually ran and the three places partial migration quietly duplicates state.

Editor/2026-07-17Advanced

One Space in a Path, and Nine Commands Reported Success While Counting the Wrong Place

A single space in a workspace name sends agent-written commands somewhere else, quietly. Measurements across eleven unquoted-path forms, and the entry-point script that closes the boundary in one cd.

Agents/2026-07-17Advanced

Three Quarters of My Reference Notes Never Reached the Agent: Measuring What head Cuts Away

I fed reference notes to a scheduled agent with cat and head, and the lines that mattered were quietly cut. Here is the measurement, and how I replaced a line count with a section-level contract.

Agents/2026-07-16Advanced

The More I Wrote in AGENTS.md, the Less Got Followed — Measuring Adherence and Cutting Rules

The rules in my AGENTS.md were being ignored — not from precedence conflicts or load failures, just plain ignored. Here is how I turned rules into checkable predicates, measured adherence over three weeks, and cut the file in half.

Editor/2026-07-16Intermediate

Three Ways to Hand 4,000 Lines of Logs to an Agent — Paste, .txt Attachment, or @ Reference

v2.3.0 added plain-text attachments, which means there are now three ways to hand a long log to an agent — and a new question about which one to pick. Here is how I trim, measure, and decide, with the scripts I actually run.

Agents/2026-07-16Advanced

When to Hand Your Agent the Next Instruction: Waiting, Interrupting, and Queuing, Measured

Antigravity v2.3.0 added message queuing and Send Now. I measured waiting, interrupting, and queuing against the same yardstick, found that 41% of queued instructions arrive stale, and cut rework from 22% to 9% with a twenty-line stamp.

Editor/2026-07-16Advanced

Your UI Is in Japanese. Your Commit Log Isn't.

Setting your editor's display language does nothing for the language your agents write into the repository. Here is what six weeks of unattended runs actually produced, how to pin output language per audience, and a gate that catches the drift mechanically.

Agents/2026-07-15Intermediate

When Your Agent Commits a .bak File: Why Fix-Tool Artifacts End Up in Git

Backup files like .bak and .orig slip into commits after an agent runs a --fix tool. Here are the reproduction conditions, the real root cause, and three fixes: narrowing the staged scope, wrapping the fixer, and adding a pre-commit extension gate.

App Dev/2026-07-15Advanced

Quarantining the Dependencies Your Agent Adds, Before They Install

When an agent adds a dependency overnight, nobody reviews the lifecycle scripts that run at install time. Here is how I turned the default off and built a quarantine score to let the safe ones through.

Integrations/2026-07-15Advanced

When an Unattended Run Finds Its Working Folder Owned by Someone Else

A schedule that had been green for weeks failed one morning because it could not write .git/config. The cause was ownership drift on a reused working folder. Here is how to tell apart the read-but-not-write trap, probe writability for real, and fall back to a folder you can always write.

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.