Content Machine — Autonomous Affiliate Content Pipeline
What this skill does
Turns keywords into published SEO articles automatically:
- 1. Research (Lena) — SERP analysis, content gaps, Amazon product check
- Brief — structured content plan per keyword
- Write (Felix) — 2500+ word article with AEO/GEO optimization
- Quality Gate — 20-point automated check (H1, word count, FAQ, images, links)
- Deploy — Cloudflare Workers/Pages with cache purge
When to use
- - Building niche affiliate sites at scale
- Automating content production with multi-agent systems
- Maintaining quality standards across large article batches
Pipeline flow
CODEBLOCK0
AEO/GEO Rules (built-in)
Every article must have:
- - H2 starts with 2-3 sentence quotable answer (bold)
- Min. 1 comparison table with concrete numbers
- FAQPage JSON-LD schema
- dateModified schema
- Neutral ranking (no self-promotional listicles)
Quality Gate checks
- - H1 present and keyword-rich
- Min. 2500 words
- FAQPage schema
- 4 images (1 eager + 3 lazy)
- 5+ internal links
- Amazon affiliate links with correct tag
- Author box (last element)
- Meta description (max 155 chars)
Setup
- 1. Create
KEYWORD-BACKLOG.md with target keywords - Configure site paths and Amazon affiliate tags
- Set up Cloudflare API token
- Run pipeline via heartbeat or cron
File structure
CODEBLOCK1
内容机器 — 自主联盟营销内容流水线
该技能的功能
自动将关键词转化为已发布的SEO文章:
- 1. 研究(Lena)— SERP分析、内容缺口、亚马逊产品检查
- 简报 — 每个关键词的结构化内容方案
- 撰写(Felix)— 2500+字文章,含AEO/GEO优化
- 质量关卡 — 20项自动检查(H1、字数、FAQ、图片、链接)
- 部署 — Cloudflare Workers/Pages,附带缓存清理
使用场景
- - 大规模构建利基联盟网站
- 使用多智能体系统自动化内容生产
- 在大量文章批次中保持质量标准
流水线流程
关键词-待办清单.md
↓
Lena(研究智能体)→ 内容简报.md
↓
Felix(内容智能体)→ 文章.html
↓
质量关卡(python3 quality_gate.py)
↓ 通过
部署(wrangler deploy)
↓
站点地图更新 + 缓存清理
AEO/GEO规则(内置)
每篇文章必须包含:
- - H2以2-3句可引用答案开头(加粗)
- 至少1个含具体数字的对比表格
- FAQPage JSON-LD架构
- dateModified架构
- 中立排名(无自我推广列表文章)
质量关卡检查项
- - H1存在且关键词丰富
- 至少2500字
- FAQPage架构
- 4张图片(1张急切加载 + 3张延迟加载)
- 5个以上内部链接
- 含正确标签的亚马逊联盟链接
- 作者信息框(最后一个元素)
- 元描述(最多155字符)
设置步骤
- 1. 创建包含目标关键词的KEYWORD-BACKLOG.md
- 配置站点路径和亚马逊联盟标签
- 设置Cloudflare API令牌
- 通过心跳或定时任务运行流水线
文件结构
/你的站点/
ARTIKEL-VORLAGE.html ← 文章模板
quality_gate.py ← 质量检查器
wrangler.toml ← Cloudflare配置
sitemap.xml ← 自动更新
/工作空间/
KEYWORD-BACKLOG.md ← 关键词队列
脚本/
pipeline_controller.py
post_article.py
generatefelixbrief.py