find-icon
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Context
Existing icon registry directories: !find . -name node_modules -type d -prune -o -type d -iname icons -print 2>/dev/null | head -5 || echo "(none)"
Package.json files declaring lucide-react: !find . -name node_modules -type d -prune -o -name package.json -print 2>/dev/null | xargs grep -l lucide-react 2>/dev/null | head -5 || echo "(none)"
Installed lucide-react version: !node -e "console.log(require('lucide-react/package.json').version)" 2>/dev/null || echo "(not installed)"
Instructions
Locate the correct icon for each target, prove it exists at its source, and deliver it in the form the repository already consumes icons, never writing an icon name or path data from memory.