01
下载设计系统资源包。
购买后,你可以在账号下载页获得 ZIP 资源包,里面包含接入所需的全部文件。免费系统会在详情页直接暴露同样的文件。
design-system.zip
package
DESIGN.md
agent guidance
css/system.css
tokens + styles
html/preview.html
reference
真正接入只需要两个文件:DESIGN.md 是规则, system.css 是 token 和样式。
购买后,你可以在账号下载页获得 ZIP 资源包,里面包含接入所需的全部文件。免费系统会在详情页直接暴露同样的文件。
把 DESIGN.md 保留在项目根目录,让 AI 编程助手能把它当作项目上下文读取。把生成的 system.css 放到项目中任意合适的位置,下一步会让 AI 自动完成引入。
文件夹位置不重要。AI 会找到样式表,并按你的框架把它正确引入一次。
打开你常用的 AI 编程助手,比如 Cursor、Claude Code、Codex 或其他工具,然后粘贴这段提示词。它会要求 AI 以 DESIGN.md 为唯一视觉来源,帮你接入样式表并重构界面,不需要手动处理 CSS 引入。
Read DESIGN.md in the project root before changing UI.
1. Find the design system stylesheet (css/system.css) and wire it up for me. Detect my framework (Vite, Next.js, Remix/React Router, plain HTML, or whatever this project uses) and import the stylesheet exactly once from the app's main/global CSS, or add a <link> in the HTML head for plain HTML. Move the file somewhere sensible if needed.
2. Use the tokens, utilities, component anatomy, spacing, typography, and states described in DESIGN.md.
3. Refactor the requested UI to match the system instead of inventing a new visual style.
4. If existing components conflict with DESIGN.md, explain the conflict and choose the option that keeps the interface most consistent.
5. If html/preview.html exists, read it as a visual reference and match the structure, spacing, and component styling shown there.为了长期保持一致,把 DESIGN.md 写进全局规则。不能写入全局规则时,就在每次具体需求后附上一句简短提醒。
告诉 AI:Always read DESIGN.md before UI work.
Build the requested UI using DESIGN.md as the visual source of truth. Follow its color tokens, typography, spacing scale, component patterns, interaction states, and accessibility guidance. Reuse styles from the imported primary stylesheet before writing new CSS.每套系统的使用流程都一样。你可以从下面几套开始,也可以浏览完整模板库。
两个文件,一段提示词,再加一个长期保留的视觉参考。选择一套系统,然后在真实项目里试一次。