Source profileQuality 96/100

travisjneuman/.claude/skills/frontend-enhancer/SKILL.md

frontend-enhancer

This skill should be used when enhancing the visual design and aesthetics of web applications. It provides modern UI components, design patterns, color palettes, animations, and layout templates. REQUIRES ui-research skill first. Use this skill for tasks like improving styling, creating responsive designs, implementing modern UI patterns, adding animations, selecting color schemes, or building aesthetically pleasing frontend interfaces.

Source repository stars
94
Declared platforms
0
Static risk flags
0
Last source update
2026-08-13
Source checked
2026-08-25

Decision brief

What it does: where it fits

Transform web applications into visually polished, human-designed experiences.

Best for

  • Improving styling and visual design
  • Creating responsive layouts
  • Adding animations and transitions

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/travisjneuman/.claude --skill "skills/frontend-enhancer"
Safe inspection promptEditorial

Inspect the Agent Skill "frontend-enhancer" from https://github.com/travisjneuman/.claude/blob/b8b4dd55d61b9f25d33e3b5427870641a1c8c39c/skills/frontend-enhancer/SKILL.md at commit b8b4dd55d61b9f25d33e3b5427870641a1c8c39c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Research-Driven Enhancement Workflow

    1. Research - Use ui-research skill first (5-10 examples minimum) 2. Assess - Identify current gaps against research findings 3. Plan - Define direction based on inspiration analysis 4. Foundation - Set up colors, spacing, animations in theme 5. Apply - Implement with human poli…

    Research - Use ui-research skill first (5-10 examples minimum)Assess - Identify current gaps against research findingsPlan - Define direction based on inspiration analysis
  2. 02

    cn Utility Setup

    Review the “cn Utility Setup” section in the pinned source before continuing.

    Review and apply the “cn Utility Setup” source section.
  3. 03

    PREREQUISITE: Research First

    Before using this skill, ALWAYS complete:

    Before using this skill, ALWAYS complete:Research is mandatory to avoid generic AI-generated looks. See UI Inspiration Sources for source list.
  4. 04

    When to Use

    Foundational References:

    Improving styling and visual designCreating responsive layoutsAdding animations and transitions
  5. 05

    Color Palette Selection

    Each palette needs: Primary, Secondary, Accent, Background, Foreground, Muted, Success, Warning, Error

    Each palette needs: Primary, Secondary, Accent, Background, Foreground, Muted, Success, Warning, Error

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score96/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars94SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
travisjneuman/.claude
Skill path
skills/frontend-enhancer/SKILL.md
Commit
b8b4dd55d61b9f25d33e3b5427870641a1c8c39c
License
MIT
Collected
2026-08-25
Default branch
master
View the original SKILL.md

Frontend Enhancer

Transform web applications into visually polished, human-designed experiences.

PREREQUISITE: Research First

Before using this skill, ALWAYS complete:

Skill(ui-research)

Research is mandatory to avoid generic AI-generated looks. See UI Inspiration Sources for source list.


When to Use

Use for:

  • Improving styling and visual design
  • Creating responsive layouts
  • Adding animations and transitions
  • Selecting color schemes
  • Building modern UI patterns
  • Enhancing aesthetics

Don't use when:

  • Need inspiration first → use ui-research (MANDATORY)
  • UX flow design → use generic-ux-designer
  • Code architecture → use generic-feature-developer
  • Code review → use generic-code-reviewer

Foundational References:

Research-Driven Enhancement Workflow

  1. Research - Use ui-research skill first (5-10 examples minimum)
  2. Assess - Identify current gaps against research findings
  3. Plan - Define direction based on inspiration analysis
  4. Foundation - Set up colors, spacing, animations in theme
  5. Apply - Implement with human polish (not defaults)
  6. Anti-AI Check - Verify no generic AI patterns
  7. Refine - Test responsiveness, verify accessibility
  8. Review - Check hierarchy, consistency, performance

Color Palette Selection

PaletteUse Case
Corporate BlueBusiness apps, SaaS
Vibrant PurpleCreative tools, portfolios
Minimalist GrayClean, sophisticated
Warm SunsetConsumer apps, e-commerce
Ocean FreshHealth, finance apps
Dark ModeDeveloper tools, dashboards

Each palette needs: Primary, Secondary, Accent, Background, Foreground, Muted, Success, Warning, Error

Component Patterns

Buttons

  • Variants: primary, secondary, outline, ghost, danger
  • Sizes: sm, md, lg
  • States: loading, disabled

