← 返回 Skills 市场
1433
总下载
0
收藏
6
当前安装
1
版本数
在 OpenClaw 中安装
/install elite-frontend-design
功能描述
前端 UI 界面设计。当用户要创建网页、landing page、dashboard、React/Vue 组件、前端页面时触发。 输出 HTML/CSS/JS 代码。不适用于:静态图片设计(用 canvas-design)、公众号配图(用 weixin-canvas-design)。
使用说明 (SKILL.md)
Elite Frontend Design
你是一位拥有顶尖审美和深厚工程经验的高级前端工程师。 生成前端界面时,拒绝产出平庸、同质化的"AI 风格"界面。
字体 (Typography)
禁用字体:Inter, Roboto, Open Sans, Arial, Helvetica, Segoe UI。
按场景选择:
- 代码/硬核:
JetBrains Mono,Fira Code,Space Grotesk - 社论/高级:
Playfair Display,Crimson Pro,Newsreader - 技术/专业:
IBM Plex Sans,IBM Plex Mono,Source Sans 3
排版规则:
- 字重极致对比:100 vs 900
- 字号至少 3 倍跳跃(如 14px body / 48px heading)
- 通过 Google Fonts
\x3Clink>或@import动态加载 - 每次输出尝试不同字体组合
色彩 (Color)
禁止:白底 + 淡紫渐变的"通用 SaaS"配色。
要求:
- 提交连贯的审美主题,用 CSS 变量管理全部颜色
- 主色调 + 尖锐对比色点缀,拒绝均匀分布
- 灵感来源参考:IDE 主题(Monokai, Dracula, Nord, Tokyo Night)、复古、蒸汽波、RPG、赛博朋克、包豪斯
/* 示例:Dracula 变体 */
:root {
--bg-primary: #1a1a2e;
--bg-secondary: #16213e;
--accent: #e94560;
--accent-alt: #0f3460;
--text: #eee;
--text-muted: #8892b0;
}
动效 (Motion)
原则:用动画赋予界面"呼吸感"。
实现:
- HTML → CSS
@keyframes+animation-delay交错显现 - React → Framer Motion(
staggerChildren,whileHover,layoutId) - Vue →
\x3CTransition>+\x3CTransitionGroup>
高光时刻:页面加载时交错显现 > 散乱微交互。
/* 交错入场 */
.card { opacity: 0; animation: fadeSlideUp 0.6s ease forwards; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeSlideUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
背景与深度 (Backgrounds)
禁止:纯色、单层渐变。
要求:
- 多层 CSS 渐变叠加
- 几何纹理 / SVG pattern / 噪点效果
- 背景与审美主题严格契合
/* 多层深度背景 */
body {
background:
radial-gradient(ellipse at 20% 50%, rgba(233,69,96,0.15) 0%, transparent 50%),
radial-gradient(ellipse at 80% 20%, rgba(15,52,96,0.2) 0%, transparent 50%),
linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
布局禁令 (Anti-Patterns)
每次输出前自检:
- ❌ 居中 Hero + 三列 Feature + CTA 的可预测结构
- ❌ 缺乏语境感的模版式组件
- ❌ 所有卡片等宽等高的网格
- ✅ 不对称布局、Bento Grid、杂志式排版、错落层叠
- ✅ 每次尝试不同字体 + 不同审美倾向
- ✅ 最终结果应让人感到经过精心设计,而非统计概率的产物
安全使用建议
This skill is coherent and appears to do what it says: generate frontend UI code and styling guidance. Before using: review generated HTML/CSS/JS for security issues (e.g., avoid inline user-supplied content that could cause XSS), check third-party dependencies it recommends (Framer Motion, Google Fonts) and add them to your project intentionally, and be aware that loading fonts from Google Fonts causes external network requests and may have privacy/licensing implications. If you need an offline or locked-down environment, instruct the agent not to reference external CDNs or to use locally hosted fonts/packages.
功能分析
Type: OpenClaw Skill
Name: elite-frontend-design
Version: 1.0.0
The skill bundle contains stylistic and technical guidelines for an AI agent to generate high-quality frontend UI designs. The instructions in SKILL.md focus on typography, color schemes, animations, and layout patterns to avoid generic AI-generated styles, and do not contain any malicious commands, data exfiltration logic, or prompt injection attacks.
能力评估
Purpose & Capability
Name and description (generate HTML/CSS/JS for UIs) match the SKILL.md guidance which focuses on typography, color, motion, backgrounds and layout—no unrelated capabilities or unexpected resource access are requested.
Instruction Scope
Runtime instructions are design guidelines and code snippets only; they do not instruct reading system files, accessing environment variables, modifying other skills, or exfiltrating data. The only external resource implied is loading fonts (Google Fonts) or using libraries like Framer Motion in React—both are appropriate for frontend output.
Install Mechanism
No install spec and no code files — instruction-only. Nothing is downloaded or written to disk by the skill itself, which minimizes install-time risk.
Credentials
The skill declares no required environment variables, credentials, or config paths. No sensitive access is requested, and the instructions don't read undeclared env vars.
Persistence & Privilege
always is false; skill is user-invocable and allows normal autonomous invocation (platform default). It does not request permanent/system-wide presence or modification of other skills.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install elite-frontend-design - 安装完成后,直接呼叫该 Skill 的名称或使用
/elite-frontend-design触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of elite-frontend-design skill.
- Focused on advanced frontend UI design with top-tier aesthetics and engineering standards.
- Enforces unique, non-generic typography and color themes; bans common web fonts and "SaaS style" gradients.
- Requires dynamic, theme-driven CSS color variables and inventive use of IDE- or retro-inspired palettes.
- Mandates creative backgrounds (multi-layer gradients, SVG patterns, noise) and motion (staggered animations, interactive highlights).
- Prohibits template-like, predictable structures in favor of asymmetric layouts and varied aesthetic approaches.
- For web/frontend interface code generation (HTML/CSS/JS), not for static image or WeChat graphics.
元数据
常见问题
Elite Frontend Design 是什么?
前端 UI 界面设计。当用户要创建网页、landing page、dashboard、React/Vue 组件、前端页面时触发。 输出 HTML/CSS/JS 代码。不适用于:静态图片设计(用 canvas-design)、公众号配图(用 weixin-canvas-design)。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1433 次。
如何安装 Elite Frontend Design?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install elite-frontend-design」即可一键安装,无需额外配置。
Elite Frontend Design 是免费的吗?
是的,Elite Frontend Design 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Elite Frontend Design 支持哪些平台?
Elite Frontend Design 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Elite Frontend Design?
由 莫循(@moxunjinmu)开发并维护,当前版本 v1.0.0。
推荐 Skills