AgentSkillsCN

logo-design

运用 55 种风格、30 种色彩搭配、25 个行业,打造 Logo 设计智能解决方案。借助 Gemini Nano Banana 模型生成 Logo,支持风格、色彩与行业的精准搜索。行动包括:设计、创作、生成 Logo。行业涵盖:科技、医疗健康、金融、食品、时尚、健身。风格包括:极简风、复古风、奢华风、几何风、抽象风、吉祥物设计、徽章造型。特色功能:AI 提示词生成、设计简报、色彩心理学分析。

SKILL.md
--- frontmatter
name: logo-design
description: "Logo design intelligence with 55 styles, 30 color palettes, 25 industries. Generate logos with Gemini Nano Banana model, search styles/colors/industries. Actions: design, create, generate logo. Industries: tech, healthcare, finance, food, fashion, fitness. Styles: minimalist, vintage, luxury, geometric, abstract, mascot, emblem. Features: AI prompt generation, design briefs, color psychology."
license: MIT
version: 1.0.0

Logo Design - AI-Powered Logo Intelligence

Comprehensive logo design system with 55+ styles, 30 color palettes, 25 industry guides. Search design guidelines and generate logos using Gemini Nano Banana models.

When to Apply

Activate when user requests:

  • Logo design or creation
  • Brand identity visual elements
  • Logo style recommendations
  • Color palette for logos
  • Industry-specific logo guidance

Quick Reference

Read this official docs for latest updates.

1. Generate Design Brief (RECOMMENDED START)

bash
python3 ~/.claude/skills/logo-design/scripts/search.py "tech startup modern" --design-brief -p "BrandName"

Returns: Industry analysis, style recommendations, color palettes.

2. Search Specific Domains

bash
# Search styles
python3 ~/.claude/skills/logo-design/scripts/search.py "minimalist clean modern" --domain style

# Search color palettes
python3 ~/.claude/skills/logo-design/scripts/search.py "tech professional trust" --domain color

# Search industry guidelines
python3 ~/.claude/skills/logo-design/scripts/search.py "healthcare medical" --domain industry

3. Generate Logo with Gemini Nano Banana model

ALWAYS generate output logo images with white background.

bash
python3 ~/.claude/skills/logo-design/scripts/generate.py --brand "TechFlow" --style minimalist --industry tech
python3 ~/.claude/skills/logo-design/scripts/generate.py --prompt "coffee shop vintage badge" --style vintage

Options: --style (minimalist, vintage, luxury, etc.), --industry (tech, healthcare, food, etc.)

IMPORTANT: When scripts failed, try to fix the scripts directly.

Available Styles

CategoryStyles
GeneralMinimalist, Wordmark, Lettermark, Pictorial Mark, Abstract Mark, Mascot, Emblem, Combination Mark
AestheticVintage/Retro, Art Deco, Luxury, Playful, Corporate, Organic, Neon, Grunge, Watercolor
ModernGradient, Flat Design, 3D/Isometric, Geometric, Line Art, Duotone, Motion-Ready
CleverNegative Space, Monoline, Split/Fragmented, Responsive/Adaptive

Color Psychology Quick Guide

ColorPsychologyBest For
BlueTrust, stability, professionalFinance, tech, healthcare
GreenGrowth, natural, sustainableEco, wellness, organic
RedEnergy, passion, urgencyFood, sports, entertainment
GoldLuxury, premium, prestigeFashion, jewelry, hotels
PurpleCreative, innovative, premiumBeauty, creative, tech

Industry Defaults

IndustryStyleColorsTypography
TechMinimalist, AbstractBlues, purples, gradientsGeometric sans
HealthcareProfessional, Line ArtBlues, greens, tealsClean sans
FinanceCorporate, EmblemNavy, goldSerif or clean sans
FoodVintage Badge, MascotWarm reds, orangesFriendly, script
FashionWordmark, LuxuryBlack, gold, whiteElegant serif

Workflow Example

User: "Create a logo for a sustainable coffee brand called GreenBean"

  1. Generate design brief:
bash
python3 ~/.claude/skills/logo-design/scripts/search.py "coffee organic eco sustainable" --design-brief -p "GreenBean"
  1. Generate logo variations: ALWAYS generate output logo images with white background.
bash
python3 ~/.claude/skills/logo-design/scripts/generate.py --brand "GreenBean" --style vintage --industry eco
python3 ~/.claude/skills/logo-design/scripts/generate.py --brand "GreenBean" --style organic --industry food
  1. [FINAL STEP - REQUIRED] Ask user about HTML preview:

After logo generation completes, ALWAYS use the AskUserQuestion tool to ask if the user wants to preview all generated logos in a single eye-catching HTML file.

AskUserQuestion parameters:

json
{
  "questions": [{
    "question": "Would you like me to create an HTML preview page for all generated logos?",
    "header": "Preview",
    "options": [
      {
        "label": "Yes, create preview (Recommended)",
        "description": "Generate a beautiful HTML gallery matching brand colors, showing all logo variants with download links"
      },
      {
        "label": "No, skip preview",
        "description": "I'll review the files directly in the output folder"
      }
    ],
    "multiSelect": false
  }]
}

If user selects Yes, invoke /ui-ux-pro-max skill to create an HTML file in the output directory with:

  • Brand-matching color scheme (extract from design brief or brand guidelines)
  • Dark/light mode toggle
  • Grid layout showcasing all logo variants
  • Hover effects to enlarge logos
  • Download buttons for each logo
  • Responsive design for mobile viewing
  • Brand name as page title

IMPORTANT: If there are multiple variants generated, lay them out side by side for better comparision.

References

  • references/style-guide.md - Detailed style descriptions and use cases
  • references/color-psychology.md - Color meanings and combinations
  • references/industry-best-practices.md - Industry-specific guidelines
  • references/prompt-engineering.md - AI image generation prompts

Setup

bash
export GEMINI_API_KEY="your-key"  # Get from https://aistudio.google.com/apikey
pip install google-genai