Generate flat favicons from image prompts, then key out a magenta background and build PNG/ICO/WebP outputs with ImageMagick. Use when you need a reliable favicon workflow.
Install with Tessl CLI
npx tessl i github:Dicklesworthstone/pi_agent_rust --skill favicon-generator82
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Create clean, flat favicons with a transparent background. Generate a base PNG on a solid magenta background, remove the magenta with ImageMagick, then export favicon.ico, PNG sizes, Apple touch icon, and WebP.
uvmagick (ImageMagick)GEMINI_API_KEY setUse a solid magenta background so it can be keyed out later. Keep the icon flat and simple so it reads at 16×16.
Favicon icon, 1:1 square, solid magenta #FF00FF background. Simple flat vector icon of: <subject>. Bold geometric shapes, solid fills, no gradients, no shadows. Centered, fills 75–85% of frame. Do not use magenta in the icon.Use the Nano Banana Pro skill to generate the PNG. Run from your project directory so outputs land where you need them.
Example (update the path for your agent):
~/.codex/skills/nano-banana-pro/scripts/generate_image.py~/.claude/skills/nano-banana-pro/scripts/generate_image.py~/.pi/agent/skills/nano-banana-pro/scripts/generate_image.pyuv run <nanoBananaDir>/scripts/generate_image.py \
--prompt "<your prompt>" \
--filename "yyyy-mm-dd-hh-mm-ss-favicon.png" \
--resolution 1KIterate at 1K, then re-run at 2K/4K only when the prompt is locked.
Run the script from this skill:
bash {baseDir}/scripts/faviconize.sh <input-png> <output-base>Outputs:
<output-base>-transparent.png<output-base>-16.png, -32.png, -48.png<output-base>.ico<output-base>-apple-touch-icon.png (180×180)<output-base>-192.png, <output-base>-512.png<output-base>.webp (512×512)Set a different key color or fuzz if needed:
FAVICON_KEY_COLOR="#FF00FF" FAVICON_FUZZ="30%" bash {baseDir}/scripts/faviconize.sh input.png faviconAdd or update links in your HTML layout:
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
<link rel="apple-touch-icon" href="/favicon-apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">Update site.webmanifest:
{
"icons": [
{"src": "/favicon-192.png", "sizes": "192x192", "type": "image/png"},
{"src": "/favicon-512.png", "sizes": "512x512", "type": "image/png"},
{"src": "/favicon.webp", "sizes": "512x512", "type": "image/webp"}
]
}#FF00FF background.5b012b7
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.