find-hugeicons
Use this skill when the user wants to find or search for HugeIcons by keyword, or when you need to look up what icon names are available in the HugeIcons library before using them in Compose code.
git clone --depth 1 https://github.com/rikkahub/rikkahub /tmp/find-hugeicons && cp -r /tmp/find-hugeicons/.agents/skills/find-hugeicons ~/.claude/skills/find-hugeiconsSKILL.md
# Find HugeIcons Use this skill to search for available icons in the local HugeIcons Compose library. ## When to use - The user asks to find an icon by keyword (e.g., "find a search icon", "what icon should I use for settings?") - You need to verify an icon name before writing Compose code - The user asks what icons are available for a certain concept ## Icon Library Location Icons are extracted from the compiled dependency JAR in the Gradle cache. Do NOT look at the source project. ## Workflow 1. Find the HugeIcons JAR in the Gradle cache: ```bash find ~/.gradle/caches -path "*hugeicons-compose*/jars/classes.jar" | head -1 ``` 2. Search for icons by keyword in the JAR: ```bash jar -tf <jar_path> | grep -i "<keyword>" | grep "stroke/.*Kt.class" | sed 's|me/rerere/hugeicons/stroke/||;s|Kt.class||' ``` Or as a single pipeline: ```bash jar -tf $(find ~/.gradle/caches -path "*hugeicons-compose*/jars/classes.jar" | head -1) | grep -i "<keyword>" | grep "stroke/.*Kt.class" | sed 's|me/rerere/hugeicons/stroke/||;s|Kt.class||' ``` 3. Present a list of matching icon names to the user. 4. Show the correct Compose usage for each result. ## Compose Usage Pattern ```kotlin // Import each icon used import me.rerere.hugeicons.stroke.AiMagic // Use in Compose Icon(HugeIcons.AiMagic, contentDescription = null) ``` ## Constraints - Icon names are PascalCase (e.g., `GlobalSearch`, `Settings03`, `AiMagic`). - All icons live under the `stroke` package. - Do not guess icon names — always verify by searching the directory first. - Present results clearly with both the property name and the import path.
|-
Use this skill when building applications with Gemini API hosted models, including Gemini and Gemma 4, working with multimodal content (text, images, audio, video), implementing function calling, using structured outputs, or needing current model specifications. Covers SDK usage (google-genai for Python, @google/genai for JavaScript/TypeScript, com.google.genai:google-genai for Java, google.golang.org/genai for Go), model selection, and API capabilities.
Use this skill when writing code that calls the Gemini API for text generation, multi-turn chat, multimodal understanding, image generation, video generation, streaming responses, background research tasks, function calling, structured output, or migrating from the old generateContent API. This skill covers the Interactions API, the recommended way to use Gemini models and agents in Python and TypeScript.
Use this skill when users request i18n/localization updates for Android string resources, especially when adding new keys or translating via locale-tui.
Use this skill when users request to publish an release update.