Agent skill
components-build
Build modern, composable, and accessible React UI components following the components.build specification. Use when creating, reviewing, or refactoring component libraries, design systems, or any reusable UI components. Triggers on tasks involving component APIs, composition patterns, accessibility, styling systems, or TypeScript props.
Install this agent skill to your Project
npx add-skill https://github.com/nolly-studio/components-build-skill/tree/main/skills/components-build
Metadata
Additional technical details for this skill
- author
- components.build
- version
- 1.0.0
SKILL.md
Components.build Specification
Comprehensive guidelines for building modern, composable, and accessible UI components. Contains 16 rule categories covering everything from core principles to distribution, co-authored by Hayden Bleasel and shadcn.
When to Apply
Reference these guidelines when:
- Creating new React components or component libraries
- Designing component APIs and prop interfaces
- Implementing accessibility features (keyboard, ARIA, focus management)
- Building composable component architectures
- Styling components with Tailwind CSS and CVA
- Publishing components to registries or npm
Rule Categories by Priority
| Priority | Category | Focus | Prefix |
|---|---|---|---|
| 1 | Overview | Specification scope and goals | overview |
| 2 | Principles | Core design philosophy | principles |
| 3 | Definitions | Common terminology | definitions |
| 4 | Composition | Breaking down complex components | composition |
| 5 | Accessibility | Keyboard, screen readers, ARIA | accessibility |
| 6 | State | Controlled/uncontrolled patterns | state |
| 7 | Types | TypeScript props and interfaces | types |
| 8 | Polymorphism | Element switching with as prop |
polymorphism |
| 9 | As-Child | Radix Slot composition pattern | as-child |
| 10 | Data Attributes | data-state and data-slot |
data-attributes |
| 11 | Styling | Tailwind CSS, cn utility, CVA | styling |
| 12 | Design Tokens | CSS variables and theming | design-tokens |
| 13 | Documentation | Component documentation | documentation |
| 14 | Registry | Component registries | registry |
| 15 | NPM | Publishing to npm | npm |
| 16 | Marketplaces | Component marketplaces | marketplaces |
Quick Reference
1. Overview
overview- Specification scope, goals, and philosophy
2. Principles
principles- Composability, accessibility, customization, transparency
3. Definitions
definitions- Common terminology (primitive, compound, headless, etc.)
4. Composition
composition-root- Root component with Context for shared statecomposition-item- Item wrapper componentscomposition-trigger- Interactive trigger componentscomposition-content- Content display componentscomposition-export- Namespace export pattern
5. Accessibility
accessibility-semantic-html- Use appropriate HTML elementsaccessibility-keyboard- Full keyboard navigation supportaccessibility-aria- Proper ARIA roles, states, and propertiesaccessibility-focus- Focus management and restorationaccessibility-live-regions- Screen reader announcementsaccessibility-contrast- Color contrast requirements
6. State
state-uncontrolled- Internal state managementstate-controlled- External state delegationstate-controllable- Support both patterns with useControllableState
7. Types
types-extend-html- Extend native HTML attributestypes-export- Export prop types for consumerstypes-single-element- One component wraps one element
8. Polymorphism
polymorphism-as-prop- Change rendered element typepolymorphism-typescript- Type-safe polymorphic componentspolymorphism-defaults- Semantic element defaults
9. As-Child
as-child-slot- Radix Slot for prop mergingas-child-composition- Compose with child components
10. Data Attributes
data-attributes-state- Usedata-statefor styling statesdata-attributes-slot- Usedata-slotfor targeting sub-components
11. Styling
styling-cn-utility- Combine clsx and tailwind-mergestyling-order- Base → Variants → Conditionals → User overridesstyling-cva- Class Variance Authority for variantsstyling-css-variables- Dynamic values with CSS variables
12. Design Tokens
design-tokens-css-variables- Define tokens as CSS variablesdesign-tokens-theming- Support light/dark modes and themes
13. Documentation
documentation-props- Document all props with JSDocdocumentation-examples- Provide usage examples
14. Registry
registry-structure- Registry file structureregistry-schema- Component metadata schema
15. NPM
npm-package-json- Package configurationnpm-exports- Module exports
16. Marketplaces
marketplaces-distribution- Component distribution strategies
How to Use
Read individual rule files for detailed explanations and code examples:
rules/composition/SKILL.md
rules/accessibility/SKILL.md
rules/styling/SKILL.md
Each rule file contains:
- Brief explanation of why it matters
- Incorrect code example with explanation
- Correct code example with explanation
- Best practices and common pitfalls
Full Compiled Document
For the complete guide with all rules expanded: AGENTS.md
Key Principles
- Composition over Configuration - Break components into composable sub-components
- Accessibility by Default - Not an afterthought, but a requirement
- Single Element Wrapping - Each component wraps one HTML element
- Extend HTML Attributes - Always extend native element props
- Export Types - Make prop types available to consumers
- Support Both State Patterns - Controlled and uncontrolled
- Intelligent Class Merging - Use
cn()utility with tailwind-merge
Authors
Co-authored by:
- Hayden Bleasel (@haydenbleasel)
- shadcn (@shadcn)
Adapted as an AI skill by:
- Jordan Gilliam (@nolansym)
Based on the components.build specification.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
migrate-to-shoehorn
Migrate test files from `as` type assertions to @total-typescript/shoehorn. Use when user mentions shoehorn, wants to replace `as` in tests, or needs partial test data.
scaffold-exercises
Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
git-guardrails-claude-code
Set up Claude Code hooks to block dangerous git commands (push, reset --hard, clean, branch -D, etc.) before they execute. Use when user wants to prevent destructive git operations, add git safety hooks, or block git push/reset in Claude Code.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
Didn't find tool you were looking for?