html-email-builder

html-email-builder is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 96 tokens per session (1,748 once invoked), scanned A, original, MIT.

A generator for HTML newsletters that work across major email clients such as Gmail and Outlook.

In plain words
What is it for?
Use it to create company updates, product announcements, marketing emails, event invitations, and article digests.
Why use it?
It helps keep newsletter layouts consistent while supporting common structures such as columns, banners, article cards, images, and buttons.

Skill for Claude CodeCodex

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

Good fit Use it to create company updates, product announcements, marketing emails, event invitations, and article digests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/serejaris/kimi-skills/html-email-builder
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 serejaris/kimi-skills --skill html-email-builder
Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-skills

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 html-email-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/html-email-builder/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/html-email-builder)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/html-email-builder"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/html-email-builder/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 html-email-builder

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/html-email-builder"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/html-email-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,748 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.00096 $0.01748
Opus 5 $0.00048 $0.00874
Sonnet 5 $0.00019 $0.00350
Haiku 4.5 $0.00010 $0.00175

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

Security

Grade A, and why

html-email-builder 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 1 executable file (scripts/generate_newsletter.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/html-email-builder/SKILL.md · 229 lines

How it starts

The opening of the file, as written. The whole thing — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Newsletter Composer

生成专业的 HTML 邮件 Newsletter,完全兼容 Gmail、Outlook、Apple Mail 等主流邮件客户端。采用 table 布局 + inline CSS 方案,确保在所有客户端中渲染一致。

使用场景

  • 公司内部周报 / 月报
  • 产品更新公告
  • 营销推广邮件
  • 活动邀请函
  • 内容摘要 / 文章推荐

布局类型(语义标签)

layout 字段是一个语义标签,用于标注邮件的用途类型,帮助你选择合适的 section 组合。实际的邮件结构由 sections 数组中的模块类型决定。

布局标签 推荐的 section 组合 适用场景
single-column hero_banner + text + cta 通用 Newsletter、公告
two-column two_column + image_text 产品对比、图文并排
hero hero_banner + text + cta 营销邮件、活动邀请
digest 多个 article_card 内容摘要、文章推荐

支持的内容模块

模块类型 说明
hero_banner 全宽 Banner 大图,可叠加标题文字
text 纯文本段落,支持标题
image_text 图文混排(图片+文字并排)
cta 行动号召按钮
divider 分隔线
quote 引用块
article_card 文章卡片(图+标题+摘要+链接)
two_column 双栏内容区域

工作流程

第一步:收集用户需求

向用户了解以下信息:

  1. 邮件用途:周报?公告?营销?(决定布局推荐)
  2. 内容结构:有哪些模块?(标题、正文、图片、按钮等)
  3. 品牌风格:主色调、Logo、公司名称
  4. 具体内容:各模块的文本、图片链接、按钮链接

第二步:生成配置文件

根据用户需求,创建 JSON 配置文件。配置格式如下:

{
  "layout": "single-column",
  "theme": {
    "primary_color": "#2563EB",
    "secondary_color": "#1E40AF",
    "accent_color": "#F59E0B",
    "bg_color": "#F3F4F6",
    "content_bg_color": "#FFFFFF",
    "text_color": "#1F2937",
    "muted_text_color": "#6B7280",
    "font_family": "Arial, Helvetica, sans-serif",
    "max_width": 600
  },
  "header": {
    "logo_url": "",
    "logo_alt": "Company",
    "title": "Newsletter Title",
    "subtitle": ""
  },
  "preheader": "邮件预览文本,显示在收件箱列表中",
  "sections": [
    {
      "type": "text",
      "title": "Section Title",
      "body": "Section content in HTML or plain text."
    }
  ],
  "footer": {
    "company": "Company Name",
    "address": "Company Address",
    "unsubscribe_url": "#",
    "extra_links": [
      {"text": "Website", "url": "#"}
    ]
  }
}

第三步:生成 HTML

将配置写入临时 JSON 文件,然后运行生成脚本:

python scripts/generate_newsletter.py --input config.json --output newsletter.html

Read the full file on GitHub · 229 lines

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 · 229 lines · 96 tokens per session scan A db563e82c587

Subscribe to this mod's changes

html-email-builder is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 96 tokens to every session and 1,748 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

offensive-wifi

Wireless / 802.11 attack methodology for red team engagements and wireless security assessments. Covers monitor-mode setup, WPA/WPA2-PSK handshake capture and PMKID attacks, WPA3 SAE downgrade and Dragonblood, WPA-Enterprise (EAP) attacks (MSCHAPv2 cracking, EAP-TLS cert theft, evil-twin RADIUS), Karma / Known Beacons…

SnailSploit/Claude-Red · 183 tokens

syndic

Gère un parc de copropriétés en France avec vue portfolio consolidée. Couvre administration, comptabilité (décret 2005, plan comptable copro, 5 annexes), assemblées générales (convocation, PV, notification), appels de fonds, travaux, fournisseurs, recouvrement d'impayés et transition de syndic. Maîtrise les majorités…

romainsimon/paperasse · 194 tokens

offensive-bluetooth-classic

Bluetooth Classic (BR/EDR) attack methodology — device discovery, service enumeration via SDP, LMP/L2CAP layer attacks, legacy PIN cracking (BlueBorne / KNOB), Bluetooth file-transfer abuse (BlueSnarfing legacy), unauthenticated profile abuse (HSP, HFP, OPP), and modern relevance against older industrial / automotive…

SnailSploit/Claude-Red · 123 tokens

design-md-validator

Validate DESIGN.md files against the official Google specification using the @google/design.md CLI linter. Works with local files. Use when the user wants to lint a DESIGN.md, check spec compliance, find broken token references, verify WCAG contrast ratios, diff two versions, export tokens to Tailwind or DTCG format…

fabricioctelles/skills · 170 tokens

agent-wiki

Incremental LLM-friendly wiki generator for Obsidian note vaults. Use when: (1) Building wiki from notes, (2) Ingesting notes to wiki, (3) Obsidian LLM wiki, (4) Incremental knowledge base management. Triggers: 'build wiki from notes', 'ingest notes to wiki', 'Obsidian LLM wiki', 'incremental knowledge base'.

Dianel555/DSkills · 89 tokens

agent-ready-oauth-protected-resource

Sub-skill de agent-ready-cloudflare: Implement OAuth Protected Resource Metadata.

fabricioctelles/skills · 23 tokens