ui-ux-pro-max

ui-ux-pro-max is a skill for Claude Code from Galaxy-Dawn/claude-scholar. It costs 48 tokens per session (984 once invoked), scanned A, original, MIT.

A guide for turning vague interface requests into a practical design system and implementation plan. It covers visual style, colors, typography, user experience, and frontend stack choices.

In plain words
What is it for?
Use it to design or review dashboards, landing pages, and other frontend interfaces, including accessibility improvements.
Why use it?
It gives developers a consistent direction when a product needs a polished interface but the design decisions are not yet clear.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-scholar plugin — 45 skills, 34 commands, 6 agents, 5 hooks shipped together

Good fit Use it to design or review dashboards, landing pages, and other frontend interfaces, including accessibility improvements.

Compare 6 skills from other repositories ↓
About the project

Claude Scholar is a semi-automated research assistant for academic research and software development, supporting literature review, coding, experiments, reporting, writing, and project knowledge management. Computer science and AI researchers use it across the research workflow with several coding-agent platforms; the catalogue contains its skills, commands, agents, hooks, plugin, and instruction.

Galaxy-Dawn/claude-scholar · 5,419 stars · on GitHub

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add Galaxy-Dawn/claude-scholar
Claude Code
/plugin install claude-scholar

Made for: Claude Code.

Or install claude-scholar, the plugin that ships this one along with the rest of its 45 skills, 34 commands, 6 agents, 5 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ui-ux-pro-max

README.md
[![agentmods](https://agentmods.dev/badge/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max/github.svg)](https://agentmods.dev/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max)
Your own site
<a href="https://agentmods.dev/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max"><img src="https://agentmods.dev/badge/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ui-ux-pro-max

Your own site · 80×15
<a href="https://agentmods.dev/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max"><img src="https://agentmods.dev/badge/skills/galaxy-dawn/claude-scholar/ui-ux-pro-max.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 984 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 19 Mar 2026
  • Snyk pass 19 Mar 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.00984
Opus 5 $0.00024 $0.00492
Sonnet 5 $0.00010 $0.00197
Haiku 4.5 $0.00005 $0.00098

Measured 8d ago against content hash bfc986f07475, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ui-ux-pro-max scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/search.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ui-ux-pro-max/SKILL.md · 137 lines

How it starts

The opening of the file, as written. The whole thing — 137 lines — stays where its author put it; the contents beside it link to each section on GitHub.

UI/UX Pro Max

Use this skill to turn a vague UI request into a concrete design system plus implementation guidance.

Role

This skill is for:

  • design-system selection,
  • palette and typography choices,
  • UX review and remediation,
  • stack-aware frontend implementation guidance,
  • lightweight design-system persistence for multi-page work.

It is not a replacement for product strategy or user research. Use it to make execution sharper after the product direction is already roughly known.

Core workflow

1. Infer the request shape

Extract the minimum design signals first:

  • product type,
  • industry,
  • style keywords,
  • target platform,
  • implementation stack.

If the user does not specify a stack, default to html-tailwind.

2. Generate the design system first

Use the helper script to produce a compact design recommendation:

python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "<product_type> <industry> <keywords>" --design-system -p "Project Name"

This produces:

  • recommended style direction,
  • palette family,
  • typography direction,
  • interaction / visual effects,
  • landing or layout bias,
  • anti-patterns to avoid.

If the work spans multiple turns or pages, persist the design system:

python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "<query>" --design-system --persist -p "Project Name"
python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "<query>" --design-system --persist -p "Project Name" --page "dashboard"

This creates:

  • design-system/MASTER.md
  • optional page-level override notes under design-system/pages/

3. Pull targeted guidance only when needed

Use a focused search instead of loading everything at once:

python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "glassmorphism dark" --domain style
python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "animation accessibility" --domain ux
python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "real-time dashboard" --domain chart
python3 "${CLAUDE_PLUGIN_ROOT}/skills/ui-ux-pro-max/scripts/search.py" "elegant luxury serif" --domain typography

Read the full file on GitHub · 137 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 137 lines · 48 tokens per session scan A bfc986f07475

Subscribe to this mod's changes

ui-ux-pro-max is a skill published in the GitHub repository Galaxy-Dawn/claude-scholar (5,419 stars, last pushed 15d ago), licensed MIT. It adds 48 tokens to every session and 984 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.