Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

style-creator风格创造者

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

3

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b-open-io/gemskills --skill style-creator

简介

style-creator 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 通过 npx skills add 命令从指定仓库安装,具体用法需结合 README 进一步确认。
  • 安装前建议确认权限范围、维护状态及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Style Creator

Add new art styles to the gemskills style library with properly crafted prompts, reference tiles, and registry entries.

When to Use

  • Adding a new art style to the library
  • Creating a regional or cultural aesthetic style
  • Defining a custom visual style with a reference tile
  • Batch-adding multiple related styles

Important: Working Directory

All file edits and commands operate relative to ${CLAUDE_PLUGIN_ROOT} (the plugin root).

Sharp may fail in the plugin cache. If bun run optimize fails, the tile generation script auto-optimizes. If both fail, use sips as a fallback:

sips -s format png -s formatOptions best <tile-path> --out <tile-path>

Workflow

Follow these steps in order. Do not skip steps.

Step 1: Define the Style

Gather from the user:

  • Name: Human-readable name (e.g. "Miami Aesthetic")
  • ID: Lowercase with hyphens (e.g. miami-aesthetic)
  • Short name: 3-4 character abbreviation (e.g. miam)
  • Category: One of: traditional, digital, illustration, photography, design, retro, technique, decorative, creative, cultural

If the user provides only a name or concept, derive the ID and short name automatically. Choose the category that best fits.

Step 2: Write promptHints

The promptHints field is a comma-separated string of descriptors prepended to user prompts when the style is used. Focus on:

  • Color palette keywords
  • Texture and material descriptors
  • Technique and medium references
  • Mood and atmosphere terms
  • Compositional patterns

Keep to 8-12 descriptors. These guide the model when generating user images, not the tile itself.

Step 3: Write the tilePrompt

Apply these principles — do NOT read external reference files, the rules are right here:

Core principle: Texture vs Object. The tile must transfer materiality/medium/technique, NOT a scene. A tile showing "a cyberpunk city" will bleed city elements into every user prompt. A tile showing "neon refractions on chrome with film grain" transfers only the visual physics.

6-part prompt structure:

  1. Full-bleed anchor: Full-bleed [style] filling the entire canvas
  2. Macro/texture anchor: extreme close-up macro texture, seamless pattern, abstract composition
  3. Style descriptors: Specific movements, artists, time periods
  4. Materiality/medium: What the art is "made of" — cracked canvas, halftone dots, VHS static, watercolor bleed
  5. Palette and lighting: chiaroscuro, pastel gradients, neon rim light, sepia tones
  6. Anti-container enforcers: Edge to edge, no frame, no border, no [style-specific items]

Category tips:

  • Abstract styles: Focus on geometry and brushwork, avoid naming objects
  • Figurative styles (anime, comic): Generate the *ink and paper*, not a character. Use dense montage or extreme macro of brushwork
  • Photography: Focus on camera artifacts — grain, light leaks, vignette, bokeh
  • Design movements: Focus on repeating motifs and materials
  • Regional aesthetics: Color palette and textures, NOT photos of places. No buildings, streets, or landmarks.

Anti-container items to add based on style:

  • Paintings: no canvas, no easel, no gallery, no museum, no wall
  • Crafts: no hoop, no frame, no desk, no table
  • Photos: no letterbox, no black bars, no monitor, no screen
  • Textiles: no cloth edge, no fabric edge, no bed, no furniture

Step 4: Add to styles.json

Add the new style entry to the styles array in:

