Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

content-pipeline-provisioner内容管道提供者

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

3,184

周安装

134

GitHub Stars

公开资料未说明

下载量

1,115
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:content-pipeline-provisioner(内容管道提供者)
来源仓库:https://github.com/olivimic/content-pipeline-provisioner
安装命令:
openclaw skills install content-pipeline-provisioner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install content-pipeline-provisioner

简介

自助式 AI 内容管道搭建工具,支持完全自动化内容生产。

  • 允许用户在自有 OpenClaw 实例上部署社交媒体内容引擎。
  • 适用于企业级内容运营与长期内容战略实施。content-pipeline-provisioner 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 提供端到端解决方案,涵盖创意生成至发布的全部环节。
  • 降低技术门槛,让非技术人员也能运行复杂内容系统。

SKILL.md

name
content-pipeline-provisioner
description
Self-serve AI content pipeline skill for OpenClaw. Sets up and runs a fully automated social media content engine on your own OpenClaw instance using your own API keys and accounts. Automates TikTok daily posts (AI-generated slides), Twitter/X 5 posts per day in your voice, newsletter 3x per week via MailerLite, daily blog post published to your site, and morning/evening Telegram briefings. Use when setting up a content pipeline for any product or brand, or when asked to 'provision pipeline for [product]', 'set up content pipeline', 'run my content engine', 'start posting for [product]', 'go live [slug]', 'pause pipeline', or 'resume pipeline'.

Content Pipeline Provisioner

Automated content engine for OpenClaw. One command sets up daily TikTok, Twitter, newsletter, blog, and briefings for any product — all on your machine, your accounts, your data.

This Skill Is Self-Hosted

You control everything. Your APIs, your accounts, your posting schedule. Nothing goes through Xero. For a fully done-for-you version (Xero runs it for you), see xeroaiagency.com/services.

What Gets Automated

ChannelFrequencyRequirement
TikTok slideshow1/dayPostiz account + TikTok connected
Twitter/X posts5/dayPostiz account + Twitter connected
NewsletterMon/Wed/FriMailerLite API key + subscriber group
Blog post1/daySupabase + Netlify (see setup-checklist.md)
Morning briefing7 AM dailyTelegram bot token + chat ID
Evening briefing8 PM dailyTelegram bot token + chat ID

Before You Start

Complete the setup checklist at references/setup-checklist.md. Takes ~30 minutes. You need:

  • OpenClaw installed and running
  • Larry skill installed (clawhub install larry or download from larrybrain.com) — this is the TikTok posting engine this skill runs on top of
  • Postiz account with TikTok + Twitter connected (postiz.com — free plan works)
  • OpenAI API key (for image + text generation)
  • MailerLite API key + group ID (for newsletter)
  • Telegram bot token + chat ID (for briefings)
  • Supabase + Netlify (optional — only needed for blog auto-publishing)

Trigger Commands

What you sayWhat happens
provision pipeline for [product]Start interactive setup for a new product
go live [slug]Flip test posts to public after you've reviewed them
pause pipeline [slug]Disable all crons for a product
resume pipeline [slug]Re-enable crons for a product
pipeline statusShow all active pipelines and their cron health

Provisioning Flow

You: "provision pipeline for [product name]"
  → Evo asks 6 questions (2 min)
  → Generates config.json + voice guide
  → Creates system folder in your workspace
  → Registers 6 crons (SELF_ONLY — not public yet)
  → Runs one test generation
  → You review: "looks good" or "redo [feedback]"
  → You say: "go live [slug]"
  → Evo flips all crons to PUBLIC
  → Pipeline runs daily from that point

Step-by-Step Execution

Step 1 — Ask 6 questions

When triggered, ask the user in sequence (do not dump all at once):

  1. "What's the product name and what does it do? (2-3 sentences)"
  2. "Who is your target audience?"
  3. "Describe your brand voice in 3 words (e.g. bold, educational, casual)"
  4. "Any topics that are completely off-limits?"
  5. "What are your TikTok and Twitter/X usernames?"
  6. "What timezone should posts go out in? (e.g. America/New_York)"

Step 2 — Generate system slug

slug = productName.toLowerCase().replace(/[^a-z0-9]/g, '-').replace(/-+/g, '-') Example: "Echo Reviews" → "echo-reviews"

Step 3 — Create system folder

LARRY_ROOT = ~/[workspace]/99-External-Systems/skills/larry
SYSTEMS_DIR = {LARRY_ROOT}/tiktok-marketing/systems
TEMPLATE_DIR = {SYSTEMS_DIR}/echo-system-1
NEW_DIR = {SYSTEMS_DIR}/{slug}-system-1
  • Copy template: cp -r {TEMPLATE_DIR} {NEW_DIR}
  • Write {NEW_DIR}/config.json using answers from Step 1. See references/config-schema.md.
  • Write {NEW_DIR}/voice.md from brand voice + product description. See references/voice-guide-template.md.
  • Add entry to {LARRY_ROOT}/tiktok-marketing/systems.json

Step 3b — Generate Twitter config

Write {LARRY_ROOT}/social/twitter/config.json using the buyer's brand details. This file MUST be generated fresh — never copy Xero's version. Use this structure:

{
  "brand": {
    "company": "{productName}",
    "products": ["{productName}"],
    "mission": "{one-line mission derived from product description}"
  },
  "timezone": "{user timezone from Step 1}",
  "leadMinutes": 10,
  "schedule": ["09:00", "12:00", "15:00", "18:00", "20:00"],
  "postiz": {
    "integrationId": "{POSTIZ_TWITTER_ID from .env}",
    "secretFile": "config/secrets/postiz_keys.json"
  },
  "openai": {
    "secretFile": "config/secrets/openai_keys.json"
  },
  "voiceFile": "{NEW_DIR}/voice.md",
  "outputDir": "99-External-Systems/skills/larry/social/twitter/posts",
  "mixTargets": {
    "build": 0.35,
    "ai_news": 0.20,
    "ops_lesson": 0.20,
    "engage": 0.15,
    "cta": 0.10
  }
}

Step 4 — Load user credentials

Read from ~/.openclaw/.env:

  • OPENAI_API_KEY — required for image generation
  • POSTIZ_API_KEY — required for scheduling
  • POSTIZ_TIKTOK_ID — Postiz integration ID for TikTok
  • POSTIZ_TWITTER_ID — Postiz integration ID for Twitter
  • MAILERLITE_API_KEY + MAILERLITE_GROUP_ID — required for newsletter
  • TELEGRAM_BOT_TOKEN + TELEGRAM_CHAT_ID — required for briefings

If any required key is missing, tell the user exactly which one and link to references/setup-checklist.md for how to get it.

Step 5 — Register crons (SELF_ONLY — test mode)

Register 6 crons using the cron tool. All start as SELF_ONLY / dry-run until user confirms:

TikTok — daily at 7:30 AM user timezone: "Run the TikTok daily post for {slug} system at {NEW_DIR} in SELF_ONLY mode"

Twitter (×5) — spread across day, user timezone: "Run Twitter posts for {slug} using voice guide at {NEW_DIR}/voice.md — post to Postiz SELF_ONLY"

Newsletter — Mon/Wed/Fri 9 PM: "Draft and send {productName} newsletter using voice at {NEW_DIR}/voice.md and MailerLite config"

Blog — daily 2 PM: "Write and publish one SEO blog post for {productName} using voice at {NEW_DIR}/voice.md"

Morning briefing — 7 AM: "Send morning pipeline briefing for {productName} to Telegram TELEGRAM_CHAT_ID"

Evening briefing — 8 PM: "Send evening pipeline briefing for {productName} to Telegram TELEGRAM_CHAT_ID"

Store cron IDs in {NEW_DIR}/cron-ids.json.

Step 6 — Run test generation

Generate one TikTok hook pack and one sample tweet. Show output to user. Ask: "Does this look right? Say 'go live [slug]' when ready, or 'redo [feedback]' to adjust."

Step 7 — Go live

When user says "go live [slug]":

  • Update {NEW_DIR}/config.json: set posting.privacyLevel to "PUBLIC"
  • Update all crons to remove SELF_ONLY restriction
  • Confirm to user: "Pipeline is live. First public post goes out tomorrow at 7:30 AM [timezone]."

Pause / Resume

Pause: Disable all crons in {NEW_DIR}/cron-ids.json using cron tool. Update config: "active": false. Resume: Re-enable all crons. Update config: "active": true. Confirm to user.

Error Handling

  • Missing API key → tell user exactly which key, link to setup-checklist.md
  • Postiz error → check integration IDs, suggest reconnecting channel in Postiz
  • MailerLite error → verify API key and group ID are correct
  • Image generation failure → retry once, then fall back to text-only post with note to user

Reference Files

  • references/setup-checklist.md — step-by-step account setup (start here)
  • references/config-schema.md — how to map product answers to config.json fields
  • references/voice-guide-template.md — format for generating voice.md
  • references/blog-schema.md — Supabase table schema for blog publishing

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.02%
按下载量换算926

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills