// the find
nextlevelbuilder/ui-ux-pro-max-skill
An AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
A prompt-engineering skill for AI coding assistants (Claude Code, Cursor, Copilot, etc.) that injects UI/UX design knowledge — style catalogs, color palettes, typography pairings, and industry-specific layout rules — so the AI generates better-looking UI code out of the box. It ships as a CLI that installs markdown/CSV data files into your project's `.claude/skills/` or equivalent directory. Aimed at developers who want decent-looking UIs without being designers.
The BM25 search over structured CSVs is a sensible choice — it's fast, offline, and needs no embedding infrastructure. The 'anti-pattern' lists per industry (e.g., 'no AI purple/pink gradients for banking') are genuinely useful and the kind of thing LLMs hallucinate wrong on their own. The CLI abstraction over 18+ AI tools means one data source stays in sync instead of forking per platform. The Master + page-level override pattern for design systems is a reasonable solution to context-window limits across sessions.
The star count looks inflated for what is essentially a collection of CSV files and markdown — 104k stars on a prompt-engineering repo with no original algorithms is a red flag worth noting before recommending it to anyone. The 'premium version' paywall for brand and asset features is undisclosed upfront and the uupm.cc site is light on specifics, which makes the open-source/paid boundary feel blurry. The Python search script being required for design system generation adds a dependency that breaks on Windows PATH issues and is only used as a subprocess from within an LLM conversation, which is an awkward execution model. The skill only works if the AI assistant actually reads and follows the injected markdown, which varies by tool and prompt — there's no mechanism to verify the skill is actually influencing output.