skill-creator
skill-creator helps you build new AI agent skills by establishing when to trigger them, documenting critical patterns, and organizing templates and examples. It enforces naming conventions and frontmatter structure to keep skills discoverable and reusable across projects.
skill-creator builds new AI agent skills by defining patterns, triggers, and structured guidance for repeatable workflows.
AI-generated summary based on this skill's SKILL.md
Install
prowler-cloud/prowler/skill-creator · repository language: Python
git clone https://github.com/prowler-cloud/prowler
cp -r prowler/skills/skill-creator ~/.claude/skills/skill-creatornpx skillfed install prowler-cloud/prowler/skill-creatorFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I create a new AI agent skill?
skill-creator guides you through building new AI agent skills by helping you establish trigger conditions, document critical patterns, and organize templates. Start by defining when your skill should activate, then structure it using skill-creator's naming conventions and frontmatter templates to ensure it integrates smoothly into your agent system and remains discoverable across projects.
What is the skill-creator tool and how does it work?
skill-creator is an Apache-2.0 licensed tool that helps you build new AI agent skills following structured patterns. It enforces naming conventions, provides file structure guidance, and supplies templates so your skills stay organized and reusable. skill-creator ensures each skill documents its critical patterns and integrates cleanly into agent systems.
When should I create a new agent skill versus reusing existing ones?
skill-creator helps you decide when to create agent skills by emphasizing documentation of reusable AI patterns. Create a new skill when you have a distinct, repeatable pattern that other agents or projects might need. skill-creator's templating approach makes it easy to recognize when a pattern is mature enough to become a standalone, documented skill.
What naming conventions and file structure does skill-creator enforce?
skill-creator enforces consistent naming conventions and file structure to keep skills discoverable. It uses frontmatter templates and a SKILL.md documentation format that standardizes how you describe trigger conditions, patterns, and examples. This structure ensures skills integrate reliably across agent systems and remain maintainable as your library grows.
How do I document AI patterns and best practices for my skills?
skill-creator provides templates and examples for skill documentation that capture your AI patterns and best practices. Use skill-creator's frontmatter structure to document when and how your skill triggers, then add examples and critical patterns to the SKILL.md template. This approach makes your patterns reusable and helps other developers understand your skill's purpose and constraints.
Can skill-creator help me register and integrate new skills into my agent?
skill-creator focuses on creating, documenting, and structuring skills so they integrate smoothly into agent systems. By following skill-creator's naming conventions and file structure, your skills become discoverable and ready for registration. The tool emphasizes organization and documentation patterns that make integration straightforward once your skill is complete.
SKILL.md
rendered from the published skill — quoted content, verbatim
When to Create a Skill
Create a skill when: - A pattern is used repeatedly and AI needs guidance - Project-specific conventions differ from generic best practices - Complex workflows need step-by-step instructions - Decision trees help AI choose the right approach
Don't create a skill when: - Documentation already exists (create a reference instead) - Pattern is trivial or self-explanatory - It's a one-off task
Skill Structure
skills/{skill-name}/
├── SKILL.md # Required - main skill file
├── assets/ # Optional - templates, schemas, examples
│ ├── template.py
│ └── schema.json
└── references/ # Optional - links to local docs
└── docs.md # Points to docs/developer-guide/*.mdx
SKILL.md
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 2 files
skills/skill-creator/SKILL.md
skills/skill-creator/assets/SKILL-TEMPLATE.md