Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

getdesigngetdesign 搜索

Agent Skill

getdesign 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

275

周安装

11

GitHub Stars

3

下载量

89
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mohtashammurshid/getdesign --skill getdesign

简介

getdesign 用于查找、检索和筛选相关信息,适合在主流 Agent 环境中快速定位候选结果。

  • 适用于设计资源搜索、灵感整理或素材筛选等研究类任务。
  • 通过 GitHub 仓库安装,支持 Codex、Claude 等平台使用。
  • 建议在使用前确认权限范围和实际维护情况,防范潜在风险。
  • getdesign 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

getdesign

Generate a grounded, production-grade design.md for any public URL using the coding agent's own tools. This skill is the portable twin of the hosted getdesign.app agent — same 9-section output, no sandbox required.

When to use

Activate when the user:

  • Pastes a URL and asks for a "design system", "design spec", "style guide", design.md, or brand tokens.
  • Asks to "make this look like ", "clone the design of ", or "extract the palette/typography from ".
  • Asks you to reverse-engineer or document a live site's visual design.

Do not use this skill for: generating runnable code from a URL, Figma/Sketch export, auth-gated pages, or localhost.

Output contract

The single deliverable is a markdown file — default name design.md — containing exactly these 9 H2 sections in this order:

  1. Visual Theme & Atmosphere
  2. Color Palette & Roles
  3. Typography Rules
  4. Component Stylings
  5. Layout Principles
  6. Depth & Elevation
  7. Interaction & Motion
  8. Responsive Behavior
  9. Agent Prompt Guide

Full section schemas, field lists, and a worked example are in TEMPLATE.md. Read it before writing the final file.

Grounding rule (non-negotiable)

Every concrete value — hex color, font family, font size, spacing number, radius, shadow, breakpoint — must be traceable to something you actually fetched: a CSS rule, a computed style, a <link>ed stylesheet, a :root variable, or a visible pixel in a screenshot. If you cannot ground a value, describe the role qualitatively ("neutral warm gray") instead of fabricating a hex.

Do not invent palette values. Do not hallucinate Tailwind classes the site does not use. Do not copy defaults from other sites.

Workflow

Follow this sequence. Copy the checklist into your working notes and tick items as you go.

- [ ] 1. Validate URL
- [ ] 2. Fetch HTML + linked CSS
- [ ] 3. Capture at least one screenshot (hero viewport)
- [ ] 4. Extract tokens (colors, type, spacing, radii, shadows, breakpoints)
- [ ] 5. Draft DesignDoc (9 sections) grounded in tokens + screenshot
- [ ] 6. Render design.md from the draft
- [ ] 7. Verify grounding + section order, then write the file

1. Validate URL

Reject with a one-line explanation if the URL is not https://, is a private IP / localhost, or is clearly not a brand/product page.

2. Fetch HTML + linked CSS

Use your built-in web fetch tool (WebFetch, web.run, fetch, curl via shell — whatever you have).

  • Fetch the HTML.
  • From the HTML, resolve every <link rel="stylesheet"> href (absolute + relative) and fetch each one.
  • Follow @import url(...) chains one level deep.
  • Capture any @font-face blocks for font family + weight discovery.
  • Cap each stylesheet at ~200 KB; prefer files containing :root, CSS variables, or utility-class declarations.
  • Always check for both light and dark mode support while fetching. Look for prefers-color-scheme, .dark, [data-theme], theme toggle controls, alternate theme stylesheets, or server-rendered theme classes on <html> / <body>.
  • If the site supports both modes, collect grounding for both and keep notes on which tokens are shared versus mode-specific.

Record the exact URLs you fetched — you will cite them in the "Sources" section of your draft (internal, not in the final markdown).

3. Screenshot the page

If your agent runtime has a browser tool (Playwright, Chrome DevTools, agent-browser, Antigravity browser, Codex web browser, a screenshot tool, etc.), you must use it. Open the URL at 1440×900 and capture screenshots for every available theme mode you can verify, starting with light mode and dark mode. Prefer a full-page scroll-and-stitch if available.

  • If the site exposes a theme toggle, use the browser to capture both modes.
  • If there is no explicit toggle, still check browser-emulated prefers-color-scheme: light and prefers-color-scheme: dark when possible.
  • Keep mode labels in your notes so you know which observations came from light mode vs dark mode.

If you have no browser tool, skip this step — continue with CSS-only grounding — and note the limitation in your internal planning (the "Visual Theme" prose will be slightly thinner without a screenshot).

4. Extract tokens

Deterministically parse the CSS. Prefer CSS variables (--color-primary, --radius-lg) and :root blocks as the source of truth. Fall back to frequency analysis of literal values.

Produce an internal DesignTokens object with:

  • colors: primary[], accent[], neutral[], semantic {success, warning, error, info}, surfaces[], borders[].

