Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计通过

designerdesigner 搜索

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/devopgava/nexus --skill designer

简介

快速收集需求并输出轻量级设计成果,优先文本与单文件方案。

  • 自动加载项目内设计系统 token 作为样式基准。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持品牌 kit、线框图与幻灯片大纲等多种交付形式。
  • 需明确平台、KPI 与约束条件,否则可能偏离实际需求。
  • designer 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Designer

Use this skill to quickly collect inputs, pick a deliverable type, and ship concise design outputs. Default to fast, lightweight artifacts (textual mockups, single-file HTML/CSS, structured brand kits, slide outlines) unless the user asks for higher fidelity.

Inputs to gather (ask only what is missing)

  • Product/goal, audience, platform (web/mobile), primary actions or KPIs
  • Brand assets: palette, fonts, logos, design tokens, sample links; if repo has a design system, load its tokens first
  • Constraints: breakpoints, accessibility targets (>= AA), performance, banned colors/fonts, delivery format
  • Voice/tone keywords and mood (modern, playful, enterprise, minimal, editorial)

Output menu

  • UI mockup / wireframe plan
  • Responsive HTML/CSS page or component
  • Brand kit
  • Presentation deck outline

UI mockups and wireframes

  1. Define the flow and primary user goals; list key screens and states.
  2. Choose layout: grid (e.g., 12-col web, 4-col mobile), spacing scale, container widths, breakpoint behaviors.
  3. Specify sections with hierarchy, placement, and density; call out above-the-fold priorities.
  4. List components with states (default/hover/active/empty/error/loading/success) and content samples.
  5. Provide visual direction: palette, typography scale, imagery style, iconography, motion hints.
  6. Accessibility: contrast targets, tap targets, focus order, keyboard paths.

Output format (text first, then optional ASCII layout if helpful):

  • Goal and audience
  • Layout (desktop + mobile): grid, container widths, section ordering
  • Components and states with sample copy/data
  • Visual direction: palette (names + hex), type scale (font families, weights, sizes), imagery style
  • Interaction notes: hover/focus, transitions, empty/error/loading behavior
  • Accessibility notes

HTML/CSS builds

  1. Confirm scope: page vs component, interactions allowed (prefer no JS unless requested), breakpoints.
  2. Define tokens: CSS custom properties for colors, spacing, radii, shadows, type scale.
  3. Outline sections and semantic structure before coding.
  4. Ship a single HTML file with embedded <style>; keep CSS small and readable.
  5. Responsiveness: fluid widths, stack/reorder on narrow viewports, maintain readable line lengths.
  6. Accessibility: semantic tags, proper headings, labels, aria-* where needed, alt text, focus styles.

Preferred HTML skeleton:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <style>
    :root {
      --bg: #0b1021;
      --surface: #111837;
      --text: #e6ecff;
      --muted: #9fb0d6;
      --accent: #7dd3fc;
      --accent-strong: #38bdf8;
      --radius: 14px;
      --shadow: 0 12px 40px rgba(0,0,0,0.35);
      --space: 18px;
      --max-width: 1080px;
    }
    * { box-sizing: border-box; }
    body { margin: 0; font-family: "Inter", system-ui, -apple-system, sans-serif; background: radial-gradient(circle at 20% 20%, rgba(125,211,252,0.06), transparent 35%), #060916; color: var(--text); }
    .page { max-width: var(--max-width); margin: 0 auto; padding: calc(var(--space) * 2) calc(var(--space) * 1.5); }
    header, main, section { display: block; }
    .hero { display: grid; gap: calc(var(--space) * 1.5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
    .card { background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: calc(var(--space) * 1.2); box-shadow: var(--shadow); }
    .btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #05101c; border: none; border-radius: 999px; padding: 12px 18px; font-weight: 700; text-decoration: none; box-shadow: 0 10px 24px rgba(56,189,248,0.3); }
    .btn.secondary { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.18); box-shadow: none; }
    @media (max-width: 720px) { .page { padding: calc(var(--space) * 1.5) var(--space); } }
  </style>
</head>
<body>
  <div class="page">
    <header class="hero">
      <div>
        <p style="color: var(--muted); letter-spacing: 0.12em;">AI CRM DESIGN</p>
        <h1 style="margin: 10px 0 16px; font-size: 40px; line-height: 1.05;">Design sharper experiences, faster.</h1>
        <p style="color: var(--muted); font-size: 17px; line-height: 1.6;">Pair clear structure with bold gradients and ample breathing room. Swap palette/type to match brand.</p>
        <div style="display: flex; gap: 10px; margin-top: 18px;">
          <a class="btn" href="#">Primary action</a>
          <a class="btn secondary" href="#">Secondary</a>
        </div>
      </div>
      <div class="card">
        <p style="margin: 0; color: var(--muted); font-size: 15px;">Live preview</p>
        <h3 style="margin: 6px 0 14px;">Key metric panel</h3>
        <div style="display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));">
          <div class="card" style="padding: 14px; box-shadow: none; border-radius: 10px;">
            <p style="margin: 0; color: var(--muted); font-size: 13px;">Conversion</p>
            <p style="margin: 6px 0 0; font-size: 26px; font-weight: 700;">42.3%</p>
          </div>
          <div class="card" style="padding: 14px; box-shadow: none; border-radius: 10px;">
            <p style="margin: 0; color: var(--muted); font-size: 13px;">Active deals</p>
            <p style="margin: 6px 0 0; font-size: 26px; font-weight: 700;">187</p>
          </div>
        </div>
      </div>
    </header>
  </div>
</body>
</html>

HTML/CSS checklist:

  • Semantic tags, ordered headings, label every input, include focus states
  • Avoid heavy libraries; prefer pure CSS; Tailwind/utility allowed only if requested
  • Provide copy and sample data; avoid lorem ipsum unless unavoidable
  • Keep gradients subtle, spacing generous, line length 60-80 chars

Brand kits

  1. Brand core: mission, audience, personality traits (3-5), tone words, no-go areas.
  2. Palette: 1 primary, 1-2 secondary, neutrals, surface/backgrounds, states; include hex and suggested usage; ensure accessible text pairings.
  3. Typography: heading and body pairs (weights, sizes, line heights, tracking), usage rules, substitutions if unavailable.
  4. Imagery and iconography: style, stroke weight, color usage, photo guidelines, illustration motifs.
  5. UI tokens: radii, shadows, border widths, spacing scale, button styles, form states, chip/badge patterns.
  6. Logo directions: shapes/constraints if no logo exists; placement, clear space, sizing if a logo exists.

Output format:

  • Brand story: mission, voice, do/dont
  • Palette table with hex + accessibility notes
  • Type stack: headings/body/code with usage rules
  • Tokens: spacing, radius, shadows, button styles, form states
  • Imagery/icon/illustration guidance
  • Sample application: navbar, hero block, CTA, card, notification

Presentation decks

  1. Confirm audience, objective, CTA, and time/slide budget.
  2. Define narrative spine: hook -> problem -> insight -> solution -> proof -> roadmap -> CTA.
  3. Set theme: palette, type, layout rhythm, image style; align to brand kit when present.
  4. Produce slide-by-slide outline: title, key point(s), visuals per slide, speaker notes or script, time allocation.
  5. Include consistency cues: grid, margin/padding, hierarchy patterns, icon/photo rules.

Output format:

  • Deck goal and audience
  • Theme (palette, typography, layout rules, image style)
  • Slide list with: title, bullet content, visual directions (charts/diagrams/photos), speaker notes, timing
  • Closing slide CTA and backup/appendix ideas

Quality checks (all deliverables)

  • Does the output reflect the goal, audience, and constraints?
  • Readability: contrast AA+ for text, line length, font sizes; touch targets >= 44px; focus states visible.
  • Responsiveness: define breakpoints and how sections/components adapt.
  • Consistency: spacing scale, radii, shadows, icon stroke weights, copy tone.
  • Clarity: avoid lorem ipsum; keep actionable next steps or code ready to drop in.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.56%
按下载量换算18

windsurf

24.43%
按下载量换算16

trae

16.09%
按下载量换算11

OpenCode

12.37%
按下载量换算8

Cursor

7.54%
按下载量换算5

Codex

3.17%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills