Awesome-omni-skill skill-antigravity
Provides core knowledge and instructions for creating, documenting, and managing Antigravity Skills. Use this skill when you need to extend your capabilities by creating new modular skills.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/tools/skill-antigravity" ~/.claude/skills/diegosouzapw-awesome-omni-skill-skill-antigravity-83d2c0 && rm -rf "$T"
manifest:
skills/tools/skill-antigravity/SKILL.mdsource content
Antigravity Skills Master
This skill empowers Antigravity agents to extend their own capabilities through the creation and management of modular skills.
Core Principles
- Modularity: Each skill should focus on a single, well-defined task or domain.
- Context Efficiency: Keep instructions concise to minimize token usage while maintaining clarity.
- Discoverability: Use precise, keyword-rich descriptions in the frontmatter to help the agent identify relevance.
- Reliability: Provide checklists and error-handling logic for critical tasks.
- Singular Naming: Always use
(singular), never.agent
(plural), for the root configuration directory to ensure automatic tool detection..agents
Anatomy of a Skill
A standard Antigravity skill follows this structure:
: (Required) The core instruction set with YAML metadata.SKILL.md
: (Recommended) Structured metadata for themetadata.json
CLI.skills
: (Optional) Automation scripts or helper tools.scripts/
: (Optional) Reference implementations.examples/
: (Optional) Static assets, templates, or rulesets.resources/
Guidelines for Creating Skills
- Identify the Need: Create a skill when a task is repetitive, complex, or requires specialized domain knowledge.
- Setup Folder: Create a directory in
(local) or your skills repository..agent/skills/ - Define Metadata: Ensure the
matches the folder name and thename
is actionable.description - Draft Instructions:
- Use clear sections (Goal, Requirements, Steps, Verification).
- Include GitHub-style alerts for critical warnings or tips.
- Add Mermaid diagrams for complex workflows.
Managing the Skills Ecosystem
- Local Workspace: Store project-specific skills in
..agent/skills/ - Global Library: Use
to import skills from shared repositories.npx skills add - Versioning: Update the
in frontmatter/metadata when making significant changes.version
Verification Checklist
- Does the folder name match the
inname
?SKILL.md - Is the
clear enough for discovery?description - Are all external dependencies (scripts) referenced correctly?
- Has the skill been tested in a real-world scenario?