content-pipeline
Meta skill orchestrating the entire content production flow.
Pipeline Stages
CODEBLOCK0
Usage
Full Auto-execution
CODEBLOCK1
Individual Stage Execution
CODEBLOCK2
Event Integration
Each stage automatically reads previous stage results from events/ directory:
- -
seo-plan-YYYY-MM-DD.json → copywriting input - INLINECODE2 → cardnews input
- INLINECODE3 → daily-report input
Options
- -
--auto — Auto-execute all stages - INLINECODE5 — Execute specific stage only
- INLINECODE6 — Specify content topic
- INLINECODE7 — Proceed without approval at each stage (risky)
Execution Flow
Auto Mode (--auto)
- 1. Execute seo-content-planner → Generate INLINECODE9
- Execute copywriting with generated keywords/topic → Generate INLINECODE10
- Generate cardnews based on draft → Generate INLINECODE11
- Execute social-publisher with images + caption → Generate INLINECODE12
- Auto-include publishing results in daily-report
Stage-by-stage Mode (--step)
Request approval at each stage:
- - Review plan → approve → next
- Review draft → approve → next
- Preview card news → approve → publish
Examples
Generate Photobooth Tips Content
CODEBLOCK3
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
Manual Verification by Stage
CODEBLOCK4
Cautions
- -
--auto mode proceeds automatically through stages, so always verify content before final publish - Images must be JPG format (PNG may cause Instagram errors)
- After publishing,
events/content-published-YYYY-MM-DD.json automatically collected by daily-report
Implementation Guide
As this is a meta skill, during actual implementation:
- 1. Check
events/seo-plan-*.json → load if exists - If not exists, execute seo-content-planner
- Pass results as input to next skill
- Generate event file at each stage
Author: 무펭이 🐧
Created: 2026-02-14
Status: Production Ready
content-pipeline
元技能,协调整个内容生产流程。
流水线阶段
- 1. seo-content-planner → 关键词分析与内容规划
- copywriting → 撰写正文
- cardnews → 生成卡片新闻图片
- social-publisher → 发布至Instagram/SNS
- Performance tracking → 通过日报反馈
使用方法
全自动执行
bash
content-pipeline --auto --topic 拍照亭使用技巧
单阶段执行
bash
阶段1:规划
content-pipeline --step plan --topic 拍照亭趋势
阶段2:撰写正文(自动加载上一阶段事件)
content-pipeline --step write
阶段3:生成卡片新闻
content-pipeline --step design
阶段4:发布
content-pipeline --step publish
阶段5:查看效果
content-pipeline --step track
事件集成
每个阶段自动从 events/ 目录读取上一阶段结果:
- - seo-plan-YYYY-MM-DD.json → copywriting 输入
- content-draft-YYYY-MM-DD.json → cardnews 输入
- content-published-YYYY-MM-DD.json → daily-report 输入
选项
- - --auto — 自动执行所有阶段
- --step — 仅执行指定阶段
- --topic — 指定内容主题
- --skip-review — 跳过各阶段审批直接执行(有风险)
执行流程
自动模式(--auto)
- 1. 执行 seo-content-planner → 生成 events/seo-plan-YYYY-MM-DD.json
- 使用生成的关键词/主题执行 copywriting → 生成 events/content-draft-YYYY-MM-DD.json
- 基于草稿生成卡片新闻 → 生成 events/cardnews-ready-YYYY-MM-DD.json
- 使用图片+文案执行 social-publisher → 生成 events/content-published-YYYY-MM-DD.json
- 自动将发布结果纳入日报
分阶段模式(--step)
每个阶段需请求审批:
- - 审核规划 → 批准 → 下一步
- 审核草稿 → 批准 → 下一步
- 预览卡片新闻 → 批准 → 发布
示例
生成拍照亭技巧内容
bash
content-pipeline --auto --topic 用拍照亭保存婚礼回忆
结果:
- - SEO关键词:婚礼拍照亭、婚礼照片亭等
- 博客草稿1200字
- 卡片新闻5页(1024x1024方形)
- 自动发布至Instagram(标记合作账号)
- 将发布结果纳入日报
分阶段手动审核
bash
1. 先审核规划
content-pipeline --step plan --topic 大学庆典拍照亭
→ 生成 events/seo-plan-2026-02-14.json
2. 审核规划后撰写草稿
content-pipeline --step write
→ 生成 events/content-draft-2026-02-14.json
3. 审核草稿后进行设计
content-pipeline --step design
→ 生成5张卡片新闻页
4. 最终审核后发布
content-pipeline --step publish
注意事项
- - --auto 模式会自动按阶段执行,因此在最终发布前务必检查内容
- 图片必须为JPG格式(PNG可能导致Instagram错误)
- 发布后,events/content-published-YYYY-MM-DD.json 会被日报自动收集
实现指南
由于这是一个元技能,实际实现时:
- 1. 检查 events/seo-plan-*.json → 如存在则加载
- 如不存在,执行 seo-content-planner
- 将结果作为输入传递给下一个技能
- 每个阶段生成事件文件
作者:무펭이 🐧
创建日期:2026-02-14
状态:生产就绪