Auto-create new skills from repetitive workflows. When you notice yourself doing the same multi-step process repeatedly, extract it into a reusable SKILL.md that any agent can use.
62
75%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.agents/skills/skillify/SKILL.mdTurn repetitive patterns into reusable skills. If you've done it three times, it should be a skill.
✅ Good candidates:
❌ Bad candidates:
What triggers this workflow? (user says X, file type Y, domain Z)
What steps are always the same?
What parts vary between uses?
What's the expected output?Use this template:
---
name: [kebab-case-name]
description: [One sentence describing what this skill does]
when_to_use: "[When the user asks X, works with Y files, or Z domain. NOT for A.]"
allowed-tools: [Read, Write, Edit, Grep, Glob, Bash — only what's needed]
effort: [low | medium | high]
---
# [Skill Name] — [Short Subtitle]
> [One-line philosophy or principle]
## Overview
[2-3 sentences explaining what this skill enables]
## When to Use
✅ Good for: [list]
❌ Not for: [list]
## Protocol
### Step 1: [First Action]
[Instructions]
### Step 2: [Second Action]
[Instructions]
### Step N: [Verification]
[How to verify the skill worked correctly]
## Best Practices
[3-5 key rules].agents/skills/[skill-name]/SKILL.mdwhen_to_use clearly defines triggers AND exclusions| Pattern | Skill Name | Example |
|---|---|---|
| Action-based | [verb]-[noun] | verify-changes, batch-operations |
| Domain-based | [domain]-[aspect] | database-design, api-patterns |
| Tool-based | [tool]-patterns | tailwind-patterns, prisma-expert |
Rules:
Before finalizing a new skill:
| Check | Criteria |
|---|---|
| Uniqueness | No existing skill covers this (grep .agents/skills/) |
| Reusability | Useful across multiple projects, not just one |
| Completeness | Has overview, when to use, protocol, verification |
| Frontmatter | All required fields present and accurate |
| Clarity | A new agent could follow these instructions cold |
04514f0
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.