원클릭으로
icon
Generate icons, stickers, and app assets using AI. Use when user wants to create icons, stickers, logos, or visual assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate icons, stickers, and app assets using AI. Use when user wants to create icons, stickers, logos, or visual assets.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | icon |
| description | Generate icons, stickers, and app assets using AI. Use when user wants to create icons, stickers, logos, or visual assets. |
| disable-model-invocation | false |
| user-invocable | true |
| allowed-tools | Bash, Read, Write, Glob |
| argument-hint | <description> [--ref <reference-image>] [--style <style>] [--output <path>] |
Generate icons, stickers, and visual assets using Google's Imagen (nano-banana) model.
Parse the user's request from: $ARGUMENTS
Expected formats:
/icon a happy cloud mascot - Generate icon with description/icon a cat waving --ref ./style.png - Match style of reference image/icon app logo --style flat-minimal --output ./assets/logo.png - With style preset and output path/icon --setup - Configure API keyIf user runs /icon --setup or if GEMINI_API_KEY is not configured:
security add-generic-password -a "$USER" -s "gemini-api-key" -w "THE_API_KEY" -U
Check API key exists:
security find-generic-password -a "$USER" -s "gemini-api-key" -w 2>/dev/null
If not found, guide user through setup.
Determine output path:
--output specified, use thatAssets.xcassets/./generated-icons/Run the generator script:
python3 "$(dirname "$0")/../../scripts/generate_icon.py" \
--description "USER_DESCRIPTION" \
--reference "REFERENCE_PATH_IF_ANY" \
--style "STYLE_IF_SPECIFIED" \
--output "OUTPUT_PATH"
Show the result:
open OUTPUT_PATHAvailable styles (use with --style):
flat-minimal - Clean, flat design with minimal details3d-glossy - 3D look with glossy highlightshand-drawn - Sketch/illustration stylepixel-art - Retro pixel art stylegradient - Modern gradient styleoutline - Line art / outline onlysticker - Sticker style with white border (auto-removes background)User: /icon a smiling sun for a weather app
→ Generate cheerful sun icon, save to ./generated-icons/
User: /icon matching this style --ref ./my-icons/home.png a settings gear
→ Analyze reference, generate gear icon in same style
User: /icon --setup
→ Guide through API key configuration
pip install rembg