/ Diretório / Playground / antigravity-workflows
● Comunidade harikrishna8121999 ⚡ Instantâneo

antigravity-workflows

por harikrishna8121999 · harikrishna8121999/antigravity-workflows

Community workflows for Antigravity AI — reusable prompts and automations shaped like Claude Skills.

Antigravity Workflows is a community catalog of reusable prompt + automation bundles for Antigravity AI, shaped similarly to Claude Skills so they port over. Use it to grab ready-made workflows (code review, scaffolding, design ops) without rewriting them yourself, or to share your own.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

antigravity-workflows-skill.replay ▶ pronto
0/0

Instalar

Escolha seu cliente

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

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

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

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

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

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add antigravity-workflows-skill -- git clone https://github.com/harikrishna8121999/antigravity-workflows ~/.claude/skills/antigravity-workflows

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: antigravity-workflows

How to import an Antigravity workflow into Claude Code

👤 Claude Code users borrowing workflows from the Antigravity community ⏱ ~20 min intermediate

Quando usar: A workflow looks great but was authored for Antigravity; you want it in Claude Code.

Pré-requisitos
  • Repo cloned — git clone https://github.com/harikrishna8121999/antigravity-workflows somewhere local
Fluxo
  1. Pick a workflow
    Browse workflows/ and pick the one for 'code-review-with-architecture-check'.✓ Copiado
    → Folder identified
  2. Convert
    Generate a SKILL.md compatible with Claude Code from this workflow's prompt files.✓ Copiado
    → SKILL.md draft
  3. Install
    Drop into ~/.claude/skills/code-review-arch and verify Claude discovers it.✓ Copiado
    → Skill available in next session

Resultado: An Antigravity workflow running in Claude Code.

Armadilhas
  • Workflow depends on Antigravity-specific tools — Identify dependencies; replace with Claude Code equivalents or skip the workflow

Contribute your own workflow back

👤 Developers with a repeatable Antigravity workflow worth sharing ⏱ ~45 min intermediate

Quando usar: You've iterated on a workflow enough that others would benefit.

Fluxo
  1. Match the folder shape
    Look at existing workflows and generate the folder for my 'migration-plan-generator' workflow following conventions.✓ Copiado
    → Folder + README + example
  2. Submit PR
    Prepare a fork and draft the PR body.✓ Copiado
    → PR opens cleanly

Resultado: Workflow merged into the catalog.

Browse for inspiration on workflow design

👤 Prompt engineers designing their own workflows ⏱ ~20 min beginner

Quando usar: You want to see how others structure multi-step workflows.

Fluxo
  1. Survey
    Survey 5 workflows here and summarize the common structure they share.✓ Copiado
    → Shape summary

Resultado: Design inspiration for your own workflow library.

Combinações

Combine com outros MCPs para 10× de alavancagem

antigravity-workflows-skill + agent-skills-cli-skill

Use the CLI to manage imported workflows as skills

Import the code-review workflow and register with agent-skills so it syncs to Cursor too.✓ Copiado
antigravity-workflows-skill + claude-code-skill-factory-skill

Use Factory's /validate-output on imported workflows before installing

Convert workflow to SKILL.md, then /validate-output with skill-factory to catch issues.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
Workflow catalog - Finding workflows 0
Antigravity → SKILL.md workflow path Porting to Claude Code Claude tokens
Workflow authoring templates - Contributing 0

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
2-10k per conversion
Monetário
Free
Dica
Port only workflows you'll actually use; conversion is low-value busywork otherwise.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: No credentials at catalog level
Saída de dados: Each workflow declares its own egress — review before install

Solução de problemas

Erros comuns e correções

Imported workflow expects Antigravity-specific context

Remove Antigravity-isms from the prompt; replace with Claude Code equivalents or mark as unsupported

Workflow triggers too aggressively after import

Tighten the description in SKILL.md frontmatter; Claude uses it to decide when to load

Alternativas

antigravity-workflows vs. outros

AlternativaQuando usarTroca
awesome-llm-skillYou want a Claude Code-native catalogNo Antigravity-specific workflows
claude-code-skill-factory-skillYou want to build rather than importMore upfront work

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills