Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

google-designGoogle 设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

225

周安装

9

GitHub Stars

11

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill google-design

简介

用于辅助界面设计、视觉规范和交互体验优化。

  • 适合整理页面结构、生成 UI 方案或检查视觉一致性。
  • 需要结合品牌和设计系统使用,避免堆砌装饰元素;涉及真实页面改动时应预览响应式表现。
  • 不应夸大能力,对外文案需控制语气,确保符合实际功能边界。
  • google-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

google-design — DESIGN.md for AI Coding Agents

Give your AI agent a persistent, structured understanding of your visual identity.

DESIGN.md is a format specification by Google that combines:

  • YAML front matter — machine-readable design tokens
  • Markdown body — human-readable design rationale

Installation

Plugin (Claude Code)

# Install as Claude Code plugin (if available via marketplace)
claude plugin marketplace add google-labs-code/design.md

npm

npm install @google/design.md

# Or run directly (no install)
npx @google/design.md lint DESIGN.md

Skill (any platform)

npx skills add https://github.com/akillness/oh-my-skills --skill google-design

When to use

  • Define a reusable design token system before implementing UI components
  • Lint DESIGN.md for structural errors and WCAG contrast compliance
  • Diff two design system versions to track token-level regressions
  • Export tokens to Tailwind theme config or W3C DTCG tokens.json
  • Provide AI agents with a persistent, authoritative design context
  • Bootstrap a new project's visual identity as a single source of truth

Do not use when

  • You need full component API design → route to ui-component-patterns
  • You need responsive layout strategy → route to responsive-design
  • You need accessibility-only remediation → route to web-accessibility
  • You need broad UI critique → route to web-design-guidelines
  • You need complete frontend UI system governance → route to design-system

DESIGN.md file format

---
name: MyBrand
version: alpha
description: Clean, minimalist design language
colors:
  primary: "#1A1C1E"
  secondary: "#6C7278"
  tertiary: "#B8422E"
  neutral: "#F7F5F2"
typography:
  h1:
    fontFamily: Public Sans
    fontSize: 3rem
    fontWeight: 700
    lineHeight: 1.2
  body-md:
    fontFamily: Public Sans
    fontSize: 1rem
    lineHeight: 1.5
  label-caps:
    fontFamily: Space Grotesk
    fontSize: 0.75rem
    letterSpacing: 0.08em
rounded:
  sm: 4px
  md: 8px
  lg: 16px
spacing:
  sm: 8px
  md: 16px
  lg: 24px
  xl: 48px
components:
  button-primary:
    backgroundColor: "{colors.tertiary}"
    textColor: "{colors.neutral}"
    rounded: "{rounded.sm}"
    padding: 12px
  button-secondary:
    backgroundColor: "transparent"
    textColor: "{colors.primary}"
    rounded: "{rounded.sm}"
---

## Overview
Architectural Minimalism meets Journalistic Gravitas.

## Colors
- **Primary (#1A1C1E):** Deep ink for headlines and core text.
- **Secondary (#6C7278):** Muted slate for supporting content.
- **Tertiary (#B8422E):** Warm rust for interactive elements.

## Typography
Public Sans anchors editorial authority. Space Grotesk adds geometric precision for labels.

## Components
Button states use tertiary color for high-visibility actions.

Token schema

version: <string>        # optional — "alpha"
name: <string>           # required
description: <string>    # optional
colors:
  <token-name>: <hex>    # e.g. "#1A1C1E"
typography:
  <token-name>:
    fontFamily: <string>
    fontSize: <dimension>
    fontWeight: <number>
    lineHeight: <number|dimension>
    letterSpacing: <dimension>
    fontFeature: <string>
    fontVariation: <string>
rounded:
  <scale>: <dimension>   # e.g. "4px"
spacing:
  <scale>: <dimension|number>
components:
  <component-name>:
    backgroundColor: <color|token-ref>
    textColor: <color|token-ref>
    typography: <token-ref>
    rounded: <token-ref>
    padding: <dimension>
    size: <dimension>
    height: <dimension>
    width: <dimension>

Token reference syntax: {colors.primary} — resolves at lint/export time.

CLI commands

lint — validate structure and WCAG compliance

npx @google/design.md lint DESIGN.md
npx @google/design.md lint --format json DESIGN.md
cat DESIGN.md | npx @google/design.md lint -

Exit code 1 if errors found.

diff — compare two design system versions

npx @google/design.md diff DESIGN.md DESIGN-v2.md
npx @google/design.md diff --format json old.md new.md

Exit code 1 if regressions detected.

export — convert tokens to external formats

# Tailwind theme config
npx @google/design.md export --format tailwind DESIGN.md > tailwind.theme.json

# W3C Design Tokens Community Group format
npx @google/design.md export --format dtcg DESIGN.md > tokens.json

spec — output format specification

npx @google/design.md spec
npx @google/design.md spec --rules
npx @google/design.md spec --rules-only --format json

Linting rules

RuleSeverityPurpose
broken-referrorUnresolved {token} references
missing-primarywarningNo primary color defined
contrast-ratiowarningComponent color pairs below WCAG AA (4.5:1)
orphaned-tokenswarningTokens defined but never referenced
token-summaryinfoCount of tokens per section
missing-sectionsinfoOptional sections absent
missing-typographywarningNo typography defined alongside colors
section-orderwarningSections out of canonical order

Section order (canonical)

All sections use ## headings and are optional but must appear in this order:

  1. Overview (aliases: Brand & Style)
  2. Colors
  3. Typography
  4. Layout (aliases: Layout & Spacing)
  5. Elevation & Depth
  6. Shapes
  7. Components
  8. Do's and Don'ts

Programmatic API

import { lint } from '@google/design.md/linter';

const report = lint(markdownString);
report.findings;       // Finding[] — all issues
report.summary;        // { errors, warnings, info }
report.designSystem;   // Parsed DesignSystemState

Export formats

FormatCommandOutput
Tailwind--format tailwindtailwind.theme.json — use in tailwind.config.js
W3C DTCG--format dtcgtokens.json — standard token interchange

AI agent usage

Place DESIGN.md at the repo root to give coding agents persistent design context:

# Bootstrap a new DESIGN.md with the spec
npx @google/design.md spec > DESIGN.md

# Validate after editing
npx @google/design.md lint DESIGN.md

# Export for Tailwind integration
npx @google/design.md export --format tailwind DESIGN.md > tailwind.theme.json

Operating rules

  1. Always run lint after creating or modifying a DESIGN.md
  2. Fix broken-ref errors before contrast-ratio warnings
  3. Use token references ({colors.primary}) in component definitions — never hardcode hex in components
  4. Keep DESIGN.md at repo root so agents can auto-discover it
  5. Version DESIGN.md changes with diff before shipping design system updates
  6. Export to Tailwind/DTCG for implementation; never manually copy token values

Examples

# Full workflow
npx @google/design.md spec > DESIGN.md      # bootstrap
# edit DESIGN.md with your brand tokens
npx @google/design.md lint DESIGN.md         # validate
npx @google/design.md export --format tailwind DESIGN.md > tailwind.theme.json
npx @google/design.md diff DESIGN.md DESIGN-v2.md  # track changes

Source: google-labs-code/design.md — Apache-2.0 License

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.69%
按下载量换算28

Claude

31.15%
按下载量换算23

Cursor

17.63%
按下载量换算13

Gemini CLI

8.84%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills