AI-powered logo design with iterative refinement, background removal, and SVG export.
Works with
Guides users through discovery (style, ratio, colors) before generating 20 initial logo variations using AI image generation
Includes batch generation, HTML preview gallery, and iterative feedback loops to refine designs across multiple rounds
Provides post-processing tools: automatic whitespace cropping, background removal via remove.bg API, and vectorization to SVG format
Requires three API key
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionlogo-creatorExecute the skills CLI command in your project's root directory to begin installation:
Fetches logo-creator from resciencelab/opc-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate logo-creator. Access via /logo-creator in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
2
total installs
2
this week
682
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
682
stars
Create professional logos through AI image generation with an iterative design process.
Required API Keys (set in environment):
GEMINI_API_KEY - Get from Google AI StudioREMOVE_BG_API_KEY - Get from remove.bgRECRAFT_API_KEY - Get from recraft.aiRequired Skills:
nanobanana - AI image generation (Gemini 3 Pro Image)All generated files should be saved to the .skill-archive directory:
.skill-archive/logo-creator/<yyyy-mm-dd-summaryname>/
Example:
.skill-archive/logo-creator/2026-01-18-opc-logo/
logo-01.png
logo-02.png
...
logo-09-cropped.png
logo-09-nobg.png
logo-09.svg
preview.html
Guidelines:
yyyy-mm-ddBefore generating, gather requirements from user:
Ask about:
Project/Brand name - What is the logo for?
Style preference - See references/styles.md for options:
Aspect ratio - Default is 1:1 (square), options:
1:1 - Square (favicons, app icons)16:9 - Wide (headers, banners)4:3 - Standard2:3 - PortraitColor preferences:
Reference images - Any existing logos or styles to reference?
Wait for user confirmation before proceeding!
Generate 20 logo variations (default) using the nanobanana skill:
# Generate single logo
python3 <nanobanana_skill_dir>/scripts/generate.py "{style} logo for {brand}, {description}, {colors}" \
--ratio 1:1 -o .skill-archive/logo-creator/<date-name>/logo-01.png
# Batch generate 20 logos
python3 <nanobanana_skill_dir>/scripts/batch_generate.py "{style} logo for {brand}, {description}, {colors}" \
-n 20 --ratio 1:1 -d .skill-archive/logo-creator/<date-name> -p logo
Guidelines:
.skill-archive/logo-creator/<yyyy-mm-dd-summaryname>/ directorylogo-01.png, logo-02.png, etc.Prompt Tips:
Copy the preview template and open in browser:
cp <skill_dir>/templates/preview.html .skill-archive/logo-creator/<yyyy-mm-dd-summaryname>/preview.html
Then open in default browser:
open .skill-archive/logo-creator/<yyyy-mm-dd-summaryname>/preview.html
IMPORTANT: Update the HTML to include the correct number of logos generated.
Ask user which logos they prefer:
Based on feedback:
logo-{original}-v{n}.png (e.g., logo-05-v1.png)Once user approves a logo, process it:
5a. Crop whitespace (make 1:1 with no margins):
python3 <skill_dir>/scripts/crop_logo.py {input.png} {output-cropped.png}
5b. Remove background:
python3 <skill_dir>/scripts/remove_bg.py {input.png} {output-nobg.png}
5c. Convert to SVG:
python3 <skill_dir>/scripts/vectorize.py {input.png} {output.svg}
Present final deliverables:
## Final Logo Assets
| File | Description | Size |
|------|-------------|------|
| logo.png | Original | 1024x1024 |
| logo-cropped.png | No margins, 1:1 | ~800x800 |
| logo-nobg.png | Transparent background | ~800x800 |
| logo.svg | Vector (scalable) | ~20KB |
All files saved to: `.skill-archive/logo-creator/<yyyy-mm-dd-summaryname>/`
Copy final logo to user's desired location.
Pixel Art:
Pixel art {subject} logo, 8-bit retro style, black pixels on white background, {size}x{size} grid, minimalist icon
Minimalist:
Minimalist {subject} logo, flat design, clean lines, {color} on white, simple geometric shapes
Mascot:
Cute {animal/character} mascot logo, friendly expression, {style} style, {colors}, suitable for brand icon
Lettermark:
Letter "{letter}" logo, modern typography, {style} design, {colors}, clean professional look
1:1 - Square (default for logos)2:3, 3:2 - Portrait/Landscape3:4, 4:3 - Standard4:5, 5:4 - Photo9:16, 16:9 - Wide21:9 - Ultra-widePrerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
rknall/claude-skills
vangongwanxiaowan/screen-creative-skills
daymade/claude-code-skills
schwepps/skills
jwynia/agent-skills
mindrally/skills
We added logo-creator from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Solid pick for teams standardizing on skills: logo-creator is focused, and the summary matches what you get after install.
logo-creator reduced setup friction for our internal harness; good balance of opinion and flexibility.
logo-creator has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in logo-creator — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
logo-creator fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added logo-creator from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in logo-creator — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend logo-creator for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
logo-creator fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 63