Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

sketch-implement-design草图工具设计

Agent Skill

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

总安装

5,010

周安装

213

GitHub Stars

56

下载量

1,755
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sketch-hq/skills --skill sketch-implement-design

简介

sketch-implement-design 用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化,适合在 Codex、Claude、Cursor、Gemini CLI 中生成 UI 方案或改进组件层级时使用。

  • 适用于产品界面设计、品牌视觉规范和用户体验优化等设计相关场景。
  • 可帮助 Agent 整理页面结构、生成设计方案并检查视觉一致性,需结合现有设计系统使用。
  • 安装命令:npx skills add https://github.com/sketch-hq/skills --skill sketch-implement-design。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

SKILL.md

Sketch Implement Design

Overview

Implement UI from Sketch with high visual fidelity by querying live document data through Sketch MCP. Use run_code to inspect and export data, and get_selection_as_image as the visual source of truth.

Prerequisites

  • Keep Sketch open with the target document available.
  • Enable Sketch MCP in Sketch settings: General -> Allow AI tools to interact with open documents.
  • Configure Codex MCP to point to the local Sketch server address shown in Sketch settings.

- Default address is usually http://localhost:31126/mcp.

  • Select the layer or frame to implement in Sketch before calling get_selection_as_image.

Required Workflow

Follow these steps in order. Do not skip steps.

Step 0: Confirm Sketch MCP connectivity

If Sketch MCP calls fail:

  1. Check that Sketch is running and MCP is enabled in settings.
  2. Check the MCP server URL in your MCP client config.
  3. Retry after confirming the server address in Sketch settings.

Step 1: Identify the implementation target

Use these approaches in priority order:

  • User gives a Sketch share link like https://sketch.com/s/<document-share-uuid>/f/<canvas-frame-uuid>: extract the /f/<canvas-frame-uuid> value, find that layer, and select it. Prefer this target over current selection or name-based matching.
  • User gives layer identifiers or names: use run_code to locate matching layers and ask for confirmation.
  • User selects the exact frame/component in Sketch.

Use run_code with the find function and this pattern when a share link is provided:

const sketch = require('sketch')
const frameId = '4A2E31FF-56BD-4C29-92D2-829548D19C1D'
const frame = find(`#${frameId}`)
if (frame) sketch.getSelectedDocument().selectedLayers = [frame]

When multiple matches exist, stop and ask which layer to implement.

Step 2: Fetch structured design context via run_code

Run run_code to collect design data for the selected root layer (and relevant descendants):

  • Hierarchy: IDs, names, types, visibility, lock state
  • Layout: frame, resizing behavior, pins, stack layout, clipping
  • Typography: font family, size, weight, line height, alignment, decoration
  • Styling: fills, borders, shadows, blur, corner radii, opacity, tint
  • Reusable styling: shared text/layer style names and source library names
  • Variables/swatches: color variable names and optional source library names
  • Symbols: nested symbols and override-capable fields
  • Export settings and image sources

Always start scripts with:

const sketch = require('sketch')

Pass a short title argument to run_code and keep scripts minified unless the user asks otherwise.

If output is too large:

  1. Fetch a shallow tree map first (IDs, names, types only).
  2. Fetch detailed context per critical child subtree.
  3. Continue only after all required nodes are covered.

Step 3: Capture visual reference via get_selection_as_image

Call get_selection_as_image on the same selected target. Use this image as the primary visual reference for implementation and validation.

If selection is empty, stop and ask the user to select the intended layer/frame in Sketch.

Step 4: Export required assets via run_code

Export icons, bitmaps, and other assets from Sketch instead of inventing placeholders.

Rules:

  • Use assets from Sketch output; do not add new icon packs unless explicitly requested.
  • Use absolute output paths.
  • For sketch.export, always pass both output and filename (with extension).

Example:

const sketch=require('sketch');const d=sketch.getSelectedDocument()
const l=d.selectedLayers.layers[0]
sketch.export(l,{
  output:'/tmp/sketch-assets',
  filename:`${l.id}.png`,
  formats:['png']
});console.log('ok')

Step 5: Translate Sketch output to project conventions

Treat Sketch data as design intent, then map to project standards:

  • Reuse existing UI components before creating new ones.
  • Map Sketch values to project tokens (color, spacing, type scale, radius).
  • Match established architecture and state/data patterns.
  • Keep generated code maintainable and idiomatic for the target stack.

Step 6: Implement for 1:1 visual parity

Aim for visual parity with the Sketch screenshot and context:

  • Match spacing, alignment, sizing, and hierarchy.
  • Match typography and color usage.
  • Preserve intended behavior for responsive/constraint-based layouts.
  • Use tokenized values when possible; avoid unnecessary hardcoded values.

Step 7: Validate against Sketch before completion

Validate implemented UI against the screenshot and design context checklist:

  • Layout and spacing
  • Typography
  • Colors and effects
  • States and interactions
  • Asset rendering
  • Responsiveness/constraints
  • Accessibility basics

If mismatch remains, re-query with run_code for the affected subtree and iterate.

Implementation Rules

  • Prefer incremental updates over broad rewrites.
  • Keep component boundaries consistent with the design hierarchy.
  • Document intentional deviations (technical or accessibility constraints).
  • Do not assume stale design data; re-query Sketch when unsure.

Common Issues

Empty selection from get_selection_as_image

Cause: Nothing selected in Sketch. Fix: Ask the user to select the target layer/frame, then retry.

No document from MCP tools

Cause: No open Sketch document or Sketch not running. Fix: Open the document in Sketch and retry.

run_code output is too large or truncated

Cause: Selection tree is too large. Fix: Query shallow tree first, then fetch detailed context by subtree.

Missing or incorrect exported assets

Cause: Invalid export options or relative output path. Fix: Use absolute paths and pass both output and filename.

Implementation does not match visual design

Cause: Incomplete context capture or token mismatch. Fix: Re-capture screenshot and inspect exact node values via run_code.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.44%
按下载量换算657

Claude

28.31%
按下载量换算497

Cursor

18.54%
按下载量换算325

Gemini CLI

8.13%
按下载量换算143

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills