Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Archetypal Combinations

ASecurity

The Archetypal Alchemy system combines **Jungian Archetypes** (behavioral/structural patterns) with **Major Arcana** (color/mood modifiers) to generate cohesive, meaningful UI/UX designs.

100 stars
0 votes
0 copies
1 views
Added 2/7/2026
designgoangularexpress

Works with

claude code

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add HermeticOrmus/LibreUIUX-Claude-Code --skill archetypal-combinations --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Archetypal Combinations?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Archetypal Combinations
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/hermeticormus-archetypal-combinations/badge)](https://www.skillsdirectory.com/skills/hermeticormus-archetypal-combinations)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
# Archetypal Combinations: Alchemy Engine

## Overview

The Archetypal Alchemy system combines **Jungian Archetypes** (behavioral/structural patterns) with **Major Arcana** (color/mood modifiers) to generate cohesive, meaningful UI/UX designs.

**Formula**: `ARCHETYPE + CARD = Complete Design System`

---

## The Alchemy Process

### Step 1: Parse the Formula
```
Input: "Hero+Sun"
Parse: Archetype = Hero, Card = Sun
```

### Step 2: Extract Archetype Patterns
From jungian-archetypes skill:
- UI Characteristics
- Typography rules
- Layout principles
- Spacing patterns
- Motion behavior

### Step 3: Extract Card Colors
From major-arcana skill:
- Primary color
- Secondary color
- Accent color
- Dark shade
- Gradient formula
- Shadow style
- Atmospheric mood

### Step 4: Synthesize Design System
Combine archetype structure with card colors to create:
- Complete Tailwind config
- Component examples
- Usage guidelines

---

## Combination Matrix Examples

### Hero + Sun
**Synthesis**: Bold achievement in radiant golden tones

**Structure** (from Hero):
- Bold, angular shapes
- High contrast
- Action-oriented CTAs
- Dynamic layouts
- Fast animations

**Colors** (from Sun):
- Primary: `bg-yellow-300` → Radiant joy
- Secondary: `bg-orange-400` → Vital energy
- Accent: `bg-yellow-100` → Pure happiness
- Dark: `text-amber-900` → Grounded warmth

**Result**: Victorious, energetic, life-affirming achievement platform

```tailwind
// Hero+Sun Button
<button className="
  bg-orange-500 hover:bg-orange-400
  px-8 py-4
  text-xl font-bold uppercase tracking-wider
  rounded-md shadow-2xl shadow-orange-300
  transform hover:scale-105 transition-all
  text-white
">
  CLAIM VICTORY
</button>

// Hero+Sun Card
<div className="
  bg-gradient-to-br from-yellow-100 to-orange-200
  border-l-4 border-orange-500
  p-6 rounded-lg shadow-2xl shadow-yellow-200/50
">
  <h2 className="text-3xl font-bold text-amber-900 uppercase tracking-tight">
    Achievement Unlocked
  </h2>
</div>
```

---

### Magician + Moon
**Synthesis**: Transformative power in mysterious, lunar hues

**Structure** (from Magician):
- Gradients and transformations
- Interactive reveals
- Sacred geometry
- Layered depth
- Smooth morphing

**Colors** (from Moon):
- Primary: `bg-slate-900` → Shadow depths
- Secondary: `bg-blue-900` → Mystery blue
- Accent: `bg-purple-400` → Dream visions
- Dark: `text-slate-100` → Moonlight

**Result**: Mystical, transformative, illusion-weaving interface

```tailwind
// Magician+Moon Container
<div className="
  bg-gradient-to-br from-slate-900 via-blue-950 to-purple-950
  backdrop-blur-lg
  border border-purple-400/20
  p-8 rounded-2xl
  shadow-2xl shadow-purple-500/30
">
  <div className="relative group">
    <div className="absolute inset-0 bg-purple-500/10 blur-xl
                    group-hover:bg-purple-500/20 transition-all duration-700" />
    <p className="relative text-slate-300 font-serif text-lg leading-relaxed">
      The transformation begins...
    </p>
  </div>
</div>

// Magician+Moon Button
<button className="
  bg-gradient-to-r from-blue-700 to-purple-600
  hover:from-purple-600 hover:to-blue-700
  px-6 py-3 rounded-xl
  shadow-xl shadow-purple-500/30
  text-white font-medium
  transition-all duration-500
  backdrop-blur-sm
">
  Reveal the Mystery
</button>
```

---

### Sage + Hermit
**Synthesis**: Deep wisdom in contemplative, introspective tones

**Structure** (from Sage):
- Information hierarchy
- Reading-focused layouts
- Clean categorization
- Academic spacing
- Minimal motion

**Colors** (from Hermit):
- Primary: `bg-indigo-950` → Inner depths
- Secondary: `bg-purple-900` → Contemplation
- Accent: `bg-gray-400` → Lantern light
- Dark: `text-gray-100` → Illumination

**Result**: Introspective knowledge platform for deep learning

```tailwind
// Sage+Hermit Reading Container
<article className="
  max-w-prose mx-auto
  bg-gradient-to-b from-indigo-950 to-gray-950
  p-12 rounded-lg
  border border-purple-700/30
">
  <h1 className="
    text-4xl font-serif text-gray-200
    mb-6 leading-tight
  ">
    The Path of Inner Wisdom
  </h1>

  <p className="
    text-lg text-gray-300
    leading-relaxed mb-4
    font-serif
  ">
    In solitude, we find the answers that elude us in noise...
  </p>

  <blockquote className="
    border-l-4 border-purple-700
    pl-6 my-8
    text-gray-400 italic
  ">
    "The cave you fear to enter holds the treasure you seek."
  </blockquote>
</article>

// Sage+Hermit Navigation
<nav className="
  bg-indigo-950/80 backdrop-blur-md
  border-b border-purple-700/30
  px-6 py-4
">
  <a className="text-gray-400 hover:text-purple-400 transition-colors">
    Contemplations
  </a>
</nav>
```

---

### Innocent + Star
**Synthesis**: Pure optimism in hopeful, celestial tones

**Structure** (from Innocent):
- Rounded corners
- Pastel palettes (enhanced by Star)
- Friendly language
- Symmetric layouts
- Gentle motion

**Colors** (from Star):
- Primary: `bg-sky-400` → Starlight hope
- Secondary: `bg-sky-900` → Night sky
- Accent: `bg-sky-50` → Stellar white
- Dark: `text-sky-950` → Deep space

**Result**: Hopeful, nurturing, star-blessed simplicity

```tailwind
// Innocent+Star Card
<div className="
  bg-gradient-to-br from-sky-50 to-cyan-100
  rounded-3xl p-8
  border-2 border-sky-200
  shadow-xl shadow-sky-200/50
">
  <div className="flex items-center gap-4 mb-4">
    <div className="w-16 h-16 rounded-full bg-sky-400
                    flex items-center justify-center
                    shadow-lg shadow-sky-500/50">
      ⭐
    </div>
    <h3 className="text-2xl font-semibold text-sky-900">
      Your Dreams Are Valid
    </h3>
  </div>
  <p className="text-sky-700 leading-relaxed">
    Every star in the sky once seemed impossible...
  </p>
</div>

// Innocent+Star Button
<button className="
  bg-sky-400 hover:bg-sky-500
  text-white font-medium
  px-6 py-3 rounded-full
  shadow-lg shadow-sky-300
  transition-all duration-300
  hover:shadow-xl hover:shadow-sky-400
">
  Make a Wish ✨
</button>
```

---

### Rebel + Tower
**Synthesis**: Revolutionary disruption in shocking, lightning tones

**Structure** (from Rebel):
- Asymmetric layouts
- Broken grids
- Glitch effects
- Unexpected interactions
- Chaotic energy

**Colors** (from Tower):
- Primary: `bg-yellow-300` → Lightning strike
- Secondary: `bg-zinc-800` → Storm chaos
- Accent: `bg-yellow-400` → Electric shock
- Dark: `text-zinc-100` → What remains

**Result**: Disruptive, revelatory, structure-shattering interface

```tailwind
// Rebel+Tower Section
<section className="
  -rotate-2
  bg-gradient-to-br from-zinc-900 via-yellow-400 to-zinc-800
  border-4 border-yellow-400
  p-12 my-16
  shadow-2xl shadow-yellow-500/30
  relative overflow-hidden
">
  <div className="absolute inset-0 opacity-20">
    {/* Lightning SVG background */}
  </div>

  <h2 className="
    font-mono uppercase tracking-widest
    text-5xl text-zinc-900
    mb-4
    [text-shadow:2px_2px_0_theme(colors.yellow.300)]
  ">
    BURN IT DOWN
  </h2>

  <p className="text-zinc-100 font-bold text-xl">
    The old structures are crumbling. Build from the rubble.
  </p>
</section>

// Rebel+Tower CTA
<button className="
  bg-yellow-400 hover:bg-yellow-300
  text-zinc-900 font-black uppercase
  px-8 py-4
  transform -rotate-1 hover:rotate-0
  shadow-xl shadow-yellow-500/50
  border-2 border-zinc-900
  transition-all
">
  REVOLUTION NOW ⚡
</button>
```

---

### Lover + Empress
**Synthesis**: Sensual abundance in lush, nurturing tones

**Structure** (from Lover):
- Rich textures
- Romantic palettes
- Emphasis on imagery
- Flowing layouts
- Sensual motion

**Colors** (from Empress):
- Primary: `bg-emerald-600` → Growth
- Secondary: `bg-rose-400` → Love
- Accent: `bg-amber-300` → Abundance
- Dark: `text-amber-900` → Fertile earth

**Result**: Lush, beautiful, love-and-growth celebrating platform

```tailwind
// Lover+Empress Hero
<section className="
  bg-gradient-to-br from-emerald-100 via-rose-100 to-amber-100
  min-h-screen flex items-center justify-center
  px-8
">
  <div className="max-w-4xl">
    <h1 className="
      font-serif text-6xl text-emerald-900
      mb-6 leading-tight
    ">
      Where Love Blooms into Abundance
    </h1>

    <p className="
      text-2xl text-rose-800
      leading-loose mb-8
      font-serif italic
    ">
      Every relationship is a garden waiting to flourish...
    </p>

    <button className="
      bg-gradient-to-r from-rose-500 to-emerald-500
      text-white font-medium text-lg
      px-12 py-4 rounded-full
      shadow-2xl shadow-rose-300
      hover:shadow-3xl hover:scale-105
      transition-all duration-500
    ">
      Begin Your Journey 🌹
    </button>
  </div>
</section>
```

---

### Creator + Magician
**Synthesis**: Artistic transformation in mystical, creative tones

**Structure** (from Creator):
- Canvas/workspace layouts
- Tool palettes
- Expressive mixing
- Flexible grids
- Creative feedback

**Colors** (from Magician):
- Primary: `bg-purple-900` → Mystical power
- Secondary: `bg-violet-600` → Transformation
- Accent: `bg-gray-200` → Mercury silver
- Dark: `text-slate-100` → Light from void

**Result**: Magical creation workspace where art manifests reality

```tailwind
// Creator+Magician Workspace
<div className="
  min-h-screen
  bg-gradient-to-br from-slate-900 via-purple-900 to-violet-900
  grid grid-cols-12 gap-4 p-4
">
  {/* Tool Palette */}
  <aside className="
    col-span-2
    bg-purple-950/80 backdrop-blur-xl
    border border-purple-500/30
    rounded-lg p-4
  ">
    <h3 className="text-purple-300 font-medium mb-4">Tools of Creation</h3>
    {/* Tool icons */}
  </aside>

  {/* Canvas */}
  <main className="
    col-span-8
    bg-slate-900/60 backdrop-blur-sm
    border-2 border-purple-500/20
    rounded-lg
    relative overflow-hidden
  ">
    <div className="
      absolute inset-0
      bg-gradient-to-br from-purple-500/5 to-violet-500/5
    " />
    {/* Creation canvas */}
  </main>

  {/* Properties */}
  <aside className="
    col-span-2
    bg-purple-950/80 backdrop-blur-xl
    border border-purple-500/30
    rounded-lg p-4
  ">
    <h3 className="text-purple-300 font-medium mb-4">Manifestation</h3>
    {/* Property controls */}
  </aside>
</div>
```

---

## Combination Synthesis Rules

### When to Use Single Elements

**Just Archetype** (no card):
```
/archetypal-ui hero
```
→ Use archetype's default color suggestions from jungian-archetypes skill

**Just Card** (no archetype):
```
/archetypal-colors sun
```
→ Use color palette with neutral/balanced UI patterns

### Combining Rules

1. **Archetype provides STRUCTURE**:
   - Component patterns
   - Interaction behaviors
   - Typography hierarchy
   - Spacing systems
   - Motion characteristics

2. **Card provides COLOR**:
   - Primary/secondary/accent colors
   - Gradient formulas
   - Shadow styles
   - Atmospheric mood
   - Lighting direction

3. **Synthesis creates MEANING**:
   - Every choice reinforces the combined archetype
   - Colors enhance behavioral patterns
   - Structure supports emotional tone
   - Complete, coherent design language

### Advanced: Triple Combinations

For complex projects, blend multiple archetypes with one card:

```
Hero (60%) + Sage (40%) + Sun
→ Victorious learning platform in joyful golden tones
→ Bold achievement structure, knowledge organization, solar radiance
```

---

## Usage in Claude Code

### Request Format
```
Create a [component] using [Archetype]+[Card] aesthetic

Examples:
- "Create a hero section using Hero+Sun aesthetic"
- "Design a login form using Sage+Hermit aesthetic"
- "Build a pricing page using Ruler+Emperor aesthetic"
- "Generate a blog layout using Creator+Moon aesthetic"
```

### Expected Output
Claude will synthesize:
1. Complete component code (HTML/Tailwind)
2. Archetype reasoning (why these patterns)
3. Color rationale (how card enhances archetype)
4. Usage guidelines
5. Variation suggestions

---

## Quick Reference: Popular Combinations

| Combination | Use Case | Vibe |
|------------|----------|------|
| **Hero+Sun** | Achievement platforms, fitness apps | Victorious, radiant |
| **Magician+Moon** | Mystical services, transformation tools | Mysterious, powerful |
| **Sage+Hermit** | Educational platforms, contemplative content | Wise, introspective |
| **Innocent+Star** | Wellness apps, hopeful communities | Pure, optimistic |
| **Rebel+Tower** | Disruptive startups, revolutionary tools | Shocking, transformative |
| **Lover+Empress** | Relationship platforms, beauty brands | Sensual, abundant |
| **Creator+Magician** | Design tools, creative software | Artistic, transformative |
| **Caregiver+Temperance** | Healthcare, support services | Balanced, nurturing |
| **Explorer+Wheel** | Travel apps, discovery platforms | Adventurous, cosmic |
| **Ruler+Emperor** | Business dashboards, authority tools | Commanding, structured |
| **Jester+Fool** | Entertainment, playful brands | Joyful, spontaneous |
| **Everyman+World** | Community platforms, inclusive tools | Belonging, complete |

---

*"In the marriage of archetype and card, form finds its color, and color finds its purpose."*

Attribution

HermeticOrmusHermeticOrmus
View sourceMore from HermeticOrmus →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Responsive Design

Implement modern responsive layouts using container queries, fluid typography, CSS Grid, and mobile-first breakpoint strategies. Use when building adaptive interfaces, implementing fluid layouts, or creating component-level responsive behavior.

393432 votes

Mermaid Diagrams

Creating and refining Mermaid diagrams with live reload. Use when users want flowcharts, sequence diagrams, class diagrams, ER diagrams, state diagrams, or any other Mermaid visualization. Provides best practices for syntax, styling, and the iterative workflow using mermaid_preview and mermaid_save tools.

2032 votes

sleek-design-mobile-apps

Use when the user wants to design a mobile app, create screens, build UI, or interact with their Sleek projects. Covers high-level requests ("design an app that does X") and specific ones ("list my projects", "create a new project", "screenshot that screen").

5711 votes

swiftui-design-skill

SwiftUI frontend visual design skill. Creates beautiful, distinctive iOS/macOS interfaces that avoid generic AI slop patterns. Covers design direction, layout systems, typography, color, spacing, brand integration, and design review. Use when designing new SwiftUI views, reviewing UI quality, creating iOS prototypes, choosing visual styles, improving app aesthetics, or when the UI looks generic or AI-generated.

1801 votes

Ios Hig

Use when designing iOS interfaces, implementing accessibility (VoiceOver, Dynamic Type), handling dark mode, ensuring adequate touch targets, providing animation/haptic feedback, or requesting user permissions. Apple Human Interface Guidelines for iOS compliance.

761 votes
View all in design →