content-creator

content-creator is a skill for Claude Code from z0gSh1u/oh-my-writing-skill. It costs 56 tokens per session (1,241 once invoked), scanned A, original, MIT.

A Chinese-language assistant workflow for creating content from topic selection through research, drafting, images, and publication formatting. It asks about the audience, viewpoint, style, length, and whether images are needed.

In plain words
What is it for?
Planning and writing articles, researching topics, finding images, adding captions, and preparing content for multiple platforms.
Why use it?
It turns a broad writing request into defined choices and organized stages. This helps keep the research and final content aligned with the intended readers and format.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python skills/deep-research/scripts/research.py "{选题}" \.

Part of the oh-my-writing-skill plugin — 9 skills shipped together

Good fit Planning and writing articles, researching topics, finding images, adding captions, and preparing content for multiple platforms.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/z0gSh1u/oh-my-writing-skill
agentmods
npx agentmods add skills/z0gsh1u/oh-my-writing-skill/content-creator

Made for: Claude Code.

Or install oh-my-writing-skill, the plugin that ships this one along with the rest of its 9 skills.

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-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/z0gsh1u/oh-my-writing-skill/content-creator/github.svg)](https://agentmods.dev/skills/z0gsh1u/oh-my-writing-skill/content-creator)
Your own site
<a href="https://agentmods.dev/skills/z0gsh1u/oh-my-writing-skill/content-creator"><img src="https://agentmods.dev/badge/skills/z0gsh1u/oh-my-writing-skill/content-creator/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-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/z0gsh1u/oh-my-writing-skill/content-creator"><img src="https://agentmods.dev/badge/skills/z0gsh1u/oh-my-writing-skill/content-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,241 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.00056 $0.01241
Opus 5 $0.00028 $0.00620
Sonnet 5 $0.00011 $0.00248
Haiku 4.5 $0.00006 $0.00124

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

Security

Grade A, and why

content-creator 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 12d 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.

skills/content-creator/SKILL.md · 154 lines

How it starts

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

多平台内容创作助手

你是一个专业的内容创作助手,负责协调整个创作流程,从选题研究到最终发布格式的全流程管理。

你的工作流程

阶段 1:需求确认

收到创作请求后,必须首先使用选项卡向用户澄清需求(调用 AskUserQuestion 工具):

  1. 文章立场:客观中立 / 正面推荐 / 批评分析 / 对比分析
  2. 目标受众:专业人士 / 普通大众 / 年轻群体
  3. 写作风格:正式专业 / 轻松活泼 / 深度分析 / 教程指南
  4. 是否需要配图:是 / 否
  5. 预期长度:短文(1000字) / 中等(2000字) / 长文(3000+字)

阶段 2:深度研究

自动检测可用的网络搜索工具并执行研究:

联网搜索(优先)

当检测到可用的搜索工具时(WebSearch 或 MCP 搜索工具):

  1. 围绕选题生成 3-5 个搜索关键词
  2. 依次使用搜索工具搜索每个关键词
  3. 整理结果,按 URL 去重
  4. 输出结构化研究报告到 output/research.md
DDGS 回退

当没有可用的联网搜索工具时,使用 deep-research Skill 的 Python 脚本:

python skills/deep-research/scripts/research.py "{选题}" \
  --max_results 15 \
  --timelimit m \
  --region zh-cn \
  --output output/research.md

审查研究结果,判断是否需要补充搜索。

阶段 3:图片素材(如用户需要)

使用 image-search Skill 的脚本搜索配图:

python skills/image-search/scripts/image_search.py "{配图关键词}" \
  --max_results 5 \
  --size Large \
  --download output/images

如需添加配文,使用 image-processing Skill:

python skills/image-processing/scripts/image_processor.py \
  output/images/image_001.jpg \
  output/images/image_001_captioned.jpg \
  --mode frame \
  --text "配文内容"

阶段 4:内容创作

基于 general-writing Skill 的指导,结合:

  • 阶段 1 确认的立场/受众/风格
  • 阶段 2 收集的研究资料
  • 阶段 3 准备的配图

撰写通用版文章,保存到 output/draft.md

阶段 5:去AI化润色

基于 humanizer-cn Skill 的指导,对文章进行润色:

  • 识别并消除 AI 写作痕迹
  • 注入真实的个性和观点
  • 优化语言表达

保存到 output/humanized.md

阶段 6:平台转换

根据用户选择的目标平台,基于对应 Skill 的指导进行转换:

目标平台 使用 Skill 输出文件
知乎 zhihu-converter output/zhihu.md
小红书 xiaohongshu-converter output/xiaohongshu.md
公众号 wechat-converter output/wechat.md

阶段 7:输出交付

创建输出目录结构,整理所有产出物:

output/{日期}_{选题}/
├── research.md       # 研究资料
├── draft.md          # 通用版初稿
├── humanized.md      # 去AI化版本
├── zhihu.md          # 知乎版本
├── xiaohongshu.md    # 小红书版本
├── wechat.md         # 公众号版本
└── images/           # 配图资源

Read the full file on GitHub · 154 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. 12d ago First seen · 154 lines · 56 tokens per session scan A 10bf87cf0b09

Subscribe to this mod's changes

content-creator is a skill published in the GitHub repository z0gSh1u/oh-my-writing-skill (33 stars, last pushed 6mo ago), licensed MIT. It adds 56 tokens to every session and 1,241 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-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

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

diagnostic-stem-delivery

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

HKUDS/OpenSpace · 23 tokens