Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

design-loop设计循环

Agent Skill

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

总安装

371

周安装

15

GitHub Stars

公开资料未说明

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add pentaxis93/aiandi --skill "design-loop"

简介

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

  • 适合整理页面结构、生成 UI 方案或检查一致性。
  • 需结合品牌和设计系统,避免堆砌装饰元素。design-loop 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 涉及真实页面改动时应通过截图或预览验证表现。
  • 建议在原型阶段使用,避免直接修改生产代码。

SKILL.md

name
design-loop
description
Iterative visual design fine-tuning. Implement, capture, see with vision, assess, refine, repeat. The recursive loop where craft meets sight.

Design Loop Skill

Purpose: Iteratively refine visual design by implementing changes, capturing screenshots, *using vision to examine them yourself*, and making informed refinements. The loop continues autonomously until the design achieves the intended vision. You do not wait for the user between iterations.

Two modes:

  • Fine-tuning (refinement): Incremental improvements within existing aesthetic direction
  • Nuclear: Radical departure, throw away existing design and start fresh

CRITICAL: This is a system of three skills used together:

  • web-design: Provides aesthetic vision, token system, layout patterns
  • screenshot: Provides capture procedure
  • design-loop (this skill): Orchestrates autonomous iteration using vision

You must load all three skills when doing design work.


The Loop

┌─────────────────────────────────────────────────────────┐
│                                                         │
│   VISION ──────► IMPLEMENT ──────► CAPTURE              │
│     ▲                                  │                │
│     │                                  ▼                │
│     │                                SEE                │
│     │                                  │                │
│     │                                  ▼                │
│   REFINE ◄──────────────────────── ASSESS               │
│                                                         │
│   NUCLEAR ◄──── Radical departure if derivative         │
│                                                         │
└─────────────────────────────────────────────────────────┘
StepAction
VISIONDefine or refine the aesthetic intention (see web-design skill)
IMPLEMENTWrite code using semantic tokens
CAPTUREScreenshot the result (see screenshot skill)
SEEActually look at the screenshot with vision capability
ASSESSWhat works? What doesn't? What's missing?
FINE-TUNEAdjust vision or implementation within existing direction, return to IMPLEMENT
NUCLEARThrow it all away and start fresh if it's derivative

Exit when: The visual matches the intention, or the design achieves a quality that surprises even you.


Nuclear Option: Starting Fresh

Trigger the nuclear option when:

  • The design feels derivative or safe
  • Fine-tuning/incremental changes aren't creating distinctiveness
  • You're tweaking instead of reimagining
  • The user explicitly asks for "nuclear" or "from scratch"
  • The user explicitly asks for "nuclear", "from scratch", or "radical departure"

User synonyms recognized:

  • "Go nuclear" / "nuclear option"
  • "Start fresh" / "from scratch" / "clean slate"
  • "Radical departure" / "radical redesign"
  • "Fine-tune" / "refine" / "polish" / "tweak" (for incremental mode)
  • You see the design and think "this could be any blog"

Nuclear procedure:

  1. Acknowledge the reset - "This needs a radical departure, not fine-tuning."
  2. Choose a completely different aesthetic from web-design palette
  3. Ignore existing layout - Don't look at current code for "inspiration"
  4. Implement bold vision - Typography, layout, color all change
  5. Capture and assess - Did we break free of the derivative trap?

Example triggers:

  • User: "This feels too safe, go nuclear"
  • User: "Start fresh, ignore what we have"
  • You assess: "This is incrementally better but still generic"

Why This Matters

Code is not design. CSS properties are not aesthetics. The only way to know if a design *works* is to see it with your vision capability.

Without VisionWith Vision (You Looking)
Guessing at spacing values*You see* the spacing is too tight
Hoping colors work together*You notice* the accent color gets lost
Imagining animations*You feel* the animation is too fast
Assuming typography reads well*You read* the text and sense rhythm

Vision transforms design from speculation to craft. You have vision. Use it to iterate autonomously.


Procedure

Setup

Ensure the dev server is running:

bun run dev --host 0.0.0.0 &
sleep 5
# Note the port from output (4321 or 4322)

The Loop (Autonomous)

IMPORTANT: Execute iterations continuously without waiting for user feedback. The loop is autonomous.

