static-blog-deploy

static-blog-deploy is a skill for Claude Code, Codex from Morningstar202604/awesome-skillkit. It costs 10 tokens per session (873 once invoked), scanned A, original, Apache-2.0.

A deployment tool for static blogs, which are websites built into files before they are hosted. It supports Hexo, Hugo, GitHub Pages, GitLab Pages, Vercel, and Netlify.

In plain words
What is it for?
Use it to build and deploy blogs to a server, an S3 storage bucket, GitHub Pages, GitLab Pages, Vercel, or Netlify.
Why use it?
It avoids repeating build, upload, and hosting commands by hand, while dry-run mode shows the commands before they run.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build and deploy blogs to a server, an S3 storage bucket, GitHub Pages, GitLab Pages, Vercel, or Netlify.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/morningstar202604/awesome-skillkit/static-blog-deploy
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 Morningstar202604/awesome-skillkit --skill static-blog-deploy
Clone the repo
git clone --depth 1 https://github.com/Morningstar202604/awesome-skillkit

Made for: Claude Code, Codex.

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 static-blog-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/static-blog-deploy/github.svg)](https://agentmods.dev/skills/morningstar202604/awesome-skillkit/static-blog-deploy)
Your own site
<a href="https://agentmods.dev/skills/morningstar202604/awesome-skillkit/static-blog-deploy"><img src="https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/static-blog-deploy/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 static-blog-deploy

Your own site · 80×15
<a href="https://agentmods.dev/skills/morningstar202604/awesome-skillkit/static-blog-deploy"><img src="https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/static-blog-deploy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 873 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.00010 $0.00873
Opus 5 $0.00005 $0.00436
Sonnet 5 $0.00002 $0.00175
Haiku 4.5 $0.00001 $0.00087

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

Security

Grade A, and why

static-blog-deploy 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.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/static_blog_deploy.py, tests/test_static_blog_deploy.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/writing/blog/static-blog-deploy/SKILL.md · 103 lines

What it actually says

Static Blog Deploy

静态博客部署工具,支持主流静态站点生成器与托管平台。

支持平台

  • Hexohexo clean && hexo generate && hexo deploy
  • Hugohugo --minify + rsync/SSH/S3 同步
  • GitHub Pages — 推送到 gh-pages 分支或触发 GitHub Actions
  • GitLab Pages — 推送到 pages 分支或触发 CI
  • Vercelvercel --prod CLI 部署
  • Netlifynetlify deploy --prod CLI 部署

安全设计

  • 默认 dry-run:所有部署命令默认只打印将执行的命令,不真正运行;加 --execute 才真正运行。
  • 凭据隔离
    • SSH key / GitHub token / 云厂商密钥从环境变量读取
    • 绝不将密钥写入代码仓库

使用示例

# Hexo 部署
cd /path/to/hexo-blog
python static_blog_deploy.py hexo-deploy --execute

# Hugo 部署(同步到服务器)
cd /path/to/hugo-blog
python static_blog_deploy.py hugo-deploy --execute \
  --target user@host:/var/www/blog

# Hugo 部署(同步到 S3)
python static_blog_deploy.py hugo-deploy --execute \
  --target s3://my-bucket/blog

# GitHub Pages(推送到 gh-pages 分支)
cd /path/to/repo
python static_blog_deploy.py github-pages --execute \
  --method branch \
  --branch gh-pages \
  --commit-msg "chore: deploy"

# GitHub Pages(触发 GitHub Actions)
python static_blog_deploy.py github-pages --execute \
  --method actions \
  --workflow deploy.yml

# GitLab Pages
python static_blog_deploy.py gitlab-pages --execute --method branch

# Vercel 部署
export VERCEL_TOKEN="your_token"
python static_blog_deploy.py vercel-deploy --execute --scope my-team

# Netlify 部署
export NETLIFY_AUTH_TOKEN="your_token"
python static_blog_deploy.py netlify-deploy --execute --site my-site

认证

  • SSH/rsync:需配置 SSH key 免密登录
  • GitHub Actions:需 gh CLI 已认证(gh auth login
  • GitLab CI:需 GitLab Runner 已配置
  • Vercel:需 VERCEL_TOKEN 环境变量或 --token
  • Netlify:需 NETLIFY_AUTH_TOKEN 环境变量或 --auth
export VERCEL_TOKEN="xxx"
export NETLIFY_AUTH_TOKEN="xxx"

退出码

  • 0 成功
  • 1 参数错误或部署失败

依赖

  • Python 3.8+
  • 标准库
  • 对应 CLI 工具(hexo、hugo、git、vercel、netlify、aws、gh、rsync 等)
  • publish_common

相关技能

  • cross-post-orchestrator — 多平台编排
  • ai-cover-generator — AI 封面图生成(用于博客封面)
Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 103 lines · 10 tokens per session scan A 51b5706cae88

Subscribe to this mod's changes

static-blog-deploy is a skill published in the GitHub repository Morningstar202604/awesome-skillkit (1 stars, last pushed today), licensed Apache-2.0. It adds 10 tokens to every session and 873 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

github-pages-deployer

Deploy affiliate content to GitHub Pages for free hosting. Triggers on: "deploy to GitHub Pages", "host on GitHub Pages", "free hosting for my affiliate site", "push to GitHub Pages", "GitHub Pages setup", "deploy my landing page to GitHub", "host my bio link on GitHub", "free affiliate website hosting", "github pages…

Affitor/affiliate-skills · 120 tokens

github-pages-deployer

Deploy affiliate content to GitHub Pages for free hosting. Triggers on: "deploy to GitHub Pages", "host on GitHub Pages", "free hosting for my affiliate site", "push to GitHub Pages", "GitHub Pages setup", "deploy my landing page to GitHub", "host my bio link on GitHub", "free affiliate website hosting", "github pages…

Gingg7260/affiliate-skills · 120 tokens

netlify

Use when deploying or operating a site on Netlify — writing or fixing netlify.toml, authoring Functions or Edge Functions, redirects, rewrites and headers, env vars per deploy context, and shipping via the Netlify CLI. NOT deploying to Vercel (that is vercel).

ericrisco/rsc-harness · 63 tokens

frontmcp-deployment

Use when deploying, building for production, packaging, or shipping a FrontMCP server. Covers build targets (node, cli SEA binary, browser, embeddable SDK, mcpb archive for Claude Desktop, serverless) and deploying to Vercel (with Vercel KV), AWS Lambda (API Gateway, SAM, CDK), Cloudflare Workers (KV, D1, Durable…

agentfront/frontmcp · 210 tokens

domain-tls-routing

Diagnose domain resolution, TLS certificate provisioning, and reverse proxy routing issues. Use when a domain is not resolving, TLS certificates fail, proxy returns 502/503/504, or custom domains are stuck in pending status.

nixopus/nixopus · 50 tokens

failure-diagnosis

Diagnose deployment failures, container crashes, and networking issues using structured pattern matching on logs and container state. Use when a deployment fails, a container crashes or exits unexpectedly, or the app is unreachable after deployment.

nixopus/nixopus · 47 tokens