
from content-pipeline145
End-to-end content production and distribution: collect materials, draft, layout, generate covers and platform-specific copy, and publish across WeChat, Xiaohon
Provides an opinionated pipeline to turn source materials or WeChat articles into multi-platform outputs (WeChat article, Xiaohongshu carousel HTML, Jike copy, podcast script + TTS, video canvas). Automates formatting, cover generation, and manifest-driven distribution via Chrome CDP or API where available.
Use when you want to publish the same content across multiple Chinese platforms with platform-appropriate formatting and copy. Ideal for creators who need fast repurposing: newsletter/article → Xiaohongshu + podcast + social copies + automated distribution.
Designed for Claude Code / shell automation and local Python/Node toolchains that can run the repo scripts. Best used where Chrome CDP automation or API credentials are available for distribution.
Content pipeline for Chinese social media platforms (WeChat, Xiaohongshu, Jike, Xiaoyuzhou). Two Python scripts: fetch_wechat_article.py scrapes WeChat articles via curl with a forged UA, and md2wechat_formatter.py converts Markdown to WeChat-compatible HTML with theming. Scripts require runtime arguments so DRY_RUN produced usage errors (not crashes). Security concerns: UA spoofing to bypass anti-scraping, subprocess calls with curl, and WeChat API credential handling. The skill is highly specialised for Chinese social media automation — niche audience.
Well-structured skill with comprehensive documentation. Security deductions: UA spoofing (-12 for bypassing anti-scraping), subprocess curl calls with user-provided URLs (-12 for potential injection if URL is untrusted), WeChat API credential handling in config files (-10 for credentials in files). No hardcoded secrets, no rm -rf, no exfiltration instructions. Code quality: functional scripts with decent error handling, but fetch script relies on subprocess.run with curl rather than requests, and md2wechat_formatter has a complex regex-based fallback parser. Architecture: good separation with references/, scripts/, and local/ override paths. Usefulness is niche — Chinese social media creators only.