What problem does it solve? When working on UI tasks in AI coding agents like Codex, Cursor, or Claude Code, loading too much context wastes tokens and dilutes focus, while loading too little misses important guidance. This Skill acts as a routing layer that selects the smallest useful UI skill context for a given goal. ## Core Features & Use Cases - Task Routing: Decides whether a task is UI-related and returns "no skill needed" when it is not. - Category Inspection: Uses the ui-skills CLI to list categories and skills, then picks the most specific match by topic, stack, and specificity. - Context Budgeting: Enforces a strict limit of 1-3 skills per task, preferring a single specific skill over broad ones. - Use Case: A developer asks an agent to redesign a dashboard layout. The Skill inspects the relevant category with npx ui-skills list --category <category>, loads one targeted layout skill, and implements the change with only that context. ## Quick Start Ask the agent to handle a UI task, and it will run npx ui-skills categories to pick and load the smallest relevant skill before implementing.