Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

theme-transformer主题转换器

Agent Skill

theme-transformer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

549

周安装

22

GitHub Stars

68

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/luongnv89/skills --skill theme-transformer

简介

theme-transformer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态与变更事项。

  • 适用于围绕仓库动态、代码审查和协作流程进行信息梳理。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Theme Transformer

Transform existing interfaces into a futuristic cyberpunk/neon design system while preserving usability and product clarity.

Default Style Profile

Use Neon Command Center as default visual baseline:

  • Futuristic + space + cyberpunk + digital-dark
  • Dark-first surfaces
  • Electric blue/cyan accents
  • Controlled glow (signal, not decoration)

Read these references when running this skill:

  • references/theme-tokens.md (core tokens + mapping rules)
  • references/neon-command-center.md (full style language)

If the target repo already has local branding docs (for example docs/branding.md, brand.md, design-system.md), read them first and prioritize user/project brand constraints.

Mandatory Safety Rule: branch first

Before changing any file, sync with remote and check the current branch. Only create a new branch if on main or master — otherwise continue on the existing branch (the user likely set it up already or is resuming work):

current_branch="$(git rev-parse --abbrev-ref HEAD)"
git fetch origin
git pull --rebase origin "$current_branch"

if [ "$current_branch" = "main" ] || [ "$current_branch" = "master" ]; then
  slug="$(echo "${THEME_SLUG:-theme-transform}" | tr '[:upper:] ' '[:lower:]-' | tr -cd 'a-z0-9-')"
  ts="$(date +%Y%m%d-%H%M%S)"
  git checkout -b "design/${slug}-${ts}"
fi

If pull/rebase conflicts happen, stop and resolve with user before edits.

Mandatory 4-step workflow (approval-gated)

Step 1) Analyze current style

Produce a concise style audit first.

Audit checklist:

  • Color system + contrast
  • Typography scale + readability
  • Spacing/radius/shadow consistency
  • Component states (buttons, inputs, nav, cards, tables, charts)
  • Motion behavior
  • Visual hierarchy / density

Output format:

  • Current strengths
  • Current inconsistencies
  • Migration risks

Do not implement changes before audit is shared.


Step 2) Propose full design transformation

Propose the transformed design for all major elements.

Must include:

  • Theme direction statement
  • Token updates (color/type/radius/shadow/motion)
  • Component-by-component transformation map
  • Before/after intent for key screens

Iterate until user is happy:

  • Ask for feedback
  • Adjust proposal
  • Repeat until explicit approval

No implementation before approval.


Step 3) Propose implementation plan (step-by-step)

Create a gradual execution plan with verifiable checkpoints.

Each task must include:

  • Goal
  • Files/components impacted
  • Expected visual result
  • Verification method (screenshot/storybook/page checks/contrast checks)
  • Rollback note

Plan quality rules:

  • Sequence: tokens -> foundations -> shared components -> pages
  • Small, reviewable increments
  • Include accessibility checks each phase

Iterate the plan with user until approved.

No execution before plan approval.


Step 4) Execute approved plan

Run incremental execution loop:

  1. Implement one task.
  2. Run checks/build.
  3. Provide verification instructions and/or screenshots.
  4. Ask for feedback and adjust if requested.

Continue until user confirms satisfaction.

Prerequisites

  • Git with write access to the repository (branching is mandatory before any file changes)
  • Reference files present: references/theme-tokens.md and references/neon-command-center.md in the repo; the skill reads these before generating any token proposals
  • Build tooling available: the project must be buildable locally (e.g., npm run build or equivalent) so the execution phase can verify changes compile without errors
  • Optional: an existing design system or branding doc (docs/branding.md, brand.md, design-system.md) — if present, the skill reads it first to honor brand constraints

Expected Output

After completing all four workflow steps on a React/Tailwind project, you should see:

  • A new git branch named design/theme-transform-<timestamp> with all changes committed
  • Updated design tokens file (e.g., tailwind.config.js, tokens.css, or equivalent) with the full Neon Command Center color, typography, radius, shadow, and motion values
  • Updated shared component files (buttons, inputs, nav, cards, tables, charts) with the new visual treatment applied
  • Updated target pages/screens applying the theme end-to-end
  • A verification summary listing every changed file, the before/after intent, and instructions for visual QA (contrast ratios, focus states, responsive checks)

Edge Cases

  • No design token system exists: Introduce a minimal tokens file (CSS custom properties or JS theme object) and migrate existing hardcoded values into it before applying the new theme.
  • User provides a custom accent color: Derive primary-400 hover and glow alpha variants automatically; do not override bg/surface/text dark structure unless explicitly requested.
  • Project uses a CSS-in-JS runtime theme: Apply tokens through the runtime's theme API rather than static files; verify hot-reload picks up changes during execution.
  • Accessibility conflict: If a proposed neon color combination fails WCAG AA contrast, replace with a higher-contrast variant and note the substitution in the verification summary.
  • Existing local branding docs found: Treat them as hard constraints — do not override brand colors or typography unless the user explicitly asks.
  • Large codebase with hundreds of components: Scope Step 4 execution to the highest-traffic pages first; create a follow-up task list for remaining components rather than attempting everything in one pass.

Step Completion Reports

After completing each major step, output a status report in this format:

◆ [Step Name] ([step N of M] — [context])
··································································
  [Check 1]:          √ pass
  [Check 2]:          √ pass (note if relevant)
  [Check 3]:          × fail — [reason]
  [Check 4]:          √ pass
  [Criteria]:         √ N/M met
  ____________________________
  Result:             PASS | FAIL | PARTIAL

Adapt the check names to match what the step actually validates. Use for pass, × for fail, and to add brief context. The "Criteria" line summarizes how many acceptance criteria were met. The "Result" line gives the overall verdict.

Branch & Sync phase checks: Branch created, Remote synced, Working tree clean

Audit phase checks: Current styles analyzed, Components cataloged, Color palette extracted

Design phase checks: Theme proposed, Color scheme defined, User approved

Execution phase checks: Styles applied, Components updated, Visual consistency verified

Color customization (mandatory)

Theme colors must be adjustable based on user input.

Rules:

  • Keep dark structure by default (bg/surface/text).
  • Map user accent color(s) to neon action tokens.
  • Preserve semantic colors unless user requests custom semantics.

If user gives one color:

  • Use as primary-500
  • Auto-generate primary-400 (hover) and glow alpha variants

If user gives two colors:

  • 1st color = primary action
  • 2nd color = secondary accent/data highlights

If user provides full palette:

  • Respect provided palette; skip defaults

Deliverables (minimum)

  • Updated tokens/theme definitions (CSS/Tailwind/theme config)
  • Updated shared components
  • Updated target screens/pages
  • Verification summary (what changed + how to test)
  • Branch name + commit summary

Quality guardrails

  • Avoid unreadable neon-on-neon combinations
  • Avoid global glow overuse
  • Keep dense dashboard information scannable
  • Preserve focus states and keyboard accessibility
  • Prioritize usability over effects

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

32.65%
按下载量换算58

Codex

31.59%
按下载量换算56

Cursor

18.49%
按下载量换算33

Gemini CLI

9.7%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills