ui-ux-pro-max

Searches a CSV design database to generate UI style, color, typography, and UX recommendations.

Updated Mar 28, 2026
One-click install
npx skills add https://github.com/po4yka/blog --skill ui-ux-pro-max-po4yka
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ui-ux-pro-max
Source: https://github.com/po4yka/blog/tree/main/.agents/skills/ui-ux-pro-max
Command: npx skills add https://github.com/po4yka/blog --skill ui-ux-pro-max-po4yka

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Choosing consistent styles, color palettes, font pairings, and UX patterns for a new web or mobile interface requires scattered research; this Skill centralizes that design intelligence into a searchable database with a CLI. ## Core Features & Use Cases - BM25 Design Search: Query 50+ styles, 161 color palettes, 57 font pairings, 161 product types, 99 UX guidelines, and 25 chart types via scripts/search.py with domain filters like --domain color or --domain ux. - Design System Generation: Run --design-system to aggregate product, style, color, landing, and typography results into a complete recommendation with anti-patterns, optionally persisted as a design-system/MASTER.md plus per-page override files. - Stack-Specific Guidelines: Retrieve implementation rules for 15 stacks (Astro, React, Next.js, Vue, Svelte, Tailwind, SwiftUI, Flutter, and more) via --stack <name>. - Use Case: When building a SaaS dashboard, run the search CLI with the product type and keywords to get a recommended pattern, color tokens, font pairing, and a pre-delivery accessibility checklist. ## Quick Start Ask the AI to use the ui-ux-pro-max skill to recommend a design system for your product type, for example by running its search script with your product keywords and the --design-system flag.

Frequently Asked Questions about ui-ux-pro-max

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a design system for a new web project?

Run the search script with your product type and keywords plus the --design-system flag, for example `python3 scripts/search.py "saas dashboard" --design-system -p "My Project"`. It aggregates product, style, color, landing, and typography searches into one recommendation with anti-patterns.

How do I search for color palettes or font pairings by keyword?

Use the --domain flag with the search script: `--domain color` searches 161 product-specific palettes, and `--domain typography` searches 57 font pairings. Add `-n` to control the maximum number of results returned.

Does the skill support framework-specific guidelines like Astro or React?

Yes, the --stack flag retrieves implementation guidelines for 15 stacks including astro, react, nextjs, vue, svelte, nuxtjs, html-tailwind, swiftui, flutter, and jetpack-compose. Each stack file contains do/don't rules with code examples and severity levels.

Can I save the generated design system for later sessions?

Yes, add --persist to write a design-system/MASTER.md file as the global source of truth. Use --page "dashboard" to also create a page-specific override file under design-system/pages/ that takes precedence over the master rules.

What are the limitations of the BM25 search approach?

The search matches keywords against CSV columns using BM25 ranking, so vague or single-character queries may return weak results. It returns at most the top results with a positive score and cannot reason beyond the data stored in the CSV files.