AI Agent Skills

Install an Agent Skill so your AI coding assistant generates correct, accessible GHDS code.

GHDS ships an Agent Skill — a set of rules and examples your AI coding assistant (Claude Code, Cursor, and other tools in the vercel-labs/skills ecosystem) reads before generating code that imports from @ghds/*. Instead of guessing prop names or hardcoding colors, it knows GHDS’s actual conventions.

Installation

npx skills add GyeongHoKim/gyeongho-design-system
pnpm dlx skills add GyeongHoKim/gyeongho-design-system
bunx skills add GyeongHoKim/gyeongho-design-system

This installs the skill into your project’s agent-skills directory (e.g. .claude/skills/ for Claude Code). We’ve verified installation and usage with Claude Code; the skill follows the open agentskills.io format supported by the wider vercel-labs/skills ecosystem, but we haven’t verified every listed agent ourselves.

What’s Included

Before / After

Without the skill, an agent will often hardcode a color:

/* Before */
.my-button {
  background-color: #0066cc;
}
/* After */
.my-button {
  background-color: var(--sys-color-bg-primary);
}

…or carry a prop name across platforms that doesn’t exist there:

// Before — 'neutral' isn't a valid variant on React Native
<Button label="Cancel" variant="neutral" />
// After
<Button label="Cancel" variant="primary" />

Reference