{"id":50821569,"url":"https://github.com/anhao/icon-generator-skill","last_synced_at":"2026-06-13T14:13:32.667Z","repository":{"id":345965378,"uuid":"1188038333","full_name":"anhao/icon-generator-skill","owner":"anhao","description":"Installable agent skill for generating Android and iOS app icon sets from a single source image via npx skills.","archived":false,"fork":false,"pushed_at":"2026-03-21T14:58:03.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-22T05:18:43.521Z","etag":null,"topics":["agent-skill","android-icons","codex-skill","icon-generator","ios-icons","npx-skills","pillow","vercel-skills"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anhao.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-21T14:34:38.000Z","updated_at":"2026-03-21T14:59:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/anhao/icon-generator-skill","commit_stats":null,"previous_names":["anhao/icon-generator-skill"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/anhao/icon-generator-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anhao%2Ficon-generator-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anhao%2Ficon-generator-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anhao%2Ficon-generator-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anhao%2Ficon-generator-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anhao","download_url":"https://codeload.github.com/anhao/icon-generator-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anhao%2Ficon-generator-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34287402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skill","android-icons","codex-skill","icon-generator","ios-icons","npx-skills","pillow","vercel-skills"],"created_at":"2026-06-13T14:13:32.067Z","updated_at":"2026-06-13T14:13:32.661Z","avatar_url":"https://github.com/anhao.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# icon-generator-skill\n\nAgent skill for generating Android and iOS app icon sets from a single source image.\n\n## What it does\n\n- Exports Android launcher icons across common `mipmap-*` sizes\n- Exports iOS `AppIcon.appiconset` PNGs plus `Contents.json`\n- Optionally exports Android adaptive icon foreground/background/XML assets\n- Supports `contain` and `cover` fitting modes\n- Supports custom padding color, extra square sizes, and rounded corners\n\n## Install With `npx skills`\n\nThis repository is structured as a root-level skill repository, so it can be installed directly with the open skills CLI:\n\n```bash\nnpx skills add anhao/icon-generator-skill\n```\n\nExamples:\n\n```bash\n# Install globally for detected agents\nnpx skills add anhao/icon-generator-skill -g\n\n# Install only for Codex\nnpx skills add anhao/icon-generator-skill -g -a codex\n\n# Install only for Claude Code\nnpx skills add anhao/icon-generator-skill -g -a claude-code\n\n# List available skills in this repo\nnpx skills add anhao/icon-generator-skill --list\n```\n\nThe `vercel-labs/skills` CLI discovers skills from a repository root when that root contains `SKILL.md`, which is how this repository is organized.\n\n## Repository Layout\n\nMain files:\n\n- `SKILL.md`: skill trigger and workflow instructions\n- `scripts/icon_generator.py`: bundled export script\n- `references/usage.md`: argument and output reference\n\n## Dependency\n\n```bash\npython3 -m pip install 'Pillow\u003e=10.0.0'\n```\n\n## Direct Script Usage\n\nBasic export:\n\n```bash\npython3 scripts/icon_generator.py input.png -o output_icons\n```\n\nExport with crop, rounded corners, and extra sizes:\n\n```bash\npython3 scripts/icon_generator.py input.png \\\n  -o output_icons \\\n  --mode cover \\\n  --background '#FFFFFFFF' \\\n  --extra-sizes 256 384 \\\n  --corner-radius 18\n```\n\nExport Android adaptive icons:\n\n```bash\npython3 scripts/icon_generator.py input.png \\\n  -o output_icons \\\n  --android-adaptive \\\n  --adaptive-background '#FFFFFF'\n```\n\n## Manual Install\n\nIf you want to install it manually instead of using `npx skills`, place this repository in an agent skill directory and keep the skill folder name aligned with the skill trigger `$icon-generator`.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanhao%2Ficon-generator-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanhao%2Ficon-generator-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanhao%2Ficon-generator-skill/lists"}