theme-audit
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Theme Audit
Audit theme definitions and usage across the codebase.
Theme definitions
!cat internal/theme/theme.go | head -200
Theme usage in UI
!grep -r "theme\." internal/app/ --include="*.go" | head -50
Potential hardcoded colours
!grep -rE "(lipgloss\.(Color|AdaptiveColor)\(|#[0-9a-fA-F]{6})" internal/app/ --include="*.go" | head -30