From superpowers
Creates Skills for Antigravity agent environment with required folder structure, YAML frontmatter standards, and writing principles. Use when users request building, generating, or scaffolding skills.
npx claudepluginhub lunartech-x/superpowers --plugin superpowersThis skill uses the workspace's default tool permissions.
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.
Scaffolds GitHub Copilot Agent Skills by generating SKILL.md files with frontmatter, directories, and resource folders from prompts or templates. Use for creating or duplicating skills.
Generates new agent skills with SKILL.md templates, file structures, progressive disclosure, review checklists, and optional utility scripts.
Creates, updates, or validates SKILL.md agent skills including frontmatter authoring, bundled resource planning, and three-phase discoverability validation.
Share bugs, ideas, or general feedback.
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/)