返回技能列表

frontend-component-build

rampstackco
更新于 2 days ago
9 次查看
239
27
239
在 GitHub 上查看
开发testingapidesign

关于

This Claude skill helps developers build reusable, production-ready frontend components with proper accessibility, well-designed props, and defined states. It provides stack-agnostic guidance for creating components from scratch, refactoring existing ones, or designing component APIs. Use it when implementing UI elements like buttons, modals, or form inputs that need to be robust and maintainable.

快速安装

Claude Code

推荐
主要方式
npx skills add rampstackco/claude-skills -a claude-code
插件命令备选方式
/plugin add https://github.com/rampstackco/claude-skills
Git 克隆备选方式
git clone https://github.com/rampstackco/claude-skills.git ~/.claude/skills/frontend-component-build

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Frontend Component Build

Build production-ready components. Stack-agnostic principles. Most patterns translate to React, Vue, Svelte, or vanilla web components.

This skill is about implementing a component well. For broader system design see design-system. For day-to-day visual decisions see design-standards.


When to use

  • Building a new component from scratch
  • Refactoring an existing component
  • Designing a component API (props, slots, events)
  • Adding accessibility to an existing component
  • Implementing a component from a design

When NOT to use

  • Building a full design system (use design-system)
  • Page-level design decisions (use design-standards)
  • Backend or data work (use code-review-web)
  • Performance-only optimization (use performance-optimization)

Required inputs

  • The component's purpose (what UI need it serves)
  • The design (or willingness to design it)
  • The framework or technical context
  • The states the component must support
  • Accessibility requirements

The framework: 6 dimensions

A complete component handles six dimensions. Skip any one and the component is incomplete.

1. Anatomy

Identify the parts that make up the component before writing any markup.

Common anatomies:

  • Button: container + label + (optional) icon + (optional) loading indicator
  • Modal: backdrop + container + header + body + footer + close affordance
  • Form input: label + input + (optional) help text + (optional) error message
  • Card: container + (optional) header + body + (optional) footer + (optional) media

Naming the parts up front makes the API obvious.

2. Variants

What variations does the component support?

  • Visual variants (primary, secondary, ghost, danger)
  • Size variants (small, medium, large)
  • Functional variants (with icon, without icon, icon-only)

Variants should be a managed set, not a free-for-all. Document the supported set; reject requests for new variants without a real use case.

3. States

What states must the component handle?

  • Default
  • Hover (when pointer is supported)
  • Focus (always - keyboard navigation requires it)
  • Active / pressed
  • Disabled
  • Loading (where applicable)
  • Error (for inputs, forms, validation-bound components)
  • Empty (for components that display data)

Every state needs visual treatment AND accessibility treatment.

4. Props / API

Design the component's contract.

API design principles:

  • Required props minimal. What's truly needed every time? That's required. Everything else has a sensible default.
  • Boolean props are red flags. Three booleans means seven combinations. Prefer enum strings: variant: "primary" | "secondary" | "ghost" over primary={true} ghost={false}.
  • Children > props. Where content is content, accept children. Don't invent headerText and bodyText props when slots work.
  • Composition > configuration. A component that does 5 things via 12 props often should be 5 smaller components.
  • Type the props. TypeScript or PropTypes or JSDoc. The type is documentation that won't go out of date.

5. Accessibility

Build it accessible from the start. Adding accessibility later is 5x harder.

Universal:

  • Semantic HTML elements (<button>, <a>, <nav>, <form>, etc.) over generic <div>
  • Keyboard navigable (Tab, Shift+Tab, Enter/Space for buttons)
  • Focus visible
  • Tap targets minimum 44 by 44 pixels
  • ARIA only where semantic HTML is insufficient

Component-specific:

  • Button: use <button>. Don't fake one with a <div>.
  • Modal: focus trap, ESC to close, returns focus to trigger on close, role="dialog" and aria-labelledby.
  • Form input: label associated via for/id or aria-labelledby. Error messages linked via aria-describedby. aria-invalid when in error state.
  • Toggles: <button> with aria-pressed for two-state, or role="switch" for on/off.
  • Tabs: role="tablist" / role="tab" / role="tabpanel" with aria-selected and arrow-key navigation.
  • Tooltips and popovers: triggered by focus AND hover. Dismissible with ESC.
  • Loading states: announce with aria-live so screen readers know something changed.

6. Tests

Verify the component works before declaring it done.

