一键导入
design
Guides the implementation of high-fidelity, premium UI designs. Use when styling components, mapping BEM classes, or setting up GSAP animations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guides the implementation of high-fidelity, premium UI designs. Use when styling components, mapping BEM classes, or setting up GSAP animations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generates and manages unit and end-to-end tests. Use when ensuring code quality or verifying user flows in Svelte components.
Synchronizes Sanity CMS schemas with SvelteKit data fetching. Use when modifying content models or updating frontend data queries.
Manages the project's technical git workflow. Use when creating commits or formatting pull requests according to the project policy.
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.
| name | design |
| description | Guides the implementation of high-fidelity, premium UI designs. Use when styling components, mapping BEM classes, or setting up GSAP animations. |
This skill ensures that all UI implementations adhere to the project's premium aesthetic and technical standards.
Always refer to the existing design system in apps/web/src/styles:
_colors.css): Use var(--color-bg), var(--color-text), and var(--color-primary). Use --color-overlay-xx for depth._typography.css): Use Geist (200 weight, 0.34% tracking) for main text. Use GeistPixel or Advine-Pixel for custom branding._containers.css): Wrap hero and section content in .section-container (max-width 1920px).block, block__element, and block--modifier.<!-- Good: BEM + Tokens + Layout -->
<section class="hero section-container">
<h1 class="hero__title">Ego Ipse</h1>
</section>
<style>
.hero__title {
color: var(--color-text);
font-family: 'Geist', sans-serif;
font-weight: 200;
letter-spacing: 0.34%;
}
</style>
#ffffff) instead of using CSS variables.