Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

auto-design-clawhubauto 设计 ClawHub

Agent Skill

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

总安装

2,327

周安装

96

GitHub Stars

公开资料未说明

下载量

760
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install auto-design-clawhub

简介

根据项目类型和任务上下文自动选择并应用 Awesome-design-md 的设计系统

SKILL.md

name
auto-design
description
Auto-select and apply design systems from awesome-design-md based on project type and task context
version
1.0.0
metadata
openclaw
requires
bins
primaryEnv
null
emoji
🎯
homepage
https://github.com/moyubox/auto-design
always
true # This skill is always active
aiCompatibility
claudeCode
format
markdown-headers
location
.claude/skills/auto-design/skill.md
conversionSteps
autoConvertible
true
oneLineConvert
|

Auto Design

Intelligent design system selector that automatically picks the best style from awesome-design-md for your project.

Philosophy

Stop asking "what design should I use?" — let the AI figure it out based on:

  • Project type (tool, dashboard, marketing, docs)
  • Target audience (developers, designers, consumers)
  • Technology stack (Vue, React, vanilla)
  • Task context (creating, optimizing, refactoring)

Trigger Conditions

This skill activates automatically when:

Explicit Requests

  • "Create a new page/component"
  • "Design a [something]"
  • "Make it look like [brand]"
  • "What style should I use?"

Implicit Context

  • User creates Vue/React component files
  • User mentions "design", "style", "UI", "UX"
  • User requests optimization of existing UI
  • Any task involving CSS/styling decisions

Keywords That Trigger

design, style, theme, UI, UX, layout, component
page, screen, interface, visual, look, appearance
optimize, improve, refactor, enhance, polish

Smart Selection Logic

Decision Matrix

Project Type Mapping:
  developer-tool:
    primary: vercel
    alternatives: [linear, cursor, raycast]
    reason: "Clean, professional, code-centric"
    
  ai-ml-product:
    primary: claude
    alternatives: [cohere, voltagent]
    reason: "Warm, human-centered, modern"
    
  documentation:
    primary: mintlify
    alternatives: [notion]
    reason: "Reading-optimized, clear hierarchy"
    
  marketing-site:
    primary: stripe
    alternatives: [apple, framer]
    reason: "Elegant gradients, premium feel"
    
  data-dashboard:
    primary: linear
    alternatives: [supabase, sentry]
    reason: "Data-dense, precise, dark-friendly"

Context Detection

The skill analyzes:

  1. File paths: frontend/src/views/ → Vue project
  2. Package.json: React? Vue? Dependencies?
  3. CLAUDE.md: Project description and goals
  4. User's words: "tool", "dashboard", "landing page"
  5. Existing code: Current color schemes, component patterns

Usage Examples

Example 1: Tool Page

User: "Create a password generator"
AI: Detects "tool" → Selects Vercel
Result: Clean black/white UI with blue accents

Example 2: Documentation

User: "Build an API docs page"
AI: Detects "docs" → Selects Mintlify
Result: Green-accented, reading-optimized layout

Example 3: Override

User: "Make it like Linear"
AI: User specified → Uses Linear regardless
Result: Purple-accented, minimal data-dense UI

Execution Flow

Step 1: Analyze Context (Automatic)

context = {
  projectType: analyzeProject(),     // "toolbox", "saas", "docs"
  techStack: detectFramework(),      // "Vue 3", "React", "vanilla"
  userIntent: parseUserRequest(),    // "create", "optimize", "refactor"
  existingDesign: scanCurrentStyles() // Current colors, fonts
}

Step 2: Select Design System

selection = {
  brand: selectBrand(context),       // "vercel", "linear", etc.
  confidence: calculateConfidence(), // 0.0 - 1.0
  reason: generateReason(),          // Why this choice
  alternatives: getAlternatives()    // Backup options
}

Step 3: Download & Apply

# Auto-download from awesome-design-md
curl https://raw.githubusercontent.com/VoltAgent/awesome-design-md/main/design-md/{brand}/DESIGN.md

# Save to project
mkdir -p Docs/Design
cp downloaded.md Docs/Design/{brand}-DESIGN.md

Step 4: Generate Local Reference

creates DESIGN.md with:

  • Selected brand info
  • Core design tokens (colors, fonts, spacing)
  • Usage instructions
  • Generated timestamp

Step 5: Apply to Implementation

When creating UI:

  • Uses selected brand's color palette
  • Follows typography hierarchy
  • Applies spacing system
  • Uses component patterns

Brand Library

Available Brands (58 total)

