← 返回 Skills 市场
zmy1006-sudo

AI Content — Xiaohongshu Content Production

作者 mingyuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
116
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install ai-content-xiaohongshu
功能描述
小红书内容创作AI生产流水线系统。将信息采集、素材整理、选题挖掘、文章创作、小红书卡图生成、定时发布等完整工作流引入AI Agent。 触发词:生成小红书内容/创作小红书/写小红书笔记/小红书创作/内容采集/素材管理/选题挖掘/选题库/文章创作/文章模板/小红书卡图/封面图生成/定时发布/内容发布管理/AI内容流...
使用说明 (SKILL.md)

AI Content — 小红书内容生产系统

灵感来源:CheeMao/ai-content ⭐ 138

将 AI 内容生产完整流水线(采集→选题→创作→配图→发布)引入 OpenClaw Agent,帮助用户高效批量生产小红书/公众号内容。


适用场景

  1. 批量内容生产:需要定时/批量生成小红书笔记、公众号文章
  2. 选题挖掘:从 RSS/API/网页采集热点,自动 AI 评分筛选
  3. AI 辅助创作:多角色协作生成高质量文章,支持 Markdown/HTML 双格式
  4. 小红书卡图:AI 生成封面图 + 小红书成品卡图
  5. 工作流编排:将内容生产编排为自动化流水线

核心概念

概念 说明
信息源 RSS / API / 网页抓取,支持多源并行采集
素材库 采集内容汇总,支持筛选与图片过滤
选题库 AI 评分选题,支持人工复选与优先级排序
文章创作 Markdown / HTML 模板,支持多风格切换
小红书卡图 AI 生成封面图 + 成品卡图(需配置图片生成模型)
发布管理 支持草稿/定时发布,平台包括小红书/公众号
风格管理 预设创作风格,适配不同品牌调性

快速开始

环境要求

  • Node.js 18+
  • Docker(PostgreSQL + Redis)
  • OpenAI 兼容模型(GLM / Kimi / OpenAI 等)

部署步骤

# 1. 克隆项目
git clone https://github.com/CheeMao/ai-content ai-content
cd ai-content

# 2. 配置环境变量
cp backend/.env.example backend/.env
cp frontend/.env.example frontend/.env.local

# 3. 启动数据库与 Redis
docker compose up -d

# 4. 初始化数据库
cd backend && npm install && npm run db:init

# 5. 创建管理员账号
npm run db:bootstrap-admin -- --username admin --password '你的强密码' --email [email protected] --name 管理员

# 6. 启动后端(默认 http://localhost:3001)
npm run start:dev

# 7. 启动前端(默认 http://localhost:3000)
cd ../frontend && npm install && npm run dev

首次配置顺序

  1. 配置管理 → AI 平台:添加模型服务商(如 GLM / Kimi)
  2. 配置管理 → AI 模型:添加可用模型
  3. 配置管理 → 默认模型:设置"文章创作"和"选题推荐"的默认模型
  4. 配置管理 → 采集源配置:初始化默认信息源
  5. 风格管理 + 文章模板:补齐内容风格和模板
  6. 素材管理:开始采集内容
  7. 精选选题库:生成与筛选选题
  8. 我的文章 / 小红书笔记:开始内容创作

能力边界

✅ 可做 ❌ 不做
内容采集与素材管理 替代 Docker/PostgreSQL/Redis
AI 选题评分与筛选 直接发布到小红书(需手动复制发布)
Markdown/HTML 文章创作 替代图片生成模型的 API Key
小红书卡图生成(需配置模型) 实时舆情监控
定时发布计划管理 微信公众号直连发布

AI 模型接入

支持所有 OpenAI 兼容协议 的模型服务商:

  • OpenAI 官方接口
  • 各类兼容中转平台(GLM / Kimi / 阶跃星辰等)
  • 自建兼容网关
  • 本地模型服务(Ollama 等)

接口要求:

  • /chat/completions — 文本对话
  • /images/generations — 图片生成(可选,用于卡图功能)

许可证

Personal Use Only License v1.0

  • ✅ 个人学习、研究、非商业使用
  • ❌ 禁止企业使用 / SaaS 服务 / 商业变现

AI Agent 使用方式

