A meta-skill that understands task requirements, dynamically selects appropriate skills, tracks successful skill combinations using agent-memory-mcp, and prevents skill overuse for simple tasks.
5cf4dfeThe 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.
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:
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.
The Antigravity ecosystem maintains a master catalog of highly curated skills at https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/CATALOG.md. When local skills are insufficient, fetch this catalog to discover appropriate skills across the 9 primary categories:
architecturebusinessdata-aidevelopmentgeneralinfrastructuresecuritytestingworkflow@agent-memory-mcp)To build institutional knowledge, the orchestrator relies on the agent-memory-mcp skill to record and retrieve successful skill combinations.
[Triggered when facing a new user request that might need skills]
[Triggered if the task is complex]
memory_search tool provided by agent-memory-mcp to search for similar past tasks.
memory_search({ query: "skill combination for react native and firebase", type: "skill_combination" })memory_read.[Triggered if no past knowledge covers this task]
https://raw.githubusercontent.com/sickn33/agentic-awesome-skills/main/CATALOG.md.[Triggered after executing the task using the selected skills]
@react-patterns + @nodejs-backend-patterns + @postgresql).memory_write from agent-memory-mcp.
skill_combination.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.
// 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"]
})
// 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" })
memory_write so they are easy to search later.@agent-memory-mcp - Essential for this skill to function. Provides the persistent storage for skill combinations.Copy a source-pinned command for your client. You run it yourself.
Destination: .claude/skills/antigravity-skill-orchestrator · pinned to the source commit
# Run from your project root
git clone https://github.com/sickn33/agentic-awesome-skills.git .skillboard-tmp
git -C .skillboard-tmp checkout 5cf4dfeb13ea966daa1e117897689cd7991e3f44
mkdir -p ".claude/skills"
cp -r ".skillboard-tmp/plugins/agentic-awesome-skills-claude/skills/antigravity-skill-orchestrator" ".claude/skills/"
rm -rf .skillboard-tmpReview the source before running. This copies files into your project; it is not a one-click install and does not verify runtime safety.
sudo apt update && sudo apt install -y gitnpm install -g @anthropic-ai/claude-code# Run from your project root
git clone https://github.com/sickn33/agentic-awesome-skills.git .skillboard-tmp
git -C .skillboard-tmp checkout 5cf4dfeb13ea966daa1e117897689cd7991e3f44
mkdir -p ".claude/skills"
cp -r ".skillboard-tmp/plugins/agentic-awesome-skills-claude/skills/antigravity-skill-orchestrator" ".claude/skills/"
rm -rf .skillboard-tmpDestination: .claude/skills/antigravity-skill-orchestrator
Scanner static-checks@0.1.0 · commit 5cf4dfeb13ea. Static checks cannot prove runtime safety – review the source and the exact diff before installing. How checks work.
No static rules matched. This is not a safety guarantee.