antigravity-agent-manager
Configure and orchestrate parallel agents using the standalone Antigravity 2.0 Agent Manager and Antigravity IDE.
Install / Use
npx skills add sickn33/agentic-awesome-skills --skill antigravity-agent-managerInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Our assessment of antigravity-agent-manager
antigravity-agent-manager scores 91/100 on our quality scale, 317th of 1,947 Development & Engineering skills we index (top 17%).
Its SKILL.md is 5.3 KB long, well organised into 17 sections with 3 code examples: a solid amount of guidance for an agent.
With 46,875 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated yesterday, so antigravity-agent-manager is actively maintained.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.
AI review by kimi-k2.7-code on 2026-09-26. Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
antigravity-agent-manager compared with similar skills
All 4 of these similar skills score higher than antigravity-agent-manager; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| antigravity-agent-manager (this skill)by sickn33 | 91 | 46.9k | 1d ago | SKILL.md |
| ai-job-searchby MadsLorentzen | 100 | 44.0k | 4d ago | CLAUDE.md |
| claude-howtoby luongnv89 | 100 | 41.7k | today | CLAUDE.md |
| algorithmic-artby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 3d ago | SKILL.md |
Frequently asked questions
- How do I install antigravity-agent-manager?
- Run
npx skills add sickn33/agentic-awesome-skills --skill antigravity-agent-manager. The install tabs above show the steps for each supported agent. - Which AI agents does antigravity-agent-manager work with?
- It is written for Gemini CLI, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is antigravity-agent-manager safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It is MIT-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is antigravity-agent-manager still maintained?
- The repository was last updated yesterday, so antigravity-agent-manager is actively maintained.
Skill content
View source on GitHubname: antigravity-agent-manager description: "Configure and orchestrate parallel agents using the standalone Antigravity 2.0 Agent Manager and Antigravity IDE." category: general risk: critical source: self source_type: self date_added: "2026-06-04" author: community tags: [agent-manager, orchestration, multi-agent, setup] tools: [antigravity, gemini]
Antigravity Agent Manager
Overview
A playbook for orchestrating multi-agent systems using the standalone Antigravity 2.0 Agent Manager (white icon) in parallel with the Antigravity IDE (black icon).
Starting with version 2.0, Google decoupled the Agent Manager from the main IDE interface, removing the "Open Agent Manager" button. This skill outlines how to install, configure, and operate the two environments side-by-side to direct multiple AI agents on front-end and back-end projects simultaneously.
When to Use This Skill
- Use when you need to coordinate multiple front-end, back-end, or QA agents working on the same codebase simultaneously.
- Use when setting up the dual-window workspace (Antigravity IDE + Antigravity 2.0 Agent Manager).
- Use to resolve conflicts or obsolete tutorial steps that mention the integrated "Open Agent Manager" button.
How It Works
Step 1: Parallel Installation
- Keep your current Antigravity IDE: Do not uninstall the classic IDE (black icon).
- Download Antigravity 2.0: Fetch the standalone Agent Manager application from the official Antigravity downloads page.
- Install: Run the installer. It will install alongside your existing IDE without overwriting it. You should now have both:
- Antigravity IDE (Black Icon) — Your code editor and manual development workspace.
- Antigravity 2.0 (White Icon) — Your multi-agent orchestrator dashboard.
Step 2: Dual-Workspace Setup
- Open both the Antigravity IDE and Antigravity 2.0 applications.
- Load the same project directory (e.g.,
C:/Users/erwinpzocikk/Dev/GroupProjects/intIntercatedraAdmin) in both apps. - In the Agent Manager (white icon), configure your Agent pool. Assign specialized roles (e.g.,
frontend-agent,backend-agent,qa-validator).
Step 3: Coordinating Agent Execution
- In the Agent Manager, define the task scopes. To prevent directory conflicts and race conditions:
- Assign the
backend-agentto the server directory (e.g.,/serveror/api). - Assign the
frontend-agentto the frontend directory (e.g.,/clientor/src).
- Assign the
- Run the agents in parallel.
- Use the Antigravity IDE (black icon) to monitor file changes in real-time, review diffs, and perform manual tweaks.
Examples
Example 1: Defining Independent Scopes in Multi-Agent Projects
When configuring the Agent Manager dashboard, specify the target files or directories in the prompts to keep agents from colliding:
Backend Agent Task Prompt:
Role: Backend Developer Agent
Workspace Target: /server
Task: Add a new POST /api/v1/students endpoint in server/routes/students.js and update database/models/student.js. Do not edit files outside the /server directory.
Frontend Agent Task Prompt:
Role: Frontend UI Agent
Workspace Target: /client
Task: Build the student registration form under client/components/StudentForm.jsx. Consume the /api/v1/students endpoint. Do not edit files outside the /client directory.
Example 2: Synchronizing Changes via Git
Since agents write code in parallel, sync their work using git in your IDE terminal:
# In the Antigravity IDE terminal, check the changes written by the agents
git status
# Review diffs before committing
git diff
# Commit stable checkpoints so both agents stay in sync with main branch
git add .
git commit -m "feat: synchronize parallel front-end and back-end agent changes"
Best Practices
- ✅ Do: Run both applications simultaneously side-by-side.
- ✅ Do: Enforce strict folder-level boundaries (scopes) for each agent in the Agent Manager.
- ✅ Do: Use git branches or commits to checkpoint progress before letting agents perform massive rewrites.
- ❌ Don't: Let multiple agents edit the same file at the same time, as it causes write conflicts and git merge conflicts.
- ❌ Don't: Search for the "Open Agent Manager" button in the black icon IDE; use the standalone white icon application instead.
Limitations
- This skill assumes you have local administrator permissions to install both applications on Windows/macOS.
- Coordination of file locks relies on standard IDE file-system watchers. If changes do not reflect, reload the IDE workspace (
Ctrl+Ror developer reload).
Common Pitfalls
- Problem: Agents overwrite each other's code or get stuck in write locks. Solution: Isolate their workspaces. If they must edit the same file, orchestrate them sequentially (e.g., run the backend agent first, commit its changes, then run the frontend agent).
- Problem: Agent Manager changes are not visible in the IDE. Solution: Verify that both applications are pointing to the exact same absolute file path. On Windows, watch out for mapped drives or symlinks.
Related Skills
@antigravity-workflows- To guide the agent through sequential multi-agent execution.@antigravity-skill-orchestrator- For task complexity assessment and general skill routing.@gitops-workflow- To coordinate commits and branch merges in team environments.
Related Skills
ai-job-search
44.0kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.7kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
