antigravity-rescue

Forwards tasks to Google's Antigravity CLI for an independent second implementation or diagnosis pass.

3|Updated Jun 15, 2026
One-click install
npx skills add https://github.com/patrickserrano/lacquer --skill antigravity-rescue-patrickserrano
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: antigravity-rescue
Source: https://github.com/patrickserrano/lacquer/tree/main/core/skills/antigravity-rescue
Command: npx skills add https://github.com/patrickserrano/lacquer --skill antigravity-rescue-patrickserrano

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? When you're stuck on a recurring error, an approach that won't converge, or want a genuinely independent second opinion, this Skill hands the task to Google's Antigravity CLI (agy) — a different agent harness with its own orchestration and tool-execution layer — rather than just re-prompting the same session. ## Core Features & Use Cases - Subprocess forwarding: Sends your task verbatim to agy via a companion script and returns its output exactly as printed, with no added commentary. - Mode control: Choose --write (default, allows edits) or --read-only (diagnosis only), --fresh or --resume conversations, custom --model, and a --timeout (default 10m). - Workspace anchoring: Always passes --add-dir "$(pwd)" so agy operates on the real project instead of its internal scratch sandbox. - Use Case: A failing test suite has resisted three fix attempts. Forward the failure description with --read-only to get an independent diagnosis from a different agent harness before trying another approach. ## Quick Start Forward my current stuck task to the Antigravity CLI in read-only mode and return its diagnosis verbatim.

Frequently Asked Questions about antigravity-rescue

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get a second opinion on a coding task from another AI agent?▼

Run the companion script with your task text to forward it to Google's Antigravity CLI (agy), a separate agent harness. It returns agy's output verbatim, giving you an independent implementation or diagnosis pass outside the current session.

What is the Antigravity CLI and which models does it support?▼

Antigravity CLI (agy) is Google's agent harness that routes across multiple vendors. Running `agy models` lists Gemini, Claude, and GPT-OSS variants, so it is a multi-vendor router rather than a Gemini-only tool.

Is agy headless mode sandboxed or read-only safe?▼

No. Verified live on agy 1.0.6, headless print mode has no enforced permission boundary, with or without --dangerously-skip-permissions. The --read-only flag only prepends a prompt instruction, so treat any agy call as having unrestricted filesystem access.

Why must --add-dir be passed to agy?▼

Without --add-dir, agy silently operates in its internal scratch sandbox (~/.gemini/antigravity-cli/scratch) instead of the real project. The flag anchors ambiguous file operations to the current directory, though it is a workspace hint, not an access restriction.

When should I not use the Antigravity rescue approach?▼

Skip it for tasks you can finish quickly yourself — it is a rescue mechanism, not a first resort. It is also not relevant when already running under the Antigravity CLI itself, since there would be no independent harness involved.