agentsclimarketplace

Frontend ui

Skill OutlineDriven/odin-claude-plugin/skills/frontend-ui

Build user-facing interfaces. Use when creating or modifying components, implementing layouts, managing state, or when the output must look hand-crafted rather than AI-generated.From its SKILL.md

Install
npx -y skills add OutlineDriven/odin-claude-plugin --skill frontend-ui

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

5.1 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

Frontend UI Engineering

Overview

Build UIs that read as hand-crafted production work, not machine output. The failure mode is the generic "AI aesthetic": default palettes, oversized cards, template layouts with no tie to the content. Conform to the project's real design system, meet WCAG 2.1 AA, and handle every interaction state.

When to Use

  • Building new UI components or pages
  • Modifying existing user-facing interfaces
  • Implementing responsive layouts
  • Adding interactivity or state management
  • Fixing visual or UX issues

State Management

The narrowest-to-widest state category table (local, lifted, context, URL, server, global store) and the prop-drilling guard live in references/state-management.md — read it when the task adds or changes component state; skip it for pure styling, accessibility, or layout-only changes.

Design System Adherence

Take the spacing scale, type hierarchy, and semantic color tokens from references/design-system.md. Never invent values the project's system does not define.

Avoid the AI Aesthetic

Machine-generated UI has recognizable tells. Reject each:

AI DefaultWhy It Is a ProblemProduction Quality
Purple/indigo everythingModels default to visually "safe" palettes, making every app look identicalUse the project's actual color palette
Excessive gradientsGradients add visual noise and clash with most design systemsFlat or subtle gradients matching the design system
Rounded everything (rounded-2xl)Maximum rounding signals "friendly" but ignores the hierarchy of corner radii in real designsConsistent border-radius from the design system
Generic hero sectionsTemplate-driven layout with no connection to the actual content or user needContent-first layouts
Lorem ipsum-style copyPlaceholder text hides layout problems that real content reveals (length, wrapping, overflow)Realistic placeholder content
Oversized padding everywhereEqual generous padding destroys visual hierarchy and wastes screen spaceConsistent spacing scale
Stock card gridsUniform grids are a layout shortcut that ignores information priority and scanning patternsPurpose-driven layouts
Shadow-heavy designLayered shadows add depth that competes with content and slows rendering on low-end devicesSubtle or no shadows unless the design system specifies

Accessibility (WCAG 2.1 AA)

Every component meets these standards. Use the native element first; reach for ARIA only when no native element fits. Detailed WCAG checks and testing tools are in references/accessibility-checklist.md; working code for keyboard navigation, ARIA labels, focus management, and empty/error states is in references/accessibility-patterns.md.

Reference materials

Where these references show component code, they pair a JavaScript component framework (React) with a server-rendered template stack (Django/Python); CSS and HTML examples are framework-neutral. The patterns hold across frameworks. Apply the equivalent in whatever stack the project uses.

  • references/component-architecture.md: file colocation, composition over configuration, and separating data from presentation.
  • references/design-system.md: the spacing scale, type hierarchy, and semantic color tokens.
  • references/state-management.md: the narrowest-to-widest state category table and the prop-drilling guard.
  • references/accessibility-patterns.md: keyboard navigation, ARIA labels, focus management, and empty/error states.
  • references/accessibility-checklist.md: WCAG 2.1 AA checks and the tools that verify them.
  • references/responsive-and-loading.md: mobile-first breakpoints, skeletons, and optimistic updates with rollback.

Common Rationalizations

RationalizationReality
"Accessibility is a nice-to-have"It's a legal requirement in many jurisdictions and an engineering quality standard.
"We'll make it responsive later"Retrofitting responsive design is 3x harder than building it from the start.
"The design isn't final, so I'll skip styling"Use the design system defaults. Unstyled UI creates a broken first impression for reviewers.
"This is just a prototype"Prototypes become production code. Build the foundation right.
"The AI aesthetic is fine for now"It signals low quality. Use the project's actual design system from the start.

Red Flags

  • Components with more than 200 lines (split them)
  • Color as the sole indicator of state (red/green without text or icons)

Verification

After building UI:

  • Component renders without console errors
  • All interactive elements are keyboard accessible (Tab through the page)
  • Screen reader can convey the page's content and structure
  • Responsive: works at 320px, 768px, 1024px, 1440px
  • Loading, error, and empty states all handled
  • Follows the project's design system (spacing, colors, typography)
  • No accessibility warnings in dev tools or axe-core

What ships with it: 6 files

17.4 KB alongside SKILL.md

Keep looking

Skills are one crate of 326,861. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.