mcpbeat

Audit Library Health

moizibnyousaf/audit-library-health

Use when checking the overall health of a skills library. Run doctor, validate, check for stale skills, and verify generated docs are in sync.

518 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1114
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/MoizIbnYousaf/Ai-Agent-Skills --skill audit-library-health

The instruction itself

6 sections, as written by the author

Audit Library Health

Goal

Verify that a skills library is consistent, up-to-date, and ready to share or install from.

Guardrails

  • Always use --format json for structured output when automating health checks.
  • Always use --dry-run before running build-docs to check if docs are already in sync.
  • Never push a library to a shared repo without passing validate and doctor first.
  • Use --fields to limit output when inspecting large catalogs.

Workflow

  • Run the validation script to check catalog integrity.
npx ai-agent-skills validate

This checks: required fields, folder consistency, frontmatter validity, collection integrity, and generated doc sync.

  • Run doctor to check installed skills health.
npx ai-agent-skills doctor --format json
  • Check for skills that may need updates.
npx ai-agent-skills check --format json
  • Verify generated docs are in sync.
npx ai-agent-skills build-docs --dry-run --format json

If currentlyInSync is false, regenerate:

npx ai-agent-skills build-docs
  • Review the curation queue for skills needing attention.
npx ai-agent-skills curate review --format json

Health Checklist

  • [ ] validate passes with no errors
  • [ ] doctor reports no broken installs
  • [ ] build-docs --dry-run shows docs are in sync
  • [ ] No skills with empty whyHere fields
  • [ ] All house skills have matching folders in skills/
  • [ ] skills.json total matches actual skill count

Gotchas

  • validate and doctor are read-only — they never mutate the library.
  • check makes network requests to verify upstream sources. It may be slow or timeout on unreachable repos.
  • The curate review queue is derived from missing fields and stale verification dates — it is a heuristic, not a mandate.

How to use it

Copy the folder

Take moizibnyousaf/audit-library-health from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.