review-a-skill
Original:🇺🇸 English
Translated
Use when evaluating whether a skill belongs in a library. Preview content, check frontmatter, validate structure, and decide whether to keep, curate, or remove.
16installs
Added on
NPX Install
npx skill4agent add skillcreatorai/ai-agent-skills review-a-skillTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Review A Skill
Goal
Evaluate a single skill's quality, relevance, and safety before it enters or stays in a library.
Guardrails
- Always use for machine-readable output in automated pipelines.
--format json - Always use to limit output size when inspecting catalog entries.
--fields - Always use before curating or removing a skill.
--dry-run - Never remove a skill without first checking if other skills depend on it via dependencies.
info --format json
Workflow
- Preview the skill content to check for quality and safety.
bash
npx ai-agent-skills preview <skill-name>The preview command sanitizes content — if it flags sanitization, investigate before proceeding.
- Inspect the catalog entry for metadata completeness.
bash
npx ai-agent-skills info <skill-name> --format json --fields name,description,tags,collections,dependencies- Validate the skill's SKILL.md structure.
bash
npx ai-agent-skills validate <skill-name>- If the skill needs curation (notes, collections, verification):
bash
npx ai-agent-skills curate <skill-name> --notes "Reviewed: solid patterns" --verify --dry-run
npx ai-agent-skills curate <skill-name> --notes "Reviewed: solid patterns" --verify- If the skill should be removed:
bash
npx ai-agent-skills curate <skill-name> --remove --dry-run
npx ai-agent-skills curate <skill-name> --remove --yesDecision Criteria
- Keep: Clear description, valid frontmatter, useful to the library's audience, no injection patterns.
- Curate: Needs better whyHere, collection placement, or verification status.
- Remove: Duplicate, outdated, broken source, or contains suspicious content.
Gotchas
- The command only works for vendored (house) skills. Upstream skills show description and whyHere only.
preview - The command checks frontmatter structure but not content quality — that requires human or agent judgment.
validate - Removing a skill that other skills depend on will break the dependency graph. Always check first.
dependencies.usedBy