Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计提醒

design-system-analyzer设计系统分析器

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

682

周安装

29

GitHub Stars

156

下载量

239
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:design-system-analyzer(设计系统分析器)
来源仓库:https://github.com/nakanosanku/ohmyskills
仓库路径:skills/design-system-analyzer
安装命令:
npx skills add https://github.com/nakanosanku/ohmyskills --skill design-system-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/nakanosanku/ohmyskills --skill design-system-analyzer

简介

用于通过 Chrome DevTools 深度提取网站 CSS 逻辑并生成完整的设计系统文档。

  • 适合逆向工程现有产品的设计资产,支持动画、过渡和令牌结构的自动化整理。
  • 使用时需开启本地 Chrome 实例以绕过限制,严格遵循模板填充所有占位符。
  • 禁止跳过任何章节,未观测到的数据应标注“Not observed”以保证完整性。
  • design-system-analyzer 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Design System Analyzer

Analyze websites via ChromeDevTools to extract deep CSS logic (keyframes, transitions, tokens) and generate comprehensive Design System System Prompts.

Critical Rules

  1. MUST output the final prompt using EXACTLY the structure in references/design-system-template.md
  2. MUST limit extraction data to prevent context overflow (see analysis-guide.md for limits)
  3. MUST fill ALL template placeholders with extracted or observed values
  4. NEVER skip sections - use "Not observed" if data unavailable

Best Practice: Use Your Own Chrome

For the best experience (no CAPTCHAs, shared login cookies), advise the user to run Chrome with: chrome.exe --remote-debugging-port=9222 (See references/setup-guide.md for details)


Workflow Overview

[1. Navigate] → [2. Anti-Bot Check] → [3. Deep Extraction] → [4. Synthesize to Template]

IMPORTANT: Do NOT take screenshots. Screenshots consume excessive context and are unnecessary - all visual data is extracted from CSS.


Step 1: Navigate & Anti-Bot Check

mcp__chrome-devtools__navigate_page (url: "<target-url>")

Immediately check for bot challenges:

() => {
  const text = document.body.innerText.toLowerCase();
  const title = document.title.toLowerCase();
  if (text.includes('cloudflare') || text.includes('verify you are human') || title.includes('just a moment')) {
    return 'CHALLENGE_DETECTED';
  }
  return 'OK';
}

IF CHALLENGE_DETECTED:

  1. PAUSE all actions.
  2. Tell the user: "Bot protection detected. Please manually solve the CAPTCHA in the browser, then confirm here."
  3. Wait for user confirmation before proceeding.

Step 2: Deep CSS Extraction

Run the extraction scripts from references/analysis-guide.md in order:

OrderScriptPurposeMax Items
1CSS Variables & TokensColors, spacing, typography variables50 tokens
2Animation & Keyframes@keyframes, animation usage, transitions10 KF, 15 trans
3Interaction States:hover,:focus,:active rules15 rules
4TypographyFont stacks from key elements7 elements
5Layout & SpacingBorder radius, gaps, shadows5 each
6Tech StackFramework detection-

IMPORTANT: Each script has built-in limits. Do NOT modify to extract more data.


Step 3: Synthesize to Template

MANDATORY: Generate output using EXACTLY the template structure from references/design-system-template.md.

Template Mapping Table

Extracted DataTemplate SectionNotes
tokens.colorsDesign Token System > ColorsFormat as table
tokens.spacingSpacing, Radius & BordersInclude radius values
tokens.typographyTypographyInclude font stacks
Typography scriptTypography > Font Stacks, Type ScaleComputed styles
keyframesAnimation & Motion > Key AnimationsFull keyframe definitions
animationUsageAnimation & Motion > TimingDuration, easing
transitionsAnimation & Motion > TimingCommon patterns
interactionsComponent Styling > State TransitionsHover/focus effects
Layout samplerLayout PrinciplesSpacing system
Tech stackImplementation NotesTailwind/CSS notes

Output Format Checklist

Before outputting, verify ALL these sections are present:

  • <role> block (copy exactly from template)
  • <design-system> wrapper
  • ## Design Philosophy with Core Principles, Vibe, Historical Context
  • ## Design Token System with Colors table, Typography, Spacing
  • ## Component Styling Principles with Buttons, Cards, Form Inputs
  • ## Layout Principles with Spacing System, Grid, Responsive
  • ## The "Signature" Factor with 3 mandatory elements
  • ## Animation & Motion with Philosophy, Timing, Key Animations
  • ## Accessibility Constraints
  • ## Anti-Patterns with Visual and Interaction no-nos
  • ## Implementation Notes with tech-specific guidance
  • ## Aesthetic Checklist with 4 verification items
  • Closing </design-system>

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.6%
按下载量换算61

Antigravity

20.42%
按下载量换算49

trae

18.86%
按下载量换算45

OpenCode

13.13%
按下载量换算31

Cursor

7.31%
按下载量换算17

Codex

3.68%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills