>- 批量定时发布排期:管理"内容 × 平台 × 发布时间"的排期表,导入排期、查看队列、计算到期项、 到期派发给各平台发布 SKILL、回填状态。当用户说"定时发布""批量发布""排期发布""发布队列" "按计划发""这几条按时间自动发""发布排期表""到点发布"时使用。调度逻辑纯脚本,实际发布委派平台 SKILL。
npx skills add https://github.com/ZJU-REAL/Easel --skill skill-publish-scheduler
> 管理一张排期表(内容×平台×时间),到点把任务派发给各平台发布 SKILL。走
> scripts/publish_queue.py(纯标准库)。本 SKILL 负责调度与状态,实际发布委派各平台 publisher
> (skill-xhs-publisher / skill-douyin-upload / skill-wechat-publisher / skill-bilibili-upload / cross-platform-publish)。
排期表 CSV(表头需含 publish_at, platform, content,可选 title, note):
publish_at,platform,content,title
2026-08-01 09:00,xiaohongshu,outputs/note1,早间笔记
2026-08-01 20:00,douyin,outputs/主题名/final.mp4,晚间视频
或等价 JSON。
脚本路径(相对项目根):skills/openclaw/skill-publish-scheduler/scripts/publish_queue.py(各子命令 -h)。
Q=outputs/publish-queue/q.json
python <skill>/scripts/publish_queue.py import --file plan.csv --queue $Q # 导入排期
python <skill>/scripts/publish_queue.py list --queue $Q # 查看队列
python <skill>/scripts/publish_queue.py due --queue $Q # 此刻到期项
python <skill>/scripts/publish_queue.py run --queue $Q # 打印到期派发计划
# 按计划逐条委派对应平台 publisher 发布,完成后回填:
python <skill>/scripts/publish_queue.py mark --queue $Q --id 1 --status done
due/run 得到此刻到期项。platform 委派对应发布 SKILL 执行真实发布(单平台或用 cross-platform-publish)。发布前按平台适配内容格式。
mark 回填状态(可配合 skill-publish-notify 推送结果、skill-publish-log 记录)。run(本脚本只做单次到期计算,不常驻)。--now 可覆盖当前时间用于预演(查看某时刻会发哪些),不影响真实时间。YYYY-MM-DD HH:MM;同一时刻多平台会一并到期。mark,避免重复发布。排期→到期计算→派发→状态回填是内容日历落地发布的标准闭环。调度与真实发布分层:
调度纯脚本(可测),发布委派各平台 publisher(环境相关)。
Take zju-real/skill-publish-scheduler from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.