cross-post-orchestrator

cross-post-orchestrator is a skill for Claude Code, Codex from Morningstar202604/awesome-skillkit. It costs 109 tokens per session (758 once invoked), scanned A, original, Apache-2.0.

A publishing coordinator that reads one article plan and prepares distribution across several platforms, such as WeChat, Juejin, CNBlogs, and Zhihu.

In plain words
What is it for?
Use it to plan or run multi-platform article releases, publish to supported platforms, receive manual checklists for others, and keep a publishing record.
Why use it?
It shows which platforms are ready, which lack login details or files, and which steps still need manual work before anything is published.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to plan or run multi-platform article releases, publish to supported platforms, receive manual checklists for others, and keep a publishing record.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/morningstar202604/awesome-skillkit/cross-post-orchestrator
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 Morningstar202604/awesome-skillkit --skill cross-post-orchestrator
Clone the repo
git clone --depth 1 https://github.com/Morningstar202604/awesome-skillkit

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 cross-post-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator/github.svg)](https://agentmods.dev/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator"><img src="https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator/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 cross-post-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator"><img src="https://agentmods.dev/badge/skills/morningstar202604/awesome-skillkit/cross-post-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 758 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.
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.00109 $0.00758
Opus 5 $0.00055 $0.00379
Sonnet 5 $0.00022 $0.00152
Haiku 4.5 $0.00011 $0.00076

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

Security

Grade A, and why

cross-post-orchestrator 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/cross_post.py, tests/test_cross_post.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/writing/orchestrator/cross-post-orchestrator/SKILL.md · 67 lines

What it actually says

跨平台发布编排 Skill

定位

规划器 + 调度器——不重复实现平台逻辑,复用各平台技能:

平台 适配方式 前置条件
wechat_mp(公众号) 调度 wechat-mp-publisher CLI 环境变量 WECHAT_MP_APPID/SECRET
juejin(掘金) 调度 juejin-publisher CLI 环境变量 JUEJIN_COOKIE
cnblogs(博客园) 输出手工清单(按其 publish-api.md 流程) account.local.json 存在
zhihu(知乎) 输出清单(浏览器自动化走 zhihu-content-manager) zhihu_state.json 存在

使用流程

1. 准备 manifest

复制 examples/post.manifest.json 到工作目录,填入标题、markdown 路径、各平台参数。

2. 先看计划(默认不联网)

python3 scripts/cross_post.py plan --manifest post.manifest.json

输出每个平台状态:ready / missing-credentials / blocked-md-missing / skipped。 退出码 1 = 有阻塞项,先补前置条件。

3. 执行

python3 scripts/cross_post.py run --manifest post.manifest.json            # 全部
python3 scripts/cross_post.py run --manifest post.manifest.json --only juejin
  • 脚本化平台会调用对应技能 CLI,并继承其安全约定:对方脚本仍要求 --execute 才真发
  • 无脚本的平台打印精确操作清单,退出码 2 提示需人工介入

4. 台账

每次成功发布自动追加 published.ledger.json(时间戳/平台/标题/状态):

python3 scripts/cross_post.py ledger --manifest post.manifest.json

安全规则

  1. plan 是默认动作且零网络请求;run 也只做本地调度,真正发送由各平台技能的 --execute 控制
  2. AI 的标准动作序列:plan → 向用户展示 → 用户确认 → run --only <platform> 逐个执行
  3. 发布类操作永远逐平台确认,不要一次全发

扩展新平台

ADAPTERS 注册兄弟技能脚本路径 + 在 check_readiness 加前置条件检查 + cmd_run 加调用参数拼装。三处都在 scripts/cross_post.py,有注释标位。

Files

What ships with it

3 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. 10d ago First seen · 67 lines · 109 tokens per session scan A ca36bc7a089d

Subscribe to this mod's changes

cross-post-orchestrator is a skill published in the GitHub repository Morningstar202604/awesome-skillkit (1 stars, last pushed today), licensed Apache-2.0. It adds 109 tokens to every session and 758 once invoked, about $0.0005 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-08-31.

Related

Other skills, from other repositories

agentic-webdesign-html-anything

Install and use html-anything — the agentic HTML editor where your local AI agent writes HTML and you ship it. 75 skills × 9 surfaces, BYOK, zero API key. Use when building magazine articles, keynote decks, resumes, posters, social cards, web prototypes, data reports, or Hyperframes videos with AI coding agents.

S3YED/appie-kit · 78 tokens

blog-post

Full-stack blog post production — turns a topic, idea, or brief into a complete publishing package across written, social, and multimedia surfaces. Generates broomva.tech .mdx posts (or Substack/other long-form), X posts and threads, LinkedIn posts, Instagram posts and reel scripts, plus multimedia asset plans…

broomva/skills · 182 tokens

content-creation

Full-stack content creation pipeline: idea or reference to published blog post, audio narration, video, and social media distribution. Orchestrates research, reference extraction, storytelling, AI visual assets (Nano Banana, Veo 3.1), TTS audio (Voicebox, kokoro-tts, Edge TTS), Remotion video, and social copy into a…

broomva/skills · 239 tokens

citable

Make authored content survive the two selection surfaces it now faces: human engagement and LLM retrieval for citation. These partially anti-correlate, and the tactics that raise reactions are in two measured cases the ones that suppress citation. Encodes effect sizes from published causal studies (Scrunch, 12,000…

broomva/skills · 304 tokens

revenuecast

/revenuecast is the verb that turns what you can do into a machine that makes the world want it. You have a real capability — a craft, an expertise, a running system. revenuecast builds the loop where the capability's output becomes its own advertisement, and the demand that output creates is monetized by selling the…

broomva/skills · 389 tokens

claude-md-improver

Audit and improve CLAUDE.md files in repositories. Use when user asks to check, audit, update, improve, or fix CLAUDE.md files. Scans for all CLAUDE.md files, evaluates quality against templates, outputs quality report, then makes targeted updates. Also use when the user mentions "CLAUDE.md maintenance" or "project…

anthropics/claude-plugins-official · 82 tokens