svg-logo-designer

rknall/claude-skills · updated May 29, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/rknall/claude-skills --skill svg-logo-designer
0 commentsdiscussion
summary

Professional SVG logos from descriptions with multiple variations, layouts, and scalable vector graphics.

  • Gathers comprehensive brand requirements including industry, target audience, personality, and technical constraints before design
  • Generates 3-5 distinct logo concepts across seven types: wordmarks, lettermarks, pictorial marks, abstract marks, mascots, combination marks, and emblems
  • Creates multiple layout variations per concept (horizontal, vertical, square, icon-only, text-onl
skill.md

SVG Logo Designer

This skill creates professional, scalable vector graphic (SVG) logos from design specifications, offering multiple variations and layout options.

When to Use This Skill

Activate this skill when the user requests:

  • Create a logo from a description or specification
  • Design a brand identity or visual mark
  • Generate logo variations and concepts
  • Create icons or symbols
  • Design wordmarks or lettermarks
  • Produce scalable graphics for branding
  • Export logos in different layouts and styles

Core Workflow

Phase 1: Requirements Gathering

When a user requests a logo, gather comprehensive design requirements:

  1. Brand Information

    • Company/product name
    • Industry and market
    • Target audience
    • Brand personality (modern, classic, playful, serious, etc.)
    • Brand values and messaging
    • Competitors (for differentiation)
  2. Design Preferences

    • Logo type:
      • Wordmark: Text-based logo (Google, Coca-Cola style)
      • Lettermark: Initials/abbreviation (IBM, HBO style)
      • Pictorial Mark: Icon/symbol (Apple, Twitter style)
      • Abstract Mark: Abstract geometric form (Pepsi, Adidas style)
      • Mascot: Character-based (KFC Colonel, Michelin Man style)
      • Combination Mark: Icon + text (Burger King, Lacoste style)
      • Emblem: Text inside symbol (Starbucks, Harley-Davidson style)
  3. Style Guidelines

    • Color palette (specific colors or let AI choose)
    • Color psychology considerations
    • Font preferences (if text-based)
    • Visual style:
      • Minimalist
      • Geometric
      • Organic/flowing
      • Bold/strong
      • Elegant/refined
      • Playful/friendly
      • Tech/modern
      • Vintage/retro
  4. Technical Requirements

    • Size constraints (will it be used small? large?)
    • Application contexts (website, print, merchandise, etc.)
    • Color vs monochrome versions needed
    • Background usage (light, dark, transparent)
    • Scalability requirements
  5. Number of Variations

    • How many different concepts? (Recommend 3-5)
    • How many layouts per concept? (Horizontal, vertical, square, circular)
    • Color variations needed?

Phase 2: Design Concept Development

Create multiple logo concepts based on requirements:

Concept 1: Primary Direction

Develop the main design direction:

Design Thinking:

  • Research visual metaphors related to brand
  • Consider negative space opportunities
  • Ensure memorability and uniqueness
  • Balance simplicity with distinctiveness
  • Consider cultural appropriateness

SVG Structure:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
  <defs>
    <!-- Gradients, patterns, filters -->
    <linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4F46E5;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#7C3AED;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Logo elements -->
  <g id="logo-symbol">
    <!-- Symbol/icon elements -->
  </g>

  <g id="logo-text">
    <!-- Text elements (if applicable) -->
  </g>
</svg>

Concept 2-5: Alternative Directions

Create variations exploring different visual approaches:

  • Different visual metaphors
  • Different style treatments
  • Different layouts and compositions
  • Different color applications

Phase 3: Layout Variations

For each concept, create multiple layout options:

Layout A: Horizontal Lockup

  • Icon on left, text on right
  • Best for website headers, business cards
  • Wider aspect ratio

Layout B: Vertical Lockup

  • Icon on top, text below
  • Best for social media profiles, app icons
  • Taller aspect ratio

Layout C: Square/Centered

  • Icon and text centered
  • Best for favicon, app icon, profile picture
  • 1:1 aspect ratio

Layout D: Icon Only

  • Symbol without text
  • Best for small sizes, watermarks
  • Compact, recognizable

Layout E: Text Only

  • Wordmark without icon
  • Best for minimal applications
  • Typography-focused

Phase 4: SVG Generation

Create professional, optimized SVG code:

Best Practices:

  1. Clean, Semantic Code
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60">
  <!-- Use groups for organization -->
  <g id="icon">
    <!-- Icon elements -->
  </g>
  <g id="wordmark">
    <!-- Text elements -->
  </g>
</svg>
  1. Scalable Design

    • Use viewBox for scalability
    • Avoid pixel-specific sizes
    • Use relative units
    • Design at multiple sizes to test
  2. Color Management

<!-- Define colors once, reuse throughout -->
<defs>
  <style>
    .primary { fill: #4F46E5; }
    .secondary { fill: #10B981; }
    .text { fill: #1F2937; }
  </style>
</defs>

<rect class="primary" x="0" y="0" width="100" height="100" />
  1. Optimization

    • Remove unnecessary attributes
    • Combine paths where possible
    • Use symbols for repeated elements
    • Minimize decimal precision
    • Remove invisible elements
  2. Accessibility

<svg role="img" aria-labelledby="logo-title logo-desc">
  <title id="logo-title">Company Name Logo</title>
  <desc id="logo-desc">A blue circular icon with the company name</desc>
  <!-- Logo content -->
</svg>

Phase 5: Presentation

Present logos in an organized, professional manner:

# Logo Design Concepts

## Concept 1: [Concept Name/Theme]

### Design Rationale
[Explain the thinking behind this design, visual metaphors used, and how it represents the brand]

### Primary Logo (Horizontal)
```xml
<svg><!-- SVG code here --></svg>

Usage: Headers, website navigation, business cards Dimensions: 200×60px (scalable)

Vertical Layout

<svg><!-- SVG code here --></svg>

Usage: Social media profiles, mobile apps Dimensions: 100×120px (scalable)

Icon Only

<svg><!-- SVG code here --></svg>

Usage: Favicon, app icon, small spaces Dimensions: 64×64px (scalable)

Color Variations

Full Color:

  • Primary: #4F46E5 (Indigo)
  • Secondary: #10B981 (Emerald)

Monochrome (Dark):

  • Single color: #1F2937 (Gray-900)

Monochrome (Light):

  • Single color: #FFFFFF (White)

Reversed:

  • For dark backgrounds

Concept 2: [Concept Name/Theme]

[Repeat structure for additional concepts]


### Phase 6: File Generation

Save SVG files with proper naming:

```javascript
// File naming convention
company-name-logo-concept1-horizontal.svg
company-name-logo-concept1-vertical.svg
company-name-logo-concept1-icon.svg
company-name-logo-concept2-horizontal.svg
// etc.

Use the Write tool to save each variation:

// Example
Write({
  file_path: "./logos/acme-logo-concept1-horizontal.svg",
  content: svgCode
});

Phase 7: Usage Guidelines

Provide comprehensive usage documentation:

# Logo Usage Guidelines

## File Formats Provided

### SVG (Scalable Vector Graphics)
- **
how to use svg-logo-designer

How to use svg-logo-designer on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add svg-logo-designer
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/rknall/claude-skills --skill svg-logo-designer

The skills CLI fetches svg-logo-designer from GitHub repository rknall/claude-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/svg-logo-designer

Reload or restart Cursor to activate svg-logo-designer. Access the skill through slash commands (e.g., /svg-logo-designer) or your agent's skill management interface.

Security & Verification Notice

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 development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ 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.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.725 reviews
  • Fatima Sharma· Dec 20, 2024

    We added svg-logo-designer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Yuki Reddy· Dec 16, 2024

    Solid pick for teams standardizing on skills: svg-logo-designer is focused, and the summary matches what you get after install.

  • Sakura Mensah· Nov 11, 2024

    svg-logo-designer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Anaya Garcia· Nov 7, 2024

    I recommend svg-logo-designer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Anaya Liu· Oct 26, 2024

    Keeps context tight: svg-logo-designer is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Sakura Kim· Oct 2, 2024

    svg-logo-designer has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Sakshi Patil· Sep 17, 2024

    svg-logo-designer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Ren Choi· Sep 9, 2024

    Solid pick for teams standardizing on skills: svg-logo-designer is focused, and the summary matches what you get after install.

  • Tariq Bansal· Sep 5, 2024

    Registry listing for svg-logo-designer matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Anika Choi· Aug 24, 2024

    Useful defaults in svg-logo-designer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 25

1 / 3