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

design-exploration设计探索

Agent Skill

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

总安装

509

周安装

21

GitHub Stars

8

下载量

166
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill design-exploration

简介

探索多种设计方案方向,生成多样化视觉提案供团队筛选参考。

  • 适合在概念阶段快速迭代创意,避免过早锁定单一实现路径。
  • 通过遗传算法模拟进化过程,保留优质基因组合促进创新突破。
  • 已被 /evolve 技能完全替代,建议迁移至新工具获取增强功能。
  • design-exploration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

DEPRECATED. Use /evolve instead. /evolve replaces this skill entirely. It explores design directions with a genetic algorithm, persistent cross-project memory, multi-provider delegation, and taste-frontend.md injection. The investigation → catalogue → refinement → selection cycle maps directly to evolve's detect → generate → select → advance → lock workflow. Original skill content preserved below for reference.

Design Exploration

Investigate existing designs, generate a visual catalogue of 6-12 diverse proposals, facilitate iterative refinement, and output a selected direction for implementation.

MANDATORY: Kimi Delegation for Visual Work

All visual proposal generation MUST be delegated to Kimi K2.5 via MCP.

Kimi excels at frontend development and visual coding. For design exploration:

  1. Research direction → Gemini (web grounding, trend research)
  2. Generate proposals → Kimi (visual implementation via Agent Swarm)
  3. Review/iterate → Claude (orchestration, quality gates)
// Delegate proposal generation to Kimi
mcp__kimi__spawn_agent({
  prompt: `Generate design proposal for [component].
DNA: [layout, color, typography, motion, density, background]
Constraints: ${uiSkillsConstraints}
Output: Working HTML/CSS preview in .design-catalogue/proposals/[name]/`,
  thinking: true  // Enable for complex proposals
})

// For parallel proposal generation (4.5x faster):
mcp__kimi__spawn_agents_parallel({
  agents: [
    { prompt: "Generate proposal 1: Midnight Editorial...", thinking: true },
    { prompt: "Generate proposal 2: Swiss Brutalist...", thinking: true },
    { prompt: "Generate proposal 3: Warm Workshop...", thinking: true },
    // ... up to 100 parallel agents
  ]
})

Anti-pattern: Generating proposals yourself instead of delegating to Kimi. Pattern: Research (Gemini) → Generate (Kimi) → Review (Claude)

When to Use

  • Before /aesthetic or /polish when direction is unclear
  • When user wants to see multiple design options visually
  • When redesigning or refreshing existing UI
  • When maturity < 6 and no clear aesthetic direction exists

Core Principle: Visual Over Verbal

The catalogue is a working visual, not markdown descriptions.

Users see actual styled components, real typography, live color palettes - not just words describing what things *would* look like.

Phase 0: Backend Detection

Check available rendering backends:

// Check if Pencil MCP is available
try {
  mcp__pencil__get_editor_state({ include_schema: false })
  // Pencil available → use pencil-renderer
  BACKEND = "pencil"
} catch {
  // Fallback to HTML renderer
  BACKEND = "html"
}

Backend selection:

  • Pencil (preferred): Native.pen file rendering, design system integration
  • HTML (fallback): Static HTML/CSS proposals served locally

Workflow

1. Investigation

Understand what exists:

# Screenshot current state via Chrome MCP
mcp__claude-in-chrome__tabs_context_mcp
mcp__claude-in-chrome__navigate url="[current app URL]"
mcp__claude-in-chrome__computer action="screenshot"

Analyze the current design:

  • Typography: What fonts, sizes, weights?
  • Colors: What palette, what semantic meaning?
  • Layout: Centered? Asymmetric? Grid-based?
  • Motion: Any animations? What timing?
  • Components: What patterns exist?

Infer current DNA:

DNA Axes:
- Layout: [centered|asymmetric|grid-breaking|full-bleed|bento|editorial]
- Color: [dark|light|monochrome|gradient|high-contrast|brand-tinted]
- Typography: [display-heavy|text-forward|minimal|expressive|editorial]
- Motion: [orchestrated|subtle|aggressive|none|scroll-triggered]
- Density: [spacious|compact|mixed|full-bleed]
- Background: [solid|gradient|textured|patterned|layered]

Identify:

  • Strengths to preserve
  • Weaknesses/opportunities
  • Constraints (brand colors, accessibility, tech stack)

Research via Gemini:

gemini -p "I'm building [describe component/page]. Research:
1. Distinctive design approaches (avoid AI-slop aesthetics)
2. Real-world examples of excellent [component type]
3. Current typography/color/layout trends for this context
4. Unexpected alternatives to obvious solutions"

2. Build Visual Catalogue

Generate 6-12 proposals using DNA variation system.

If BACKEND = "pencil":

Use pencil-renderer primitive:

// For each proposal
// 1. Get style guide matching DNA mood
mcp__pencil__get_style_guide_tags()
mcp__pencil__get_style_guide({ tags: [mapped_tags] })

// 2. Render via pencil-renderer workflow
// See: pencil-renderer/SKILL.md

All proposals render to a single.pen document as separate frames.

If BACKEND = "html":

Create catalogue directory:

.design-catalogue/
├── index.html              # Main viewer
├── styles/catalogue.css    # Viewer chrome styles
├── proposals/
│   ├── 01-[name]/
│   │   ├── preview.html
│   │   └── styles.css
│   ├── 02-[name]/
│   │   └── ...
│   └── ... (6-12 total)
└── assets/

DNA Variation Rule: No two proposals share >2 axes.

Required diversity:

  • At least 2 bold/dramatic directions
  • At least 2 refined/subtle directions
  • At least 1 unexpected/wild card
  • At least 1 that preserves current strengths

Each proposal preview includes:

  • Hero section in that style
  • Sample card component
  • Button states (default, hover, active)
  • Typography scale (h1-h6, body, caption)
  • Color palette swatches with hex codes
  • DNA code badge

Reference templates:

  • references/viewer-template.html - Main catalogue viewer
  • references/proposal-template.html - Individual proposal page
  • references/catalogue-template.md - Metadata structure

Anti-convergence check: Reference aesthetic-system/references/banned-patterns.md

  • No Inter, Space Grotesk, Roboto as primary fonts
  • No purple gradients on white
  • No centered-only layouts for all proposals

3. Present & Serve

If BACKEND = "pencil":

// Screenshot each proposal frame
for (const frame of proposalFrames) {
  mcp__pencil__get_screenshot({ nodeId: frame.id })
}

Present in chat with screenshots.

If BACKEND = "html":

cd .design-catalogue && python -m http.server 8888 &
echo "Catalogue available at http://localhost:8888"

Open in Chrome MCP:

mcp__claude-in-chrome__navigate url="http://localhost:8888"
mcp__claude-in-chrome__computer action="screenshot"

Present to user:

Design Catalogue Ready

I've built [N] visual proposals exploring different directions for [project].

Quick overview:
1. Midnight Editorial - [soul statement]
2. Swiss Brutalist - [soul statement]
3. Warm Workshop - [soul statement]
...

[If Pencil] View the .pen file directly in your editor
[If HTML] Browse the catalogue: http://localhost:8888

Tell me which 2-3 resonate.

4. Collaborative Refinement

First selection:

AskUserQuestion:
"Which 2-3 directions interest you most?"
Options: [Proposal names with brief descriptions]

Refinement dialogue:

  • "What specifically appeals about [selection]?"
  • "Anything you'd change or combine?"
  • "Should I generate hybrid proposals?"

If refinement requested:

  • Generate 2-3 new proposals based on feedback
  • Add to catalogue as new entries
  • Update viewer to highlight refined options

5. Direction Selection

Present finalists with expanded detail:

  • Full color palette (all semantic tokens)
  • Complete typography scale with specimens
  • Component transformation examples (before → after)
  • Implementation priority list

Final selection:

AskUserQuestion:
"Which direction should we implement?"
Options: [Finalist names]
+ "Make more changes first"

5.5. Expert Panel Review (MANDATORY)

Before presenting any design to user, run expert panel review.

See: ui-skills/references/expert-panel-review.md

  1. Simulate 10 world-class advertorial experts (Ogilvy, Rams, Scher, Wiebe, Laja, Walter, Cialdini, Ive, Wroblewski, Millman)
  2. Each expert scores 0-100 and provides specific improvement feedback
  3. Calculate average score
  4. If average < 90: Implement highest-impact feedback, iterate, re-review
  5. If average ≥ 90: Proceed to handoff
Expert Panel Review: [Design Name]

| Expert | Score | Critical Improvement |
|--------|-------|---------------------|
| Ogilvy | 88 | Headline needs stronger benefit |
| Rams | 92 | Clean execution |
| ...
**Average: 89.2** ❌ → Iterating...

Do not return design until 90+ average achieved.

6. Output & Handoff

Return selected direction:

## Selected Direction: [Name]

**DNA:** [layout, color, typography, motion, density, background]

**Typography:**
- Headings: [Font family, weights]
- Body: [Font family, weights]
- Code/Mono: [Font family]

**Color Palette:**
- Background: [hex]
- Foreground: [hex]
- Primary: [hex]
- Secondary: [hex]
- Accent: [hex]
- Muted: [hex]

**Implementation Priorities:**
1. [First change - highest impact]
2. [Second change]
3. [Third change]

**Preserve:**
- [What to keep from current design]

**Transform:**
- [What changes dramatically]

**Anti-patterns to avoid:**
- [Specific things NOT to do]

Handoff routing:

BackendHandoff Target
Pencilpencil-to-code — exports.pen → React/Tailwind
HTMLdesign-theme — implements tokens in codebase
AskUserQuestion:
"Ready to generate implementation code?"
Options:
- "Yes, generate React components" → invoke handoff
- "No, I'll implement manually" → return spec only

Cleanup (HTML backend only):

# Stop local server
pkill -f "python -m http.server 8888"
# Optionally remove catalogue
# rm -rf .design-catalogue

Quick Reference

PhaseAction
Backend DetectionCheck Pencil MCP availability
InvestigationScreenshot, analyze, infer DNA, research via Gemini
CatalogueBuild 6-12 visual proposals with DNA variety
PresentServe/screenshot, describe options
RefineUser picks favorites, generate hybrids if needed
SelectFinal choice with full spec
HandoffRoute to pencil-to-code or design-theme

Integration

Invoked by:

  • /design command (directly)
  • /aesthetic at Phase 0 (recommended)
  • /polish when maturity < 6 (suggested)

Outputs to:

  • pencil-to-code — when Pencil backend, user wants code
  • design-theme — when HTML backend, user wants implementation
  • /aesthetic — guides all subsequent phases
  • /polish — constrains DNA for refinement loop

Related Skills

  • pencil-renderer — Pencil MCP rendering primitive
  • pencil-to-code —.pen → React/Tailwind export
  • aesthetic-system — DNA codes, anti-convergence rules
  • design-tokens — Token system patterns
  • design-theme — Theme implementation

References

  • references/viewer-template.html - Catalogue viewer HTML
  • references/proposal-template.html - Individual proposal HTML
  • references/catalogue-template.md - Metadata structure
  • aesthetic-system/references/dna-codes.md - DNA axis definitions
  • aesthetic-system/references/banned-patterns.md - Anti-convergence rules

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.83%
按下载量换算59

Claude

30.69%
按下载量换算51

Cursor

20.57%
按下载量换算34

Gemini CLI

10.53%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills