
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
将 AI 对话整理成知识库文档。当用户说 "/ai-doc"、"整理到知识库"、"保存这次对话" 时触发。自动分析对话内容,匹配最佳分类,创建 Markdown 文档,更新 VuePress 配置(sidebar + navbar),记录 AI 更新日志,并 git commit + push。
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
# CSS 奇淫技巧 ## 识别 HTML 字符中的 \n > `white-space` CSS 属性是用来设置如何处理元素中的 空白 ```css white-space: pre; ``` | 属性值 | 换行符 | 空格和制表符 | 文字换行 | | :----------: | :----: | :----------: | :------: | | normal | 合并 | 合并 | 换行 | | nowrap | 合并 | 合并 | 不换行 | | pre | 保留 | 保留 | 不换行 | | pre-wrap | 保留 | 保留 | 换行 | | pre-line | 保留 | 合并 | 换行 | | break-spaces | 保留 | 保留 | 换行 | [MDN](https://developer.mozilla.org