content-matrix-publisher
/install content-matrix-publisher
content-matrix-publisher
Skill Combo ID: content-matrix-publisher
版本: 1.0.0
作者: OpenClaw Agent
创建日期: 2026-03-25
简介
智能内容矩阵分发 Combo —— 一键生成多平台内容并自动分发。解决内容创作者"一鱼多吃"的效率痛点,将单次创作转化为小红书图文、公众号文章、视频脚本的矩阵内容。
业务场景
痛点分析:
- 内容创作者需要同时运营小红书、公众号、B站等多个平台
- 手动适配每个平台的内容格式耗时耗力
- 缺乏系统化的热点追踪和选题策略
- 发布后缺乏数据反馈闭环
解决方案:自动化内容矩阵工作流,从热点发现到多平台发布的一站式解决方案。
Skill 编排图谱
┌─────────────────────────────────────────────────────────────────────────────┐
│ 智能内容矩阵分发工作流 │
└─────────────────────────────────────────────────────────────────────────────┘
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ agent-reach │ ──▶ │ summarize │ ──▶ │ 本地创作 │
│ (热点搜索) │ │ (内容提炼) │ │ (核心文案) │
└──────────────┘ └──────────────┘ └──────────────┘
│
┌───────────────────────────────┼───────────────────────────────┐
▼ ▼ ▼
┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ xiaohongshu-mcp │ │ card-renderer │ │ 公众号助手 │
│ (小红书发布) │ │ (知识卡片配图) │ │ (公众号文章) │
└──────────────────┘ └──────────────────┘ └──────────────────┘
│ │ │
└───────────────────────────────┴───────────────────────────────┘
▼
┌──────────────────┐
│ 发布报告汇总 │
│ (数据追踪反馈) │
└──────────────────┘
参与 Skills:
| Skill | 角色 | 功能 |
|---|---|---|
agent-reach |
数据采集 | 多平台热点搜索(小红书、微博、知乎、Twitter等) |
summarize |
内容提炼 | 热点内容摘要、核心观点提取 |
xiaohongshu-mcp |
平台分发 | 小红书图文发布 |
card-renderer |
视觉增强 | 生成知识卡片配图 |
公众号助手 |
平台分发 | 微信公众号文章发布 |
工作流步骤
Phase 1: 热点发现 (5分钟)
# 使用 agent-reach 搜索热点
agent-reach search xiaohongshu --query "AI 办公效率" --limit 10
agent-reach search weibo --query "科技热点" --limit 5
Phase 2: 内容提炼 (3分钟)
# 使用 summarize 提取核心内容
summarize https://xiaohongshu.com/note/xxx --format markdown
Phase 3: 核心文案创作 (10分钟)
# 基于热点生成原创内容
- 标题:[吸引眼球的标题]
- 核心观点:[3个要点]
- 案例/数据:[支撑内容]
- 行动召唤:[引导互动]
Phase 4: 多平台适配发布
小红书版本:
- 使用
card-renderer生成封面图 - 使用
xiaohongshu-mcp发布图文
公众号版本:
- 使用
公众号助手生成 3000-5000 字深度文章 - 自动 AI 配图
使用示例
示例 1: 日常热点追踪发布
用户: 帮我生成今天的 AI 行业热点内容,分发到小红书和公众号
Agent 执行:
1. [agent-reach] 搜索小红书/微博 AI 热点
2. [summarize] 提炼 TOP3 热点核心内容
3. [本地创作] 生成原创文案
4. [card-renderer] 生成小红书封面图
5. [xiaohongshu-mcp] 发布小红书图文
6. [公众号助手] 发布公众号文章
7. [汇总报告] 返回发布链接和数据追踪建议
示例 2: 选题深度挖掘
用户: 我想写一篇关于"AI 编程助手"的深度内容
Agent 执行:
1. [agent-reach] 搜索 GitHub/Bilibili/知乎相关内容
2. [summarize] 整理竞品分析和用户反馈
3. [本地创作] 生成差异化选题角度
4. [多平台适配] 输出小红书笔记 + 公众号文章框架
配置说明
必需配置
# ~/.openclaw/config.yaml
skills:
agent-reach:
enabled: true
xiaohongshu-mcp:
web_session: "your_xiaohongshu_cookie"
公众号助手:
appid: "your_wechat_appid"
secret: "your_wechat_secret"
可选配置
content-matrix-publisher:
default_platforms:
- xiaohongshu
- wechat_official
auto_image: true
publish_schedule: "09:00, 12:00, 18:00"
安全注意事项
- 内容原创性: 避免直接复制热点内容,确保二次创作
- 平台合规: 遵守各平台内容发布规范
- 敏感词过滤: 发布前进行内容审核
- 发布频率: 避免短时间大量发布触发风控
错误处理
| 错误场景 | 处理策略 |
|---|---|
| 热点搜索失败 | 回退到本地选题库 |
| 图片生成失败 | 使用预设模板图 |
| 小红书发布限流 | 延迟重试或转存草稿 |
| 公众号审核失败 | 人工介入修改 |
扩展性
可扩展的平台:
- B站视频脚本生成
- 抖音文案适配
- LinkedIn 专业文章
- Twitter/X 短内容
更新日志
- v1.0.0 (2026-03-25): 初始版本,支持小红书 + 公众号双平台分发
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install content-matrix-publisher - After installation, invoke the skill by name or use
/content-matrix-publisher - Provide required inputs per the skill's parameter spec and get structured output
What is content-matrix-publisher?
智能内容矩阵分发 Combo —— 一键生成多平台内容并自动分发。解决内容创作者"一鱼多吃"的效率痛点,将单次创作转化为小红书图文、公众号文章、视�. It is an AI Agent Skill for Claude Code / OpenClaw, with 68 downloads so far.
How do I install content-matrix-publisher?
Run "/install content-matrix-publisher" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is content-matrix-publisher free?
Yes, content-matrix-publisher is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does content-matrix-publisher support?
content-matrix-publisher is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created content-matrix-publisher?
It is built and maintained by zlszhonglongshen (@zlszhonglongshen); the current version is v1.0.0.