content-creation-publisher

content-creation-publisher is a skill for Claude Code, Codex from ufy2024/AuC. It costs 50 tokens per session (3,135 once invoked), scanned A, original, MIT.

A workflow that collects web pages, formats their content as Markdown, creates supporting illustrations, and publishes the result to platforms such as WeChat and X.

In plain words
What is it for?
Use it to save articles, papers, or news as Markdown, improve document layout, add visuals, and publish content.
Why use it?
It brings scattered content tasks into one process, from capturing a source to preparing and distributing an article.

Skill for Claude CodeCodex

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

Good fit Use it to save articles, papers, or news as Markdown, improve document layout, add visuals, and publish content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ufy2024/auc/content-creation-publisher
View source ↗ ufy2024/AuC
About the project

AuC is a Python framework for running a single AI agent with an asynchronous, pluggable reasoning loop, language-model adapters, permission levels, and observable events. It is used to build coding and conversational agents with tools, security checks, web interfaces, background jobs, evaluations, and isolated execution. The catalogue entries are skills for extending its agent workflow.

ufy2024/AuC · 1,090 stars · on GitHub

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 ufy2024/AuC --skill content-creation-publisher
Clone the repo
git clone --depth 1 https://github.com/ufy2024/AuC

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 content-creation-publisher

README.md
[![agentmods](https://agentmods.dev/badge/skills/ufy2024/auc/content-creation-publisher/github.svg)](https://agentmods.dev/skills/ufy2024/auc/content-creation-publisher)
Your own site
<a href="https://agentmods.dev/skills/ufy2024/auc/content-creation-publisher"><img src="https://agentmods.dev/badge/skills/ufy2024/auc/content-creation-publisher/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 content-creation-publisher

Your own site · 80×15
<a href="https://agentmods.dev/skills/ufy2024/auc/content-creation-publisher"><img src="https://agentmods.dev/badge/skills/ufy2024/auc/content-creation-publisher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,135 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 267
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium Agent Snooping · line 17
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
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.00050 $0.03135
Opus 5 $0.00025 $0.01568
Sonnet 5 $0.00010 $0.00627
Haiku 4.5 $0.00005 $0.00314

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

Security

Grade A, and why

content-creation-publisher 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 7d 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.

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

auc/skill_library/bundled/content-creation-publisher/SKILL.md · 452 lines

How it starts

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

内容创作与发布全流程

任务目标

  • 本技能用于:从内容采集到发布的完整工作流
  • 能力包含:
    • 网页内容提取转Markdown
    • Markdown格式化和排版优化
    • 智能文章配图
    • 多平台自动发布(微信公众号、X/Twitter)
  • 触发条件:用户需要采集、编辑、配图、发布内容

核心功能模块

模块1:内容采集(baoyu-url-to-markdown)

功能:将任意网页转换为干净的Markdown格式

使用场景

  • 采集文章、论文、新闻
  • 提取知识库内容
  • 保存网页内容

操作步骤

  1. 提供网页URL
  2. 选择捕获模式:
    • 自动模式:页面加载后立即捕获
    • 等待模式:需要登录或交互的页面
  3. 自动提取并转换为Markdown

技术实现

  • 使用Chrome CDP技术
  • 智能清理HTML标签
  • 保留文章结构和格式

模块2:格式优化(baoyu-format-markdown)

功能:格式化和优化Markdown文档

核心特性

  1. 自动格式化

    • 添加frontmatter(标题、日期、标签)
    • 调整标题层级
    • 优化列表和代码块
  2. 排版优化

    • 修复中文标点符号导致的**加粗bug
    • 自动在中文和英文之间添加空格
    • ASCII标点转全角引号
    • CJK字符间距优化
  3. 内容增强

    • 自动生成摘要
    • 添加目录
    • 优化段落结构

使用场景

  • 优化采集的内容
  • 格式化原创文章
  • 统一文档风格

模块3:智能配图(article-illustrator)

功能:分析文章内容,在需要视觉辅助的位置生成插图

配图类型

  • 信息补充型:数据可视化、流程图
  • 概念具象化:抽象概念的视觉表达
  • 引导想象型:场景描绘、氛围营造

配图风格(6种类型 × 8种风格):

  • 类型:infographic、scene、flowchart、comparison、framework、timeline
  • 风格:notion、elegant、warm、minimal、blueprint、watercolor、editorial、scientific

操作步骤

  1. 分析文章结构,识别需要配图的位置
  2. 为每个位置生成配图计划和提示词
  3. 使用图像生成能力创建插图
  4. 将图片插入到文章对应位置

模块4:多平台发布

4.1 微信公众号发布(baoyu-post-to-wechat)

功能:自动发布内容到微信公众号

发布模式

  1. 图文模式

    • 适合带图片的文章
    • 支持多图文
    • 自动处理图片上传
  2. 文章模式

    • 适合长文
    • 保留Markdown格式
    • 自动转换为公众号格式

操作方式

  • 浏览器模式(推荐):使用Chrome自动化
  • API模式:需配置WECHAT_APP_ID和WECHAT_APP_SECRET

操作步骤

  1. 准备Markdown内容和图片
  2. 选择发布模式(图文/文章)
  3. 自动打开浏览器并登录
  4. 自动填充内容并发布

4.2 X/Twitter发布(baoyu-post-to-x)

功能:自动发布内容到X(Twitter)

发布类型

  1. 普通推文

    • 支持文本 + 图片
    • 自动处理字数限制
    • 支持话题标签
  2. X Articles(长文)

    • 支持Markdown格式
    • 适合深度内容
    • 保留格式和排版

技术特点

  • 使用真实Chrome + CDP
  • 绕过反自动化检测
  • 支持多图上传

操作步骤

  1. 准备内容(文本/Markdown)
  2. 选择发布类型(推文/Articles)
  3. 自动打开浏览器并登录
  4. 自动发布内容

完整工作流

工作流1:网页文章采集与发布

1. 网页URL
   ↓
2. baoyu-url-to-markdown(提取内容)
   ↓
3. baoyu-format-markdown(格式优化)
   ↓
4. article-illustrator(智能配图)
   ↓
5a. baoyu-post-to-wechat(发布到微信)
   ↓
5b. baoyu-post-to-x(发布到X)

Read the full file on GitHub · 452 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. 7d ago First seen · 452 lines · 50 tokens per session scan A 434547a83dc2

Subscribe to this mod's changes

content-creation-publisher is a skill published in the GitHub repository ufy2024/AuC (1,090 stars, last pushed 1mo ago), licensed MIT. It adds 50 tokens to every session and 3,135 once invoked, about $0.0003 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

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