Validate and standardize SKILL.md files against the Agent Skills specification.
Works with
Validates frontmatter fields (name, description, allowed-tools, metadata) and enforces naming conventions, length constraints, and format rules
Converts legacy skill formats to standard structure, including section heading normalization and directory layout alignment
Provides templates and step-by-step guidance for creating new skills, improving descriptions for reliable triggering, and batch-validating s
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionskill-standardizationExecute the skills CLI command in your project's root directory to begin installation:
Fetches skill-standardization from supercent-io/skills-template and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate skill-standardization. Access via /skill-standardization in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
88
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
88
stars
evals/evals.json) to a skill| Field | Required | Constraints |
|---|---|---|
name |
Yes | 1–64 chars, lowercase alphanumeric + hyphens, no leading/trailing/consecutive hyphens, must match parent directory name |
description |
Yes | 1–1024 chars, must describe what skill does AND when to trigger |
allowed-tools |
No | Space-delimited list of pre-approved tools |
compatibility |
No | Max 500 chars, environment requirements |
license |
No | License name or reference to bundled file |
metadata |
No | Arbitrary key-value map for additional fields |
skill-name/
├── SKILL.md # Required
├── scripts/ # Optional: executable scripts
├── references/ # Optional: detailed documentation
├── assets/ # Optional: templates, images, data
└── evals/ # Optional: evaluation test cases
└── evals.json
| Tier | What's loaded | When | Token budget |
|---|---|---|---|
| 1. Catalog | name + description | Session start | ~100 tokens per skill |
| 2. Instructions | Full SKILL.md body | On activation | < 5000 tokens (500 lines max) |
| 3. Resources | scripts/, references/ | When needed | Varies |
Run the validation script on a skill directory:
bash scripts/validate_skill.sh path/to/skill-directory
Validate all skills in a directory:
bash scripts/validate_skill.sh --all .agent-skills/
The script checks:
name, description)name format: lowercase, no consecutive hyphens, matches directory namedescription length: 1–1024 charactersallowed-tools format: space-delimited (not YAML list)The description field determines when a skill triggers. A weak description means the skill never activates; an over-broad one triggers at wrong times.
Template:
description: >
[What the skill does — list specific operations.]
Use when [trigger conditions]. Even if the user doesn't explicitly
mention [domain keyword] — also triggers on: [synonym list].
Principles (from agentskills.io):
Before / After:
# Before (weak — never triggers)
description: Helps with PDFs.
# After (optimized — reliable triggering)
description: >
Extract text and tables from PDF files, fill forms, merge and split documents.
Use when the user needs to work with PDF files, even if they don't explicitly
say 'PDF' — triggers on: fill form, extract text from document, merge files,
read scanned pages.
Use this template as the starting point:
---
name: skill-name
description: >
[What it does and specific operations it handles.]
Use when [trigger conditions]. Triggers on: [keyword list].
allowed-tools: Bash Read Write Edit Glob Grep
metadata:
tags: tag1, tag2, tag3
version: "1.0"
---
# Skill Title
## When to use this skill
- Scenario 1
- Scenario 2
## Instructions
### Step 1: [Action]
Content...
### Step 2: [Action]
Content...
## Examples
### Example 1: [Scenario]
Input: ...
Output: ...
## Best practices
1. Practice 1
2. Practice 2
## References
- [Link](url)
| Legacy heading | Standard heading |
|---|---|
## Purpose |
## When to use this skill |
## When to Use |
## When to use this skill |
## Procedure |
## Instructions |
## Best Practices |
## Best practices |
## Reference |
## References |
## Output Format |
## Output format |
Create evals/evals.json with 2–5 realistic test prompts:
{
"skill_name": "your-skill-name",
"evals": [
{
"id": 1,
"prompt": "Realistic user message that should trigger this skill",
"expected_output": "Description of what success looks like",
"assertions": [
"Specific verifiable claim (file exists, count is correct, format is valid)",
"Another specific claim"
]
}
]
}
Good assertions are verifiable: file exists, JSON is valid, chart has 3 bars. Avoid vague assertions like "output is good."
scripts/validate_skill.sh — Validates a SKILL.md against the Agent Skills specbash scripts/validate_skill.sh .agent-skills/my-skill/
Output:
Validating: .agent-skills/my-skill/SKILL.md
✓ Required field: name = 'my-skill'
✓ Required field: description present
✗ Description length: 1087 chars (max 1024)
✓ Name format: valid lowercase
✗ Name/directory mismatch: name='myskill' vs dir='my-skill'
✓ Recommended section: When to use this skill
✓ Recommended section: Instructions
⚠ Missing recommended section: Examples
✓ File length: 234 lines (OK)
Issues: 2 errors, 1 warning
bash scripts/validate_skill.sh --all .agent-skills/
# WRONG — tags inside metadata is non-standard for some validators
metadata:
tags: [tag1, tag2] # list syntax
platforms: Claude # non-spec field
# CORRECT — per Agent Skills spec
metadata:
tags: tag1, tag2 # string value
allowed-tools: Bash Read Write # space-delimited, not a YAML list
references/uvx [email protected] not just ruff to ensure reproducibility--flag inputs, never TTY promptsMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
supercent-io/skills-template
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
I recommend skill-standardization for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
skill-standardization reduced setup friction for our internal harness; good balance of opinion and flexibility.
Useful defaults in skill-standardization — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added skill-standardization from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for skill-standardization matched our evaluation — installs cleanly and behaves as described in the markdown.
skill-standardization reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend skill-standardization for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in skill-standardization — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
skill-standardization reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for skill-standardization matched our evaluation — installs cleanly and behaves as described in the markdown.
showing 1-10 of 49