一键导入
interface-design
Design user interfaces. Use when creating layouts, wireframes, or UI specifications. Covers design principles and UI patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design user interfaces. Use when creating layouts, wireframes, or UI specifications. Covers design principles and UI patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Render a self-contained HTML "tab-bar" presentation from a markdown PRD, Spec, ADR, or implementation Plan. Use when the user asks to "make a presentation", "render slides", "turn this prd/spec/adr/plan into a deck", "present this doc", "export to html", or "show this on screen". INPUT is ONE markdown file (a PRD, Spec, ADR, or Plan). OUTPUT is ONE .html slideshow that opens directly in a browser. Render only — do not invent content.
Design scalable, reliable software systems. Use when planning new systems, major features, or architecture changes. Covers C4 diagrams, trade-off analysis, and system decomposition.
Create execution roadmaps for projects. Use when planning multi-phase projects or feature rollouts. Covers phased delivery and milestone planning.
Create Product Requirements Documents. Use when defining new features, projects, or initiatives. Covers user stories, acceptance criteria, and scope definition.
Apply cloud-native architecture patterns. Use when designing for scalability, resilience, or cloud deployment. Covers microservices, containers, and distributed systems.
Apply Domain-Driven Design patterns. Use when modeling complex business domains, defining bounded contexts, or designing aggregates. Covers entities, value objects, and repositories.
| name | interface-design |
| description | Design user interfaces. Use when creating layouts, wireframes, or UI specifications. Covers design principles and UI patterns. |
| allowed-tools | Read, Write, Glob, Grep |
Make the interface obvious. Users shouldn't have to guess.
Same actions, same results. Maintain patterns throughout.
Respond to every action. Show progress, confirm success, explain errors.
Minimize steps. Optimize common workflows.
Allow undo. Confirm destructive actions. Recover gracefully.
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 1rem;
}
When handing off to development: