name: content-pipeline description: Orchestrate full content workflow (planning→writing→design→publishing→tracking). Use when automating full content workflow from planning to publishing. author: 무펭이 🐧
Meta skill orchestrating the entire content production flow.
1. seo-content-planner → Keyword analysis & content planning
2. copywriting → Write body text
3. cardnews → Generate card news images
4. social-publisher → Publish to Instagram/SNS
5. Performance tracking → Feedback via daily report
content-pipeline --auto --topic "Photobooth usage tips"
# Stage 1: Planning
content-pipeline --step plan --topic "Photobooth trends"
# Stage 2: Write body (auto-loads previous stage event)
content-pipeline --step write
# Stage 3: Generate card news
content-pipeline --step design
# Stage 4: Publish
content-pipeline --step publish
# Stage 5: Check performance
content-pipeline --step track
Each stage automatically reads previous stage results from events/ directory:
seo-plan-YYYY-MM-DD.json → copywriting inputcontent-draft-YYYY-MM-DD.json → cardnews inputcontent-published-YYYY-MM-DD.json → daily-report input--auto — Auto-execute all stages--step <plan|write|design|publish|track> — Execute specific stage only--topic <topic> — Specify content topic--skip-review — Proceed without approval at each stage (risky)--auto)events/seo-plan-YYYY-MM-DD.jsonevents/content-draft-YYYY-MM-DD.jsonevents/cardnews-ready-YYYY-MM-DD.jsonevents/content-published-YYYY-MM-DD.json--step)Request approval at each stage: - Review plan → approve → next - Review draft → approve → next - Preview card news → approve → publish
content-pipeline --auto --topic "Preserving wedding memories with photobooths"
Result: - SEO keywords: "wedding photobooth", "wedding photo booth", etc. - Blog draft 1200 chars - Card news 5 slides (1024x1024 square) - Auto-publish to Instagram (tag collaboration account) - Include publishing results in daily report
# 1. Review plan first
content-pipeline --step plan --topic "University festival photobooths"
# → Generate events/seo-plan-2026-02-14.json
# 2. Write draft after reviewing plan
content-pipeline --step write
# → Generate events/content-draft-2026-02-14.json
# 3. Design after reviewing draft
content-pipeline --step design
# → Generate 5 card news slides
# 4. Publish after final review
content-pipeline --step publish
--auto mode proceeds automatically through stages, so always verify content before final publish想要更强大的技能插件,就来小葱技能站7w4.net看看吧。
events/content-published-YYYY-MM-DD.json automatically collected by daily-reportAs this is a meta skill, during actual implementation:
1. Check events/seo-plan-*.json → load if exists
2. If not exists, execute seo-content-planner
3. Pass results as input to next skill
4. Generate event file at each stage
Author: 무펭이 🐧
Created: 2026-02-14
Status: Production Ready
这是一个帮助内容团队自动化完成从选题规划、文案撰写、图片设计到社交媒体发布全流程的工具。它提供了两种工作模式,既可以一键自动完成所有步骤,也可以分步审批后执行,适合需要批量生产内容的营销团队使用。文档说明详细且配有示例,但作为一个编排型工具,它依赖于其他专业技能(如SEO优化、图片生成等)的配合才能工作,单靠它本身无法完成所有功能。质量表现中规中矩,文档完整但缺乏代码实现文件,可能影响实际使用效果。