skill-publish-scheduler

skill-publish-scheduler is a skill for Claude Code, Codex from ZJU-REAL/Easel. It costs 117 tokens per session (874 once invoked), scanned A, original, Apache-2.0.

A scheduling tool for organising content by platform and publish time, then finding items that are due and handing them to the appropriate publishing tool.

In plain words
What is it for?
Use it to import a CSV or JSON publishing plan, view the queue, find due posts, dispatch them for publication, and mark completed items.
Why use it?
It removes the need to track publishing times and platform hand-offs manually. It also keeps publishing status updated after each item is handled.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to import a CSV or JSON publishing plan, view the queue, find due posts, dispatch them for publication, and mark completed items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zju-real/easel/skill-publish-scheduler
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ZJU-REAL/Easel --skill skill-publish-scheduler
Clone the repo
git clone --depth 1 https://github.com/ZJU-REAL/Easel

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-publish-scheduler

README.md
[![agentmods](https://agentmods.dev/badge/skills/zju-real/easel/skill-publish-scheduler/github.svg)](https://agentmods.dev/skills/zju-real/easel/skill-publish-scheduler)
Your own site
<a href="https://agentmods.dev/skills/zju-real/easel/skill-publish-scheduler"><img src="https://agentmods.dev/badge/skills/zju-real/easel/skill-publish-scheduler/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-publish-scheduler

Your own site · 80×15
<a href="https://agentmods.dev/skills/zju-real/easel/skill-publish-scheduler"><img src="https://agentmods.dev/badge/skills/zju-real/easel/skill-publish-scheduler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 874 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00117 $0.00874
Opus 5 $0.00059 $0.00437
Sonnet 5 $0.00023 $0.00175
Haiku 4.5 $0.00012 $0.00087

Measured 8d ago against content hash ccede176bb62, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

skill-publish-scheduler scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/publish_queue.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/openclaw/skill-publish-scheduler/SKILL.md · 60 lines

What it actually says

批量定时发布排期

管理一张排期表(内容×平台×时间),到点把任务派发给各平台发布 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

到期派发流程(编排)

  1. due/run 得到此刻到期项。
  2. 对每条到期项:按 platform 委派对应发布 SKILL 执行真实发布 (单平台或用 cross-platform-publish)。发布前按平台适配内容格式。
  3. 发布成功/失败后 mark 回填状态(可配合 skill-publish-notify 推送结果、skill-publish-log 记录)。
  4. 需要"守护式到点触发"时,由 OpenClaw 定时任务周期性跑 run(本脚本只做单次到期计算,不常驻)。

规则

  1. 本 SKILL 不直接驱动浏览器/API 发布——只做排期与状态管理,发布交给各平台 publisher。
  2. --now 可覆盖当前时间用于预演(查看某时刻会发哪些),不影响真实时间。
  3. 发布时间用 YYYY-MM-DD HH:MM;同一时刻多平台会一并到期。
  4. 每条发布后务必 mark,避免重复发布。
  5. 定时触发依赖上层(OpenClaw cron / 手动周期跑),本脚本是无状态到期计算 + 持久化队列。

参考来源

排期→到期计算→派发→状态回填是内容日历落地发布的标准闭环。调度与真实发布分层: 调度纯脚本(可测),发布委派各平台 publisher(环境相关)。

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 60 lines · 117 tokens per session scan A ccede176bb62

Subscribe to this mod's changes

skill-publish-scheduler is a skill published in the GitHub repository ZJU-REAL/Easel (794 stars, last pushed yesterday), licensed Apache-2.0. It adds 117 tokens to every session and 874 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.