Help us improve
Share bugs, ideas, or general feedback.
From abstract
Analyzes skill file complexity metrics including lines, tokens, headings, and code blocks, generating modularization recommendations for splitting or progressive loading.
npx claudepluginhub athola/claude-night-market --plugin abstractHow this command is triggered — by the user, by Claude, or both
Slash command
/abstract:analyze-skillThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Analyze Skill Complexity Analyzes a skill file for complexity metrics and provides modularization recommendations based on the modular-skills framework. ## When To Use Use this command when you need to: - Assessing skill file complexity before adding content - Planning modularization strategies - Checking if a skill needs to be split - Validating progressive disclosure design ## When NOT To Use Avoid this command if: - Evaluating skill quality - use /skills-eval instead - Estimating token usage only - use /estimate-tokens instead - Creating new skills - use /create-skill instead ## ...
/skill-auditPerforms static audit of SKILL.md files — validates frontmatter, checks edge-case coverage, surfaces prompt-injection risks, and reports length budget.
/validate-skillValidates skill file at given path for structure, quality, security, standards, and ecosystem compliance, producing detailed report with summary, findings, recommendations, and readiness status.
/reviewAudits an existing skill for structure, frontmatter, description and body quality, triggering risks, and MCP usage, producing a scored review report with recommendations.
/analyze-skillsAnalyzes installed skills for token usage, dependencies, and optimization suggestions. Reports totals, largest skills, quality scores, dependency patterns, and recommendations.
Share bugs, ideas, or general feedback.
Analyzes a skill file for complexity metrics and provides modularization recommendations based on the modular-skills framework.
Use this command when you need to:
Avoid this command if:
# Analyze specific skill file
/analyze-skill skills/my-skill/SKILL.md
# Analyze skill directory
/analyze-skill skills/my-skill
# Analyze current directory (if in a skill folder)
/analyze-skill .
The analyzer evaluates several complexity dimensions:
# level headings## level headings/analyze-skill skills/modular-skills/SKILL.md
# Output:
# === Analysis for: skills/modular-skills/SKILL.md ===
# Line count: 180 (threshold: 150)
# Estimated tokens: 1,847
# === Recommendations ===
# MODULARIZE: File exceeds threshold (180 > 150)
# GOOD: Token usage in optimal range
/analyze-skill skills/skills-eval --verbose
# Includes detailed section breakdown
This command is the first step in the modular-skills workflow:
/estimate-tokens for token budgeting/skills-eval for quality checkspython3 ${CLAUDE_PLUGIN_ROOT}/scripts/skill_analyzer.py --file "${1:-.}"