Searches Iconify API for icons by query. Use when users need to find, search, or discover icons from Iconify collections.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill searches-iconify-cbingb666-cc-pocket-marketplac-3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Searches Iconify Cbingb666 Cc Pocket Marketplac 3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-searches-iconify-cbingb666-cc-pocket-marketplac-3)More formats (shields.io, HTML) on the badges page.
---
name: searches iconify
description: Searches Iconify API for icons by query. Use when users need to find, search, or discover icons from Iconify collections.
user-invocable: true
---
# Iconify Icon Search
## Task Progress
```text
- [ ] 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.**
```bash
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:**
```markdown
## 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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!