feat: add Multi-Platform Publisher agent for Chinese content distribution#516
Open
lz-googlefycy wants to merge 1 commit into
Open
feat: add Multi-Platform Publisher agent for Chinese content distribution#516lz-googlefycy wants to merge 1 commit into
lz-googlefycy wants to merge 1 commit into
Conversation
…tion Adds a new orchestration agent that coordinates one-click publishing of a single Markdown article to 19+ Chinese content platforms (知乎/CSDN/B站专栏/小红书/掘金/ 公众号/思否/博客园/etc.) by routing to the appropriate tool for each: - Wechatsync (main channel, 19+ platforms via Chrome extension cookie reuse) - xiaohongshu-mcp (小红书 fallback) - biliup (B站 video upload) - bilibili-api-python (B站 dynamic posts) The agent enforces draft-first publishing (never auto-publishes), platform-fit analysis (refuses to publish content that doesn't match the target platform's culture), per-platform length/format constraints, and rate-control rules. Pairs with the upstream marketing strategists (zhihu-strategist, bilibili-content-strategist, xiaohongshu-specialist, content-creator) to do per-platform style adaptation before the actual sync. Reference companion repo: https://github.com/lz-googlefycy/agency-blog-publisher which provides the toolchain installer, OpenCode skill, and end-to-end docs.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new marketing agent definition that coordinates adapting and drafting a single Markdown article for publication across many Chinese content platforms, with a draft-first safety posture and toolchain guidance.
Changes:
- Introduces
Multi-Platform Publisheragent persona with platform-fit gating, per-platform adaptation routing, and draft-only publishing workflow. - Documents toolchain priority and invocation templates (Wechatsync, xiaohongshu-mcp, biliup, bilibili-api-python) plus a standardized reporting format.
- Adds rate/risk-control rules and operational workflow steps for multi-platform distribution.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+121
to
+123
| from bilibili_api import article, dynamic, Credential | ||
| credential = Credential(sessdata="...", bili_jct="...", buvid3="...") | ||
| # Cookies from F12 → Application → Cookies → bilibili.com |
Comment on lines
+104
to
+110
| **小红书 fallback (xhs-mcp)**: | ||
| ```bash | ||
| xiaohongshu-mcp -headless=false & # start daemon | ||
| curl -X POST http://localhost:18060/api/v1/publish \ | ||
| -H 'Content-Type: application/json' \ | ||
| -d '{"title":"≤20 chars","content":"...","images":["/abs/img.jpg"],"tags":["..."],"is_original":true}' | ||
| ``` |
| │ wechatsync sync zhihu.md -p zhihu │ | ||
| │ wechatsync sync bilibili.md -p bilibili │ | ||
| │ wechatsync sync csdn.md -p csdn │ | ||
| │ xhs-mcp publish xhs.md ← if xhs target │ |
|
Closing — this is my personal fork (bensl84/agency-agents). The canonical project lives at https://github.com/msitarzewski/agency-agents — please re-open your PR there. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new marketing agent Multi-Platform Publisher (📡
marketing-multi-platform-publisher.md) that orchestrates one-click publishing of a single Markdown article to 19+ Chinese content platforms — 知乎 / 小红书 / CSDN / B 站 (专栏 + 动态 + 视频) / 公众号 / 掘金 / 思否 / 博客园 / etc.Why this agent
The existing marketing folder has excellent per-platform strategists (
@zhihu-strategist,@bilibili-content-strategist,@xiaohongshu-specialist,@douyin-strategist, etc.), but no agent that coordinates multi-platform publishing end-to-end. Users currently have to:This agent fills the gap as the conductor — routing one source draft through the right strategists for adaptation, then through the right tool for each target platform.
What it does
Companion repository
A companion repo provides the full toolchain installer, OpenCode skill, end-to-end docs, and example workflows: https://github.com/lz-googlefycy/agency-blog-publisher
The agent in this PR is a self-contained marketing strategist — it works without the companion repo, but the companion repo provides scripts and documentation for users who want the full hands-off setup.
Compliance with CONTRIBUTING.md
## 🧠 Identity & Memory/## 🎯 Core Mission/ etc. emoji-header structureservices:frontmatter (Wechatsync / xhs-mcp / biliup, all free OSS)Testing
The agent has been tested in real usage:
Anything reviewers should look at?
License
By submitting this PR, I confirm I'm fine with this contribution being licensed under whatever the upstream agency-agents repo uses (MIT per LICENSE).
Thanks for the awesome agent collection — really enjoyed building on top of it.