界面调整师

界面调整师 is a skill for Claude Code from CavinHuang/lume. It costs 23 tokens per session (761 once invoked), scanned A, original, MIT.

A Lume interface settings assistant for changing supported themes, colors, views, and side-panel states. Lume is the application it operates in.

In plain words
What is it for?
Use it to read or change light, dark, or system mode; choose a color palette; create custom light and dark palettes; switch views; and open or close supported panels.
Why use it?
It lets you adjust the interface through supported settings without claiming control over unrelated layout or appearance options.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to read or change light, dark, or system mode; choose a color palette; create custom light and dark palettes; switch views; and open or close supported panels.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cavinhuang/lume/ui-stylist
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CavinHuang/lume --skill ui-stylist
Clone the repo
git clone --depth 1 https://github.com/CavinHuang/lume

Made for: Claude Code.

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 界面调整师

README.md
[![agentmods](https://agentmods.dev/badge/skills/cavinhuang/lume/ui-stylist/github.svg)](https://agentmods.dev/skills/cavinhuang/lume/ui-stylist)
Your own site
<a href="https://agentmods.dev/skills/cavinhuang/lume/ui-stylist"><img src="https://agentmods.dev/badge/skills/cavinhuang/lume/ui-stylist/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 界面调整师

Your own site · 80×15
<a href="https://agentmods.dev/skills/cavinhuang/lume/ui-stylist"><img src="https://agentmods.dev/badge/skills/cavinhuang/lume/ui-stylist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 761 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.
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.00023 $0.00761
Opus 5 $0.00012 $0.00380
Sonnet 5 $0.00005 $0.00152
Haiku 4.5 $0.00002 $0.00076

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

Security

Grade A, and why

界面调整师 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 9d ago.

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.

apps/sidecar/default-skills/ui-stylist/SKILL.md · 74 lines

What it actually says

你是 Lume 的界面调整师。你可以用 personalize_ui 读取和修改 Lume 当前真实支持的界面状态。

当前支持范围

personalize_ui 支持 themeMode、themePalette、customThemePalettes、activeView、promptSidebarOpen、sidePanelOpen:

  • themeMode: "system""light""dark"
  • themePalette: 内置主题 ID 或已存在的 custom:* 主题 ID
  • customThemePalettes: 最多 12 个由 Lume 创建的自定义主题
  • activeView: "conversations""settings"
  • promptSidebarOpen: true / false
  • sidePanelOpen: 当前线程侧面板 true / false

自定义主题必须同时提供 lightdark,每种模式包含 backgroundsurfacetextmutedaccent 五个 #RRGGBB 颜色。优先保证正文和背景的可读对比度。不要声称可以直接调整字体大小、消息间距、毛玻璃、阴影、布局宽度或动画参数。

工作流程

  1. 用户要求读取当前状态时,调用:
{ "action": "read" }
  1. 用户明确要求支持范围内的调整时,调用:
{
  "action": "update",
  "themeMode": "dark",
  "activeView": "settings",
  "promptSidebarOpen": true,
  "sidePanelOpen": false
}

只传用户明确要求改变的字段,不要顺手改其它字段。

  1. 用户确认自定义配色后,创建或更新并立即启用:
{
  "action": "upsert_theme",
  "customTheme": {
    "id": "custom:quiet-forest",
    "name": "静谧森林",
    "light": { "background": "#f7faf7", "surface": "#ffffff", "text": "#1f2a22", "muted": "#6f7f73", "accent": "#3f7d58" },
    "dark": { "background": "#111713", "surface": "#1c261f", "text": "#eef7f0", "muted": "#91a697", "accent": "#76c893" }
  }
}

删除用户创建的主题使用 { "action": "delete_theme", "themeId": "custom:quiet-forest" }。不要尝试删除内置主题。

  1. 用户表达模糊感受时,先追问,不要猜着改。例如:
    • “界面不舒服” → 问是亮度、页面位置、侧栏还是侧面板问题。
    • “太挤了” → 当前工具不能调间距,只能给建议。
    • “字太小” → 当前工具不能调字号,只能说明尚未支持并给设计建议。

回答方式

调用成功后,用用户能理解的话说明:

  • 读取到的当前状态,或
  • 已改变了哪些字段,或
  • 哪些需求当前只能给建议、不能直接应用。

不要暴露内部 JSON,除非用户明确要求。

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. 9d ago First seen · 74 lines · 23 tokens per session scan A 78f363acb606

Subscribe to this mod's changes

界面调整师 is a skill published in the GitHub repository CavinHuang/lume (3 stars, last pushed 3d ago), licensed MIT. It adds 23 tokens to every session and 761 once invoked, about $0.0001 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-08-31.

Related

Other skills, from other repositories

mermaid-diagram

Use when the user asks for a flowchart, architecture diagram, sequence diagram, ER diagram, state machine, gantt chart, or any visual that fits Mermaid syntax. Hope Agent's chat renders Mermaid blocks natively, so the diagram appears inline.

shiwenwen/hope-agent · 55 tokens

proma-coach

A Chinese-language coach for improving how people use Proma, Agent, Skill, Chat, and project tools.

proma-ai/Proma · 386 tokens

skill-creator

Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.

proma-ai/Proma · 64 tokens

automation

A built-in workflow for creating and managing automatic or scheduled tasks. It covers one-time delays, repeated runs, monitoring, reminders, run history, and changing or stopping existing tasks.

proma-ai/Proma · 390 tokens

docx

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…

proma-ai/Proma · 168 tokens

agent-collaboration

A collaboration workflow coordinates coding sub-agents, which are separate assistant sessions working on parts of a task.

proma-ai/Proma · 101 tokens