article-poster-generator

article-poster-generator is a skill for Claude Code, Codex from tengj/article-poster-generator. It costs 104 tokens per session (8,154 once invoked), scanned A, original, MIT.

A tool for turning a long article into several shareable vertical infographic posters. It splits the content into pages using predefined visual styles and page layouts, then renders them as high-resolution PNG images.

In plain words
What is it for?
Use it to create five to eight posters from an article, such as a cover, content pages or other supported layouts. Choose from styles including dark tech, cyberpunk, minimal business, black-and-gold and dark green.
Why use it?
It removes the need to design each information card and arrange the article manually. The structured pages make dense written material easier to scan and share visually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to create five to eight posters from an article, such as a cover, content pages or other supported layouts. Choose from styles including dark tech, cyberpunk, minimal business, black-and-gold and dark green.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tengj/article-poster-generator/article-poster-generator
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 tengj/article-poster-generator --skill article-poster-generator
Clone the repo
git clone --depth 1 https://github.com/tengj/article-poster-generator

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 article-poster-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/tengj/article-poster-generator/article-poster-generator.svg)](https://agentmods.dev/skills/tengj/article-poster-generator/article-poster-generator)
Your own site
<a href="https://agentmods.dev/skills/tengj/article-poster-generator/article-poster-generator"><img src="https://agentmods.dev/badge/skills/tengj/article-poster-generator/article-poster-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,154 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00104 $0.08154
Opus 5 $0.00052 $0.04077
Sonnet 5 $0.00021 $0.01631
Haiku 4.5 $0.00010 $0.00815

Measured 8d ago against content hash 85cfa6c296f3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

article-poster-generator scanned grade A with 1 finding 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 8d ago.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **链接**:用 `curl` 或浏览器抓取网页正文
SKILL.md · 651 lines

How it starts

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

Article Poster Generator

概述

将长文章自动拆分为5-8张精美信息图海报(2400×3600竖版),支持5种视觉风格 × 6种页面布局。 使用 Python + Playwright 将 HTML 模板渲染为高清 PNG 图片。

风格模板

风格ID 名称 配色方案 设计特征
dark-tech 暗夜科技 深色底(#1a1a1a) + 猩红(#cc4444) CNC金属质感,单色红系(猩红+珊瑚+银灰),暗外框+亮顶框内发光
cyberpunk 赛博朋克 深蓝紫底(#0a0a1a) + 霓虹青(#00d4ff) + 品红(#ff007c) 4px切角,霓虹发光,HUD装饰码,80/15/5色彩法则
minimal-biz 极简清新 浅绿底(#F0F7F7) + 深色文字(#1C2226) + 深青绿(#1A7D7D) 白卡片+阴影,清爽专业
guochao 黑金奢华 深褐底(#1a0a0a) + 暗金(#d4a853) / 复古红(#c43a31) 邀请函内框,冷白标题+金色点缀,黑金红银四色纪律
dark-green 暗夜青绿 深色底(#0C1316) + 青绿强调(#3DB8B0) 卡片微高光,赛博系辅助色,极客气质

6种页面布局

1. cover — 封面页

大标题 + 副标题 + 核心要点列表。标题要大,占页面视觉主体。

{
  "type": "cover",
  "slide_number": "00",
  "tag": "今日速评",
  "tag_icon": "⚠",
  "title": "主标题(10字以内最佳)",
  "subtitle": "副标题或来源说明",
  "highlights": ["核心要点1", "核心要点2", "核心要点3"]
}

2. content — 卡片内容页

经典纵排卡片,每张有彩色左边框。适合并列的多个知识点/要点

{
  "type": "content",
  "slide_number": "01",
  "tag": "分类标签",
  "tag_icon": "📋",
  "title": "这页的主题",
  "sections": [
    {
      "title": "小节标题",
      "content": "正文内容(50-100字为佳)",
      "highlight": "需要高亮的关键句(可选)",
      "border_color": "red"
    }
  ]
}

3. steps — 步骤流程页

大编号圆球 + 连接线,适合按步骤操作的教程/流程

{
  "type": "steps",
  "slide_number": "02",
  "tag": "操作步骤",
  "tag_icon": "⚡",
  "title": "三步搞定",
  "steps": [
    {
      "title": "步骤标题",
      "content": "步骤说明(40-80字)"
    }
  ]
}

4. grid — 网格页

2列网格布局,顶部彩色边框。适合踩坑/技巧/对比/特性列表

{
  "type": "grid",
  "slide_number": "03",
  "tag": "避坑指南",
  "tag_icon": "⚠",
  "title": "四个常见坑",
  "cells": [
    {
      "icon": "❌",
      "title": "单元格标题",
      "content": "说明文字(30-60字)"
    }
  ]
}

5. quote — 大字金句页

居中大字金句 + 下方解释卡片。适合核心观点/名言/关键结论突出展示。

{
  "type": "quote",
  "slide_number": "04",
  "tag": "核心观点",
  "tag_icon": "💬",
  "quote": "一句话核心观点(20字以内最震撼)",
  "source": "来源或补充说明(可选)",
  "details": [
    {
      "label": "标签名",
      "text": "详细解释(40-60字)"
    }
  ]
}

Read the full file on GitHub · 651 lines

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. 8d ago First seen · 651 lines · 104 tokens per session scan A 85cfa6c296f3

Subscribe to this mod's changes

article-poster-generator is a skill published in the GitHub repository tengj/article-poster-generator (24 stars, last pushed 4mo ago), licensed MIT. It adds 104 tokens to every session and 8,154 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens