A collection of Claude Code skills providing AI-assistant reference guides for Reaviz ecosystem libraries. Skills contain component APIs, usage patterns, theming details, and code examples derived from source code and stories.
Each library lives in its own directory under the repo root. To add a new library, create a <library>/ directory with a top-level SKILL.md and per-component skills underneath.
skills/
βββ README.md
βββ reagraph/
β βββ SKILL.md # Library overview, data shapes, setup
β βββ graph/
β β βββ SKILL.md # Graph category overview
β β βββ graph-canvas/SKILL.md # GraphCanvas (main entry, all props, ref methods)
β β βββ nodes/SKILL.md # Sphere, SphereWithIcon, SphereWithSvg, Svg, Badge
β β βββ edges/SKILL.md # Edge config, arrows, dashed, curved, aggregation
β β βββ labels/SKILL.md # Label visibility, fonts, styling
β β βββ clusters/SKILL.md # Cluster grouping, custom rendering
β βββ layout/
β β βββ SKILL.md # Layout category overview
β β βββ layouts/SKILL.md # 16 layout algorithms + custom + overrides
β βββ interaction/
β β βββ SKILL.md # Interaction category overview
β β βββ selection/SKILL.md # useSelection, lasso, single/multi/path
β β βββ camera/SKILL.md # CameraControls, modes, centering, zoom
β β βββ context-menu/SKILL.md # RadialMenu, RadialSlice
β β βββ collapse/SKILL.md # useCollapse, expand/collapse hierarchies
β βββ styling/
β βββ SKILL.md # Styling category overview
β βββ themes/SKILL.md # lightTheme, darkTheme, Theme interface
β βββ sizing/SKILL.md # SizingType: pagerank, centrality, attribute
βββ reaviz/
β βββ SKILL.md # Library overview, data shapes, common patterns
β βββ common/
β β βββ SKILL.md # Common category overview
β β βββ axis/SKILL.md # LinearXAxis, LinearYAxis, ticks, labels
β β βββ brush-zoom/SKILL.md # ChartBrush, ChartZoomPan
β β βββ color-schemes/SKILL.md # Named palettes, ColorSchemeType
β β βββ gradient-mask/SKILL.md # Gradient, GradientStop, Mask, Stripes
β β βββ gridline/SKILL.md # GridlineSeries, Gridline, GridStripe
β β βββ legend/SKILL.md # DiscreteLegend, SequentialLegend
β β βββ markers/SKILL.md # LinearValueMarker, RadialValueMarker, MarkLine
β β βββ tooltip/SKILL.md # ChartTooltip, TooltipArea, TooltipTemplate
β βββ charts/
β βββ SKILL.md # Charts category overview
β βββ area-chart/SKILL.md # AreaChart (standard, grouped, stacked, normalized)
β βββ bar-chart/SKILL.md # BarChart (+ stacked, marimekko, histogram, waterfall)
β βββ bar-list/SKILL.md # BarList (horizontal ranking bars)
β βββ bubble-chart/SKILL.md # BubbleChart (packed circles)
β βββ funnel-chart/SKILL.md # FunnelChart (default, layered)
β βββ gauge/SKILL.md # LinearGauge, RadialGauge
β βββ heatmap/SKILL.md # Heatmap + CalendarHeatmap
β βββ line-chart/SKILL.md # LineChart (line-only, no area fill)
β βββ map/SKILL.md # Map + MapMarker
β βββ meter/SKILL.md # Meter (segmented column strip)
β βββ pie-chart/SKILL.md # PieChart (pie, donut, exploded)
β βββ radar-chart/SKILL.md # RadarChart (spider, radial axes)
β βββ sankey/SKILL.md # Sankey (flow diagram, nodes + links)
β βββ scatter-plot/SKILL.md # ScatterPlot (points, bubbles, symbols)
β βββ sparkline/SKILL.md # Sparkline, AreaSparkline, BarSparkline, Sonar
β βββ sunburst-chart/SKILL.md # SunburstChart (hierarchical radial)
β βββ tree-map/SKILL.md # TreeMap (rectangular hierarchical)
β βββ venn-diagram/SKILL.md # VennDiagram (venn, euler, starEuler)
β βββ word-cloud/SKILL.md # WordCloud (tag cloud)
βββ reablocks/
β βββ SKILL.md # Library overview, theming, common rules
β βββ unify-theme/
β β βββ SKILL.md # Unify Theme β production / Figma-synced theme pack (3-tier tokens, single-file themeUnify.ts + Figma-generated CSS layers)
β βββ data/
β β βββ SKILL.md # Data category overview
β β βββ data-size/SKILL.md # DataSize + formatSize
β β βββ date-format/SKILL.md # DateFormat (absolute, relative, toggle)
β β βββ duration/SKILL.md # Duration + formatDuration
β β βββ ellipsis/SKILL.md # Ellipsis (character/line truncation)
β β βββ infinity-list/SKILL.md # InfinityList + useInfinityList hook
β β βββ pager/SKILL.md # Pager (pagination controls)
β β βββ pluralize/SKILL.md # Pluralize + pluralize utility
β β βββ redact/SKILL.md # Redact (mask sensitive content)
β β βββ sort/SKILL.md # Sort (column header with direction)
β βββ elements/
β β βββ SKILL.md # Elements category overview
β β βββ avatar/SKILL.md # Avatar + AvatarGroup
β β βββ badge/SKILL.md # Badge
β β βββ button/SKILL.md # Button + ButtonGroup
β β βββ chip/SKILL.md # Chip (badge/tag types)
β β βββ command-palette/SKILL.md # CommandPalette + Section + Item
β β βββ icon-button/SKILL.md # IconButton
β β βββ kbd/SKILL.md # Kbd (keyboard shortcuts)
β β βββ loader/SKILL.md # DotsLoader
β β βββ navigation/SKILL.md # NavigationBar + NavigationButton
β β βββ skeleton/SKILL.md # Skeleton
β βββ form/
β β βββ SKILL.md # Form category overview
β β βββ calendar/SKILL.md # Calendar (dates, ranges, time, presets)
β β βββ checkbox/SKILL.md # Checkbox (animated SVG, intermediate)
β β βββ date-input/SKILL.md # DateInput (input + calendar popup)
β β βββ input/SKILL.md # Input + DebouncedInput + InlineInput
β β βββ radio/SKILL.md # Radio + RadioGroup
β β βββ range/SKILL.md # RangeSingle + RangeDouble
β β βββ select/SKILL.md # Select (single, multi, creatable)
β β βββ textarea/SKILL.md # Textarea (auto-resize)
β β βββ toggle/SKILL.md # Toggle (on/off switch)
β βββ layout/
β β βββ SKILL.md # Layout category overview
β β βββ breadcrumbs/SKILL.md # Breadcrumbs (composable sub-components)
β β βββ card/SKILL.md # Card (container with header)
β β βββ collapse/SKILL.md # Collapse (animated expand/collapse)
β β βββ divider/SKILL.md # Divider (horizontal/vertical)
β β βββ field/SKILL.md # Field (label, hint, error wrapper)
β β βββ list/SKILL.md # List + ListItem + ListHeader
β β βββ motion/SKILL.md # MotionGroup + MotionItem
β β βββ stepper/SKILL.md # Stepper + Step (dots/numbered)
β β βββ tabs/SKILL.md # Tabs + TabList + Tab + TabPanel
β β βββ tree/SKILL.md # Tree + TreeNode
β βββ layers/
β β βββ SKILL.md # Layers category overview
β β βββ backdrop/SKILL.md # Backdrop
β β βββ callout/SKILL.md # Callout (+ Success/Error/Warning/Info variants)
β β βββ confirm-dialog/SKILL.md # ConfirmDialog + useConfirmDialog
β β βββ context-menu/SKILL.md # ContextMenu (right-click)
β β βββ dialog/SKILL.md # Dialog + slots + useDialog
β β βββ drawer/SKILL.md # Drawer + slots + useDrawer
β β βββ menu/SKILL.md # Menu (dropdown)
β β βββ notification/SKILL.md # Notifications + useNotification
β β βββ popover/SKILL.md # Popover (click-triggered)
β β βββ tooltip/SKILL.md # Tooltip (hover, delays, follow-cursor)
β βββ typography/
β βββ SKILL.md # Typography (headings, text styles)
βββ reachat/
βββ SKILL.md # Library overview, ChatContext, theme system
βββ messaging/SKILL.md # SessionMessagePanel, SessionMessages, SessionMessage, MessageQuestion/Response/Files/Sources/Actions
βββ sessions/SKILL.md # SessionsList, SessionGroups, SessionListItem, NewSessionButton
βββ input/SKILL.md # ChatInput, RichTextInput (Tiptap), MentionList, SuggestionConfig
βββ markdown/SKILL.md # Markdown, CodeHighlighter, ChartRenderer, remark plugins (cve, redact, component)
βββ chat-bubble/SKILL.md # ChatBubble (floating launcher)
βββ app-bar/SKILL.md # AppBar (header)
βββ suggestions/SKILL.md # ChatSuggestions, ChatSuggestion
βββ status/SKILL.md # MessageStatus, MessageStatusItem, StatusIcon
βββ catalog/SKILL.md # componentCatalog, ComponentRenderer, createChartComponentDef
βββ ag-ui/SKILL.md # useAgUi (AG-UI protocol streaming hook)
WebGL node-based graph visualization for React built on Three.js and D3.
| Category | Components |
|---|---|
| Graph | GraphCanvas, Sphere, SphereWithIcon, SphereWithSvg, Svg, Badge, Edge, Arrow, Label, Cluster |
| Layout | forceDirected2d/3d, circular, concentric, tree, radial, hierarchical, nooverlap, forceatlas2, custom |
| Interaction | useSelection, Lasso, CameraControls, useCenterGraph, RadialMenu, useCollapse |
| Styling | lightTheme, darkTheme, SizingType (pagerank, centrality, attribute) |
React data visualization library built on D3.js and Framer Motion.
| Category | Components |
|---|---|
| Common | Axis, Gridline, Tooltip, Legend, Gradient, Mask, Brush, ZoomPan, ColorSchemes, ValueMarker, MarkLine |
| Charts | AreaChart, BarChart, BarList, BubbleChart, FunnelChart, LinearGauge, RadialGauge, Meter, Heatmap, CalendarHeatmap, LineChart, Map, PieChart, RadarChart, Sankey, ScatterPlot, SparklineChart, AreaSparklineChart, BarSparklineChart, SonarChart, SunburstChart, TreeMap, VennDiagram, WordCloud |
React UI component library with 50+ components built on Tailwind CSS and Framer Motion.
| Category | Components |
|---|---|
| Data | DataSize, DateFormat, Duration, Ellipsis, InfinityList, Pager, Pluralize, Redact, Sort |
| Elements | Avatar, AvatarGroup, Badge, Button, Chip, CommandPalette, IconButton, Kbd, Loader, Navigation, Skeleton |
| Form | Calendar, Checkbox, DateInput, Input, Radio, Range, Select, Textarea, Toggle |
| Layout | Breadcrumbs, Card, Collapse, Divider, Field, List, Motion, Stepper, Tabs, Tree |
| Layers | Backdrop, Callout, ConfirmDialog, ContextMenu, Dialog, Drawer, Menu, Notification, Popover, Tooltip |
| Typography | H1-H6, P, BlockQuote, Lead, Large, Small, Muted |
| Theming | Default theme, themeUnify (quick-start), Unify Theme (production / Figma-synced β single-file themeUnify.ts + Figma-generated CSS layers, 3-tier tokens) |
React UI library for chat / LLM experiences. Built on reablocks, Tiptap, react-markdown, Floating UI, and motion. Provides a slot-based composition for chat UIs, rich-text input with @mentions and /commands, file uploads, multi-file support, markdown rendering with charts and redaction, an LLM-driven ComponentCatalog, and an AG-UI protocol hook.
| Category | Components |
|---|---|
| Root | Chat, ChatContext, chatTheme, ChatTheme, PartialChatTheme |
| Messaging | SessionMessagePanel, SessionMessagesHeader, SessionMessages, SessionMessage, MessageQuestion, MessageResponse, MessageSources, MessageActions, MessageFiles, SessionEmpty |
| Sessions | SessionsList, SessionGroups, SessionsGroup, SessionListItem, NewSessionButton |
| Input | ChatInput, RichTextInput, MentionList, FileInput, SuggestionConfig, MentionItem, SlashCommandItem |
| Markdown | Markdown, CodeHighlighter, ChartRenderer, remarkCve, remarkRedact, remarkComponent, ssn/creditCard/bitcoin matchers |
| Bubble / AppBar | ChatBubble, AppBar |
| Suggestions | ChatSuggestions, ChatSuggestion |
| Status | MessageStatus, MessageStatusItem, StatusIcon |
| Catalog | componentCatalog, ComponentRenderer, ComponentError, createComponentPre, createChartComponentDef, validateSpec, generatePrompt |
| AG-UI | useAgUi, AgUi types and event helpers |
Claude Code discovers skills automatically from specific filesystem locations. Choose one of the methods below to make these skills available in your project.
Copy or symlink the desired library directory into your project's .claude/skills/ folder:
# From your project root
mkdir -p .claude/skills
# Symlink the entire reablocks skill tree
ln -s /path/to/reaviz/skills/reablocks .claude/skills/reablocksSkills placed in .claude/skills/ are committed to version control and shared with all team members.
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/reablocksUser-level skills are not shared with other team members.
Point Claude Code to this repository at launch. Skills inside .claude/skills/ of added directories are discovered automatically:
claude --add-dir /path/to/reaviz/skillsThis grants file access for the current session only.
Once installed, Claude Code will automatically load the relevant SKILL.md files when it encounters Reaviz 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.
- Create
<library>/<category>/<component>/SKILL.md(e.g.reablocks/form/checkbox/SKILL.md) - Document: import, props table, usage examples (from stories), theme interface, and customization patterns
- Base all content on actual source files β do not rely on AI knowledge
- Update the parent category
SKILL.mdif needed
- Create a
<library>/directory at the repo root - Add a top-level
<library>/SKILL.mdwith library overview, installation, and common patterns - Organize component skills into category subdirectories
- Update this README with the new library entry