Evaluate and improve Claude skill quality through comprehensive auditing. Triggers: skill audit, quality review, compliance check, improvement suggestions, token usage analysis, skill evaluation, skill assessment, skill optimization, skill standards, skill metrics, skill performance Use when: reviewing skill quality, preparing skills for production, auditing existing skills, generating improvement recommendations, checking compliance with standards, analyzing token efficiency, benchmarking skill performance DO NOT use when: creating new skills from scratch - use modular-skills instead. DO NOT use when: writing prose for humans - use writing-clearly-and-concisely. DO NOT use when: need architectural design patterns - use modular-skills. Use this skill BEFORE shipping any skill to production. Check even if unsure.
/plugin marketplace add athola/claude-night-market/plugin install abstract@claude-night-marketThis skill inherits all available tools. When active, it can use any tool Claude has access to.
README.mdmodules/advanced-tool-use-analysis.mdmodules/authoring-checklist.mdmodules/evaluation-framework.mdmodules/evaluation-workflows.mdmodules/integration-testing.mdmodules/integration.mdmodules/performance-benchmarking.mdmodules/pressure-testing.mdmodules/quality-metrics.mdmodules/skill-authoring-best-practices.mdmodules/trigger-isolation-analysis.mdmodules/troubleshooting.mdscripts/README.mdscripts/automation/deploy.shscripts/automation/setup.pyscripts/automation/validate.pyscripts/compliance_checker.pyscripts/improvement_suggester.pyscripts/skill_utils.pyAnalyze and improve Claude skills across ~/.claude/ locations. The tools audit skills against quality standards, measure token usage, and generate improvement recommendations.
A meta-skill for evaluating and improving existing skills. It runs quality assessments, performance analysis, and generates improvement plans.
# Run comprehensive audit of all skills
python scripts/skills_eval/skills_auditor.py --scan-all --format markdown
# Audit specific skill
python scripts/skills_eval/skills_auditor.py --skill-path path/to/skill/SKILL.md
# Or use Makefile:
make audit-skill PATH=path/to/skill/SKILL.md
make audit-all
# Deep analysis of single skill
python scripts/skill_analyzer.py --path path/to/skill/SKILL.md --verbose
# Check token usage
python scripts/token_estimator.py --file path/to/skill/SKILL.md
# Or use Makefile:
make analyze-skill PATH=path/to/skill/SKILL.md
make estimate-tokens PATH=path/to/skill/SKILL.md
# Get prioritized improvement suggestions
python scripts/skills_eval/improvement_suggester.py --skill-path path/to/skill/SKILL.md --priority high
# Check standards compliance
python scripts/skills_eval/compliance_checker.py --skill-path path/to/skill/SKILL.md --standard all
# Or use Makefile:
make improve-skill PATH=path/to/skill/SKILL.md
make check-compliance PATH=path/to/skill/SKILL.md
make audit-all to find and audit all skillsmake audit-skill PATH=... for specific skillsmake analyze-skill PATH=... for complexity analysismake improve-skill PATH=...make check-compliance PATH=...make estimate-tokens PATH=...# Comprehensive evaluation with scoring
./scripts/skills-auditor --scan-all --format table --priority high
# Detailed analysis of specific skill
./scripts/improvement-suggester --skill-path path/to/skill/SKILL.md --priority all --format markdown
# Token usage and efficiency
./scripts/token-usage-tracker --skill-path path/to/skill/SKILL.md --context-analysis
# Advanced tool performance metrics
./scripts/tool-performance-analyzer --skill-path path/to/skill/SKILL.md --metrics all
# Validate against Claude Skills standards
./scripts/compliance-checker --skill-path path/to/skill/SKILL.md --standard all --format summary
# Auto-fix common issues
./scripts/compliance-checker --skill-path path/to/skill/SKILL.md --auto-fix --severity high
# Generate prioritized improvement plan
./scripts/improvement-suggester --skill-path path/to/skill/SKILL.md --priority critical,high
# Benchmark performance
./scripts/token-usage-tracker --skill-path path/to/skill/SKILL.md --benchmark optimization-targets
The framework evaluates skills across multiple dimensions with weighted scoring:
Primary Categories (100 points total):
For comprehensive implementation details and advanced techniques:
modules/trigger-isolation-analysis.md for evaluating frontmatter compliancemodules/skill-authoring-best-practices.md for official Claude guidancemodules/authoring-checklist.md for quick-reference validation checklistmodules/evaluation-workflows.md for detailed workflowsmodules/quality-metrics.md for scoring criteria and evaluation levelsmodules/advanced-tool-use-analysis.md for specialized evaluation techniquesmodules/evaluation-framework.md for detailed scoring and quality gatesmodules/integration.md for workflow integration with other skillsmodules/troubleshooting.md for common issues and solutionsmodules/pressure-testing.md for adversarial validation methodologyscripts/ directoryscripts/automation/This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.