# Manage Pipeline

> Create and manage automated content pipelines (scheduled workflows). Activate when user asks to set up automation, schedule content, create a pipeline, or configure cron jobs. Trigger: "自动化" / "定时" / "每天自动" / "设置 pipeline" / "内容排期".

- Skill: `alextangson/manage-pipeline` (Agent Skill)
- Install (CLI): `npx skillmds@latest add alextangson/manage-pipeline`
- Raw SKILL.md: https://api.skillmd.com/api/skills/alextangson/manage-pipeline/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: alextangson (https://skillmd.com/u/alextangson)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/alextangson/manage-pipeline

---


# 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

1. Ask user what they want to automate:
   - "每天自动找选题" → `daily-research`
   - "每周自动写稿" → `weekly-content`
   - "每天定时发布" → `daily-publish`
   - "全自动" → `full-pipeline`
   - Custom → ask for schedule and steps

2. Create pipeline:
   ```json
   { "action": "create", "template": "daily-research" }
   ```
   Or custom:
   ```json
   { "action": "create", "name": "我的 pipeline", "schedule": "0 9 * * *", "description": "..." }
   ```

3. Explain to user:
   - **OpenClaw**: Pipeline will be registered as a cron job. Use `openclaw cron add` to activate.
   - **Claude Code**: Pipeline definition saved locally. User needs external cron (e.g. system crontab) to trigger.

4. Show next steps:
   > Pipeline 已创建。
   > - OpenClaw 用户：运行 `openclaw cron add` 注册到 Gateway，会自动按计划执行。
   > - Claude Code 用户：可以手动运行，或配置系统 crontab 定时触发。

## 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.

