Super Publisher plugin marketplace
npx claudepluginhub guanyang/super-publisherSuper Publisher plugin for automated content publishing, multi-platform support.
Super Publisher 是一个专为 Agent 设计的插件,旨在实现自动化的多平台内容发布。
skills/toutiao-publisher)架构原理及最佳实践请参考skills/toutiao-publisher。
skills/wechat-sticker-maker)rembg 智能去背功能,支持一键移除复杂背景(可选)。meta.txt) 和专辑信息模板 (info.txt),加速提交流程。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-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目录下的能力:
# 创建.agent目录
mkdir -p /path/to/your/workspace/.agent/skills
# 将skills目录复制到.agent/skills目录
cp -r skills/* /path/to/your/workspace/.agent/skills/
/path/to/your/workspace替换为你的工作区路径。加载插件后,你可以直接通过自然语言与 Claude 交互使用相关能力,例如:
"帮我把这篇文章发布到头条号" "检查头条号登录状态"
template/SKILL.md 到 skills/<new-skill-name>/SKILL.md。spec/Specification.md 中的规范完善 Skill 定义。skills/<new-skill-name>/ 目录下实现具体的脚本和逻辑。详细的 Agent Skills 格式规范请参考 spec/Specification.md。
本项目遵循 MIT 许可证。