claude-antigravity-agents

作者 markfulton已验证

A Claude Code skill that delegates coding, review, analysis, and research jobs to Google Antigravity CLI (agy) sub-agents — save tokens, use a second model, work in parallel.

111
Stars
32
Forks
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/markfulton/claude-antigravity-agents

快速入门

使用 claude-antigravity-agents 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Claude Code Antigravity Agents

Turn Claude Code into an orchestrator — delegate heavy jobs to Google Antigravity sub-agents while it keeps building.

Claude Code Antigravity CLI Sub-agents Claude Skill Platform License

Created by Mark Fulton · Founder of the Vibe Coding is Life community (316k+ members)

Co-authored by Claude Fable 5


A single Claude Code skill — one markdown instruction file (SKILL.md) named antigravity-agents. Skills are capabilities Claude Code loads on demand. This one teaches it to hand off work to the Google Antigravity CLI (agy), an autonomous terminal coding agent powered by Gemini and other models.

With the skill loaded, Claude Code stops being a single worker and becomes an orchestrator: it writes a self-contained brief, launches an agy job in the background, keeps working on your task, then collects and verifies the result before trusting a line of it.

Contents

Why you'd want this

  • Save your tokens. Full-repo audits, big refactors, and research sweeps are expensive to run inside a Claude session. Offload them to Antigravity instead of burning your Claude context and subscription tokens on the grind work.
  • Broaden your model choice. Run a job on Gemini (or whatever Antigravity offers) for a genuinely independent second opinion — or just to put the right model on the right task.
  • Work in parallel. Fan out several sub-agent jobs at once while Claude Code stays responsive to you. More gets done per unit of wall-clock time.
Solo Claude Code sessionWith antigravity-agents
Long audits / refactorsRun inline, spending your contextHanded off to a background sub-agent
Second opinionSame model, same sessionAn independent model reviews the work
ThroughputOne task at a timeMultiple jobs run while Claude stays responsive
Your Claude tokensSpent on the heavy liftingSpent on orchestration and verification

How it works

Claude writes the brief, launches the job non-interactively (agy -p "<task>"), and immediately returns to your work. The sub-agent runs on its own. When it finishes, Claude reads the output and verifies itgit diff, typecheck, build — before any of it is trusted or merged.

flowchart LR
    A[Claude Code<br/>orchestrator] -->|writes self-contained brief| B["agy -p '&lt;task&gt;'"]
    B -->|launched in background| C{Job type}
    C -->|read-only| D[Sandbox mode<br/>runs concurrently]
    C -->|writes files| E[Isolated worktree<br/>or separate repo]
    A -. keeps building your task .-> A
    D --> F[Result]
    E --> F[Result]
    F -->|git diff · typecheck · build| G[Claude verifies]
    G -->|trusted| H[Folded into your work]

Prerequisites

Two one-time steps.

1. Install the Antigravity CLI.

On macOS / Linux:

curl -fsSL https://antigravity.google/cli/install.sh | bash

On Windows (PowerShell):

irm https://antigravity.google/cli/install.ps1 | iex

Full details are in the official guide: https://antigravity.google/docs/cli/getting-started

2. Sign in to Google.

Run agy once in a terminal and complete the one-time Google OAuth sign-in in your browser:

agy

After that, Claude Code can launch agy jobs non-interactively — no further prompts.

Install the skill

Clone this repo and copy the antigravity-agents folder into your Claude Code skills directory. Claude Code auto-discovers it on the next run.

macOS / Linux

git clone https://github.com/markfulton/claude-antigravity-agents.git
cp -r claude-antigravity-agents/antigravity-agents ~/.claude/skills/

Windows (PowerShell)

git clone https://github.com/markfulton/claude-antigravity-agents.git
Copy-Item -Recurse claude-antigravity-agents\antigravity-agents "$env:USERPROFILE\.claude\skills\"

That's it. Start a Claude Code session and ask it to delegate something — the skill loads on demand.

Usage

Just talk to Claude Code the way you already do. A few prompts that trigger the skill:

"Have Antigravity review my current branch diff for bugs while you keep building the checkout flow."

"Spin up a sub-agent to audit this repo's dependencies for known vulnerabilities and report back."

"Get a second opinion from Gemini on this caching design, and keep working on the API in the meantime."

Claude decides the job type, picks the right isolation mode, launches it in the background, and reports back once it has collected and verified the result.

Safety model

Delegation only helps if you can trust what comes back. One rule sits above everything else:

An Antigravity job never writes to the same files Claude Code is editing at that moment.

That rule drives how every job runs:

Job typeWrites files?IsolationConcurrent with Claude?
Code reviewNoSandbox (read-only)Yes
Architecture / security analysisNoSandbox (read-only)Yes
Research sweepNoSandbox (read-only)Yes
Dependency / config auditNoSandbox (read-only)Yes
Second opinion (different model)NoSandbox (read-only)Yes
Coding taskYesIsolated git worktreeYes — on separate files
Large refactorYesWorktree / separate repoYes — on separate files

Everything is verified before it's trusted — Claude inspects the git diff and runs the project's typecheck / build on any returned work before folding it in. No sub-agent change is taken on faith. Keep a task in Claude when it's small, tightly coupled to what you're editing right now, or needs live back-and-forth; delegation shines on the heavy, separable work.

Attribution

License

Released under the MIT License.

常见问题

What is claude-antigravity-agents?

claude-antigravity-agents is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by markfulton. A Claude Code skill that delegates coding, review, analysis, and research jobs to Google Antigravity CLI (agy) sub-agents — save tokens, use a second model, work in parallel. It has 111 GitHub stars.

Is claude-antigravity-agents safe to use?

Yes. claude-antigravity-agents passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install claude-antigravity-agents?

Clone the repository with "git clone https://github.com/markfulton/claude-antigravity-agents" and add it to your Claude Code skills directory (see the Installation section above).

Are there alternatives to claude-antigravity-agents?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-antigravity-agents against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情