Developer Tools:

  • Vercel (default) - Black/white, Geist font, precise
  • Linear - Purple, minimal, data-dense
  • Cursor - Dark IDE, gradient accents
  • Raycast - Dark chrome, vibrant colors
  • Supabase - Emerald, code-first

AI/ML:

  • Claude - Warm terracotta, editorial
  • Cohere - Vibrant gradients, dashboard
  • Mistral - Purple, French minimalism

Documentation:

  • Mintlify - Green, reading-optimized
  • Notion - Warm, serif headings

Marketing:

  • Stripe - Purple gradients, weight-300
  • Apple - Premium whitespace, SF Pro
  • Framer - Bold black/blue, motion

Configuration

Environment Variables

# Override default brand
AUTO_DESIGN_DEFAULT=linear

# Disable auto-selection
AUTO_DESIGN_AUTO=false

# Specify user preference
AUTO_DESIGN_PREFERENCE=claude

Per-Project Config

Add to CLAUDE.md or .clauderc:

design:
  default: vercel
  allowed: [vercel, linear, mintlify]
  disabled: [stripe]  # Exclude if not relevant

Cross-Platform Conversion

For Claude Code Users

If you have this ClawHub skill and need to use it with Claude Code:

Option 1: Automatic Conversion (Recommended)

# Run this command in the skill directory
mkdir -p .claude/skills/auto-design && \
echo "# Auto Design\
\
## Name\
auto-design\
\
## Description\
Auto-select and apply design systems from awesome-design-md" \
  > .claude/skills/auto-design/skill.md && \
tail -n +35 SKILL.md >> .claude/skills/auto-design/skill.md

Option 2: AI-Assisted Conversion Tell Claude:

"Convert this ClawHub skill to Claude Code format. 
 The file is at .claude/skills/auto-design-clawhub/SKILL.md"

Option 3: Manual Steps

  1. Copy SKILL.md content (skip YAML frontmatter)
  2. Create .claude/skills/auto-design/skill.md
  3. Add:
   ## Name
   auto-design
   
   ## Description
   [from metadata]
  1. Keep all trigger conditions and execution steps

Conversion Checklist for AI Agents

  • [ ] Extract metadata.description as "## Description"
  • [ ] Extract name as "## Name"
  • [ ] Preserve all markdown content after frontmatter
  • [ ] Ensure trigger conditions are clear
  • [ ] Maintain execution steps order
  • [ ] Test conversion output works in Claude Code

Technical Implementation

Auto-Selection Algorithm

function selectBrand(context) {
  // User override takes priority
  if (context.userPreference) {
    return brands[context.userPreference];
  }
  
  // Match by keywords in request
  for (const [keyword, brand] of keywordMappings) {
    if (context.request.includes(keyword)) {
      return brand;
    }
  }
  
  // Match by project type
  const typeMap = {
    'tool': 'vercel',
    'dashboard': 'linear',
    'docs': 'mintlify',
    'landing': 'stripe'
  };
  
  return typeMap[context.projectType] || 'vercel';
}

Confidence Scoring

confidence = {
  keywordMatch: 0.9,      // User said "like Linear"
  projectTypeMatch: 0.8,  // Tool project → Vercel
  default: 0.7            // Fallback
}

Integration with Design Extractor

These two skills work together:

Design Extractor (analyze existing)
    ↓
Extracts current design tokens
    ↓
Auto Design (suggests improvements)
    ↓
Recommends closest awesome-design-md match
    ↓
Applies selected design system

Output Files

FilePurpose
DESIGN.mdQuick reference for current project
Docs/Design/{brand}-DESIGN.mdFull design system spec
Docs/DevLog/YYYY-MM-DD_design.mdDecision log

AI Compatibility Notes

For AI agents reading this file:

This skill is designed to be auto-convertible between platforms:

  1. ClawHub (native): Uses YAML frontmatter
  2. Claude Code: Uses markdown headers
  3. Future platforms: Parse this file's structure

Key sections to extract:

  • metadata.description → Always use as description
  • ## Trigger Conditions → Activation rules
  • ## Execution Steps → Implementation guide
  • Brand mappings → Core logic

Never remove the aiCompatibility section when porting.

License

MIT-0 (Public Domain)

See Also


AI Conversion Note: This SKILL.md is self-documenting for cross-platform use. To convert to Claude Code, an AI should:

  1. Parse YAML frontmatter for metadata
  2. Create new file with "## Name" and "## Description" headers
  3. Copy all content after frontmatter
  4. Save to .claude/skills/auto-design/skill.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.07%
按下载量换算555

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills