一键导入
frontend-engineering
Build UIs that are fast, accessible, maintainable, and tested
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build UIs that are fast, accessible, maintainable, and tested
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Build UIs that work for all users including keyboard navigation, screen readers, and WCAG 2.2
Design multi-agent systems with robust tool interfaces, state management, and failure handling
Build ML systems with disciplined training, evaluation, deployment, and safety practices
Design APIs that are stable, ergonomic, and evolvable
Design systems at the right scale with explicit trade-off documentation
Design services that are reliable, observable, secure, and maintainable
| name | frontend-engineering |
| description | Build UIs that are fast, accessible, maintainable, and tested |
| difficulty | senior |
| domains | ["web"] |
Frontend engineering is full-stack engineering from the network edge to the pixel. Performance, accessibility, maintainability, and security are all first-class concerns — not features to add later.
/review workflow for frontend PRsEvery component has states: loading, empty, error, populated, and edge cases. Define and implement all of them before calling it done.
See accessibility-engineering skill. Apply before visual polish.
Define before building:
Measure with Lighthouse on a representative device.
Prefer: local state → lifted state → context → global store (in that order). Only reach for global state when local state genuinely doesn't work.
Wrap sections of the UI in error boundaries. A crash in one section should not take down the whole page.