${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/assets/styles.json

Entry format:

{
  "id": "style-id",
  "shortName": "shrt",
  "name": "Style Name",
  "category": "category",
  "promptHints": "descriptor1, descriptor2, descriptor3",
  "tilePrompt": "Full-bleed ... Edge to edge, no frame, no border."
}

Verify the ID and short name are unique across all existing styles before adding.

Step 5: Generate the Tile

Generate the reference tile using the tile generation script:

bun run --cwd ${CLAUDE_PLUGIN_ROOT} ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/scripts/generate_tiles.ts --style <style-id>

This generates a 512x512 PNG tile at assets/tiles/<style-id>.png and auto-optimizes it.

If auto-optimization fails, try manually from the plugin root:

bun run ${CLAUDE_PLUGIN_ROOT}/optimize -- --file=skills/browsing-styles/assets/tiles/<style-id>.png

If sharp is unavailable, use sips:

sips -s format png -s formatOptions best ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/assets/tiles/<style-id>.png --out ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/assets/tiles/<style-id>.png

If the style benefits from a reference image (e.g. a regional aesthetic), use the generate-image script with --input:

bun run --cwd ${CLAUDE_PLUGIN_ROOT} ${CLAUDE_PLUGIN_ROOT}/skills/generate-image/scripts/generate.ts \
  "<tilePrompt text>" \
  --input /path/to/reference.jpg \
  --aspect 1:1 --size 1K \
  --output ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/assets/tiles/<style-id>.png

Step 6: Visual Verification

Do not read the generated tile back into context. Ask the user to visually inspect it. Common issues:

  • Not full-bleed? (frames, borders, containers, canvas edges)
  • Shows a scene instead of the aesthetic?
  • Wrong color palette?
  • Text, logos, or trademarked content?

If it fails, update the tilePrompt and regenerate.

Step 7: Update Counts

After adding styles, update the style count in these files:

  • ${CLAUDE_PLUGIN_ROOT}/README.md (style count mentions)
  • ${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json (description text and version bump)
  • ${CLAUDE_PLUGIN_ROOT}/skills/browsing-styles/SKILL.md (count)
  • ${CLAUDE_PLUGIN_ROOT}/skills/team-group-photo/SKILL.md (count)

Regenerate STYLES.md from the plugin root:

bun -e "
const root = process.env.CLAUDE_PLUGIN_ROOT;
const data = JSON.parse(require('fs').readFileSync(root + '/skills/browsing-styles/assets/styles.json', 'utf8'));
const styles = data.styles;
const cats = data.categories;
const grouped = {};
for (const s of styles) { if (!grouped[s.category]) grouped[s.category] = []; grouped[s.category].push(s); }
let md = '# Art Styles Reference\n\n' + styles.length + ' styles across ' + Object.keys(grouped).length + ' categories. Use \\\`--style <id>\\\` or \\\`--style <short>\\\` with any image generation skill.\n\n## Categories\n\n| Category | Count | Description |\n|----------|-------|-------------|\n';
for (const [cat, desc] of Object.entries(cats)) { md += '| ' + cat + ' | ' + (grouped[cat]?.length || 0) + ' | ' + desc + ' |\n'; }
md += '\n';
for (const [cat, desc] of Object.entries(cats)) { const items = grouped[cat] || []; if (!items.length) continue; md += '## ' + cat.charAt(0).toUpperCase() + cat.slice(1) + '\n\n| Tile | ID | Short | Name |\n|------|-----|-------|------|\n'; for (const s of items) { md += '| <img src=\"skills/browsing-styles/assets/tiles/' + s.id + '.png\" width=\"80\" /> | ' + s.id + ' | ' + s.shortName + ' | ' + s.name + ' |\n'; } md += '\n'; }
require('fs').writeFileSync(root + '/STYLES.md', md);
console.log('STYLES.md written with ' + styles.length + ' styles');
"

Step 8: Bump Version and Commit

Bump the patch version in ${CLAUDE_PLUGIN_ROOT}/.claude-plugin/plugin.json and commit all changes.

Context Discipline

Do not read generated tile images back into context. The scripts output file paths only. Ask the user to visually inspect tiles and provide feedback for iteration.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.25%
按下载量换算35

Claude

29.72%
按下载量换算30

Cursor

18.4%
按下载量换算19

Gemini CLI

8.36%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills