← All runbooks
nextlevelbuilder / ui-ux-pro-max

UI/UX Pro Max

Apply comprehensive UI/UX design intelligence to web and mobile applications by leveraging a curated database of 50+ styles, 161 color palettes, 57 font pairings, 161 product type patterns, 99 UX guidelines, and 25 chart types across 10 technology stacks (React, Next.js, Vue, Sve

agent claude-codemodel claude-sonnet-4-6snapshot python312-uveval programmatic8 stepsv1.0.0

Deploy UI/UX Pro Max to your jetty.io

One-click installs this runbook into a collection on your Jetty account. You can run it from the Spot dashboard, schedule it, or pipe inputs in via the API.

The shape of the run

8 steps · start to finish.

  1. 1
    Step 1

    Environment Setup

    Verify the environment and clone the skill repository if the search scripts are needed.

    # Verify Python 3 is available
    python3 --version || { echo "ERROR: python3 not found"; exit 1; }
    
    # Create output directory
    mkdir -p /app/results
    
    # Clone or update the skill repo (required for search scripts)
    if [ ! -d "/app/results/work/ui-ux-pro-max-skill" ]; then
      git clone --depth=1 https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git \
        /app/results/work/ui-ux-pro-max-skill
    fi
    
    SKILL_ROOT="/app/results/work/ui-ux-pro-max-skill"
    SEARCH_CMD="python3 $SKILL_ROOT/src/ui-ux-pro-max/scripts/search.py"
    
    echo "Environment ready"
    echo "Search command: $SEARCH_CMD"
    

    Confirm the search script is functional:

    $SEARCH_CMD "saas" --domain product -n 3 2>/dev/null || echo "Search script unavailable — proceed with embedded rules"
    

  2. 2
    Step 2

    Analyze User Requirements

    Identify which design triggers apply to the current task. Use the following criteria to determine invocation level:

  3. 3
    Step 3

    Iterate on Design System Generation (max 3 rounds)

    Generate a complete design system by querying the search tool for style, color, typography, and product-type recommendations. Combine results into a coherent design system document.

  4. 4
    Step 4

    Apply Priority-Ranked UX Rules

    Evaluate the UI against the 10 priority categories. For each category, record violations and recommendations.

  5. 5
    Step 5

    Generate Component Specifications

    For each required component, write implementation-ready specifications using the chosen stack and design system.

  6. 6
    Step 6

    Pre-Delivery Checklist

    Run through the pre-delivery checklist and record all findings.

  7. 7
    Step 7

    Write Summary and Validation Report

    Write `/app/results/summary.md`:

  8. 8
    Step 8

    Write Validation Report

    Write `/app/results/validation_report.json`: