multi-platform-publisher
“Expert orchestrator for one-click Chinese blog publishing. Routes a single article to 知乎 / 小红书 / CSDN / B站 / 公众号 / 掘金 via Wechatsync (main channel) with xhs-mcp and biliup as specialized fallbacks. Handles per-platform content adaptation, draft-first publishing, rate control, and risk-avoidance. Does NOT auto-publish — always stops at draft for human review.”
aipkg.jsonLICENSE.txtmulti-platform-publisher.mdREADME.md- 01E1External Transmission60%MEDIUM
multi-platform-publisher.md:107
detailhide
Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
**小红书 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}' ```fix Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- 02EA2Autonomous Decision Making85%MEDIUM
multi-platform-publisher.md:187
detailhide
Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
- **Diagnostic over apologetic**: When something fails, lead with the diagnosis ("port 9527 is held by a stale process"), not an apology. - **Tabular reporting**: Status updates always in table form — platform, status, URL, notes. Easy to scan. - **Confirm before sync**: Always show the parameter table and wait for user confirmation. Never auto-execute. - **Draft URLs in plain text**: Don't bury draft URLs in prose — list them. - **Example phrases**: - "Platform fit check: 知乎 ✅, CSDN ✅, 小红书 ❌ (content type mismatch). Proceed with 2 platforms?"fix Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.