Token导航 LogoToken导航TokenDH.com
AI 工具敏感数据github未标认证来源可访问clear审计未展示

app-icon应用程序图标

Agent Skill

app-icon 用于补充AI 工具相关能力,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 承接AI 工具相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,920

周安装

455

GitHub Stars

8

下载量

3,640
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:app-icon(应用程序图标)
来源仓库:https://github.com/Code-with-Beto/skills
仓库路径:skills/app-icon
安装命令:
npx skills add code-with-beto/skills --skill "app-icon"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add code-with-beto/skills --skill "app-icon"

简介

app-icon 在开发流程中集成应用程序图标生成与管理功能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主平台的 UI 辅助场景。
  • 通过 GitHub 仓库安装,具体接口请参考项目文档。
  • 注意检查其对本地文件系统或网络资源的访问权限。
  • 建议在非核心项目中先行试用以验证稳定性。

SKILL.md

name
app-icon
description
Generate app icons for your React Native Expo app with iOS 26 support

App Icon Generation Workflow

Overview

Generate professional app icons using AI and configure them for both iOS (with iOS 26 Liquid Glass support) and Android platforms in Expo apps.

Step 0: Verify SnapAI Setup (CRITICAL - DO THIS FIRST)

Before attempting to generate icons, check if SnapAI is configured:

  1. Check if SnapAI is configured:
npx snapai config --show
  1. If the config check fails or shows no API key:

- SnapAI requires an OpenAI API key to generate icons - Each icon costs approximately $0.04 via OpenAI's image generation API - Ask the user: "SnapAI requires an OpenAI API key. Do you have one, or would you like me to help you set it up?"

  1. If the user has an API key:

- Ask them to provide it securely - Configure it for them with:

   snapai config --api-key <their-api-key>

- Verify the setup worked:

   snapai config --show
  1. If the user needs to get an API key:

- Direct them to: https://platform.openai.com/api-keys - Explain: "You'll need to: 1. Create an OpenAI account if you don't have one 2. Navigate to API keys section 3. Click 'Create new secret key' 4. Copy the key (starts with 'sk-') 5. Come back here and provide it to me" - Once they provide the key, configure it using the command above

Important Notes:

  • API keys are stored locally and remain private (zero data collection)
  • Do NOT proceed with icon generation if SnapAI is not configured
  • The key must start with "sk-" to be valid
  • You can handle the configuration for the user - just ask for their API key

Step 1: Understand the App Context

  • Read the app.json to understand the app name and current icon configuration
  • Ask the user what the app is about if not clear from context
  • Identify the app's theme, purpose, and target aesthetic

Step 2: Get Style Preferences

Ask the user what style they'd like for the icon. Available styles:

  • minimalism - Clean, Apple-inspired minimalism (2-3 colors max)
  • glassy - Premium glass aesthetic with semi-transparent elements
  • gradient - Vibrant gradients, Instagram-inspired
  • neon - Cyberpunk, futuristic with glowing effects
  • material - Google Material Design
  • ios-classic - Traditional iOS with subtle gradients
  • pixel - Retro 8-bit/16-bit game art style
  • geometric - Bold, angular compositions

Or let the user provide a custom style description.

Step 3: Generate Icon with SnapAI

Pre-flight check: Verify SnapAI is configured before running (see Step 0)

Generate a 1024x1024 icon with transparent background (critical for both platforms):

npx snapai icon --prompt "YOUR_PROMPT_HERE" --background transparent --output-format png --style STYLE_NAME

Important flags:

  • --background transparent - REQUIRED for iOS 26 and Android adaptive icons
  • --output-format png - Ensures PNG format
  • --style - Optional, enhances the visual style
  • --quality high - Optional, for final production icons

The icon will be saved to ./assets/icon-[timestamp].png

Step 4: Create iOS 26 .icon Folder Structure

Create the new iOS 26 Liquid Glass icon format:

  1. Create the folder structure:
mkdir -p assets/app-icon.icon/Assets
  1. Copy the generated PNG:
cp assets/icon-[timestamp].png assets/app-icon.icon/Assets/icon.png
  1. Create assets/app-icon.icon/icon.json with this basic configuration:
{
  "fill": "automatic",
  "groups": [
    {
      "layers": [
        {
          "glass": false,
          "image-name": "icon.png",
          "name": "icon"
        }
      ],
      "shadow": {
        "kind": "neutral",
        "opacity": 0.5
      },
      "translucency": {
        "enabled": true,
        "value": 0.5
      }
    }
  ],
  "supported-platforms": {
    "circles": ["watchOS"],
    "squares": "shared"
  }
}

Step 4.5: Create Android-Optimized Adaptive Icon

