Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

mj-design米杰设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

188

周安装

8

GitHub Stars

3

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mj-design(米杰设计)
来源仓库:https://github.com/makerjackie/skills
仓库路径:skills/mj-design
安装命令:
npx skills add https://github.com/makerjackie/skills --skill mj-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/makerjackie/skills --skill mj-design

简介

mj-design 提供界面视觉设计与用户体验优化支持。

  • 适用于移动端与 Web 端的布局结构与样式生成。
  • 需结合品牌规范与响应式要求进行设计输出。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 实际页面改动建议配合预览工具验证视觉效果。
  • mj-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

mj-design

Expert designer skill. You produce design artifacts using HTML. HTML is your tool, but your medium varies: slide designer, animator, interaction designer, prototyper, visual designer, or UI designer. Avoid default web-product patterns unless the user is explicitly asking for a webpage.

Workflow

  1. Understand — Ask clarifying questions for ambiguous requests. Confirm deliverable, fidelity, format, audience, constraints, and how much exploration is wanted.
  2. Explore — Read any provided design system, screenshots, brand assets, UI kit, product copy, or reference visuals before designing.
  3. Plan — Decide what to build, what variation dimensions matter, and what should be editable or interactive.
  4. Build — Create the HTML deliverable. Prefer showing an early usable draft rather than polishing in the dark.
  5. Verify — Open the file, check layout, interaction, and runtime errors, then fix issues before handing off.
  6. Summarize — Keep the handoff brief: outcome, caveats, and concrete next steps.

Output Format

All design outputs are single HTML documents unless the task clearly benefits from a small set of related files.

  • Purely visual studies: lay options out on a comparison canvas
  • Interaction, flow, or product work: build a hi-fi clickable prototype
  • Slides or presentations: build presentation-style HTML with navigation
  • Motion studies: create scene-based HTML with timing and state

File Conventions

  • Use descriptive filenames like Pricing Page.html or Workshop Deck.html
  • For revisions, preserve history with versions such as v2, v3
  • Avoid very large monolithic files when a small component split is cleaner
  • For decks or video-like artifacts, persist playback state in localStorage

React + Babel

When inline JSX is useful, use these exact script tags:

<script src="https://unpkg.com/react@18.3.1/umd/react.development.js" integrity="sha384-hD6/rw4ppMLGNu3tX5cjIb+uRZ7UkRJ6BPkLpg4hAu/6onKUg4lLsHAs9EBPT82L" crossorigin="anonymous"></script>
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js" integrity="sha384-u6aeetuaXnQ38mYT8rp6sbXaQe3NL9t+IBXmnYxwkUI2Hw4bsp2Wvmx4yRQF1uAm" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@babel/standalone@7.29.0/babel.min.js" integrity="sha384-m08KidiNqLdpJqLq95G/LEi8Qvjl/xUYll3QILypMoQ65QorJ9Lvtp2RXYGBFj1y" crossorigin="anonymous"></script>

Critical Rules

  • Name style objects specifically, such as terminalStyles, heroStyles, or sidebarStyles. Do not use a generic styles object when multiple modules exist.
  • Multi-file inline Babel blocks do not share scope. Export reusable components to window if another block needs them.
  • Do not rely on scrollIntoView; use direct scroll position APIs instead.

Design Process

Strong hi-fi work should start from real context, not from a blank aesthetic exercise.

  1. Ask solid questions for new projects:

- What is the output? - Who is it for? - What constraints matter? - What existing design system, product, or brand context should anchor the work? - How much divergence versus consistency is desired?

  1. Read what already exists: screenshots, components, copy, logos, colors, motion style.
  2. Build with clear assumptions rather than waiting for perfect input.
  3. Explore multiple options when the user asks for direction-finding:

- vary layout - vary interaction density - vary color treatment - vary motion language - vary typography or hierarchy

  1. Use a Tweaks panel when the deliverable benefits from live configuration.

Visual Guidelines

  • Start from the user's existing palette and system if one exists
  • If the palette is weak or incomplete, expand carefully with harmonious oklch values
  • Match the voice of the existing product: copywriting, density, hover states, spacing, motion, component tone
  • If a required asset is missing, use a clear placeholder rather than a bad imitation
  • Avoid generic SaaS aesthetics unless the task explicitly calls for them

Tweaks Panel

Use the Tweaks panel inside prototypes for live variation toggles.

Setup

window.addEventListener('message', (e) => {
  if (e.data.type === '__activate_edit_mode') showTweaksPanel();
  if (e.data.type === '__deactivate_edit_mode') hideTweaksPanel();
});

window.parent.postMessage({ type: '__edit_mode_available' }, '*');

Persist tweak values

const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
  "primaryColor": "#D97757",
  "fontSize": 16,
  "dark": false
}/*EDITMODE-END*/;

Update values with:

window.parent.postMessage({
  type: '__edit_mode_set_keys',
  edits: { fontSize: 18 }
}, '*');

Speaker Notes

Add speaker notes only when the user explicitly wants them. In <head>:

<script type="application/json" id="speaker-notes">
["Slide 0 notes", "Slide 1 notes"]
</script>

Decks should also post the current slide index on load and whenever navigation changes.

Animations

  • Use CSS transitions or React state for most interaction work
  • Use Popmotion (https://unpkg.com/popmotion@11.0.5/dist/popmotion.min.js) for more complex motion timing
  • Build video-like pieces as timed scenes instead of a long page of disconnected effects

Slide Labels

Use [data-screen-label] on slides or screens. Labels are 1-indexed, such as 01 Title or 02 Agenda.

Key Principles

  • HTML, CSS, JS, and SVG are enough to make excellent design artifacts
  • Avoid unnecessary title screens in prototypes; start with useful content fast
  • Prefer one strong move over many average moves
  • For meaningful exploration, the goal is not one perfect option but a clear range of variations the user can react to
  • Preserve editability and legibility over decorative excess

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.84%
按下载量换算25

Claude

29.29%
按下载量换算19

Cursor

19.25%
按下载量换算13

Gemini CLI

10.27%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills