Strongtie Design System
Getting StartedComponents

Command Palette

Search for a command to run...

Getting Started
  • Introduction
  • Setup Guide
  • Package Installation
  • Code Quality Setup
  • Migration Guide
  • Resources
Registry
  • Getting Started
  • Combobox
  • Datepicker
  • MultiSelect
  • Tree
Guides
  • Framework Recommendations
Foundations
  • States
  • Variables
Components
  • Accordion
  • Alert
  • Alert Dialog
  • Avatar
  • Badge
  • Breadcrumb
  • Button
  • Button Group
  • Calendar
  • Card
  • Carousel
  • Chart
  • Checkbox
  • Collapsible
  • Command
  • Combobox
  • Context Menu
  • Date Picker
  • Dialog
  • Drawer
  • Dropdown Menu
  • Empty
  • Field
  • Hover Card
  • Input
  • Input Group
  • Item
  • Kbd
  • Label
  • Menubar
  • Multi Select
  • Navigation Menu
  • Pagination
  • Popover
  • Progress
  • Radio Group
  • Scroll Area
  • Select
  • Separator
  • Sheet
  • Sidebar
  • Skeleton
  • Slider
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toaster
  • Toggle
  • Toggle Group
  • Tooltip
  • Tree
2026 Simpson Strong-Tie
  1. Docs
  2. AI Agent Skills

AI Agent Skills

PreviousNext

Custom AI agent skills for the Simpson Strong-Tie design system. These skills provide specialized guidance for component development, testing, documentation, and code quality.

Custom AI agent skills for the Simpson Strong-Tie design system. These skills provide specialized guidance for component development, testing, documentation, and code quality.

Installation: Download the skill files and place them in your ~/.agents/skills/ directory.

Available Skills

strongtie-component

Create React components for @strongtie/design-system using shadcn/ui and Radix UI primitives first, following the two-layer architecture with CVA variants and Tailwind CSS v4.

Use when:

  • Creating new components
  • Modifying existing components
  • Adding component variants

strongtie-test

Generate comprehensive test suites for React components with accessibility testing.

Use when:

  • Creating tests for new components
  • Adding tests to existing components
  • Fixing failing tests

strongtie-docs

Generate documentation for React components using Storybook, MDX, or JSDoc based on project conventions.

Use when:

  • Creating documentation for new components
  • Updating existing documentation
  • Adding Storybook stories

strongtie-react-practices

Follow React best practices and web interface guidelines for accessibility, performance, forms, animation, and UX patterns.

Use when:

  • Writing React components
  • Reviewing code
  • Implementing forms or data fetching

strongtie-style-consistency

Ensure code style consistency using Ultracite and @strongtie linting packages. Handles setup if not installed, then runs checks and fixes.

Use when:

  • Setting up linting in a project
  • Running lint checks
  • Fixing lint errors

design-system-migration

Migrate React applications from @strongtie/design-system to shadcn/ui with Tailwind CSS. Includes component mapping, CSS token conversion, and breaking change handling.

Use when:

  • Migrating a project from @strongtie/design-system to shadcn/ui
  • Converting design-system imports to local component imports
  • Updating component usage patterns for shadcn compatibility

What Are Skills?

Skills are reusable prompt instructions that provide AI coding assistants with domain-specific knowledge. They contain patterns, conventions, and best practices that help AI agents generate code consistent with your team's standards.

When installed, skills are automatically loaded by compatible AI agents (like Claude Code, Cursor, or OpenCode) based on context matching. For example, when you ask to "create a new Button component," the strongtie-component skill activates to guide the AI through your team's two-layer architecture pattern.

Installation

Skills are installed globally in your home directory and shared across all projects. Different AI clients use different directories:

ClientSkills Directory
Universal~/.agents/skills/
Claude Code~/.claude/skills/
Cursor~/.cursor/skills/

We recommend using ~/.agents/skills/ for universal compatibility. Most modern AI coding assistants support this location.

Manual Installation

# 1. Create the global skills directory (one-time setup)
mkdir -p ~/.agents/skills
 
# 2. Create a directory for each skill you want to install
mkdir -p ~/.agents/skills/strongtie-component
mkdir -p ~/.agents/skills/strongtie-test
mkdir -p ~/.agents/skills/strongtie-docs
mkdir -p ~/.agents/skills/strongtie-react-practices
mkdir -p ~/.agents/skills/strongtie-style-consistency
mkdir -p ~/.agents/skills/design-system-migration
 
# 3. Download skills using the buttons above and move them
mv ~/Downloads/SKILL.md ~/.agents/skills/strongtie-component/
 
# 4. Verify installation
ls ~/.agents/skills/strongtie-*/SKILL.md

Usage

Skills activate automatically when the AI agent detects relevant context. You can also explicitly load a skill:

# Load a specific skill
/skill strongtie-component
 
# List available skills
/skill list

When Skills Activate

SkillActivates When
strongtie-componentCreating or modifying React components
strongtie-testWriting or fixing tests
strongtie-docsCreating documentation or Storybook stories
strongtie-react-practicesWriting React code, forms, or data fetching
strongtie-style-consistencyRunning linting or setting up code quality tools
design-system-migrationMigrating from @strongtie/design-system to shadcn/ui

Related Resources

  • Design Standards - Core design patterns
  • Code Examples - Implementation templates
  • AGENTS.md Template - Project configuration template
  • ESLint Setup - Linting configuration guide
Resources & DownloadsMoving Away from Telerik UI for Blazor

On This Page

Available Skillsstrongtie-componentstrongtie-teststrongtie-docsstrongtie-react-practicesstrongtie-style-consistencydesign-system-migrationWhat Are Skills?InstallationManual InstallationUsageWhen Skills ActivateRelated Resources

Contribute

  • Report an issue
  • Request a feature
  • Edit this page