Android adaptive icons have a smaller safe area (~66% of the canvas) compared to iOS. The main icon generated by SnapAI is optimized for iOS safe areas, which means it may appear too large and get clipped on Android devices with circular or squircle masks.

To ensure your icon displays correctly on all Android device shapes (circles, squircles, rounded squares), create a scaled-down version:

Using ImageMagick (recommended):

# Scale the icon to 66% and center it on a 1024x1024 transparent canvas
convert assets/icon-[timestamp].png \
  -resize 66% \
  -gravity center \
  -background transparent \
  -extent 1024x1024 \
  assets/android-icon.png

Alternative - Using sips + ImageMagick (macOS):

# Step 1: Resize to 66% (676x676)
sips -Z 676 assets/icon-[timestamp].png --out /tmp/icon-resized.png

# Step 2: Create the final centered image
convert -size 1024x1024 xc:transparent /tmp/icon-resized.png \
  -gravity center -composite assets/android-icon.png

Note: If ImageMagick is not installed, install it with:

brew install imagemagick

Step 5: Update app.json

Update the app.json to configure icons for both platforms:

For iOS:

{
  "expo": {
    "ios": {
      "icon": "./assets/app-icon.icon"
    }
  }
}

For Android:

Use the Android-optimized icon created in Step 4.5:

Option 1: Simple (with solid background color)

{
  "expo": {
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./assets/android-icon.png",
        "backgroundColor": "#ffffff"
      }
    }
  }
}

Option 2: Comprehensive (recommended) Since the icon has a transparent background, you can use it for all three Android adaptive icon fields:

{
  "expo": {
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./assets/android-icon.png",
        "backgroundImage": "./assets/android-icon.png",
        "monochromeImage": "./assets/android-icon.png"
      }
    }
  }
}

Benefits of Option 2:

  • foregroundImage - Main icon displayed
  • backgroundImage - Provides layered depth effect on Android 8.0+
  • monochromeImage - Used for themed icons on Android 13+ (automatically recolored by system)

Note:

  • For Option 1, ask the user for their preferred backgroundColor, or use white (#ffffff) as default
  • For Option 2, the same transparent PNG works perfectly for all three fields
  • Option 2 provides better integration with Android's Material You theming

Step 6: Verify and Test

  1. Verify the folder structure exists:
ls -la assets/app-icon.icon/
  1. Verify app.json is valid JSON:
cat app.json | jq .
  1. Inform the user to test the app with:
npx expo prebuild --clean
npx expo run:ios
npx expo run:android

Important Notes

  • Transparent background is critical - The icon must have a transparent background for both iOS Liquid Glass effect and Android adaptive icons
  • iOS 26 .icon format - The .icon folder enables Liquid Glass effects on iOS 26+
  • Dual-asset workflow - This skill generates two icon assets:

- icon-[timestamp].png - Main icon optimized for iOS safe areas (used in .icon folder) - android-icon.png - Scaled to 66% and centered for Android adaptive icon safe areas

  • Why two assets? - iOS and Android have different safe zones. iOS allows content closer to edges (~80-85%), while Android adaptive icons only guarantee ~66% of the center is visible due to aggressive masking (circles, squircles, etc.)
  • Android adaptive icon flexibility - The android-icon.png can be used for foregroundImage, backgroundImage, AND monochromeImage fields
  • Material You support - Using monochromeImage enables Android 13+ themed icons that adapt to user's color scheme
  • File naming - The .icon folder name can be customized (e.g., app-icon.icon, myapp.icon)

Troubleshooting

SnapAI Configuration Issues

  • "No API key found" - Run snapai config --api-key <key> to set it up
  • "Invalid API key" - Verify the key starts with "sk-" and is copied correctly from OpenAI
  • Authentication errors - Check if the API key has been revoked or has insufficient credits at platform.openai.com
  • Command not found - Ensure you're using npx snapai (not just snapai)

Icon Display Issues

  • If the icon doesn't appear, verify the path in app.json matches the actual folder location
  • Ensure the PNG inside the .icon folder is exactly 1024x1024
  • For Android, make sure all image paths (foregroundImage, backgroundImage, monochromeImage) are correct and point to existing files
  • Run npx expo prebuild --clean to regenerate native projects after icon changes

ImageMagick Issues (for Android icon)

  • "convert: command not found" - Install ImageMagick with brew install imagemagick
  • Permission denied - Ensure you have write access to the assets folder
  • Icon still appears clipped on Android - Try reducing the resize percentage from 66% to 60% for more aggressive safe area compliance

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.04%
按下载量换算984

Cursor

21.51%
按下载量换算783

Antigravity

18.9%
按下载量换算688

Codex

13.39%
按下载量换算487

Gemini CLI

7.91%
按下载量换算288

OpenCode

2.99%
按下载量换算109

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills