/ Directory / Playground / Antigravity Skills
● Community guanyang ⚡ Instant

Antigravity Skills

by guanyang · guanyang/antigravity-skills

A coherent bundle of professional skills — full-stack, data engineering, infra — designed to be installed together and play nicely.

Antigravity collects ~10 production-tuned skills under one repo: full-stack web (Next.js, Tailwind), data (DBT, dbt-cloud), and infra (Terraform, K8s). Each is small but they share conventions so combining them is predictable.

Why use it

Key features

Live Demo

What it looks like in practice

ready

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "antigravity-skills": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/guanyang/antigravity-skills",
        "~/.claude/skills/antigravity"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "antigravity-skills": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/guanyang/antigravity-skills",
        "~/.claude/skills/antigravity"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "antigravity-skills": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/guanyang/antigravity-skills",
        "~/.claude/skills/antigravity"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "antigravity-skills": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/guanyang/antigravity-skills",
        "~/.claude/skills/antigravity"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "antigravity-skills",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/guanyang/antigravity-skills",
        "~/.claude/skills/antigravity"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "antigravity-skills": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/guanyang/antigravity-skills",
          "~/.claude/skills/antigravity"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add antigravity-skills -- git clone https://github.com/guanyang/antigravity-skills ~/.claude/skills/antigravity

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use Antigravity Skills

Ship a full-stack feature with consistent style

👤 Claude Code users ⏱ ~15 min intermediate

When to use: You want one consistent voice across frontend, backend, and migration code.

Flow
  1. Install
    Clone into ~/.claude/skills/antigravity✓ Copied
    → Skills available
  2. Use the fullstack skill
    Antigravity-fullstack: scaffold a feature with API + UI + migration✓ Copied
    → Three coordinated PRs

Outcome: Shipped feature with consistent conventions across layers.

Combinations

Pair with other MCPs for X10 leverage

antigravity-skills + github

Open one PR per skill output

Combine antigravity-skills with github: Open one PR per skill output✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
multi-skill (see docs) Multiple skills, each with their own scope 1 call

Cost & Limits

What this costs to run

API quota
N/A
Tokens per call
0
Monetary
Free
Tip
Read each sub-skill's SKILL.md; they have different activation triggers

Security

Permissions, secrets, blast radius

Credential storage: None
Data egress: None

Troubleshooting

Common errors and fixes

Skill not activating

Check the trigger phrase in its SKILL.md frontmatter

Alternatives

Antigravity Skills vs others

AlternativeWhen to use it insteadTradeoff
Single-purpose skillsYou only need one thingNo shared conventions

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills