Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计未展示

ux%3aexploreux%3a 探索

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

公开资料未说明

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cloudvoyant/codevoyant --skill ux:explore

简介

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。

  • 使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。
  • 适用于前端设计中的探索性界面开发。
  • 需确保输出符合项目设计语言。
  • ux%3aexplore 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Compatibility: If AskUserQuestion is unavailable, present options as a numbered list and wait for the user's reply. If Task is unavailable, run parallel steps sequentially. The context: fork and agent: frontmatter fields are Claude Code-specific — on OpenCode and VS Code Copilot they are ignored and the skill runs inline using the current model.

Critical Principles

  • "Wireframes fail at the edges, not the happy path." — Every wireframe that shows only idealized data is incomplete. Before finishing any screen, ask: what does this look like with zero items (empty state), with an error, and with maximum content? These are not optional — they are the most design-critical states.
  • "Schematic until the interaction model is validated." — Wireframes exist to test ideas, not to demonstrate visual polish. Color choices, font weights, and spacing precision are noise at this stage. If the wireframe is beautiful but the interaction model is unresolved, the wrong thing has been optimized.
  • "Specify what the developer would otherwise guess." — Any element that is ambiguous in the wireframe will be implemented with the developer's best guess. Click targets, form validation behavior, loading states, and navigation transitions must be described in comments or labeled annotations — not left implicit.

Anti-Patterns

  • Designing only for ideal-case data: Rendering lists with exactly 3 well-named items, forms with short inputs, and tables with uniform row heights. → Ask the user: "How many items at maximum? What's the longest realistic text string? What happens at zero?" Add at least one empty state and one overflow/error state per screen.
  • Omitting loading and error states: Showing only the success path through a flow. → Any screen that involves data fetching, form submission, or async action must include a loading variant and an error variant. These states determine the actual UX quality more than the happy path.
  • Adding brand colors and visual polish prematurely: Using specific hex values, custom fonts, or drop shadows in an early-exploration wireframe. → The wireframe aesthetic (gray scale, simple borders, no shadows) is a constraint, not a default style. Premature visual fidelity anchors stakeholders to a visual direction before the interaction model is validated.
  • Multi-step flows without transition labels: Building anchor-linked multi-step flows where the link between screens is a button label but the navigation semantics are unspecified. → Each navigation action between screens must be labeled with its trigger (button, link, swipe) and its condition (always available, disabled until form is valid, only on mobile). Unlabeled transitions produce ambiguous prototypes.
  • No content scale constraints gathered: Building the wireframe before asking about real data volumes. → Before Step 3 (Build), confirm: max list items, character limits for labels and body text, and whether any field can be absent/null. A wireframe that breaks at real data sizes wastes a review cycle.

Create a single self-contained HTML wireframe or approach comparison. No build step. Tailwind via CDN. Wireframe aesthetic by default.

Step 0: Parse Args

Extract from arguments:

  • EXPLORATION_NAME = first non-flag argument. If absent, ask: "What are we exploring?"
  • EXPLORATION_SLUG = slugified name (see references/utils.md for slug derivation)
  • SLIDESHOW_MODE = true if --slideshow is present
  • BG_MODE = true if --bg is present
  • SILENT = true if --silent is present

Output file: {EXPLORATION_SLUG}.html in current directory (or user-specified path).

Step 1: Understand the Exploration

Ask the user to scope the exploration. Adapt the question to the mode.

Default mode:

AskUserQuestion:
  question: "What is this exploration for?"
  header: "Scope"
  options:
    - label: "Single screen or flow"
      description: "One concept, one file -- e.g. a dashboard, a form, a landing section"
    - label: "Multi-step flow"
      description: "Several screens linked together in one HTML file (anchor nav)"
    - label: "Switch to slideshow mode"
      description: "Compare multiple approaches side-by-side"

If the user selects "Switch to slideshow mode", set SLIDESHOW_MODE = true and continue with the slideshow flow below.

Slideshow mode (--slideshow):

Ask: "What approaches or states should the slideshow compare?" (free text)

Parse the response into SLIDES[] -- a list of named sections. Each entry becomes one slide in the output.

Step 2: Gather Content Requirements

Ask:

  1. "What content/interactions should this wireframe show?" (free text -- describe screens, flows, key elements)
  2. "Any placeholder images needed?"
AskUserQuestion:
  question: "Include placeholder images?"
  header: "Images"
  options:
    - label: "Yes"
      description: "Use picsum.photos for placeholder images"
    - label: "No"
      description: "Text-only wireframe, no images"

Step 3: Build the HTML File

Use the template from references/html-template.md as the base.

Default mode rules

  • Single scrollable HTML page
  • Tailwind CDN for styling (script tag from template)
  • Wireframe aesthetic: gray scale, simple borders, placeholder text, no animations
  • If multi-step flow: use id anchors and a simple sticky nav with <a href="#step-2">Next</a> links
  • Use semantic elements: <section>, <header>, <main>, <aside>
  • External images OK (picsum.photos for placeholders, real CDN images if user specified)
  • No local assets: no <script src="./..."> or <link href="./..."> pointing to local files

Slideshow mode rules

  • One <section class="slide"> per item in SLIDES[]
  • Sticky top nav listing slide names with anchor links
  • Simple tab-like UI: Tailwind classes only, no JS frameworks
  • Each slide labeled with <h2> matching the slide name
  • See references/html-template.md for slideshow-specific markup patterns

Step 4: Write File

Write the complete HTML to {EXPLORATION_SLUG}.html.

Open it in the browser (see references/utils.md for cross-platform open command):

open {EXPLORATION_SLUG}.html 2>/dev/null || xdg-open {EXPLORATION_SLUG}.html 2>/dev/null || echo "Open {EXPLORATION_SLUG}.html in your browser"

Step 5: Report + Notify

Print the result summary:

Exploration written: {EXPLORATION_SLUG}.html
  Mode: {default | slideshow (N slides)}
  Open: open {EXPLORATION_SLUG}.html

If BG_MODE=true and SILENT=false, send a desktop notification (see references/utils.md):

npx @codevoyant/agent-kit notify --title "ux:explore complete" --message "Exploration '{EXPLORATION_SLUG}' written"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

36.98%
按下载量换算32

Claude

31.07%
按下载量换算27

Cursor

18%
按下载量换算15

Gemini CLI

8.4%
按下载量换算7

安全审计

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

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills