ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

skill-quality-auditor

Audit another Codex skill for structural compliance, trigger quality, instruction clarity, reuse of scripts or references, and overall maintainability. Use when Codex is given a skill folder and needs to judge whether the skill is qualified, explain why it passes or fails, and summarize strengths, weaknesses, blockers, and improvement ideas across multiple dimensions.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aidenchangzy/skill-quality-auditor-new
Or

Skill Quality Auditor

Overview

Evaluate a target skill with a consistent rubric and return a clear pass/fail-style verdict plus a multi-dimensional review. Prefer the bundled script for the first pass, then turn the raw findings into a concise human-readable assessment.

Workflow

  1. Identify the target skill folder.
  2. Run scripts/evaluate_skill.py <path-to-skill>.
  3. Read the report and group findings into:
    • final verdict
    • strengths
    • weaknesses
    • critical blockers
    • recommended fixes
  4. If the script reports missing context or borderline results, inspect the target skill's SKILL.md and any referenced resources before writing the final judgment.
  5. Keep the final answer decisive: say whether the skill is currently qualified, conditionally qualified, or not qualified.

Rubric

Score the skill across these dimensions:

  • structure: required files, frontmatter validity, naming, obvious TODO placeholders
  • triggering: whether description clearly explains what the skill does and when to use it
  • workflow: whether the body gives actionable steps instead of vague guidance
  • progressive_disclosure: whether detailed material is kept in scripts or references instead of bloating SKILL.md
  • resources: whether scripts, references, and assets are included only when useful and are mentioned in the body
  • examples_and_outputs: whether the skill helps the agent understand expected usage or output shape
  • maintainability: clarity, concision, stale metadata checks, and overall ease of iteration

Use references/rubric.md when you need the detailed scoring logic and interpretation rules.

Verdict Rules

Use these labels:

  • Qualified: no critical blockers and score is strong enough for immediate use
  • Borderline: usable but needs material fixes soon
  • Not Qualified: missing required structure or too weak to trust in repeated use

Treat these as critical blockers:

  • missing SKILL.md
  • invalid or missing YAML frontmatter
  • missing name or description
  • unresolved template placeholders such as TODO
  • description too weak to trigger reliably
  • instructions too incomplete to execute the core task safely

Output Shape

Prefer this response shape:

Verdict

State Qualified, Borderline, or Not Qualified in the first sentence and explain the main reason.

Score Summary

Include the total score and 3-5 highest-signal dimension notes.

What Works Well

List concrete strengths tied to files or sections.

What Needs Work

List concrete weaknesses tied to files or sections.

Next Fixes

List the smallest set of changes most likely to move the skill to Qualified.

Script

Run:

python3 scripts/evaluate_skill.py /absolute/path/to/skill

Optional JSON mode:

python3 scripts/evaluate_skill.py /absolute/path/to/skill --json

Metadata

Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aidenchangzy-skill-quality-auditor-new": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.