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

site-factory现场工厂

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

1

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bluewaves-creations/bluewaves-skills --skill site-factory

简介

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

  • 适合在需要围绕仓库状态或协作事项进行整理时使用。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 安装命令:npx skills add https://github.com/bluewaves-creations/bluewaves-skills --skill site-factory。
  • 建议安装前确认权限和维护状态,避免触发不必要的命令执行。

SKILL.md

Site Factory

Build single-page websites from markdown content. Works out of the box with a neutral default brand, or optionally use a docs-factory brand kit for custom styling.

Workflow

Step 0: Choose Brand Slug

Ask the user for a brand slug (subdomain) and site name (URL path).

  1. Suggest options based on context — e.g. bluewaves, mycompany, or something relevant to the content
  2. Validate slug format: must match ^[a-z0-9]([a-z0-9-]*[a-z0-9])?$, 1–63 characters
  3. Validate site name format: lowercase letters, numbers, and hyphens only
  4. Check availability: python3 scripts/site_api.py info {brand} {site-name} A 404 response means the name is available. Any other response means it's taken.
  5. Confirm the chosen slug and site name with the user before proceeding

Step 1: Resolve Brand Kit (Optional)

By default, use the built-in neutral brand — skip directly to Step 3. The default brand uses a gray palette, system fonts, and the Bluewaves logo. See references/default-brand.md for details.

If the user explicitly requests a docs-factory brand kit, read its assets/manifest.json:

cat plugins/docs-factory/skills/brand-{BRAND}/assets/manifest.json

Available brand kits:

  • brand-bluewaves — Merriweather typography, brown sand primary (#B78A66)
  • brand-wave-artisans — Nunito Sans typography, gray minimalist palette
  • brand-decathlon — Inter typography, blue/purple primary (#3643BA)

Step 2: Map Design Tokens to CSS (Brand Kit Only)

Skip this step when using the default brand — values are already baked into skeleton.html.

When using a docs-factory brand kit, use references/tokens-to-css.md to map manifest.json tokens to CSS custom properties. Key mappings:

Token pathCSS propertyExample
tokens.colors.text-heading--color-heading#B78A66
tokens.colors.background-page--bg-page#FFFFFF
tokens.colors.highlight--color-highlight#FF375F
tokens.type_scale.h1.size_pt--font-size-h143px (32pt x 1.333)
fonts.heading.bold@font-face Brand-Headingfonts/heading-bold.ttf

Step 3: Generate HTML

Using references/skeleton.html as the template:

Default brand:

  • The :root block already contains hardcoded default values — no CSS overrides needed
  • Just fill the content placeholders: {{TITLE}}, {{BRAND_NAME}}, {{TOC_ITEMS}}, {{CONTENT}}, {{ATTACHMENT_ITEMS}}, {{DATE}}{{TITLE}} is right-aligned in the header
  • Copy assets/default-logo.svg to build/assets/images/logo.svg

Brand kit override:

  • Replace the entire :root block with brand-specific CSS custom property values
  • Add @font-face blocks for the brand's custom fonts (heading, body, mono)
  • Update font-family declarations to reference "Brand-Heading", "Brand-Body", "Brand-Mono" with system font fallbacks
  • Copy the brand logo SVG to build/assets/images/logo.svg

Content structure (same for both paths):

  1. Header: Logo (left) + document title (right)
  2. Navigation: Auto-generated TOC from H2/H3 headings in the markdown
  3. Main content: Convert markdown to HTML — use semantic tags (<h2>, <p>, <ul>, <table>, <pre><code>, <blockquote>)
  4. Attachments sidebar: Download links for any attached files (PDFs, images, data files)
  5. Footer: Small logo + brand name + current date

Step 4: Build Output Directory

Create a build/ directory with this structure:

Default brand:

build/
├── index.html          # Generated HTML with inline CSS
├── assets/
│   └── images/         # Content images + default-logo.svg as logo.svg
└── files/              # Downloadable attachments (PDFs, data files)

No fonts/ directory is needed — the default brand uses system fonts.

Brand kit:

build/
├── index.html          # Generated HTML with brand CSS overrides
├── assets/
│   ├── images/         # Content images + brand logo as logo.svg
│   └── fonts/          # Brand fonts (.ttf files from manifest)
└── files/              # Downloadable attachments (PDFs, data files)

Copy assets:

  • Logo: Default → assets/default-logo.svg; Brand kit → brand logo SVG from manifest
  • Fonts (brand kit only): Copy from brand kit assets/fonts/ to build/assets/fonts/
  • Images: Copy content images to build/assets/images/
  • Attachments: Copy any attached files to build/files/

Step 5: Verify

Check the build directory:

  • index.html exists and is valid HTML5
  • All referenced images and files are present
  • Default brand: No @font-face blocks, system fonts used, no build/assets/fonts/ directory
  • Brand kit: CSS custom properties populated with brand values, all referenced fonts present
  • TOC links match heading IDs
  • Responsive layout works (check @media queries in CSS)

Report the build directory contents and total size.

Output

The build/ directory is ready for publishing with site-publisher:

# Default brand (no --brand-kit flag)
python3 scripts/site_api.py publish ./build {brand} {site-name} --title "Document Title"

# With brand kit (optional)
python3 scripts/site_api.py publish ./build {brand} {site-name} --title "Document Title" --brand-kit path/to/manifest.json

Notes

  • The default brand requires zero external dependencies — works in standalone ZIP mode
  • When using a brand kit, all font files must be copied locally (no CDN references) for offline support
  • Images should be optimized before inclusion (reasonable file sizes)
  • The HTML is a single page with anchor-based navigation via TOC
  • CSS custom properties enable the login page to share brand colors

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.28%
按下载量换算24

Claude

28.56%
按下载量换算19

Cursor

18.8%
按下载量换算12

Gemini CLI

10.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills