Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

antigravity-skill-orchestrator反重力技能协调器

Agent Skill

antigravity-skill-orchestrator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,599

周安装

153

GitHub Stars

35,662

下载量

1,261
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:antigravity-skill-orchestrator(反重力技能协调器)
来源仓库:https://github.com/sickn33/antigravity-awesome-skills
仓库路径:skills/antigravity-skill-orchestrator
安装命令:
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill antigravity-skill-orchestrator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill antigravity-skill-orchestrator

简介

用于查找、检索和筛选相关信息,提升内容定位效率。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速获取候选结果。
  • 作为元技能协调器,能评估任务复杂度并自动组合调用其他专用技能。
  • 安装命令为 npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill antigravity-skill-orchestrator。
  • 使用前需确认权限范围及是否涉及多技能协同执行与状态跟踪。

SKILL.md

antigravity-skill-orchestrator

Overview

The skill-orchestrator is a meta-skill designed to enhance the AI agent's ability to tackle complex problems. It acts as an intelligent coordinator that first evaluates the complexity of a user's request. Based on that evaluation, it determines if specialized skills are needed. If they are, it selects the right combination of skills, explicitly tracks these combinations using @agent-memory-mcp for future reference, and guides the agent through the execution process. Crucially, it includes strict guardrails to prevent the unnecessary use of specialized skills for simple tasks that can be solved with baseline capabilities.

When to Use This Skill

  • Use when tackling a complex, multi-step problem that likely requires multiple domains of expertise.
  • Use when you are unsure which specific skills are best suited for a given user request, and need to discover them from the broader ecosystem.
  • Use when the user explicitly asks to "orchestrate", "combine skills", or "use the best tools for the job" on a significant task.
  • Use when you want to look up previously successful combinations of skills for a specific type of problem.

Core Concepts

Task Evaluation Guardrails

Not every task requires a specialized skill. For straightforward issues (e.g., small CSS fixes, simple script writing, renaming a variable), DO NOT USE specialized skills. Over-engineering simple tasks wastes tokens and time.

Additionally, the orchestrator is strictly forbidden from creating new skills. Its sole purpose is to combine and use existing skills provided by the community or present in the current environment.

Before invoking any skills, evaluate the task:

  1. Is the task simple/contained? Solve it directly using the agent's ordinary file editing, search, and terminal capabilities available in the current environment.
  2. Is the task complex/multi-domain? Only then should you proceed to orchestrate skills.

Skill Selection & Combinations

When a task is deemed complex, identify the necessary domains (e.g., frontend, database, deployment). Search available skills in the current environment to find the most relevant ones. If the required skills are not found locally, consult the master skill catalog.

Master Skill Catalog

The Antigravity ecosystem maintains a master catalog of highly curated skills at https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/CATALOG.md. When local skills are insufficient, fetch this catalog to discover appropriate skills across the 9 primary categories:

  • architecture
  • business
  • data-ai
  • development
  • general
  • infrastructure
  • security
  • testing
  • workflow

Memory Integration (@agent-memory-mcp)

To build institutional knowledge, the orchestrator relies on the agent-memory-mcp skill to record and retrieve successful skill combinations.

Step-by-Step Guide

1. Task Evaluation & Guardrail Check

[Triggered when facing a new user request that might need skills]

  1. Read the user's request.
  2. Ask yourself: "Can I solve this efficiently with just basic file editing and terminal commands?"
  3. If YES: Proceed without invoking specialized skills. Stop the orchestration here.
  4. If NO: Proceed to step 2.

2. Retrieve Past Knowledge

[Triggered if the task is complex]

  1. Use the memory_search tool provided by agent-memory-mcp to search for similar past tasks.

- Example query: memory_search({query: "skill combination for react native and firebase", type: "skill_combination"})

  1. If a working combination exists, read the details using memory_read.
  2. If no relevant memory exists, proceed to Step 3.

3. Discover and Select Skills

[Triggered if no past knowledge covers this task]

  1. Analyze the core requirements (e.g., "needs a React UI, a Node.js backend, and a PostgreSQL database").
  2. Query the locally available skills using the current environment's skill list or equivalent discovery mechanism to find the best match for each requirement.
  3. If local skills are insufficient, fetch the master catalog with the web or command-line retrieval tools available in the current environment: https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/CATALOG.md.
  4. Scan the catalog's 9 main categories to identify the appropriate skills to bring into the current context.
  5. Select the minimal set of skills needed. Do not over-select.

4. Apply Skills and Track the Combination

[Triggered after executing the task using the selected skills]

  1. Assume the task was completed successfully using a new combination of skills (e.g., @react-patterns + @nodejs-backend-patterns + @postgresql).
  2. Record this combination for future use using memory_write from agent-memory-mcp.

- Ensure the type is skill_combination. - Provide a descriptive key and content detailing why these skills worked well together.

Examples

Example 1: Handling a Simple Task (The Guardrail in Action)

User Request: "Change the color of the submit button in index.css to blue." Action: The skill orchestrator evaluates the task. It determines this is a "simple/contained" task. It does not invoke specialized skills. It directly edits index.css.

Example 2: Recording a New Skill Combination

// Using the agent-memory-mcp tool after successfully building a complex feature
memory_write({
  key: "combination-ecommerce-checkout",
  type: "skill_combination",
  content: "For e-commerce checkouts, using @stripe-integration combined with @react-state-management and @postgresql effectively handles the full flow from UI state to payment processing to order recording.",
  tags: ["ecommerce", "checkout", "stripe", "react"]
})

Example 3: Retrieving a Combination

// At the start of a new e-commerce task
memory_search({
  query: "ecommerce checkout",
  type: "skill_combination"
})
// Returns the key "combination-ecommerce-checkout", which you then read:
memory_read({ key: "combination-ecommerce-checkout" })

Best Practices

  • Do: Always evaluate task complexity *before* looking for skills.
  • Do: Keep the number of orchestrated skills as small as possible.
  • Do: Use highly descriptive keys when running memory_write so they are easy to search later.
  • Don't: Use this skill for simple bug fixes or UI tweaks.
  • Don't: Combine skills that have overlapping and conflicting instructions without a clear plan to resolve the conflict.
  • Don't: Attempt to construct, generate, or create new skills. Only combine what is available.

Related Skills

  • @agent-memory-mcp - Essential for this skill to function. Provides the persistent storage for skill combinations.

Limitations

  • Use this skill only when the task clearly matches the scope described above.
  • Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
  • Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.11%
按下载量换算468

Claude

30.56%
按下载量换算385

Cursor

18.96%
按下载量换算239

Gemini CLI

9.68%
按下载量换算122

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill antigravity-skill-orchestrator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills