• v0.2.1 f902c663ef

    jasper released this 2026-05-24 13:37:42 -04:00 | 10 commits to main since this release

    v0.2.1 — nous-branding skill

    Adds the nous-branding skill: a comprehensive brand identity guide for generating images and content in the Nous Research visual style.

    What's inside

    Brand documentation — color palette (Electric Blue #3847FF + 5 more), typography (Inter/IBM Plex Sans, JetBrains Mono, heavy distressed display), Nous Girl mascot specs verified against the official brand booklet, texture system (risograph grain, photocopy noise, CRT scan lines), design principles, and a brand compliance checklist.

    7 reference images — 3 extracted from the official Nous brand booklet (badge portrait, character sketch sheet, philosophy page) plus 4 generated assets (palette card, style reference, brand collage, web mascot). These can be uploaded as img2img inputs.

    scripts/generate-with-ref.py — a script that reads your Hermes Agent config, detects your image generation provider, and hits the API directly with a reference image upload. For OpenAI, this uses /v1/images/edits with multipart form upload — the only way to feed reference images into gpt-image-2. This produces dramatically better brand consistency than text-only generation (verified 10/10 character faithfulness vs ~6/10 from text).

    How to use

    # Load the skill
    skill_view(name='nous-branding')
    
    # Generate with text only
    image_generate --prompt "HERMES KANBAN poster ..."
    
    # Generate with reference image upload (recommended)
    python3 scripts/generate-with-ref.py \
      --prompt "Your prompt" \
      --reference assets/nous-girl-official-badge.png \
      --aspect landscape
    
    Downloads