用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TianQue6916/reasonix --skill frontend-design命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | frontend-design |
| description | 产品级 UI 设计规范 — React + Tailwind CSS,含组件库、布局系统、无障碍标准 |
基于 React + Tailwind CSS 的前端 UI 设计系统。
md:/lg: 断点扩展// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
primary: { 50: '#eff6ff', 500: '#3b82f6', 900: '#1e3a5f' },
surface: { DEFAULT: '#ffffff', muted: '#f8fafc', border: '#e2e8f0' }
},
spacing: { 18: '4.5rem', 88: '22rem' },
borderRadius: { 'xl': '0.75rem', '2xl': '1rem' }
}
}
}
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{items.map(item => <Card key={item.id} {...item} />)}
</div>
<dialog className="fixed inset-0 z-50 bg-black/50 backdrop-blur-sm flex items-center justify-center">
<div className="bg-white rounded-xl p-6 max-w-lg w-full mx-4 shadow-2xl" role="dialog" aria-modal="true">
{children}
</div>
</dialog>