一键导入
enhance-frontend
Enhance frontend to pixel-perfect standards with mobile responsiveness and industry-leading design quality
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Enhance frontend to pixel-perfect standards with mobile responsiveness and industry-leading design quality
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Consult the whizz-mind knowledge base for documentation and answers. Use when the user asks questions that might be answered by stored documentation or when explicitly asked to check whizz-mind.
Run accessibility and visual design review
Interact with Figma design files via the web browser using the Figma Plugin API. Can create shapes, modify properties, extract information from design files.
Research-driven content writing with citations, iterative outlines, and real-time feedback. Transforms writing from solo effort to collaborative partnership.
Full implementation mode - end-to-end feature implementation with phased execution, parallel work streams, verification gates, and atomic commits per phase
Deep analysis mode - thorough multi-phase investigation with expert consultation for complex problems requiring careful examination
| name | enhance-frontend |
| description | Enhance frontend to pixel-perfect standards with mobile responsiveness and industry-leading design quality |
| license | MIT |
| compatibility | ["runtime:any"] |
| allowed-tools | ["Read","Glob","Grep","Write","Edit"] |
| metadata | {"author":"thoreinstein","version":"1.0.0"} |
Elevate frontend quality to pixel-perfect, mobile-responsive, accessible standards.
clamp() for responsive sizingBefore:
.button {
padding: 10px 15px;
background: blue;
color: white;
}
After:
.button {
/* Spacing on 8px grid */
padding: 12px 24px;
/* Color system tokens */
background: var(--color-primary-600);
color: var(--color-white);
/* Typography */
font-size: 1rem;
font-weight: 500;
line-height: 1.5;
/* Touch target */
min-height: 44px;
/* Visual polish */
border-radius: 8px;
transition: background-color 150ms ease;
/* Focus state */
&:focus-visible {
outline: 2px solid var(--color-primary-400);
outline-offset: 2px;
}
/* Hover state */
&:hover {
background: var(--color-primary-700);
}
/* Disabled state */
&:disabled {
background: var(--color-neutral-300);
cursor: not-allowed;
}
}
Begin by auditing the current frontend state against the enhancement areas before making changes.