用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill design-systems命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | design-systems |
| description | Design system lookup, CSS best practices, and AI-driven UI component generation via MCP tools |
| version | 1.0.0 |
| category | frontend |
| agents | ["frontend-pro","ui-components-expert","mobile-ux-reviewer"] |
| source | builtin |
| trust_score | 100 |
| provenance_sha | fefc201ea6bce701 |
Access design token libraries, CSS documentation, and AI-driven component generation.
Semantic search across 188+ design systems (Material, Ant Design, Carbon, Chakra, etc.):
# Setup
npx @southleft/design-systems-mcp
# Example queries via MCP
mcp__design_systems__search_components({ query: "button with loading state" })
mcp__design_systems__get_tokens({ system: "material", category: "color" })
mcp__design_systems__get_patterns({ pattern: "form validation error" })
Use cases: Find existing component patterns before building custom, get design token values, compare component API across systems.
MDN CSS documentation + browser compatibility via MCP:
mcp__css__query_property({ property: "container-type" }) # Container queries
mcp__css__check_compat({ property: "has()", browsers: ["chrome", "firefox", "safari"] })
mcp__css__get_examples({ selector: ":is()" })
Generate UI components from natural language:
# Configure Magic MCP with 21st-dev API key
mcp__magic__create_component({ description: "dark mode toggle with animation", framework: "react" })
mcp__magic__find_component({ query: "pricing table with feature comparison" })
/* CSS Custom Properties (recommended) */
--color-primary: #6366f1;
--spacing-md: 1rem;
--radius-lg: 0.5rem;
--font-sans: 'Inter', system-ui, sans-serif;
/* Token categories: color, spacing, typography, radius, shadow, z-index */
Skill({ skill: 'design-systems' }) for design token lookup, component pattern research, CSS best practices, AI component generation