← ClaudeAtlas

skill-budget-auditlisted

Diagnose and fix Claude Code's skill context budget overflow, identify heavy plugin bundles that exceed the 2% budget, remove domain-specific ones, deactivate rarely-used skill sets, and validate the warning clears. Use when Claude Code shows "Exceeded skills context budget" or skill descriptions are stripped.
oleg-koval/agent-skills · ★ 3 · AI & Automation · score 75
Install: claude install-skill oleg-koval/agent-skills
<!-- Generated by scripts/build-adapters.sh. Do not edit directly. --> > 🤖 *Auto-generated by **weekly-pattern-learner** · Skill context budget overflow appeared in 2 sessions this week (Jun 2026): initial investigation (7 turns, 742 skills hidden) and cleanup followup (14 turns)* # Skill Context Budget Audit ## Overview Claude Code allocates 2% of its context window for skill descriptions. With too many plugins installed, descriptions get stripped and skills become invisible. This skill audits plugin bundles, removes unused domain-specific ones, and restores skill discoverability. ## When to Use - Claude Code shows: `⚠ Exceeded skills context budget of 2%. All skill descriptions were removed and N additional skills hidden.` - Skill invocations fail silently or Claude cannot find a skill by name - After installing multiple plugin bundles, noticing slowdown or skill lookup failures - Periodically as a maintenance step when adding new skill collections ## Workflow ### 1. Confirm the Symptom ```bash # Check Claude Code logs for context budget warning cat ~/.claude/logs/claude-code.log 2>/dev/null | grep -i "skill" | tail -20 # Or count installed plugins ls ~/.claude/plugins/cache/ | wc -l ``` If you see `Exceeded skills context budget` or more than ~20 plugin bundles, proceed. ### 2. Inventory Installed Plugins ```bash # List all installed plugins with size du -sh ~/.claude/plugins/cache/*/ 2>/dev/null | sort -rh | head -30 # Count skills per bundle for dir in ~/.