Iconify Skill
Use the CLI in scripts/iconify_cli.py to search, suggest, and fetch SVG icons.
Quickstart
- Ensure Python 3 is available.
- Run
doctorto validate the environment. - If the offline index is missing, build it.
python3 $SKILL_DIR/scripts/iconify_cli.py doctor
python3 $SKILL_DIR/scripts/iconify_cli.py build-index
Command Interface
python3 $SKILL_DIR/scripts/iconify_cli.py <command> [arguments]
Common Commands
list-collections- List icon setssearch <query>- Search icons (offline)get <prefix:name>- Get SVG (requires network)suggest "<intent>"- Suggest icons for intentattribution- Show license infodoctor- System health check
Usage Examples
# Search icons (offline)
python3 $SKILL_DIR/scripts/iconify_cli.py search "close button" --limit 5
# Get SVG with custom styling
python3 $SKILL_DIR/scripts/iconify_cli.py get mdi:home --size 24 --color "#3B82F6"
# Suggest icons for a feature
python3 $SKILL_DIR/scripts/iconify_cli.py suggest "user profile page"
# Filter by collection
python3 $SKILL_DIR/scripts/iconify_cli.py search "home" --prefixes lucide,heroicons
Offline + Data Notes
searchworks offline using the bundled SQLite index indata/.getneeds network access (Iconify API).- Use
doctorto confirm cache/index availability. - Use
build-indexto regenerate the search index if needed.
Bundled Collections (32K icons)
mdi, ph, tabler, simple-icons, lucide, bi, heroicons, feather, radix-icons
Output Format
Exit Codes
0- Success1- No icons found / invalid arguments2- Network error (get command)3- Database error (offline mode)
SVG Output
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<path fill="#3B82F6" d="..."/>
</svg>
<!-- Icon: mdi:check -->
<!-- License: MIT -->
References
- Read
references/REFERENCE.mdfor architecture details, CLI behavior, cache paths, and error handling. - Read
references/LICENSES_AND_ATTRIBUTION.mdwhen you need license requirements.