Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

extract-theme提取主题

Agent Skill

extract-theme 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

291

周安装

12

GitHub Stars

1

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/occult/extract-theme --skill extract-theme

简介

用于提取网站视觉主题并转换为 tweakcn 兼容的 shadcn/ui CSS 主题(HSL 格式)。

  • 通过 Chrome DevTools 脚本整理 typography、spacing、colors 等设计 token。
  • 用户需在目标站点打开控制台运行脚本,结果以 JSON 形式复制到剪贴板。
  • 安装前建议确认权限范围,注意依赖浏览器环境和可能的网络访问行为。
  • extract-theme 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Extract Website Theme to Tweakcn

Extract a website's visual theme using Chrome DevTools and convert it to a tweakcn-compatible shadcn/ui CSS theme (HSL format).

Step 1: Provide Extraction Script

Tell the user to open Chrome DevTools Console on the target site and run this script. It copies a full theme JSON to their clipboard:

(() => {
  const res = { typography: [], spacing: [], gradients: [], shadows: [], borders: [], radii: [], colors: new Set() };
  const typoMap = new Map(), spacingMap = new Map(), radiiMap = new Map();
  document.querySelectorAll('*').forEach(el => {
    const s = getComputedStyle(el);
    const tk = `${s.fontSize}|${s.fontWeight}|${s.lineHeight}|${s.letterSpacing}`;
    if (!typoMap.has(tk)) typoMap.set(tk, { fontSize: s.fontSize, fontWeight: s.fontWeight, lineHeight: s.lineHeight, letterSpacing: s.letterSpacing, tag: el.tagName, sample: el.textContent?.trim().slice(0, 30) });
    ['padding','margin','gap'].forEach(p => { const v = s[p]; if (v && v !== '0px' && v !== 'normal') spacingMap.set(v, (spacingMap.get(v)||0)+1); });
    if (s.backgroundImage !== 'none' && s.backgroundImage.includes('gradient')) res.gradients.push(s.backgroundImage);
    if (s.boxShadow !== 'none') res.shadows.push(s.boxShadow);
    if (s.borderStyle !== 'none' && s.borderWidth !== '0px') res.borders.push(`${s.borderWidth} ${s.borderStyle} ${s.borderColor} r:${s.borderRadius}`);
    if (s.borderRadius !== '0px') radiiMap.set(s.borderRadius, (radiiMap.get(s.borderRadius)||0)+1);
    [s.color, s.backgroundColor, s.borderColor].forEach(c => { if (c && c !== 'rgba(0, 0, 0, 0)') res.colors.add(c); });
  });
  res.typography = [...typoMap.values()].sort((a, b) => parseFloat(b.fontSize) - parseFloat(a.fontSize)).slice(0, 20);
  res.spacing = [...spacingMap.entries()].sort((a, b) => b[1] - a[1]).slice(0, 20).map(([v, c]) => ({ value: v, count: c }));
  res.radii = [...radiiMap.entries()].sort((a, b) => b[1] - a[1]).slice(0, 10).map(([v, c]) => ({ radius: v, count: c }));
  res.gradients = [...new Set(res.gradients)];
  res.shadows = [...new Set(res.shadows)];
  res.borders = [...new Set(res.borders)].slice(0, 15);
  res.colors = [...res.colors];
  copy(JSON.stringify(res, null, 2));
  console.log('Copied full theme extraction to clipboard');
})();

Also ask the user for a screenshot of the site for visual reference, and the site URL if public.

Step 2: Analyze Extraction Data

When the user pastes the JSON output, analyze all sections:

Colors

Identify and categorize every color by role:

  • Background: The dominant dark or light page background
  • Foreground: Default text color (usually white on dark, dark on light)
  • Card: Elevated surface color (slightly lighter/darker than background)
  • Popover: Dropdown/popover bg (slightly elevated from card)
  • Primary: Main brand/action color (CTAs, active nav, links)
  • Secondary: Supporting surface color (nav pills, tags, badges)
  • Muted: Subdued backgrounds (search bars, disabled states, inactive)
  • Muted foreground: Placeholder text, hints, secondary text
  • Accent: Highlight/emphasis color (can differ from primary, e.g. neon vs standard)
  • Destructive: Error/danger/alert color
  • Border: Default border color (often transparent white/black on dark/light)
  • Input: Input field border or background
  • Ring: Focus ring / glow color

Typography

  • Font family (ask if not already provided)
  • Base font size and line-height
  • Weight distribution: identify which weights are used (400, 500, 600, 700)
  • Letter-spacing patterns
  • Type scale: map sizes to heading levels (h1-h4, body, small, caption)

Spacing

  • Identify the base spacing unit (most frequent value)
  • Note the spacing scale: common increments (4px, 8px, 12px, 16px, etc.)
  • Common padding patterns (e.g. "8px 16px" for buttons)

Border Radii

  • Find the dominant radius by usage count
  • Map to shadcn radius scale: --radius controls sm = radius - 4px, md = radius - 2px, lg = radius, xl = radius + 4px
  • Pick --radius so the dominant site radius maps to the most-used shadcn class (usually md or lg)
  • Note if the site uses pill shapes (9999px) for specific elements

Gradients

  • List key gradients with their CSS values
  • Categorize: gold/premium, brand, overlay/fade, glow

Shadows

  • Elevation shadows (soft, medium, heavy)
  • Glow effects (colored shadows, neon outlines)
  • Inset shadows

Borders

  • Border color patterns (solid vs transparency-based)
  • Border widths

Step 3: Generate Tweakcn Theme

Output a complete CSS theme with :root (light) and .dark sections using HSL format (space-separated, no commas, e.g. 153 52% 44%).

Required tokens to map:

--background, --foreground
--card, --card-foreground
--popover, --popover-foreground
--primary, --primary-foreground
--secondary, --secondary-foreground
--muted, --muted-foreground
--accent, --accent-foreground
--destructive, --destructive-foreground
--border, --input, --ring
--chart-1 through --chart-5
--radius
--sidebar, --sidebar-foreground
--sidebar-primary, --sidebar-primary-foreground
--sidebar-accent, --sidebar-accent-foreground
--sidebar-border, --sidebar-ring

Guidelines:

  • Convert all rgb() values to HSL
  • If the site is dark-mode dominant, still generate a light companion using the same hues at lighter values
  • For chart colors, use 5 distinct vibrant colors from the site's palette
  • Sidebar variants should be slightly darker (dark mode) or lighter (light mode) than main background

Step 4: Provide Summary

After the theme CSS, include:

Mapping Table

A table showing each token, the source element/color from the site, and the hex value.

Extra Elements

Things tweakcn can't capture but define the site's visual identity:

  • Font family + weights to import (with Google Fonts URL if applicable)
  • Key gradients with full CSS values
  • Glow/shadow effects for hover states
  • Special radius patterns (e.g. pill buttons)
  • Notable spacing or typography conventions
  • Any distinctive visual patterns (gold borders, neon outlines, transparency layers)

Conversion Reference

RGB to HSL

To convert rgb(r, g, b) to HSL: normalize to 0-1, find min/max, compute hue from channel differences, saturation from lightness, output as H S% L%.

Common Patterns

  • rgba(255, 255, 255, 0.1) on dark bg → use a solid color that's ~10% lighter than background for borders
  • rgba(0, 0, 0, 0.1) on light bg → use a solid color that's ~10% darker than background
  • Neon/glow borders → map to --ring for focus states
  • Gold gradients → note separately, suggest using for badges/premium indicators

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.63%
按下载量换算37

Claude

28.19%
按下载量换算27

Cursor

20.4%
按下载量换算19

Gemini CLI

9.32%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills