Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
yonatangross avatar

Audit Skills

  • 117 installs
  • 213 repo stars
  • Updated August 4, 2026
  • yonatangross/orchestkit

Review agent skill definitions for unclear triggers, unsafe tool usage, missing guardrails, and inconsistent instructions before distributing skills to teammates or publishing them in a shared hub.

About

audit-skills from yonatangross/orchestkit inspects Claude Code and agent skill files for structure, safety, activation boundaries, and maintainability. It helps teams standardize skill libraries and reduce prompt drift before skills are shared broadly across repos and operators.

  • Skill trigger and scope review
  • Tool-use safety checks
  • Prompt clarity and consistency
  • Overlap and duplication detection
  • Publish-ready skill hardening

Audit Skills by the numbers

  • 117 all-time installs (skills.sh)
  • Ranked #246 of 782 Skill Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yonatangross/orchestkit --skill audit-skills

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs117
repo stars213
Last updatedAugust 4, 2026
Repositoryyonatangross/orchestkit

What it does

Review agent skill definitions for unclear triggers, unsafe tool usage, missing guardrails, and inconsistent instructions before distributing skills to teammates or publishing them in a shared hub.

Files

SKILL.mdMarkdownGitHub ↗

audit-skills

Scans all src/skills/*/SKILL.md files and reports compliance with OrchestKit authoring standards. Each category has individual files in rules/ and references/ loaded on-demand.

Quick Reference

CategoryFileImpactWhen to Use
Audit Checks${CLAUDE_SKILL_DIR}/rules/audit-checks.mdHIGHWhat to validate per skill
Status Rules${CLAUDE_SKILL_DIR}/rules/audit-status.mdMEDIUMPASS/WARN/FAIL classification
Output Format${CLAUDE_SKILL_DIR}/references/output-format.mdMEDIUMTable layout and column definitions
Edge Cases${CLAUDE_SKILL_DIR}/references/edge-cases.mdLOWManifest "all", orchestration skills

Total: 2 rules across 2 categories

CRITICAL: Task Management is MANDATORY (CC 2.1.16)

BEFORE doing ANYTHING else, create tasks to track progress:

# 1. Create main task IMMEDIATELY
TaskCreate(
  subject="Audit Skills: full scan",
  description="Auditing all OrchestKit skills for quality and compliance",
  activeForm="Auditing skill quality"
)

# 2. Create subtasks for each audit phase
TaskCreate(subject="Discover skills", activeForm="Globbing SKILL.md files")
TaskCreate(subject="Run audit checks", activeForm="Checking each skill")
TaskCreate(subject="Classify & render", activeForm="Classifying results and rendering report")

# 3. Set dependencies for sequential phases
TaskUpdate(taskId="3", addBlockedBy=["2"])
TaskUpdate(taskId="4", addBlockedBy=["3"])

# 4. Before starting each task, verify it's unblocked
task = TaskGet(taskId="2")  # Verify blockedBy is empty

# 5. Update status as you progress
TaskUpdate(taskId="2", status="in_progress")  # When starting
TaskUpdate(taskId="2", status="completed")    # When done

Workflow

1. Discover — Glob src/skills/*/SKILL.md to get full skill list 2. Check each skill — Run all checks from Read("${CLAUDE_SKILL_DIR}/rules/audit-checks.md") in parallel 3. Classify — Apply status rules from Read("${CLAUDE_SKILL_DIR}/rules/audit-status.md") 4. Render — Output table using format from Read("${CLAUDE_SKILL_DIR}/references/output-format.md") 5. Totals — Show X pass, Y warn, Z fail at bottom

Quick Start

bash src/skills/audit-skills/scripts/run-audit.sh

Or invoke manually — Claude scans src/skills/, applies checks, and renders the summary table.

CC 2.1.152+: After fixing SKILL.md files surfaced by the audit, run /reload-skills to re-scan skill directories and pick up the changes in-session (no restart). For plugin-packaged skills, rebuild + /reload-plugins instead.

Key Decisions

DecisionRecommendation
Manifest check"skills": "all" in ork.json means ALL skills qualify — mark YES
0 rules + refsWARN only — some orchestration skills are legitimately rules-free
Broken refsWARN (not FAIL) — file may exist under a different path

Related Skills

  • ork:skill-evolution — Guidance on iterating and improving skills
  • ork:quality-gates — Broader codebase quality checks

Related skills

Skill Developmentagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.