用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aiskillstore/marketplace --skill ui-component-creation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | ui-component-creation |
| description | Creates UI components using shadcn/ui and design system patterns |
When to Use: Creating new UI components
BEFORE generating any UI: Read /DESIGN-SYSTEM.md
Quality Gate: 9/10 minimum on:
'use client';
import { Card } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
export function MyComponent({ data }: { data: any }) {
return (
<Card className="p-6 border-border-subtle bg-bg-card">
<h2 className="text-xl font-semibold text-text-primary mb-4">
{data.title}
</h2>
<p className="text-text-secondary mb-4">
{data.description}
</p>
<Button variant="default" className="bg-accent-500 hover:bg-accent-600">
Action
</Button>
</Card>
);
}
Use these, not raw values:
Colors:
bg-bg-card (not bg-white)text-text-primary (not text-gray-900)accent-500 (#ff6b35 orange)border-border-subtleSpacing:
❌ bg-white (use bg-bg-card)
❌ text-gray-600 (use text-text-secondary)
❌ grid grid-cols-3 gap-4 without responsive (add md:, lg:)
✅ Design tokens from system ✅ All states (hover, focus, disabled) ✅ Responsive breakpoints ✅ Accessibility (aria-labels)
Standard: Use design tokens, implement all states, ensure accessibility