review-a-skill
SolidUse when evaluating whether a skill belongs in a library. Preview content, check frontmatter, validate structure, and decide whether to keep, curate, or remove.
Code & Development 1,073 stars
124 forks Updated 1 months ago MIT
Install
Quality Score: 89/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Review A Skill
## Goal
Evaluate a single skill's quality, relevance, and safety before it enters or stays in a library.
## Guardrails
- Always use `--format json` for machine-readable output in automated pipelines.
- Always use `--fields` to limit output size when inspecting catalog entries.
- Always use `--dry-run` before curating or removing a skill.
- Never remove a skill without first checking if other skills depend on it via `info --format json` dependencies.
## Workflow
1. 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.
2. Inspect the catalog entry for metadata completeness.
```bash
npx ai-agent-skills info <skill-name> --format json --fields name,description,tags,collections,dependencies
```
3. Validate the skill's SKILL.md structure.
```bash
npx ai-agent-skills validate <skill-name>
```
4. 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
```
5. 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 --yes
```
## Decision Criteria
- **Keep**: Clear description, valid frontmatter, useful to the library's ...
Details
- Author
- MoizIbnYousaf
- Repository
- MoizIbnYousaf/Ai-Agent-Skills
- Created
- 5 months ago
- Last Updated
- 1 months ago
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
skill-library-audit
Use to review whether Git agent skills should be added, merged, split, deferred, or rejected before the library grows.
0 Updated today
hypercube-xyz Code & Development Listed
agent-skill-lint-review
Use when reviewing an agent Skill or SKILL.md draft before publishing to check trigger clarity, scope, safety boundaries, progressive disclosure, validation, and publish readiness.
0 Updated yesterday
alexzhu0 AI & Automation Solid
skill-curate
Start a low-frequency review of skill evidence and canonical skill lifecycle state.
341 Updated yesterday
mnemon-dev