petekp/agent-skills

aesthetic-guide

Research a UI design aesthetic and produce exhaustive, implementation-ready design guidelines for coding agents. Use when the user names an aesthetic (brutalist, glassmorphism, retro-futuristic, Swiss modernist, Apple HIG, neumorphism, minimalism, cyberpunk, Material Design, art deco, vaporwave, etc.) and wants a complete style guide with exact CSS values, color palettes, component states, animations, and typography — detailed enough for a coding agent to faithfully implement the aesthetic with…

First seen Feb 7, 2026

Installation

$ npx skills add petekp/agent-skills --skill aesthetic-guide

Summary

  • Research a UI design aesthetic and produce exhaustive, implementation-ready design guidelines for coding agents.
  • Use when the user names an aesthetic (brutalist, glassmorphism, retro-futuristic, Swiss modernist, Apple HIG, neumorphism, minimalism, cyberpunk, Material Design, art deco, vaporwave, etc.) and wants a complete style guide with exact CSS values, color palettes, component states, animations, and typography — detailed enough for a coding agent to faithfully implement the aesthetic with zero ambiguity.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from petekp/agent-skills · top by installs.

npx skills add petekp/agent-skills

Browse all from petekp/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
License MIT
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,279 B
  • docs SUMMARY.md 540 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 49 installs

SKILL.md

Aesthetic Guide

Produce exhaustive, implementation-ready design system documentation for a named UI aesthetic. The output is a reference guide detailed enough that a coding agent can faithfully implement the aesthetic with minimal room for interpretation.

Workflow

  1. Identify the aesthetic from the user's request
  2. Check the catalog — read [references/aesthetic-catalog.md](references/aesthetic-catalog.md) to see if pre-researched data exists for this aesthetic
  3. Research if needed — if the aesthetic is not in the catalog or the user wants a custom variant, conduct web research to gather implementation-level specifics (exact CSS values, fonts, colors, timing functions)
  4. Load the output schema — read [references/output-schema.md](references/output-schema.md) for the required structure
  5. Generate the guide — fill every section of the output schema with concrete, copy-pasteable values. No hand-waving, no "choose an appropriate value" — every property must have an exact value or a constrained range with rationale.
  6. Deliver as a markdown file — write the completed guide to the project (default: .claude/docs/{aesthetic-name}-design-system.md)

Research Protocol

When researching an aesthetic not in the catalog:

  • Search for "{aesthetic} CSS", "{aesthetic} UI design system", "{aesthetic} web design examples"
  • Look for open-source implementations, CodePen examples, design system documentation
  • Extract concrete values: hex codes, font names, px/rem values, cubic-bezier curves, shadow syntax
  • Cross-reference multiple sources to identify the consensus properties that define the aesthetic
  • Distinguish between essential properties (without these, it's not the aesthetic) and characteristic properties (common but optional)

Output Requirements

  • Every color must be a hex or HSL value, never a name like "dark blue"
  • Every font must be a specific family with fallback stack
  • Every spacing value must be in px or rem
  • Every transition must have duration + timing function
  • Every interactive state (hover, active, focus, disabled) must have explicit CSS
  • Every component must have all pseudo-states defined
  • Include both CSS custom properties (variables) and Tailwind equivalents where applicable

Customization

The user may request:

  • A specific framework (Tailwind, vanilla CSS, CSS-in-JS) — adjust output format
  • A hybrid ("brutalist with soft shadows") — blend aesthetics, noting which properties come from which
  • A variant ("dark mode cyberpunk" vs "light mode cyberpunk") — generate the specific variant
  • Partial guide (just colors, just typography) — generate only the requested sections