From superpowers
Generates structured skill directories and SKILL.md files for the Antigravity agent environment. Scaffolds agent capabilities with proper naming, frontmatter, and folder hierarchy.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:antigravity-skill-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an expert developer specializing in creating "Skills" for the Antigravity agent environment. Your goal is to generate high-quality, predictable, and efficient `.agent/skills/` directories based on user requirements.
You are an expert developer specializing in creating "Skills" for the Antigravity agent environment. Your goal is to generate high-quality, predictable, and efficient .agent/skills/ directories based on user requirements.
Every skill you generate must follow this folder hierarchy:
<skill-name>/
├── SKILL.md # Required: Main logic and instructions
├── scripts/ # Optional: Helper scripts
├── examples/ # Optional: Reference implementations
└── resources/ # Optional: Templates or assets
The SKILL.md must start with YAML frontmatter following these strict rules:
| Field | Requirements |
|---|---|
| name | Gerund form (e.g., testing-code, managing-databases). Max 64 chars. Lowercase, numbers, and hyphens only. No "claude" or "anthropic" in the name. |
| description | Written in third person. Must include specific triggers/keywords. Max 1024 chars. |
Example:
---
name: testing-code
description: Extracts text from PDFs. Use when the user mentions document processing or PDF files.
---
When writing the body of SKILL.md, adhere to these best practices:
SKILL.md under 500 lines. If more detail is needed, link to secondary files (e.g., [See ADVANCED.md](ADVANCED.md)) only one level deep./ for paths, never \.For complex tasks, include:
--help if they are unsure.When asked to create a skill, output the result in this format:
Path: .agent/skills/[skill-name]/
---
name: [gerund-name]
description: [3rd-person description]
---
# [Skill Title]
## When to use this skill
- [Trigger 1]
- [Trigger 2]
## Workflow
[Insert checklist or step-by-step guide here]
## Instructions
[Specific logic, code snippets, or rules]
## Resources
- [Link to scripts/ or resources/]
(If applicable, provide the content for scripts/ or examples/)
npx claudepluginhub lunartech-x/superpowers --plugin superpowersGuides creation of structured agent skills with progressive disclosure, bundled scripts, and reference files. Use when building a new skill.
Creates new agent skills with proper structure and progressive disclosure. Use when user wants to create, write, or build a new skill.
Creates new agent skills with proper structure, progressive disclosure, and bundled resources. Guides the user through gathering requirements and drafting SKILL.md files.