/ 目录 / 演练场 / antigravity-workflows
● 社区 harikrishna8121999 ⚡ 即开即用

antigravity-workflows

作者 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.

为什么要用

核心特性

实时演示

实际使用效果

antigravity-workflows-skill.replay ▶ 就绪
0/0

安装

选择你的客户端

~/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
    }
  }
}

打开 Claude Desktop → Settings → Developer → Edit Config。保存后重启应用。

~/.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 使用与 Claude Desktop 相同的 mcpServers 格式。项目级配置优先于全局。

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
    }
  }
}

点击 Cline 侧栏中的 MCP Servers 图标,然后选 "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
    }
  }
}

格式与 Claude Desktop 相同。重启 Windsurf 生效。

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

Continue 使用服务器对象数组,而非映射。

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

加入 context_servers。Zed 保存后热重载。

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

一行命令搞定。用 claude mcp list 验证,claude mcp remove 卸载。

使用场景

实战用法: antigravity-workflows

How to import an Antigravity workflow into Claude Code

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

何时使用: A workflow looks great but was authored for Antigravity; you want it in Claude Code.

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

结果: An Antigravity workflow running in Claude Code.

注意事项
  • Workflow depends on Antigravity-specific tools — Identify dependencies; replace with Claude Code equivalents or skip the workflow
搭配使用: agent-skills-cli-skill

Contribute your own workflow back

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

何时使用: You've iterated on a workflow enough that others would benefit.

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

结果: Workflow merged into the catalog.

Browse for inspiration on workflow design

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

何时使用: You want to see how others structure multi-step workflows.

步骤
  1. Survey
    Survey 5 workflows here and summarize the common structure they share.✓ 已复制
    → Shape summary

结果: Design inspiration for your own workflow library.

组合

与其他 MCP 搭配,撬动十倍杠杆

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.✓ 已复制
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.✓ 已复制

工具

此 MCP 暴露的能力

工具输入参数何时调用成本
Workflow catalog - Finding workflows 0
Antigravity → SKILL.md workflow path Porting to Claude Code Claude tokens
Workflow authoring templates - Contributing 0

成本与限制

运行它的成本

API 配额
None
每次调用 Token 数
2-10k per conversion
费用
Free
提示
Port only workflows you'll actually use; conversion is low-value busywork otherwise.

安全

权限、密钥、影响范围

凭据存储: No credentials at catalog level
数据出站: Each workflow declares its own egress — review before install

故障排查

常见错误与修复

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

替代方案

antigravity-workflows 对比其他方案

替代方案何时用它替代权衡
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

更多

资源

📖 阅读 GitHub 上的官方 README

🐙 查看未解决的 issue

🔍 浏览全部 400+ MCP 服务器和 Skills