adr
Write an Architecture Decision Record documenting a significant technical decision.
Identify CSS rules that are not used by any component or page.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/find-unused-cssContext preview
What this command does when you run it.
Identify CSS rules that are not used by any component or page.
Identify CSS rules that are not used by any component or page.
1. Scan all CSS, SCSS, and styled-component files in the project 2. Extract all CSS selectors: classes, IDs, element selectors, attribute selectors 3. Scan all HTML, JSX, TSX, and template files for referenced CSS classes 4. Check JavaScript files for dynamically applied classes (classList, className) 5. Account for CSS modules by checking module import usage 6. Cross-reference selectors with their usage across all template files 7. Identify selectors with zero references in any template or component 8. Check for CSS custom properties (variables) that are defined but never used 9. Detect duplicate CSS rules with identical properties 10. Calculate unused CSS as a percentage of total CSS 11. Report unused selectors with file path, line number, and selector name 12. Estimate bundle size savings from removing unused CSS
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.