What are AI Skills? Skills are structured instructions that help AI agents (Claude Code, Cursor, Copilot, etc.) understand Prowler’s conventions, patterns, and best practices.
skills/ directory of the Prowler OSS repository. Each skill is a folder containing a SKILL.md file with its patterns and metadata.
Installation
To enable skills for the supported AI coding assistants, run the setup script from the repository root:
After running the setup, restart the AI coding assistant to load the skills.
Using Skills
AI agents discover skills automatically and load them when a request matches a skill trigger. To load a skill manually during a session, point the agent to the skill’sSKILL.md file:
skills/README.md and AGENTS.md in the repository.
Available Skills
This table is a snapshot. The repository is the source of truth: see
skills/README.md for the current, complete list.Skill Structure
Each skill follows the Agent Skills spec:Key Design Decisions
- Self-contained skills - Critical patterns inline for fast loading
- Local doc references - No web URLs, points to
docs/developer-guide/*.mdx - Single source of truth - Skills reference docs, no duplication
- On-demand loading - AI loads only what’s needed for the task
Creating New Skills
Use theskill-creator meta-skill to create new skills that follow the Agent Skills spec. See AGENTS.md for the full list of available skills and their triggers.