Cards

  • Variants: default, bordered, elevated, interactive
  • Subcomponents: Header, Title, Description, Content, Footer

Forms

  • Clear focus states
  • Validation feedback
  • Helper text
  • Required indicators

Animation Guidelines

GPU-Accelerated Only:

/* ✅ DO animate */
transform: translateY(-4px);
opacity: 0.8;

/* ❌ AVOID */
margin-top: -4px;
height: 100px;

Duration Guidelines:

  • Micro-interactions: 100-200ms
  • Transitions: 200-300ms
  • Complex animations: 300-500ms

Accessibility:

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

Responsive Strategy

BreakpointMin WidthTarget
base0Mobile
sm640pxLarge phones
md768pxTablets
lg1024pxLaptops
xl1280pxDesktops

Accessibility Checklist

  • Color contrast >= 4.5:1 (WCAG AA)
  • Keyboard accessible
  • Visible focus indicators
  • Semantic HTML
  • Alt text on images
  • Form labels
  • Respects prefers-reduced-motion
  • Touch targets >= 44x44px

Layout Patterns

Hero Section

  • Centered, split, or minimal variants
  • Primary + secondary CTAs
  • Optional background gradients

Feature Grid

  • 2, 3, or 4 columns
  • Icon + title + description
  • Staggered animations
  • Hover effects

Performance

  • Bundle size awareness
  • Lazy load heavy components
  • Optimize images (WebP, responsive)
  • 60fps animations

cn Utility Setup

// lib/utils.ts
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";

export function cn(...inputs: ClassValue[]) {
  return twMerge(clsx(inputs));
}

Before/After Pattern

When enhancing, document changes:

Before: Plain gray button, no hover state
After: Gradient primary button with hover lift effect

Avoiding the AI Look

Red Flags to Check

Before finalizing, ensure you DON'T have:

  • Default blue/purple gradients
  • Perfectly symmetrical layouts
  • Generic blob/wave decorations
  • Undraw-style stock illustrations
  • "Hero with laptop mockup" cliché
  • Unchanged default color schemes
  • Cookie-cutter card grids
  • Overused glassmorphism/blur

Human Touch Checklist

Ensure you DO have:

  • Custom color palette (not defaults)
  • Intentional layout asymmetry
  • Unique typography pairing
  • Real/custom imagery
  • Micro-interactions with personality
  • Brand-specific details
  • Thoughtful empty/loading states
  • Copy with character

Quality Comparison

AspectGeneric AIHuman-Polished
ColorDefault blueCustom brand palette
LayoutPerfect gridIntentional variation
ImagesStock/genericCurated/custom
CopyLorem ipsumReal, personality-rich
MotionBasic fadesPurposeful, branded
DetailsNoneHover states, feedback

See Also

Frequently asked questions

What to verify before installation and use

What does the frontend-enhancer source document cover?

Transform web applications into visually polished, human-designed experiences.

How do I install frontend-enhancer?

The source record exposes this install command: npx skills add https://github.com/travisjneuman/.claude --skill "skills/frontend-enhancer". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 9965

brucesongs/kali-claw

insecure-design

Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.

Computed 9916

NintendaDev/unikit-ai

unikit-docs

Generate and maintain the project's TECHNICAL documentation from its codebase — scans the project structure, tech stack, and module boundaries, then writes a lean README landing page plus detailed topic pages (architecture, modules, setup, build, APIs), only the docs that are relevant. Use whenever the user wants to create, update, or validate documentation of the CODE or the project itself, e.g. "generate documentation", "create docs", "write the README", "update the project docs", "document th

Computed 9864

Jamie-BitFlight/claude_skills

agent-creator

Create high-quality Claude Code agents from scratch or by adapting existing agents as templates. Use when the user wants to create a new agent, modify agent configurations, build specialized subagents, or design agent architectures. Guides through requirements gathering, template selection, and agent file generation following Anthropic best practices (v2.1.63+).

Computed 9858

magnus919/agent-skills

software-architecture-analysis

Use this skill to reverse-engineer an existing software system, map its architecture, data flow, privacy posture, coupling, quality characteristics, and feature surface, then produce an evidence-grounded clean-room design document, PRD, or migration plan under new constraints. Use for codebase archaeology, implicit contract extraction, architecture health assessment, or decomposition-readiness analysis. Do not use for greenfield architecture design, direct code review, bug hunting, security audi