π¦ ClawHub
skill-auditor-plus
by @caleb-niu007
Security, performance, and quality auditing for AgentSkills. Use when reviewing skills before installation, auditing during development, checking installed s...
π‘ Examples
Audit a skill before installation
# Clone or download the skill
cd skill-auditor-plusRun security audit
python3 scripts/security_audit.py /path/to/skill-to-auditRun performance audit
python3 scripts/performance_audit.py /path/to/skill-to-audit
During skill development
# After making changes, audit your skill
python3 scripts/security_audit.py /path/to/your-skill
python3 scripts/performance_audit.py /path/to/your-skillFix issues, then re-audit
Iterate until no high/medium severity issues remain
Batch audit installed skills
# Audit all skills in a directory
for skill in /path/to/skills/*; do
echo "Auditing $skill"
python3 scripts/security_audit.py "$skill"
python3 scripts/performance_audit.py "$skill"
done
π Tips & Best Practices
See best-practices.md for comprehensive guidelines on:
TERMINAL
clawhub install skill-auditor-plus