Skip to content
🆕 Nova skill: Website Spec! Audite sites contra 128 tópicos de HTML, SEO, a11y, segurança e mais. Ver skill →

Skill Structure

skill-name/
├── SKILL.md # Main definition (required)
├── references/ # Detailed reference documentation
│ ├── api.md
│ └── patterns.md
├── rules/ # Contextual rules
│ └── coding-style.md
└── examples/ # Practical examples (optional)
└── basic-usage.md

The SKILL.md file is the skill’s entry point and must contain:

SectionDescription
Role DefinitionDescription of the skill’s role and expertise
When to UseActivation conditions and keywords
Critical RulesRules that MUST and MUST NOT be followed
TechnologiesTechnology stack covered
SectionDescription
Core WorkflowMain workflow
Decision FrameworksDecision trees for technical choices
Reference DocumentationLinks to detailed references
Quick ReferenceSnippets and quick-use patterns
  • Use kebab-case for skill names and files
  • Prefix rules with context: astro-components.rule.md
  • Use .md extension for all documentation files

Skills can include metadata in frontmatter:

---
name: astro-framework
version: 1.0.0
keywords: [astro, islands, static, SSR]
---