ui-ux-pro-max-skill
RepositoryFreeAn AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
Capabilities12 decomposed
bm25-based design resource search with domain auto-detection
Medium confidenceImplements a BM25 ranking algorithm in core.py that searches across 344+ design resources stored in CSV databases covering 10 domains (styles, colors, typography, landing patterns, charts, UX guidelines, icons, products, reasoning rules) and 16 technology stacks. The search engine automatically detects the user's design domain context and filters results by stack-specific guidelines, returning ranked design recommendations that match both semantic intent and technical constraints.
Uses BM25 algorithm with automatic domain detection and stack-specific filtering in a single search pass, rather than requiring separate domain classification and filtering steps like traditional design tools
Faster and more contextually accurate than manual design library searches because it ranks results by relevance to both design intent and technology stack simultaneously
multi-domain design system synthesis with master + overrides pattern
Medium confidenceThe design_system.py reasoning engine performs sequential multi-domain searches (colors, typography, patterns, guidelines) and synthesizes complete design systems using a Master + Overrides architectural pattern. This pattern defines a master design configuration that can be selectively overridden per platform or component, enabling consistent design systems across 18+ AI platforms while maintaining platform-specific customizations without duplication.
Uses Master + Overrides pattern to generate platform-specific design systems from a single master definition, eliminating duplication and ensuring consistency across 18+ AI platforms through structured inheritance rather than copy-paste
More maintainable than generating separate design systems per platform because changes to the master configuration automatically propagate to all platforms unless explicitly overridden
claude marketplace plugin integration with automatic activation
Medium confidenceThe system integrates with Claude Marketplace through a .claude-plugin/ directory structure that enables direct plugin installation for Claude Code users. The skill.json manifest declares capabilities and activation triggers, allowing the plugin to activate automatically when users request UI/UX work within Claude, with design resources and reasoning engine accessible through Claude's native function-calling interface.
Integrates directly with Claude Marketplace through .claude-plugin/ directory structure and skill.json manifest, enabling native plugin installation and automatic activation within Claude Code without requiring external CLI tools
More seamless than external plugin installation because it integrates natively with Claude's plugin system, enabling automatic activation and direct access to Claude's function-calling interface without context switching
pre-delivery design checklist generation and validation
Medium confidenceThe system includes a pre-delivery checklist capability that validates generated designs against accessibility, performance, and consistency standards before delivery to users. The checklist is generated from reasoning rules and stack-specific guidelines, checking for common issues (color contrast, responsive design, component naming, design token usage) and providing actionable feedback for remediation.
Generates context-aware validation checklists from reasoning rules and stack-specific guidelines, checking designs against both universal standards (accessibility, performance) and team-specific conventions rather than applying generic validation rules
More comprehensive than manual design review because it automatically checks against multiple validation dimensions (accessibility, performance, consistency, naming) in a single pass, reducing human review burden
ai platform auto-detection and template generation
Medium confidenceThe CLI tool's detectAIType() function in detect.ts identifies the user's AI coding assistant environment (Claude, Cursor, Windsurf, Copilot, etc.) by analyzing file system markers, environment variables, and configuration files. Once detected, the template generation system in template.ts automatically generates platform-specific configuration files from JSON templates (augment.json, kilocode.json, warp.json), enabling zero-configuration installation across 18+ supported platforms.
Combines file system introspection with environment variable analysis to detect AI platform type without user input, then generates platform-specific files from parameterized JSON templates rather than requiring manual configuration per platform
Faster and more reliable than manual platform selection because it automatically discovers the correct environment and generates compatible files, reducing setup time from minutes to seconds
stack-specific design guideline filtering and application
Medium confidenceThe system maintains stack-specific guideline configurations that filter and customize design recommendations based on technology stack (React, Vue, Tailwind, HTML5, etc.). When a user requests UI/UX work, the skill automatically detects the target stack from code context or user input, then filters design resources and applies stack-specific guidelines from the CSV database, ensuring generated designs follow framework conventions and best practices.
Maintains separate guideline rows per technology stack in CSV database and applies stack-specific filtering at search time, ensuring design recommendations automatically conform to framework conventions rather than requiring post-generation manual adjustment
More accurate than generic design recommendations because it filters by framework-specific patterns (React hooks, Vue composition API, Tailwind utilities) rather than treating all stacks identically
csv-based design resource persistence and versioning
Medium confidenceThe system stores 344+ design resources in CSV format across 10 domain-specific files (colors.csv, typography.csv, patterns.csv, etc.), with a source-of-truth synchronization pattern that maintains consistency between CLI templates and skill definitions. Each CSV row contains design metadata (name, description, stack, domain, implementation code) and is indexed for BM25 search, enabling version control, offline access, and collaborative design database management without requiring a backend database.
Uses CSV files as the primary persistence layer with source-of-truth synchronization between CLI and skill definitions, enabling Git-based version control and collaborative editing without requiring database infrastructure or API servers
More accessible than database-backed design systems because CSV files are human-readable, version-controllable, and editable without specialized tools, making it easier for non-technical team members to contribute design resources
multi-platform skill/workflow installation and activation
Medium confidenceThe CLI tool orchestrates installation across 18+ AI platforms (Claude, Cursor, Windsurf, Copilot, Augment, Kiro, Qoder, Trae, etc.) by generating platform-specific skill or workflow files from templates and placing them in platform-specific directories. The skill.json manifest defines activation triggers and capabilities, enabling automatic activation when users request UI/UX work, with platform-specific behavior controlled through configuration overrides.
Generates platform-specific skill/workflow files from parameterized templates and manages installation across 18+ AI platforms with unified CLI, rather than requiring separate installation procedures per platform
Faster and more reliable than manual installation because it autodetects platforms, generates compatible files, and verifies installation in a single command, reducing setup complexity from per-platform configuration to unified orchestration
reasoning rules engine for design decision synthesis
Medium confidenceThe system includes a reasoning rules database (stored in CSV) that encodes design decision logic for common UI/UX scenarios (e.g., 'use high contrast colors for accessibility', 'prefer sans-serif for body text on screens'). The design_system.py engine applies these rules during synthesis to ensure generated designs follow established design principles, with rules indexed by domain and stack to enable context-aware reasoning.
Encodes design reasoning rules in CSV database indexed by domain and stack, enabling context-aware rule application during synthesis rather than applying generic design principles uniformly
More principled than heuristic-based design generation because it explicitly encodes design reasoning rules that can be audited, versioned, and customized per organization rather than relying on implicit AI model knowledge
platform-specific template generation from json schemas
Medium confidenceThe template.ts utility generates platform-specific configuration files (skill.json, workflow.json, augment.json, kilocode.json, warp.json) from parameterized JSON schema templates. Each template defines platform-specific file structure, activation triggers, and capability declarations, with variables substituted at generation time based on detected platform and user configuration, enabling single-source-of-truth template management.
Uses parameterized JSON templates with variable substitution to generate platform-specific files from a single source definition, rather than maintaining separate configuration files per platform
More maintainable than per-platform configuration files because template changes automatically propagate to all platforms, reducing duplication and synchronization errors
codebase context extraction for design domain detection
Medium confidenceThe extract.ts utility analyzes user codebase files (package.json, tsconfig.json, component files) to automatically detect technology stack and design domain context. It parses dependency declarations, file structure, and code patterns to infer whether the user is building a landing page, dashboard, mobile app, or other design domain, enabling automatic activation of domain-specific design resources without explicit user specification.
Analyzes package.json and file structure to infer both technology stack and design domain context in a single pass, enabling automatic activation of domain-specific design resources without requiring explicit user input or configuration
More convenient than manual stack/domain specification because it automatically discovers context from existing codebase, reducing setup friction for developers working in established projects
github-based distribution and release management
Medium confidenceThe github.ts utility manages distribution of UI/UX Pro Max through GitHub Releases, enabling users to download source archives (.zip) for offline installation or manual deployment. The system maintains release artifacts with version tags, enabling version pinning and rollback capabilities, with automated release workflows that package CLI and skill assets together.
Distributes complete skill + CLI + design resources through GitHub Releases as versioned archives, enabling offline installation and version pinning without requiring npm or external infrastructure
More flexible than npm-only distribution because it supports offline installation, version pinning, and custom deployment pipelines while maintaining GitHub as the single source of truth
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with ui-ux-pro-max-skill, ranked by overlap. Discovered automatically through the match graph.
@coinbase/cds-mcp-server
Coinbase Design System - MCP Server
superdesign (DEPRECATED)
⚠️ DEPRECATED - Please install the new version: https://marketplace.visualstudio.com/items?itemName=SuperdesignDev.superdesign-official
claude-skills
232+ Claude Code skills & agent plugins for Claude Code, Codex, Gemini CLI, Cursor, and 8 more coding agents — engineering, marketing, product, compliance, C-level advisory.
super-dev
Engineering workflow layer for AI coding tools with specs, review, quality gates, and traceability.为 AI 编程工具提供工程化流程、质量门禁与可追溯能力。
ai-website-cloner-template
Clone any website with one command using AI coding agents
awesome-claude-skills
A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
Best For
- ✓AI coding assistants (Claude, Cursor, Windsurf) generating UI code
- ✓Teams building multi-platform UI systems with consistent design
- ✓Developers needing design intelligence without manual research
- ✓Teams building design systems for multi-platform deployment
- ✓AI coding assistants generating complete UI scaffolds
- ✓Organizations needing consistent design across Claude, Cursor, Windsurf, and other platforms
- ✓Claude Code users wanting native design intelligence
- ✓Teams standardizing on Claude for AI-assisted development
Known Limitations
- ⚠BM25 ranking may miss semantic nuances in design intent — requires clear domain context for optimal results
- ⚠Search results limited to 344 pre-curated resources — custom design systems require manual extension
- ⚠Stack-specific filtering assumes predefined platform configurations — new stacks need manual configuration addition
- ⚠Master + Overrides pattern requires upfront definition of master configuration — complex for highly heterogeneous designs
- ⚠Synthesis engine assumes domains are independent — interdependent design decisions (e.g., color affecting typography contrast) may require manual refinement
- ⚠No built-in conflict resolution when overrides contradict master — requires manual review
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 3, 2026
About
An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
Categories
Alternatives to ui-ux-pro-max-skill
Are you the builder of ui-ux-pro-max-skill?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →