Introduction

When working on UI schemes, design reviews, or frontend collaboration within DSH (DeepSeek Harness), a common requirement is to incorporate style, color palettes, fonts, UX specifications, and technical stack experience into the same conversation. Existing approaches often involve separate research, calling external design tools, or introducing online data sources; however, if the environment requires offline operation, Chinese language support, and minimal dependencies, this process can be less smooth.

Below is an introduction to dsh-ui-ux-pro-max. It is a UI/UX design intelligent library plugin for DeepSeek Harness that packages common design materials offline directly into the plugin, allowing the model to invoke them directly within DSH conversations.

What is it

dsh-ui-ux-pro-max is a DSH plugin released by maintainer ChenYiming-aaa under the MIT license. It provides three model tools: design_recommend, design_review, and design_search.

Its core positioning is: built-in 84 styles, 192 color palettes, 74 font groups, 99 UX specifications, 25 charts, and 22 tech stacks, all offline and Chinese-priority.

Core Capabilities

Three Model Tools

  • design_recommend: Used to generate a complete design system. Suitable for starting from a requirement description to obtain a systematic design result.
  • design_review: Used to check interfaces against UX specifications, returning a list of issues and modification suggestions based on severity.
  • design_search: Used to retrieve from the built-in database, such as specific items like styles, React performance specifications, etc.

Offline and Chinese-First

The plugin database is completely built-in, with zero network, zero Python, and zero third-party runtime dependencies. It includes 300+ Chinese terms mapped to an English dictionary and CJK segmentation. Inputting Chinese descriptions like “Financial SaaS Data Dashboard” allows for retrieval and recommendations.

Design Knobs

The plugin supports variance, motion, and density design knobs.

Implementation

The plugin is a pure JavaScript rewrite using the BM25 search engine and a design system generator. Data and algorithms have been ported from nextlevelbuilder/ui-ux-pro-max-skill (MIT). See THIRD_PARTY_NOTICES.md for details on third-party data and algorithm sources.

Installation and Enablement

Version Requirements

  • Node: ^22.19.0 || >=24.0.0
  • Verified on DSH 0.1.1-rc.2 (@deepseek-ai/dsh, dsh-tools, dsh-skill 0.1.1-rc.2)

Installation via Plugin Market

The plugin has been published to npm with the package name dsh-ui-ux-pro-max@1.0.2. You can search and install it in the DSH Desktop plugin market; if using CLI, execute:

dsh plugin --profile desktop add --save-exact dsh-ui-ux-pro-max@1.0.2

This command adds the fixed-version plugin to the DSH Desktop profile.

If the terminal prompts that the dsh command cannot be found, first install the DSH CLI:

npm install -g @deepseek-ai/dsh

DSH Desktop does not add the dsh command to the PATH. When encountering a “command not found” error, open a new terminal and execute the command.

Typical Usage

The following examples are taken from usage scenarios in the plugin documentation.

Generate a Design Scheme

You can ask like this:

Help me with a design scheme for my Financial SaaS Data Dashboard

The model will call design_recommend and return a complete design system.

Review Login Page

You can ask like this:

Check the login page or mobile login form for UX issues

The model will call design_review and return a list of issues and modification suggestions based on severity.

Retrieve Styles and Performance Specs

You can ask like this:

I want a glassmorphism dark style, how to do React navigation performance

The model will call design_search to retrieve styles and React performance specifications.

Applicable Scenarios and Notes

Suitable scenarios include:

  • Quickly generating UI design schemes within DSH conversations;
  • Performing UX checks on interfaces such as login pages and mobile forms;
  • Retrieving entries related to styles, color schemes, fonts, charts, and tech stacks;
  • Plugin environments requiring Chinese output, offline operation, and minimal dependencies.

Notes:

  • The plugin runs with the permissions of the current dsh process; source code and license should be checked before installation.
  • The license is MIT; third-party data and algorithm sources are based on THIRD_PARTY_NOTICES.md.
  • Confirm that the Node version satisfies ^22.19.0 || >=24.0.0 before installation.
  • This plugin targets the DSH plugin ecosystem. The community directory is an independent site and should not be described as an official DeepSeek / Dark Flow (Fellow AI) app store.

Links

GitHub: https://github.com/ChenYiming-aaa/dsh-ui-ux-pro-max