AgentSkillsCN

skill-issue

对已安装的所有智能体技能进行全面审计与审查。您可以按需运行,或通过 Cron 定期执行,以获取健康报告:包括技能清单、使用情况追踪、版本检查、依赖项健康状况,以及切实可行的建议(保留、更新、复审、移除)。当您被要求审查技能、检查技能更新、查找未使用的技能,或对整个技能生态系统进行审计时,可使用此技能。

SKILL.md
--- frontmatter
name: skill-issue
description: "Audit and review all installed agent skills. Run on-demand or via cron to get a health report: skill inventory, usage tracking, version checks, dependency health, and actionable recommendations (keep, update, review, remove). Use when asked to review skills, check for skill updates, find unused skills, or audit the skill ecosystem."

Skill Issue — Skill Auditor

Audit all installed skills and produce a markdown report with recommendations.

Quick Start

bash
# Basic — scans ./skills and ./memory
node scripts/audit.mjs

# Custom directories
SKILL_DIRS="./skills,/path/to/more/skills" MEMORY_DIR="./memory" node scripts/audit.mjs

# Save report
node scripts/audit.mjs > /tmp/skill-audit-report.md

Environment Variables

VariableDefaultDescription
SKILL_DIRS./skillsComma-separated skill directories to scan
MEMORY_DIR./memoryDated markdown logs for usage tracking
AUDIT_DAYS7Days back to scan for usage

What It Checks

  1. Inventory — Finds every subdirectory containing a SKILL.md with YAML frontmatter
  2. Usage — Scans recent memory/log files for skill name mentions
  3. Health — Verifies required binaries (requires.bins) and env vars (requires.env)
  4. Versions — Checks ClawdHub registry if clawdhub CLI is available
  5. Recommendations — keep (active+healthy), update (outdated), review (unused), remove (broken deps)

Safety

  • Read-only — Never modifies, installs, or removes anything
  • Advisory only — Recommendations require manual action