1. Implement

Make changes using semantic tokens. Reference web-design skill for:

  • Token quick reference
  • Layout patterns
  • Component templates

2. Capture

Take a screenshot using screenshot skill procedure:

cat << 'EOF' | bun run -
import puppeteer from 'puppeteer';

const browser = await puppeteer.launch({
  headless: true,
  args: ['--no-sandbox', '--disable-setuid-sandbox']
});

const page = await browser.newPage();
await page.setViewport({ width: 1280, height: 800 });
await page.goto('http://localhost:4322/', { waitUntil: 'networkidle0' });

const path = `/tmp/aiandi-iteration-N.png`;
await page.screenshot({ path, fullPage: true });

await browser.close();
console.log(path);
EOF

3. See (You, Using Vision)

Read the screenshot yourself with the Read tool. The image will be provided to you.

Actually look at it with your vision capability. Not a glance - a studied examination. The user does not need to see it; you are the designer examining your work.

4. Assess (You, Analyzing What You See)

You examine the screenshot and assess:

Composition

  • Does the eye flow naturally?
  • Is there clear hierarchy?
  • Does negative space breathe or suffocate?
  • Are elements aligned with intention?

Typography

  • Is the text readable at this size?
  • Does the line length feel comfortable?
  • Is there rhythm in the spacing?
  • Do the fonts have character or feel generic?

Color

  • Do the colors create the intended mood?
  • Is there enough contrast?
  • Does the accent color earn its attention?
  • Is the palette cohesive?

Details

  • Are borders and shadows serving a purpose?
  • Do interactive elements look interactive?
  • Is there consistency in radii, spacing, weights?
  • What feels unfinished?

Gut Check

  • Is this distinctive or generic?
  • Would someone remember this?
  • Does it have a point of view?
  • Am I proud of this?

5. Refine (You Decide Next Steps)

Based on what you saw:

DecisionWhen
Continue fine-tuningYou see improvements to make within current direction - return to step 1
Adjust visionSeeing it revealed something new about the intent
Zoom inFocus on fine-tuning a specific element
Zoom outReassess overall composition
Stop iteratingVisual matches intention or diminishing returns
Go nuclearDesign feels derivative, needs radical departure

If continuing: Return to step 1 immediately. Do not wait for user. If stopping: Document final state and clean up screenshots.

Completion (You Decide)

