SKILLS/antigravity-skill-orchestrator/SKILL.md
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.
npx skillsauth add pinkpixel-dev/skills-collection-1 antigravity-skill-orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
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/antigravity-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/antigravity-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.testing
When the user wants a full ASO health audit, review their App Store listing quality, or diagnose why their app isn't ranking. Also use when the user mentions "ASO audit", "ASO score", "why am I not ranking", "listing review", or "optimize my app store page". For keyword-specific research, see keyword-research. For metadata writing, see metadata-optimization.
testing
Clarify requirements before implementing. Use when serious doubts arise.
tools
Complete reference and build guide for ASI:One (ASI1) — the AI platform by Fetch.ai built for agentic, Web3-native applications. Use this skill IMMEDIATELY and ALWAYS when the user mentions ASI1, ASI:One, Fetch.ai AI API, building with ASI1, integrating ASI:One, asking about ASI1 models, tool calling with ASI1, ASI1 image generation, ASI1 agentic LLM, Agentverse, uagents, Agent Chat Protocol, structured output with ASI1, or OpenAI-compatible wrappers for ASI1. Also trigger when the user says things like "use ASI1 instead of OpenAI", "build an app with ASI:One", "ASI1 API", or references docs.asi1.ai. This skill covers everything needed to build production apps - setup, all models, all API features, tool calling, image gen, agentic orchestration, structured data, session management, streaming, LangChain integration, uagents / Agent Chat Protocol, and TypeScript/Node.js patterns.
data-ai
When the user wants to analyze their own app's actual performance data from App Store Connect — real downloads, revenue, IAP, subscriptions, trials, or country breakdowns synced via Appeeky Connect. Use when the user asks about "my downloads", "my revenue", "how is my app performing", "ASC data", "sales and trends", "my subscription numbers", "App Store Connect metrics", or wants to compare periods or top markets. For third-party app estimates, see app-analytics. For subscription analytics depth, see monetization-strategy.