app-icon-generator

app-icon-generator is a skill for Claude Code from lifedever/skills-plugin. It costs 103 tokens per session (1,021 once invoked), scanned A, original, MIT.

A tool for designing an application icon and exporting it in the image formats required by macOS, Windows, iOS, Tauri, and Electron.

In plain words
What is it for?
Use it to create an app logo, convert an SVG into icons, or produce .icns, .ico, and PNG files for desktop or mobile applications.
Why use it?
It turns one icon design into platform-specific files and image sizes, reducing manual conversion work.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_SKILL_DIR} variable.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash "${CLAUDE_SKILL_DIR}/scripts/convert_icons.sh" logo.svg ./icons/.

Part of the lifedever plugin — 15 skills shipped together

Good fit Use it to create an app logo, convert an SVG into icons, or produce .icns, .ico, and PNG files for desktop or mobile applications.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/lifedever/skills-plugin
agentmods
npx agentmods add skills/lifedever/skills-plugin/app-icon-generator

Made for: Claude Code.

Or install lifedever, the plugin that ships this one along with the rest of its 15 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for app-icon-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/lifedever/skills-plugin/app-icon-generator.svg)](https://agentmods.dev/skills/lifedever/skills-plugin/app-icon-generator)
Your own site
<a href="https://agentmods.dev/skills/lifedever/skills-plugin/app-icon-generator"><img src="https://agentmods.dev/badge/skills/lifedever/skills-plugin/app-icon-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,021 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00103 $0.01021
Opus 5 $0.00051 $0.00511
Sonnet 5 $0.00021 $0.00204
Haiku 4.5 $0.00010 $0.00102

Measured 8d ago against content hash 37d50ed6814d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

app-icon-generator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/convert_icons.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/app-icon-generator/SKILL.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

App Icon Generator

Generate a production-ready app icon from concept to all required platform formats.

Prerequisites

Before starting, verify required tools are installed. Run this first and only proceed if all checks pass:

which rsvg-convert || echo "⚠ Install required: brew install librsvg"
python3 -c "import PIL" 2>/dev/null || echo "ℹ Optional: pip3 install Pillow (needed for .ico Windows icons)"
  • rsvg-convert — required for SVG → PNG rasterization. If missing, ask the user to install brew install librsvg and stop.
  • Pillow — optional, only needed if the user wants Windows .ico. Without it the script gracefully skips .ico and still produces .icns + all PNG sizes.
  • sips — pre-installed on macOS, no action needed.

Workflow

1. Design the SVG (1024x1024)

Create logo.svg with these specs:

  • Canvas: viewBox="0 0 1024 1024" width/height 1024
  • Safe area: 824x824 effective area, 100px padding on each side
  • Background: Rounded rect at x=100 y=100 width=824 height=824 rx=185 ry=185
  • Content: Centered within the 824x824 area
  • Use linearGradient for depth, feDropShadow for polish
  • Keep shapes simple — icons render at 16x16 too

Example skeleton:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024">
  <defs>
    <linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#COLOR1"/>
      <stop offset="100%" stop-color="#COLOR2"/>
    </linearGradient>
  </defs>
  <rect x="100" y="100" width="824" height="824" rx="185" ry="185" fill="url(#bg)"/>
  <!-- Icon content here, centered around cx=512 cy=512 -->
</svg>

2. Convert to All Formats

Run the bundled conversion script:

bash "${CLAUDE_SKILL_DIR}/scripts/convert_icons.sh" logo.svg ./icons/

This generates all files in one step:

File Purpose
32x32.png, 128x128.png, [email protected] Desktop standard
icon.png (512x512) General use
icon.icns macOS app bundle
icon.ico Windows executable
Square*Logo.png Windows UWP/Store
StoreLogo.png Windows Store

Read the full file on GitHub · 99 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 99 lines · 103 tokens per session scan A 37d50ed6814d

Subscribe to this mod's changes

app-icon-generator is a skill published in the GitHub repository lifedever/skills-plugin (11 stars, last pushed 17d ago), licensed MIT. It adds 103 tokens to every session and 1,021 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

html-ppt-zhangzara-retro-zine

A neighborhood zine on the disappearing corner shops — portraits, voices, and what a block loses when they close. Built as a decision-grade story deck for community, local readers.

nexu-io/open-design · 49 tokens

html-ppt-zhangzara-studio

A photography studio's portfolio-and-rate deck — the signature work, the process, and the packages that win the brief. Built as a decision-grade design craft deck for prospective clients.

nexu-io/open-design · 47 tokens

motion-frames

A single-frame motion-design composition with looping CSS animations — rotating type ring, animated globe, ticking timer, parallax labels. Renders as a hero video poster you can hand straight to HyperFrames or any keyframe-based exporter. Use when the brief asks for "motion design", "animated hero", "loop", "video…

nexu-io/open-design · 91 tokens

webgl-halftone-drift

A self-contained WebGL2 hero: a flowing field screened through a rotated halftone dot grid into a duotone print aesthetic; move the cursor to bend the drift.

nexu-io/open-design · 44 tokens

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

motion-graphics

A short, design-led motion graphic where motion is the message — kinetic typography, stat count-up, chart/data-viz hit, logo sting / brand lockup, lower-third / callout / social overlay, animated map (highlight regions, connect places, zoom to a location), animated tweet / news-article / headline, webpage / UI…

heygen-com/hyperframes · 139 tokens