Test types by priority:

  1. Visual regression. Renders correctly across variants and states. (Storybook + visual diff tools, or manual screenshots.)
  2. Accessibility. Passes axe or equivalent automated checks.
  3. Keyboard navigation. Tab, Enter, Escape, arrow keys all work as expected.
  4. Component logic. Props produce expected output. Events fire correctly. (Unit tests.)
  5. Integration. Component works inside its expected parent contexts.

A component without at least automated accessibility testing is not done.


Workflow

  1. Understand the use case. What UI need does this component serve? Where will it appear? Adjacent components?
  2. Sketch the anatomy. Name the parts.
  3. List variants and states. Match the design system or define new ones if needed.
  4. Design the API. Required props, optional props, children, events. Type it.
  5. Build the markup with semantic HTML. Choose the right elements. Avoid generic <div> for interactive things.
  6. Style with tokens. No hardcoded colors, spacing, or sizes.
  7. Add interaction. Focus management, keyboard handlers, ARIA.
  8. Add states. Hover, focus, active, disabled, loading, error.
  9. Test. Automated accessibility, keyboard navigation, visual regression.
  10. Document. Usage, API, examples, anti-patterns.

Failure patterns

  • Building with <div onClick>. Loses keyboard accessibility, screen reader semantics, and focus. Use <button> or <a>.
  • Hardcoding colors and sizes. Tokens exist for a reason. Hardcoded values resist theming and consistency.
  • Boolean prop explosion. <Button primary large rounded fullWidth disabled icon />. Too many booleans means you actually need fewer variants designed more thoughtfully.
  • Forgetting focus states. Hover gets attention; focus gets neglected. Keyboard users see invisible buttons.
  • Skipping disabled-state thought. A disabled button should look obviously disabled AND be aria-disabled AND not respond to clicks.
  • Inventing ARIA. ARIA roles and properties have specific behaviors. Made-up ARIA is worse than no ARIA. Use semantic HTML first.
  • Loading state that doesn't announce. Screen readers don't know the spinner appeared. Use aria-live="polite" or role="status".
  • Tooltip-only critical content. Hover-only content is invisible to keyboard and touch users. Critical content goes in the visible UI.
  • Component without docs. Future-you, your teammate, or the next maintainer cannot use what they cannot understand.

Output format

A complete component delivery includes:

  • Component code (in the appropriate framework)
  • Storybook (or equivalent) entry showing all variants and states
  • Documentation:
    • Anatomy diagram or description
    • Props/API table
    • Usage examples (basic, advanced, edge cases)
    • When to use vs. when to use an alternative
    • Anti-patterns (what to avoid)
    • Accessibility notes
  • Tests (visual regression + accessibility + logic)

Reference files

GitHub 仓库

rampstackco/claude-skills
路径: skills/frontend-component-build
0
agent-skillsai-agentsanthropicclaudeclaude-aiclaude-code

相关推荐技能

sparc-methodology

开发

SPARC是一个系统化的多智能体开发框架,提供从需求分析到部署监控的17种专项模式。它通过规范、伪代码、架构、精化和完成五个阶段,结合TDD工作流指导完整软件开发流程。开发者可调用特定模式(如`/sparc-spec`或`/sparc-arch`)来获得针对当前开发阶段的智能体协同支持。

查看技能

sparc-methodology

开发

SPARC Methodology 是一个系统化的多智能体开发框架,提供从需求分析到部署监控的17种专项模式。它通过规范、伪代码、架构、优化和完成的五阶段流程,帮助开发者构建高质量软件。该技能特别适合需要结构化开发流程和团队协作的复杂项目,支持测试驱动开发与智能体协同工作。

查看技能

sparc-methodology

开发

SPARC Methodology 是一个集成多智能体编排的综合性开发框架,提供从需求规范到代码完成的17种专业模式。它特别适合需要系统化开发流程的团队,支持测试驱动开发、架构设计和代码重构等关键环节。开发者可以通过简单的指令激活不同模式,将复杂的软件工程任务分解为可管理的标准化步骤。

查看技能

rust-desktop-applications

开发

这个Skill帮助开发者使用Rust构建跨平台桌面应用,重点介绍了Tauri框架和原生GUI方案。它适用于需要系统集成、小体积包或高性能的桌面应用开发。Skill提供了从项目搭建到测试部署的完整指导,包括架构模式、状态管理和平台集成等关键主题。

查看技能