Skip to Content

AI Skills

AI Skills  are Claude Code skill files that provide AI-assistant reference guides for Reablocks. Skills contain component APIs, usage patterns, theming details, and code examples derived from source code and stories.

When installed, Claude Code automatically loads the relevant skill files when it encounters Reablocks components in your code, giving it deep knowledge of the component APIs, props, and usage patterns.

Available Components

CategoryComponents
DataDataSize, DateFormat, Duration, Ellipsis, InfinityList, Pager, Pluralize, Redact, Sort
ElementsAvatar, AvatarGroup, Badge, Button, Chip, CommandPalette, IconButton, Kbd, Loader, Navigation, Skeleton
FormCalendar, Checkbox, DateInput, Input, Radio, Range, Select, Textarea, Toggle
LayoutBreadcrumbs, Card, Collapse, Divider, Field, List, Motion, Stepper, Tabs, Tree
LayersBackdrop, Callout, ConfirmDialog, ContextMenu, Dialog, Drawer, Menu, Notification, Popover, Tooltip
TypographyH1-H6, P, BlockQuote, Lead, Large, Small, Muted

Installation

Choose one of the following methods to make skills available in your project.

The simplest way to install Reablocks skills is via npx:

npx skills add reaviz/skills

This fetches the latest skills and installs them into your project automatically.

Option 2: Project-level (for teams)

Copy or symlink the Reablocks skills into your project’s .claude/skills/ folder:

# From your project root mkdir -p .claude/skills # Symlink the reablocks skill tree ln -s /path/to/reaviz/skills/reablocks .claude/skills/reablocks

Skills placed in .claude/skills/ are committed to version control and shared with all team members.

Option 3: User-level (personal, all projects)

Copy or symlink skills into ~/.claude/skills/ to make them available across all your projects:

mkdir -p ~/.claude/skills # Symlink the library ln -s /path/to/reaviz/skills/reablocks ~/.claude/skills/reablocks

User-level skills are not shared with other team members.

Option 4: --add-dir flag (per-session)

Point Claude Code to the skills repository at launch. Skills inside .claude/skills/ of added directories are discovered automatically:

claude --add-dir /path/to/reaviz/skills

This grants file access for the current session only.

Verifying Installation

Once installed, Claude Code will automatically load the relevant skill files when it encounters Reablocks components in your code. You can verify by asking Claude Code about a specific component:

> How do I use the reablocks Select component?

Claude Code should respond with API details, props, and examples sourced from the skill files.

Skill Structure

Skills are organized into category directories with per-component skill files:

reablocks/ ├── SKILL.md # Library overview, theming, common rules ├── data/ │ ├── SKILL.md # Data category overview │ ├── data-size/SKILL.md │ ├── date-format/SKILL.md │ └── ... ├── elements/ │ ├── SKILL.md │ ├── avatar/SKILL.md │ ├── button/SKILL.md │ └── ... ├── form/ │ ├── SKILL.md │ ├── calendar/SKILL.md │ ├── select/SKILL.md │ └── ... ├── layout/ │ ├── SKILL.md │ ├── tabs/SKILL.md │ ├── card/SKILL.md │ └── ... ├── layers/ │ ├── SKILL.md │ ├── dialog/SKILL.md │ ├── tooltip/SKILL.md │ └── ... └── typography/ └── SKILL.md

For more details, see the skills repository on GitHub .

Last updated on