--- name: logo description: Generate SVG logo alternatives with side-by-side comparison. Use when creating logos, branding, or project icons. --- # Logo Generation Generate SVG logo alternatives for a project, then present them in a side-by-side comparison page for review. ## Arguments - `$ARGUMENTS` - Description of the logo concept, style direction, or project name ## Instructions You are generating SVG logo alternatives and a visual comparison page. Your goal is to produce **6 distinct design directions** so the user can pick and refine. ### Step 1: Understand the Brief Determine what the logo should communicate: 1. **Project name** — What is the logo for? 2. **Core concept** — What metaphor or visual idea? (e.g., "forge + AI agents", "speed + reliability") 3. **Style direction** — Modern/minimal, geometric, organic, playful, corporate? 4. **Color palette** — Dark background? Brand colors? Warm/cool? 5. **Shape** — Circle, rounded rect, hexagon, freeform? 6. **Existing logo** — Is there a current logo to improve on? Read it first. If unclear, ask the user before generating. ### Step 2: Design 6 Alternatives Create 6 **meaningfully different** SVG logo files. Each should explore a distinct visual direction: | # | Direction | Color | What to Try | |---|-----------|-------|-------------| | 1 | **Minimal** | Amber/Gold | Strip to the essential mark. One shape, one gradient. App icon clean. | | 2 | **Geometric** | Cyan/Teal | Low-poly, faceted, angular. Crystal/tech aesthetic. | | 3 | **Organic** | Violet/Purple | Flowing curves, natural forms. Warmth and craft. | | 4 | **Typographic** | Emerald/Green | Lettermark or monogram. The initial letter as hero. | | 5 | **Conceptual** | Rose/Pink | Symbolic/metaphorical. Combine two ideas into one mark (e.g., flame + orbits). | | 6 | **Sci-fi** | Blue/Indigo | Orbital, atomic, or space-inspired. Tech gravitas. | **CRITICAL: No text in logos.** Never use `` elements, letters, words, or typographic marks in the SVG logos. Every logo must be purely symbolic — shapes, icons, and abstract marks only. Text/wordmarks are added separately by the user if needed. **SVG quality standards:** - Always include explicit `width="200" height="200"` on the `` element (required for `` tag rendering) - **Transparent background** — do not include a background ``. The comparison page provides the dark background via the `.well` container. Logos must work on any background. - Use `` for gradients, filters, and reusable elements - **For circular glow halos**, use `radialGradient` fills (not blur filters). Blur filters (`feGaussianBlur`) clip to a rectangular region and render as squares at small sizes. Use a `radialGradient` with opacity tapering to 0 at the edge, applied to a circle larger than the core element. Example: ```xml ``` - Reserve `feGaussianBlur` for trail/path effects where rectangular clipping is less visible - Use `linearGradient` for directional surfaces, `radialGradient` for point-light and glow - Layer elements: ambient light → structure → hero element → accents - Keep the viewBox at `0 0 200 200` for the main logo - **Center precisely**: Calculate the bounding box of all visible elements and ensure its center is at (100, 100). For asymmetric layouts (e.g., 3 nodes around a hub), offset the composition so the bounding box center — not just the primary element — sits at (100, 100). Verify: (minX + maxX) / 2 ≈ 100, (minY + maxY) / 2 ≈ 100. Save to the project's `assets/` directory: - `assets/logo-alt-1.svg` through `assets/logo-alt-6.svg` - If there's an existing logo, include it as the "Current" option ### Step 3: Generate Comparison Page Create `assets/logo-compare.html` — a dark-themed grid page showing all options side-by-side. **Template:** ```html [Project] Logo Alternatives

[Project] Logo Alternatives

6 design directions. Click any logo to open full-size SVG.

ALT 1
Alt 1

[Short Name]

[1-line description]

``` ### Step 4: Open and Present 1. Open the comparison HTML in the browser: `open assets/logo-compare.html` 2. Present a summary table of all options with name and concept 3. Offer to refine, mix elements, or apply the chosen design ### Step 4b: Refine the Winner (if requested) When the user wants to vary a single element (e.g., center color, accent style): 1. Create 4-5 variants that ONLY change the requested element 2. Name each variant file descriptively (e.g., `center-1-white.svg`, `center-2-gold.svg`) 3. Generate a comparison page (`assets/-compare.html`) using the same flexbox grid template 4. Open it for the user to pick 5. Apply the chosen variant to the main logo and clean up variant files ### Step 5: Apply the Winner When the user picks a logo: 1. Copy it to `favicon.svg` in the project root 2. Add the logo to the top of the project's README, centered at 120px width: ```html

``` Insert this as the very first line, before any existing heading or content. 3. Clean up the `logo-alt-*.svg` files and `logo-compare.html` ## Design Principles 1. **Distinct directions** — Each alternative should be recognizably different at a glance, not minor tweaks 2. **SVG-native** — Use gradients, filters, and transforms. No raster effects. 3. **Scale well** — Design should read clearly at 32px (favicon) and 200px (logo) 4. **Dark-first** — Assume dark backgrounds. Light elements should glow. 5. **Layered depth** — Background → ambient glow → structure → hero → sparkle/accent 6. **Name each option** — Short, memorable names make discussion easier ("Orbital Forge" vs "Alt 5") 7. **Unique palettes** — Each alternative MUST use a different color scheme. Never repeat the same palette across options.