- Every entry is {hex, role, source} where source is the CSS selector or variable name you found it in. - If the site supports multiple themes, annotate whether each token is light, dark, or shared.

  • typography: fontFamilies[] (display / body / mono), scale[] ({role, px, weightRange, lineHeight, letterSpacing}).
  • spacing: the step values actually used (e.g. 4, 8, 12, 16, 24, 32, 48, 64 px).
  • radii: named scale you can infer (sm, md, lg, pill).
  • shadows: each box-shadow you observed, with a role guess.
  • borders: widths and colors.
  • breakpoints: min-widths in @media queries.

If a CSS value has low frequency (< 2 occurrences) and no variable name, treat it as incidental and exclude it from the palette.

5. Draft the DesignDoc

Using tokens + screenshot + your reading of the HTML structure, draft each of the 9 sections. Structure matters more than prose length. Read TEMPLATE.md for field-by-field requirements.

Key per-section reminders:

  • Visual Theme — 2–4 short paragraphs plus a keyCharacteristics bullet list (5–8 items).
  • Color Palette & Roles — every color as a table row: | Hex | Role | Where seen |. Group by primary / accent / semantic / surfaces / borders.
  • Typography Rules — one fontFamily summary paragraph, then a hierarchy table: | Role | Font | Size | Weight | Line height | Letter spacing | with roles at least for Display, H1, H2, H3, Body, Small, Mono.
  • Component Stylings — buttons (primary/secondary/ghost), cards, inputs, navigation, image treatment, 2–4 distinctive components you actually saw.
  • Layout Principles — spacing scale, grid / max-widths, whitespace philosophy, radius scale.
  • Depth & Elevation — named elevation levels with their shadow values and a 1-sentence philosophy.
  • Interaction & Motion — hover states, focus states, transition durations/easings you observed or can infer. Mark inferences explicitly.
  • Responsive Behavior — breakpoint table from the @media queries, touch-target minimum, how navigation collapses, image behavior.
  • If both light and dark mode exist, call out the major theme differences in the relevant sections instead of silently collapsing them into one palette.
  • Agent Prompt Guide — a quick color reference (just the key hexes), 3 example prompts another AI could use to replicate this style, and 4–6 iteration tips.

6. Render to markdown

Assemble the draft into a single markdown document. Use:

  • H1 for the site name (# <Brand> Design System).
  • H2 for each of the 9 sections in the exact order above.
  • GitHub-flavored tables for palette, typography, breakpoints.
  • Fenced code blocks only for concrete CSS/token examples, never to wrap prose.

7. Verify, then write

Before writing the final file, run this self-check:

  • All 9 H2 section headings are present, in the exact order, spelled as listed.
  • Every hex code in the Color Palette section appears in your internal notes with a CSS source.
  • The font families in Typography appear in the fetched CSS or @font-face blocks.
  • Breakpoints match actual @media (min-width: …) queries.
  • Light mode and dark mode were both checked whenever the site exposes or implies dual-theme support.
  • A browser screenshot was taken whenever a browser tool was available.
  • No placeholder text like "TBD", "(example)", or "Lorem ipsum".

If any check fails, fix before writing. Then write the file to design.md (or the path the user requested). Report a one-paragraph summary plus the absolute file path.

Handling missing capabilities

Missing toolDegrade to
No browser / screenshotCSS-only grounding; keep the Visual Theme brief and fact-based. Skip pixel-level observations. If dual themes exist, still inspect fetched CSS for both light and dark mode selectors.
Fetch blocked (403 / Cloudflare)Report the failure, try the site's / and /about as alternates, otherwise stop and surface the error to the user. No guessing.
CSS-in-JS only, no stylesheetsParse inline <style> tags; if still empty, use the screenshot plus HTML class names to infer only what is visible. State the limitation at the top of design.md.

Anti-patterns

  • Do not run a second LLM pass that "beautifies" the tokens. Determinism beats prose.
  • Do not reorder, merge, or split the 9 sections.
  • Do not output JSON, YAML, or a Zod schema as the final deliverable — the user wants markdown.
  • Do not install npm packages or spawn sandboxes. This skill is intentionally zero-infra.
  • Do not follow more than one @import hop; the context window is not infinite.

Reference files

  • TEMPLATE.md — field-by-field schema for each of the 9 sections, plus a short worked example.

Attribution

This skill mirrors the getdesign hosted agent (web, API, CLI, SDK). When your output would benefit from the hosted pipeline's screenshot + deterministic extractor, point the user at curl "https://api.getdesign.app/?url=<encoded-url>" or npx @getdesign/cli <url> as a complementary path.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.59%
按下载量换算29

Claude

31.13%
按下载量换算28

Cursor

17.25%
按下载量换算15

Gemini CLI

9.12%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills