with one click
skills-review-lint
// Lint SKILL.md files for quality, correctness, and adherence to the skill guidelines. Use when reviewing, creating, or modifying skills.
// Lint SKILL.md files for quality, correctness, and adherence to the skill guidelines. Use when reviewing, creating, or modifying skills.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | skills-review:lint |
| argument-hint | [--all | <path/to/SKILL.md> ...] [--severity error] |
| description | Lint SKILL.md files for quality, correctness, and adherence to the skill guidelines. Use when reviewing, creating, or modifying skills. |
| user-invocable | true |
| allowed-tools | Bash, Read, Glob, Grep |
Runs the skills quality linter (scripts/lint-skills.py) and presents findings.
/skills-review:lint # Lint changed SKILL.md files (vs main)
/skills-review:lint --all # Lint all SKILL.md files
/skills-review:lint plugins/foo/skills/bar/SKILL.md # Lint specific file(s)
/skills-review:lint --severity error # Only show errors, suppress warnings
Determine the linting scope from $ARGUMENTS:
| Argument | Command | Behavior |
|---|---|---|
| (empty) | bash scripts/lint-skills.py | Lint SKILL.md files changed vs main branch |
--all | bash scripts/lint-skills.py --check-all-files | Lint every SKILL.md under plugins/ |
--severity error | bash scripts/lint-skills.py --severity error | Only report errors (E001–E007), skip warnings |
| file paths | bash scripts/lint-skills.py <paths> | Lint the specified file(s) |
Arguments can be combined: --all --severity error or path/SKILL.md --severity error.
Execute from the repository root.
User: /skills-review:lint
Claude: Runs linter on changed files, reports findings, offers to fix.
User: /skills-review:lint --all
Claude: Runs linter on all SKILL.md files across the repo.
User: /skills-review:lint plugins/lvms/skills/setup-prereq/SKILL.md --severity error
Claude: Lints the specified file, showing only errors.
--all to lint everything.scripts/lint-skills.py was not found at the expected path.plugins/docs/SKILL-GUIDELINES.md for the full quality standards reference.