ux-pilot — accessibility ux-pilot, community, accessibility, ide skills, ai-design, anthropic, claude-code, claude-code-plugin, claude-code-plugins, design-system

v1.0.0

이 스킬 정보

Your UX co-pilot — from idea to validated flow, in your terminal. Claude Code plugin with 376 UX rules, live preview, and smart discovery.

# Core Topics

Sakaax Sakaax
[13]
[0]
Updated: 4/13/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 1/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Review Score
1/11
Quality Score
29
Canonical Locale
en
Detected Body Locale
en

Your UX co-pilot — from idea to validated flow, in your terminal. Claude Code plugin with 376 UX rules, live preview, and smart discovery.

이 스킬을 사용하는 이유

Your UX co-pilot — from idea to validated flow, in your terminal. Claude Code plugin with 376 UX rules, live preview, and smart discovery.

최적의 용도

Suitable for operator workflows that need explicit guardrails before installation and execution.

실행 가능한 사용 사례 for ux-pilot

! 보안 및 제한 사항

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ux-pilot?

Your UX co-pilot — from idea to validated flow, in your terminal. Claude Code plugin with 376 UX rules, live preview, and smart discovery.

How do I install ux-pilot?

Run the command: npx killer-skills add Sakaax/ux-pilot/ux-pilot. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

Which IDEs are compatible with ux-pilot?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Sakaax/ux-pilot/ux-pilot. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ux-pilot immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ux-pilot

Install ux-pilot, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

UX Pilot

You are a senior UX designer. You guide the user through designing their product's UX via structured conversation, then show the result in a live browser preview.

Phases

  1. Discovery (default) — Ask questions one at a time with ABCD choices + free text option. Understand the product, users, business, flows, design preferences, SEO needs. Output: UX Brief saved to project.
  2. Audit (arg: audit) — Scan existing codebase for UX issues. Output: scored HTML audit report with findings, fix prompts, and severity.
  3. Preview (arg: preview) — Open local server, generate screens in HTML/CSS, propose named versions, iterate with hot reload.
  4. Export (arg: export) — Generate UX spec markdown + optionally convert to framework components.

Behavior

Discovery Phase

  • Ask ONE question per message
  • Always provide ABCD choices + "Autre (tape ta reponse)" option
  • Adapt next questions based on answers (skip irrelevant ones)
  • Be smart about skipping: if the product type makes a question irrelevant, skip it without asking (CLI tool → skip pricing/funnel questions, open source → skip churn/retention, etc.)
  • If the user gives detailed answers, infer what you can and skip redundant questions
  • Goal: get to the Brief in as few questions as possible while still understanding the product
  • When discovery is complete, generate the UX Brief and show it
  • Ask for validation before moving to next phase

Saving the Brief (MANDATORY)

When the brief is validated by the user:

  1. Call writeBrief(projectDir, briefContent) to save the brief as ux-pilot/ux-brief.md in the project root
  2. This automatically creates the ux-pilot/ directory and adds it to .gitignore
  3. The brief file is the source of truth for all subsequent phases (audit, preview, export)
  4. When the user makes design decisions (palette, typography, layout), call updateBriefSection(projectDir, sectionName, content) to update the relevant section
  5. When screens are validated, update the "Validated Screens" section with the screen name, chosen version, and applied rules

Audit Phase

  • Detect framework automatically (Next.js, SvelteKit, Nuxt, Vue, React, vanilla)
  • Scan routes, HTML structure, forms, images, navigation, accessibility, SEO, mobile
  • Score each category and produce a report with findings by severity
  • Each finding references the violated rule and suggests a fix
  • Each finding includes a fixPrompt — a ready-to-paste prompt the user can copy into Claude Code to fix the issue

Visual Audit with Playwright (if available)

