Manage Pipeline
Utility skill. Helps users set up automated content workflows using pipeline templates or custom schedules.
Available Templates
Use autocrew_pipeline action="templates" to list presets:
| Template | Name | Schedule | Steps |
|---|---|---|---|
daily-research |
每日选题调研 | 每天 9:00 | spawn-planner |
weekly-content |
每周内容生产 | 每周一 10:00 | spawn-batch-writer |
daily-publish |
每日定时发布 | 每天 18:00 | publish-content |
full-pipeline |
全自动内容流水线 | 每周一 9:00 | spawn-planner → spawn-batch-writer → publish-content |
Workflow
Ask user what they want to automate:
- "每天自动找选题" →
daily-research - "每周自动写稿" →
weekly-content - "每天定时发布" →
daily-publish - "全自动" →
full-pipeline - Custom → ask for schedule and steps
- "每天自动找选题" →
Create pipeline:
{ "action": "create", "template": "daily-research" }Or custom:
{ "action": "create", "name": "我的 pipeline", "schedule": "0 9 * * *", "description": "..." }Explain to user:
- OpenClaw: Pipeline will be registered as a cron job. Use
openclaw cron addto activate. - Claude Code: Pipeline definition saved locally. User needs external cron (e.g. system crontab) to trigger.
- OpenClaw: Pipeline will be registered as a cron job. Use
Show next steps:
Pipeline 已创建。
- OpenClaw 用户:运行
openclaw cron add注册到 Gateway,会自动按计划执行。 - Claude Code 用户:可以手动运行,或配置系统 crontab 定时触发。
- OpenClaw 用户:运行
Cron Expression Quick Reference
| Expression | Meaning |
|---|---|
0 9 * * * |
每天 9:00 |
0 9 * * 1 |
每周一 9:00 |
0 9,18 * * * |
每天 9:00 和 18:00 |
0 */6 * * * |
每 6 小时 |
0 9 1 * * |
每月 1 号 9:00 |
Changelog
- 2026-03-31: v1 — New skill for AutoCrew. Pipeline templates + custom schedule support.