Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By guanyang
Automate multi-platform content publishing and WeChat sticker creation workflows, including article posting to Toutiao and WeChat Official Accounts, GIF generation from image sequences, and sticker pack assembly with metadata.
npx claudepluginhub guanyang/super-publisher --plugin super-publisher将序列帧图片或精灵表(Sprite Sheet)转换为高质量 GIF 动画。支持自定义 FPS、布局切分及循环播放。
A universal 4x4 grid sticker generator. Uses strict visual guidelines (No Text, Transparent BG) and supports loading theme templates from references.
Automated factory workflow: Generates grid-based sticker sheets and auto-packages them for WeChat using wechat-sticker-maker. Use when the user wants to create a complete custom sticker pack from scratch (e.g., '帮我做一套表情包', '批量生产表情').
Publish articles to Toutiao (Today's Headlines). Handles persistent authentication (login once) and session management. Opens browser for interactive publishing.
Posts content to WeChat Official Account (微信公众号) via API or Chrome CDP. Supports article posting (文章) and image-text posting (贴图).
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Publish Markdown/HTML articles to WeChat Official Account (微信公众号) drafts
智能内容创作工作流插件,支持从热点收集到多平台发布的一站式自动化流程
Sync articles to 20+ content platforms (Zhihu, Juejin, CSDN, Toutiao, Weibo, etc.)
Social media content creation — platform-formatted posts for LinkedIn, Facebook, Instagram, and Reddit with character limits, hashtag strategies, and image specs.
Social media scheduling and publishing for AI agents on X, LinkedIn, Instagram, Facebook, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest.
Xiaohongshu (Little Red Book) auto-publishing skill - publish image/text and video content via xiaohongshu-mcp
Unified capability management center for Skills, Agents, and Commands.
Super Publisher 是一个专为 Agent 设计的插件,旨在实现自动化的多平台内容发布。
skills/toutiao-publisher)架构原理及最佳实践请参考skills/toutiao-publisher。
skills/wechat-post-publisher)详细文档及配置说明请参考 skills/wechat-post-publisher/README.md。
--account 一键切分并加载多重维度的测试或商业公号资源池。skills/wechat-sticker-maker)meta.txt) 和专辑信息模板 (info.txt),加速提交流程。skills/wechat-sticker-assets-designer)skills/grid-sticker-generator)skills/sticker-factory)详细文档请参考 skills/sticker-factory/README.md。
skills/gif-maker)详细文档请参考 skills/gif-maker/README.md。
--max-size 参数,自动将 GIF 压制在微信限制(1MB/500KB)以内。.
├── .claude-plugin/ # Claude 插件配置文件
├── skills/ # Agent Skills 目录
│ ├── gif-maker/ # [NEW] GIF 动图生成 Skill
│ ├── grid-sticker-generator/ # [NEW] 通用网格表情生成 Skill
│ ├── sticker-factory/ # [NEW] 表情包自动化工厂 Skill
│ ├── toutiao-publisher/ # 头条号发布 Skill
│ ├── wechat-post-publisher/# [NEW] 微信公众号全自动发布图文 Skill
│ ├── wechat-sticker-assets-designer/ # [NEW] 微信表情包发布配套素材设计 Skill
│ └── wechat-sticker-maker/ # 微信表情包制作 Skill
├── spec/ # 规范文档
│ └── Specification.md # Agent Skills 规范
└── template/ # 模板文件
└── SKILL.md # 新 Skill 创建模板
本插件遵循 Claude Plugin 规范,支持多种 Agent 环境加载。
在启动 Claude Code 之后,执行以下命令加载插件:
# 添加插件市场
/plugin marketplace add guanyang/super-publisher
# 从市场安装插件
/plugin install super-publisher@super-publisher
可以使用安装脚本,一键将 skills 软链接(symlink)到指定的 Agent 技能目录下:
# 默认软链接到 ~/.agent/skills 目录下
./scripts/install-skills.sh
# 或者软链接到自定义的工作区/路径下
./scripts/install-skills.sh /path/to/your/workspace/.agents/skills
# 如果需要卸载/删除已安装的软链接
./scripts/install-skills.sh --delete /path/to/your/workspace/.agents/skills
或者手动执行以下命令进行配置:
# 创建.agent目录
mkdir -p /path/to/your/workspace/.agents/skills
# 将skills目录复制到.agent/skills目录
cp -r skills/* /path/to/your/workspace/.agents/skills/
/path/to/your/workspace替换为你的工作区路径。加载插件后,你可以直接通过自然语言与 Claude 交互使用相关能力,例如:
"帮我把这篇文章发布到头条号" "检查头条号登录状态"
当需要从零创作并发布一套全新的微信表情包时,推荐直接使用 Sticker Factory (skills/sticker-factory):
"/sticker-factory 基于 [角色形象] 制作一套咸鱼摆烂的表情包并生成配套素材"。grid-sticker-generator 生成 16 宫格图片,接着通过 wechat-sticker-maker 智能切片与命名,最后调用 wechat-sticker-assets-designer 智能绘制适配该 IP 角色风格的 Banner 和赞赏图。meta.txt / info.txt 描述及配套 Banner/赞赏图等)均统一保存在 output/stickers_[theme] 目录下,免去零散整理的烦恼。在生成配套素材(Banner、赞赏引导图、致谢图)时,为确保生成的图片与表情包原图的角色及画风一致:
发布图文到微信公众号时:
wechat-post-publisher 进行处理。它会自动处理本地配图,上传至微信 CDN 素材库,并安全转换所有的外链,大大缩减了手动排版的时间。详细的 Agent Skills 格式规范请参考 spec/Specification.md。
本项目遵循 MIT 许可证。