Agent skill
searches iconify
Searches Iconify API for icons by query. Use when users need to find, search, or discover icons from Iconify collections.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/searches-iconify
SKILL.md
Iconify Icon Search
Task Progress
- [ ] Generate keywords
- [ ] Execute parallel searches (all in same response)
- [ ] Aggregate results into template
Phase 1: Generate Keywords
From {{ARGUMENTS}}, create 3-5 keyword variations:
- Synonyms (settings → gear/cog/config)
- Split compounds (user-circle → user/circle/avatar)
- Add style suffixes (-line/-solid/-outline)
Phase 2: Parallel Search Execution
CRITICAL: Execute ALL curl commands in parallel. Send them all in ONE response.
curl -s "https://api.iconify.design/search?query=keyword1&limit=20"
curl -s "https://api.iconify.design/search?query=keyword2&limit=20"
curl -s "https://api.iconify.design/search?query=keyword3&limit=20"
Do NOT proceed to Phase 3 until all searches complete.
Phase 3: Aggregate and Format
Your COMPLETE output must be ONLY this template:
## Search Keywords
[keyword1, keyword2, keyword3]
## Search Results
### "keyword1" (found X icons)
| Icon Name | Collection | Preview |
|-----------|------------|---------|
| icon-name | collection |  |
### "keyword2" (found X icons)
| Icon Name | Collection | Preview |
|-----------|------------|---------|
| icon-name | collection |  |
## Recommendations
1. **collection:icon-name** - `<iconify-icon icon="collection:icon-name" />` 
2. **collection:icon-name** - `<iconify-icon icon="collection:icon-name" />` 
Processing rules:
- Deduplicate across all search results
- Sort by occurrence frequency
- Mark empty as "No icons found"
- NO text outside template
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?