skill-auditor

Audit Hermes skill files and assign A-F quality grades with fix suggestions.

115|9|Updated Aug 5, 2026
One-click install
npx skills add https://github.com/AtlasOmnia/donna-starter --skill skill-auditor-atlasomnia
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-auditor
Source: https://github.com/AtlasOmnia/donna-starter/tree/main/skills/hermes/skill-auditor
Command: npx skills add https://github.com/AtlasOmnia/donna-starter --skill skill-auditor-atlasomnia

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Hermes skills fail silently when their descriptions are too vague to be discovered, their steps lack exact commands, or they omit verification checks. This Skill provides a systematic rubric to grade any skill file and pinpoint exactly what to fix before publishing or troubleshooting. ## Core Features & Use Cases - Five-Dimension Grading: Scores frontmatter and description, exact commands, pitfalls, verification steps, and structure, then maps the total to an A-F letter grade. - Ranked Fix Suggestions: Generates concrete before-and-after fixes for every dimension scoring below full marks, ordered by impact. - Batch and Single Audits: Supports quick single-skill reviews, audit-and-fix loops, and full-library batch audits with validator reruns and rollback backups. - Use Case: Before sharing a new Hermes skill on GitHub, run an audit to confirm the description triggers discovery, every step has an exact command, and the release gate checks (privacy scan, script exercise, immutable SHA verification) all pass. ## Quick Start Audit my skill named trip-planner and give me its grade with fix suggestions.

Frequently Asked Questions about skill-auditor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit a Hermes skill for quality?

Load the skill with skill_view or read_file, then score it across five dimensions: frontmatter and description, exact commands, pitfalls, verification steps, and structure. Sum the points out of 100 and map the total to an A-F letter grade with ranked fix suggestions.

What makes a Hermes skill description fail discovery?

A description fails discovery when it is too vague for the router to match, lacks a clear trigger class, or overlaps with other skills. Hermes only sees the one-line description before deciding whether to load the full SKILL.md, so generic phrasing means the skill never fires.

How do I batch audit all skills in a Hermes library?

List registered skills with skills_list, independently inventory every SKILL.md on disk, validate frontmatter and content size, then grade structural issues as review signals. Apply only high-confidence fixes, rerun the validator, and require zero failures before completion.

Can I audit a local skill file that is not installed yet?

Yes, inspect the supplied SKILL.md path directly rather than relying on registry discovery. Do not trust a zero exit code from hermes skills inspect alone; require explicit success output, then audit the registered copy after installation with hermes skills audit.

Why does a skill work on large models but fail on smaller ones?

Skills with vague steps, missing exact commands, or absent verification checks cause silent failures on smaller models that cannot infer intent. The audit rubric flags these gaps in the exact commands and verification dimensions so they can be fixed before deployment.