Skills catalog
Invoke any skill in your chat, or let your agent decide.
Skills run in pipeline order with Human checkpoints to guide your
review.
| Skill | What it does | Example |
|---|
| /initialize | Sets up your project environment and main instructions file. | /initialize this project |
|---|
| /explore | Reverse-engineers legacy code for architecture insights. | /explore this project |
|---|
| /extract | Extracts real rules and conventions from your codebase. | /extract from this codebase |
|---|
| Skill | What it does | Example |
|---|
| /specify | Writes clear specifications with formal acceptance criteria. | /specify a feature requirement |
|---|
| /planify | Breaks specs into concrete, ordered implementation steps. | /planify the specification |
|---|
| /codify | Generates code that follows your plans and your rules. | /codify the plan |
|---|
| /verify | Writes and runs E2E tests so specs are actually met. | /verify the code |
|---|
| Skill | What it does | Example |
|---|
| /review | Reviews code for quality and generates a feedback report. | /review the source code |
|---|
| /repair | Fixes issues from review or verify reports. | /repair reported issues |
|---|
| /release | Bumps version, updates CHANGELOG and artifacts. | /release a new version |
|---|
| /repository | Manages git branches and conventional commits. | Used automatically by other skills |
|---|
| /refactor | Improves existing code without changing its behavior. | (work in progress) |
|---|
| Skill | What it does | Example |
|---|
| /design | Creates design systems and design tokens. | /design the project |
|---|
| Step | You review |
/initialize | Project context and instructions |
/explore | Architecture and codebase |
/extract | Rules and conventions |
/specify | Problem, solution, and acceptance criteria |
/planify | Implementation steps for each tier |
/codify | Code and unit tests |
/verify | E2E code and failure reports |
/review | Quality feedback report |
/release | Version bump and changelog |