当你需要批量生产小红书/公众号内容时,可调用此 skill 获取:

  1. 选题方向建议(基于热点采集给出选题优先级)
  2. 文章结构模板(根据小红书/公众号风格生成框架)
  3. 小红书文案生成(带 emoji、标签、口语化表达)
  4. 封面图/卡图 Prompt 建议(为 AI 生图模型提供提示词)
  5. 定时发布计划编排(按周/按月规划内容日历)
安全使用建议
This SKILL.md is a deploy-and-configure guide pointing to an external GitHub project. Before using or following it: 1) verify the referenced GitHub repository (CheeMao/ai-content) and review its source code, licenses, and recent commits; 2) run deployments in an isolated environment (VM/container) rather than your primary machine; 3) do not reuse high-privilege or long-lived credentials—create scoped API keys for AI/image services and separate DB credentials for the app; 4) expect to provide OpenAI-compatible model keys and image-generation keys even though the skill metadata doesn't list them; 5) be cautious about the data you allow the app to scrape or store (it will collect web content and media); 6) confirm the license restriction (Personal Use Only) matches your intended usage. If you need higher assurance, ask the publisher for an explicit list of required environment variables and a pointer to the exact repository tag/release to inspect.
功能分析
Type: OpenClaw Skill Name: ai-content-xiaohongshu Version: 1.0.0 The skill bundle contains metadata and documentation (SKILL.md) for an AI content production system for Xiaohongshu. It outlines standard deployment procedures using Docker and NPM and describes features like RSS collection and AI-assisted writing. No executable code or malicious prompt injections were found; the instructions are consistent with the stated purpose of setting up a self-hosted content management tool.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
Name/description align with the documented workflow (collection → topics → writing → images → scheduling). The SKILL.md is essentially a full-project deployment guide (git clone, Docker, Postgres, Redis, Node.js) which is coherent with building the described system. However, the skill does not declare any required environment variables or credentials even though the instructions require configuring model providers, image APIs, and database credentials.
Instruction Scope
Runtime instructions stay within the domain of deploying and configuring a content-production app: cloning the repo, starting DB/Redis, running npm scripts, creating an admin account, and configuring AI model endpoints. The doc references web scraping / RSS ingestion and connecting to AI/image providers, which are expected for this purpose and do not instruct reading unrelated system files or exfiltrating data. Still, the instructions expect the user to supply multiple external credentials and to run network-enabled services.
Install Mechanism
This is an instruction-only skill with no install spec and no code files embedded in the skill bundle, so nothing will be written or executed by the skill itself during installation. The SKILL.md points to a GitHub repo for a third-party project; installing that project is outside the platform and should be reviewed manually.
Credentials
The SKILL.md requires configuring AI model providers, image-generation APIs, Docker/Postgres/Redis, and creating admin credentials, but the skill metadata declares no required env vars or primary credential. This lack of declared credentials reduces transparency: the system will need API keys, DB credentials, and likely OAuth tokens, but the skill does not enumerate them or explain minimal scoping. Users could accidentally supply broad or reuse sensitive credentials.
Persistence & Privilege
The skill is not always-on and is user-invocable; it does not request persistent platform privileges. There is no indication it modifies other skills or platform-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-content-xiaohongshu
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-content-xiaohongshu 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: CheeMao/ai-content AI content pipeline for Xiaohongshu
元数据
Slug ai-content-xiaohongshu
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

AI Content — Xiaohongshu Content Production 是什么?

小红书内容创作AI生产流水线系统。将信息采集、素材整理、选题挖掘、文章创作、小红书卡图生成、定时发布等完整工作流引入AI Agent。 触发词:生成小红书内容/创作小红书/写小红书笔记/小红书创作/内容采集/素材管理/选题挖掘/选题库/文章创作/文章模板/小红书卡图/封面图生成/定时发布/内容发布管理/AI内容流... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 116 次。

如何安装 AI Content — Xiaohongshu Content Production?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-content-xiaohongshu」即可一键安装,无需额外配置。

AI Content — Xiaohongshu Content Production 是免费的吗?

是的,AI Content — Xiaohongshu Content Production 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

AI Content — Xiaohongshu Content Production 支持哪些平台?

AI Content — Xiaohongshu Content Production 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AI Content — Xiaohongshu Content Production?

由 mingyuan(@zmy1006-sudo)开发并维护,当前版本 v1.0.0。

💬 留言讨论