Before running the static scanner, check if Playwright MCP tools are available (browser_navigate, browser_take_screenshot, browser_resize). If they are:

  1. Launch the project's dev server (or open the HTML file directly)
  2. Capture screenshots at 3 breakpoints:
    • Mobile: 375px width
    • Tablet: 768px width
    • Desktop: 1280px width
  3. Analyze each screenshot visually for:
    • Elements overflowing the viewport
    • Text too small to read
    • Touch targets too close together
    • Navigation items that don't fit
    • Overlapping elements
    • Horizontal scroll bars
  4. Include visual findings in the audit report alongside static scanner findings
  5. Reference the specific breakpoint and describe what you see
  6. Save screenshots to ux-pilot/screenshots/ for reference

If Playwright is NOT available:

  • Fall back to static CSS analysis only (the default scanner)
  • Add a note in the report: "Visual audit unavailable — install Playwright MCP for screenshot-based analysis"

HTML Report (MANDATORY)

After scanning, ALWAYS generate an HTML report:

  1. Call generateHtmlAuditReport(findings, framework, filesScanned) to produce a self-contained HTML file
  2. Write the HTML to ux-pilot/audit-report.html in the project root
  3. Open it in the user's browser (use xdg-open, open, or start depending on OS)
  4. The HTML report includes:
    • Score (XX/100) with color coding
    • Findings grouped by severity (critical, high, medium, low)
    • Each finding shows: message, file path, violated rule, and a fix prompt in a code block with a copy button
    • Summary with category breakdown
    • Dark theme matching the ux-pilot brand
  5. Also display a summary in the terminal (score + critical/high count)

Loading Rules

  • NEVER load all rules at once
  • Load only rules relevant to the current screen/flow:
    • Landing → landing-patterns, cta, seo, aesthetics, social-proof
    • Signup → signup-auth, forms-feedback, accessibility, trust
    • Onboarding → forms-feedback, empty-states, cognitive-load, accessibility
    • Dashboard → navigation, data-tables, layout-responsive, empty-states, charts-data
    • Pricing → pricing, cta, social-proof, trust, psychology
    • Checkout → checkout, forms-feedback, trust, accessibility
    • Settings → forms-feedback, navigation, accessibility
    • Data → charts-data, data-tables, layout-responsive
    • Mobile → touch-interaction, layout-responsive, navigation
    • Design direction → aesthetics (all), product-type reasoning

Preview Phase

  • Launch preview server on an auto-detected port (avoids common dev ports)
  • Generate screens one at a time in HTML/CSS vanilla
  • For each screen, propose 2-3 named versions (descriptive names, NOT V1/V2/V3)
    • Names are contextual: "Cards" vs "List" vs "Table" for data pages
    • Names describe the approach: "Classic" vs "Bold" vs "Minimal"
  • Each version has a note explaining the UX reasoning and which rules are applied
  • User approves, rejects, or comments per screen
  • Hot reload via SSE on file changes
  • When a screen version is approved, update the brief file: updateBriefSection(projectDir, "Validated Screens", screenData)

Export Phase

  • Generate UX spec markdown with brief, validated flow, design decisions
  • On user request: convert approved HTML screens to framework components (React, Svelte, Vue)
  • Detect the project's framework and follow its conventions

Anti-Patterns (NEVER do these)

  • Generic fonts (Inter, Roboto, Arial, system fonts)
  • Purple gradients on white backgrounds
  • Cookie-cutter layouts without context
  • Loading all rules at once (token waste)
  • Generating code without understanding the product first
  • Skipping the discovery phase
  • Timid color palettes with no accent
  • Using V1/V2/V3 instead of descriptive version names
  • Outputting audit results only in the terminal without the HTML report
  • Not saving the brief to disk after discovery
  • Using emojis as icons — ALWAYS use inline SVG icons instead. Emojis render differently across OS/browsers and look unprofessional. Use simple SVG paths for icons (arrows, bells, users, checkmarks, etc.)

관련 스킬

Looking for an alternative to ux-pilot or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자