You stop iterating when:

  • The visual matches the intention (based on what you see)
  • The design achieves unexpected quality (surprises even you)
  • Further fine-tuning yields diminishing returns (changes aren't improving it)

Do not wait for the user to tell you to continue. The loop is autonomous.

Clean up when done:

rm /tmp/aiandi-*.png

Common Issues Revealed by Vision

SymptomLikely CauseFix
Feels crampedSpacing too tightIncrease padding, margins
Feels emptyToo much negative spaceTighten spacing or add content
No hierarchySimilar sizes/weightsIncrease contrast between levels
Eye wandersNo focal pointStrengthen the primary element
Feels genericSafe choicesCommit to bolder direction
Colors clashWrong relationshipsAdjust hues or reduce saturation
Text hard to readContrast or sizeIncrease contrast, adjust size
UnbalancedVisual weight offRedistribute elements
UnfinishedMissing detailsAdd borders, shadows, states

Quick Tests

The Squint Test

Squint at the screenshot (blur it mentally):

  • Clear shapes and hierarchy = good structure
  • Muddy blob = needs more contrast
  • One dominant element = clear focal point
  • Everything equal = no hierarchy

The 5-Second Test

Look for 5 seconds, look away. What do you remember?

  • Specific elements = those are working
  • Nothing specific = lacks distinctiveness
  • Wrong things = hierarchy is off

Example Sessions

Example 1: Fine-Tuning Mode (Incremental Refinement)

LOOP 1:
- Implement: Create hero section with large heading
- Capture: Screenshot home page
- See: Heading feels lost, not commanding enough
- Assess: Font weight too light, spacing below too tight
- Fine-tune: Increase font weight, add more bottom margin

LOOP 2:
- Implement: Bold heading, generous spacing
- Capture: Screenshot
- See: Better hierarchy, but accent color doesn't pop
- Assess: Amber on dark gray needs more saturation
- Fine-tune: Adjust accent color in theme

LOOP 3:
- Implement: Brighter accent color
- Capture: Screenshot
- See: Accent pops now, but feels disconnected
- Assess: Need to echo accent elsewhere for cohesion
- Fine-tune: Add accent border to cards section

LOOP 4:
- Implement: Accent border on cards
- Capture: Screenshot
- See: Cohesive! Accent creates visual thread. Cards inviting.
- Assess: Ready. Clear hierarchy, distinctive color, rhythm.
- Complete: Clean up, commit changes.

Example 2: Nuclear Option (Radical Departure)

LOOP 1:
- Implement: Standard centered hero, card grid below
- Capture: Screenshot
- See: This is... fine. Professional. Forgettable.
- Assess: Every tech blog looks like this. NUCLEAR OPTION.

NUCLEAR RESET:
- Vision: Punk zine meets scientific journal
- Implement: 
  * Asymmetric layout - hero pushed hard left
  * Massive monospace headline (terminal aesthetic)
  * Remove all color except single accent on links
  * Add diagonal borders, angles instead of cards
  * Make typography uncomfortably large

LOOP 2:
- Capture: Screenshot
- See: Whoa. Aggressive. Memorable. Polarizing?
- Assess: TOO aggressive. Need some warmth back.
- Fine-tune: Add subtle warmth to background, soften one edge

LOOP 3:
- Capture: Screenshot
- See: Yes! Distinctive without being hostile.
- Assess: Would remember this. Has a point of view.
- Complete: This breaks the mold while staying accessible.

Example 3: Recognizing Derivative Work

LOOP 1:
- Implement: Clean dark mode, amber accents, generous spacing
- Capture: Screenshot
- See: Nice! Professional! Like... every other dark mode blog?
- Assess: STOP. This is derivative. What's the actual vision here?

RETHINK:
- Not "dark mode blog" - that's a template
- Not "warm accents" - that's safe
- What's ACTUALLY distinctive about this content?
  * Ancient patterns in new tools
  * Recursive collaboration
  * Workbench, not portfolio

NEW VISION: Museum placard meets lab notebook
- White/cream dominant (invert the dark mode expectation)
- Monochrome except red for "danger/important"
- Grid system visible as subtle lines
- Typography: mix of clinical sans + handwritten annotations
- Cards become "specimens" with catalog numbers

LOOP 2:
- Implement: Complete visual inversion
- Capture: Screenshot
- See: COMPLETELY different. Unexpected. Museum-like precision.
- Assess: This matches the "workbench" vision better than dark mode ever did.

The Mindset

You are not debugging. You are designing.

Each loop is fine-tuning toward aesthetic vision, not bug fixing. The screenshot is a canvas for your evaluation, not a test result.

Trust your vision. You can see what code cannot express:

  • Rhythm
  • Balance
  • Tension
  • Harmony
  • Character

You have vision. Use it. Iterate autonomously until you're satisfied with what you see.

The code is the instrument. The screenshot is the music. Your vision is the ear.


When to Use

  • Creating new pages or components
  • Fine-tuning existing designs
  • Implementing theme changes
  • Responsive design verification
  • Before committing visual changes
  • When something "feels off" but you can't articulate why
  • Nuclear option when design feels derivative

The Three-Skill System

Always use these skills together for design work:

SkillProvidesWhen to Load
web-designAesthetic vision, token system, layout patterns, anti-patternsAlways (foundation)
screenshotCapture procedure, viewport options, troubleshootingAlways (seeing tool)
design-loopAutonomous iteration orchestrationAlways (the process)

Load all three at the start of design sessions.


The Standard

You decide a design is complete when:

  • It has a clear point of view (you see it)
  • Every element serves the whole (you verify it)
  • The details reward close inspection (you examine it)
  • You would be proud to show it (you judge it)

If you haven't looked at it with your vision, you haven't designed it.

Don't ask the user if you should continue. Look, assess, and decide yourself.


*See what you build. Build what you see.*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

mcpjam

31.45%
按下载量换算36

Claude Code

21.53%
按下载量换算25

windsurf

17.08%
按下载量换算20

zencoder

14.65%
按下载量换算17

crush

9.24%
按下载量换算11

cline

3.55%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills