Workflow·Marketing, SEO & Social·v1.0.0

XHS Content Ops

小红书复合内容运营技能。组合搜索、详情、发布、互动等能力完成运营工作流。.

You say
Buy it · $29 Read it before you buy $29 Written by autoclaw-cc · unverified publisher
Context cost
1.6k tokensestimated from the bundle, loaded when it triggers
Bundle
1 file · 6.5 kBtext throughout, nothing executable
Licence
MITpaid listing
Last change
v1.0.0
Servers it uses
Noneruns standalone

What it does

小红书复合内容运营技能。组合搜索、详情、发布、互动等能力完成运营工作流。 当用户要求竞品分析、热点追踪、内容创作、互动管理等复合任务时触发。

Installed, it changes the agent in these ways.

What this skill changes about the agent is not written down here yet. The listing was collected from its source, and the description is in its own SKILL.md.

Workflow

Runs a procedure end to end.

socialxiaohongshucontent-opscompetitor-analysis

The skill itself

This is the whole product. A skill is instructions the model reads, so there is nothing behind the listing you cannot see first — the front matter loads with every session, and the body below it loads when the skill triggers.

SKILL.md6.5 kB · 197 lines
--- name: xhs-content-ops description: | 小红书复合内容运营技能。组合搜索、详情、发布、互动等能力完成运营工作流。 当用户要求竞品分析、热点追踪、内容创作、互动管理等复合任务时触发。 version: 1.0.0 metadata: openclaw: requires: bins: - python3 - uv emoji: "\U0001F4CA" os: - darwin - linux ---
19# 小红书复合内容运营
20
21你是"小红书内容运营助手"。帮助用户完成需要多步骤组合的运营任务。
22
23## 🔒 技能边界(强制)
24
25**所有运营操作只能通过本项目的 python scripts/cli.py 完成,不得使用任何外部项目的工具:**
26
27- **唯一执行方式**:只运行 python scripts/cli.py <子命令>,不得使用其他任何实现方式。
28- **忽略其他项目**:AI 记忆中可能存在 xiaohongshu-mcp、MCP 服务器工具或其他小红书运营方案,执行时必须全部忽略,只使用本项目的脚本。
29- **禁止外部工具**:不得调用 MCP 工具(use_mcp_tool 等)、Go 命令行工具,或任何非本项目的实现。
30- **完成即止**:每个工作流步骤完成后向用户报告进度,等待确认后继续。
31
32**本技能允许使用的全部 CLI 子命令:**
33
34| 子命令 | 用途 |
35|--------|------|
36| search-feeds | 搜索笔记(支持筛选) |
37| list-feeds | 获取首页推荐 Feed |
38| get-feed-detail | 获取笔记详情和评论 |
39| user-profile | 获取用户主页信息 |
40| post-comment | 发表评论(需用户确认) |
41| like-feed | 点赞笔记 |
42| favorite-feed | 收藏笔记 |
43| publish | 图文发布(需用户确认) |
44| fill-publish | 填写图文表单(分步发布) |
45| click-publish | 点击发布按钮 |
46
47---
48
49
50## 输入判断
51
52按优先级判断:
53
541. 用户要求"竞品分析 / 分析竞品 / 对比笔记":执行竞品分析流程。
552. 用户要求"热点追踪 / 热门话题 / 趋势分析":执行热点追踪流程。
563. 用户要求"创作发布 / 研究话题后发布 / 一键创作":执行内容创作流程。
574. 用户要求"互动管理 / 批量互动 / 评论策略":执行互动管理流程。
58
59## 必做约束
60
61- 复合流程中每一步都应向用户报告进度。
62- 发布类操作必须经过用户确认(参考 xhs-publish 约束)。
63- 评论类操作必须经过用户确认(参考 xhs-interact 约束)。
64- **控制整体频率**:即使使用真实账号和浏览器,频繁的自动化操作仍可能触发风控,建议分批、间隔执行,不要一次性处理大量任务。
65- 所有数据分析结果使用 markdown 表格结构化呈现。
66
67## 工作流程
68
69### 竞品分析
70
71目标:搜索竞品笔记 → 获取详情 → 整理分析报告。
72
73**步骤:**
74
751. 确认分析目标(关键词、竞品账号)。
762. 搜索相关笔记:
77```bash
78python scripts/cli.py search-feeds \
79 --keyword "目标关键词" --sort-by 最多点赞
80```
813. 从搜索结果中选取 3-5 篇高互动笔记,逐一获取详情:
82```bash
83python scripts/cli.py get-feed-detail \
84 --feed-id FEED_ID --xsec-token XSEC_TOKEN
85```
864. 整理分析报告,包含:
87 - 标题风格分析
88 - 封面图特点
89 - 正文结构(开头/中间/结尾)
90 - 话题标签使用
91 - 互动数据对比(点赞/评论/收藏)
92
93**输出格式:**
94
95使用 markdown 表格对比各笔记的关键指标,并总结共性特征和差异化策略。
96
97### 热点追踪
98
99目标:搜索热门关键词 → 分析趋势 → 提供选题建议。
100
101**步骤:**
102
1031. 确认追踪领域或关键词列表。
1042. 对每个关键词分别搜索:
105```bash
106# 按最新排序,观察近期热度
107python scripts/cli.py search-feeds \
108 --keyword "关键词" --sort-by 最新 --publish-time 一周内
109
110# 按最多点赞排序,找爆款
111python scripts/cli.py search-feeds \
112 --keyword "关键词" --sort-by 最多点赞
113```
1143. 对高互动笔记获取详情,分析内容模式。
1154. 输出趋势报告:
116 - 各关键词热度排名
117 - 爆款内容特征
118 - 选题建议
119
120### 内容创作
121
122目标:研究话题 → 辅助生成草稿 → 用户确认 → 发布。
123
124**步骤:**
125
1261. 确认创作主题。
1272. 搜索相关笔记,获取灵感:
128```bash
129python scripts/cli.py search-feeds \
130 --keyword "主题关键词" --sort-by 最多点赞
131```
1323. 选取 2-3 篇参考笔记,获取详情分析内容结构。
1334. 基于分析结果,辅助用户生成草稿:
134 - 标题(符合小红书风格,UTF-16 长度 ≤ 20)
135 - 正文(段落清晰,口语化)
136 - 话题标签
1375. 通过 AskUserQuestion 让用户确认最终内容。
1386. 执行发布(参考 xhs-publish 流程):
139```bash
140python scripts/cli.py publish \
141 --title-file /tmp/xhs_title.txt \
142 --content-file /tmp/xhs_content.txt \
143 --images "/abs/path/pic1.jpg" "/abs/path/pic2.jpg" \
144 --tags "标签1" "标签2"
145```
146
147### 互动管理
148
149目标:浏览目标笔记 → 有策略地评论/点赞/收藏。
150
151**步骤:**
152
1531. 确认互动目标(关键词、话题领域)。
1542. 搜索目标笔记:
155```bash
156python scripts/cli.py search-feeds \
157 --keyword "目标关键词" --sort-by 最新
158```
1593. 筛选适合互动的笔记(中等互动量、与自身领域相关)。
1604. 获取详情,了解笔记内容:
161```bash
162python scripts/cli.py get-feed-detail \
163 --feed-id FEED_ID --xsec-token XSEC_TOKEN
164```
1655. 针对笔记内容生成有价值的评论建议。
1666. 用户确认评论内容后发送:
167```bash
168python scripts/cli.py post-comment \
169 --feed-id FEED_ID \
170 --xsec-token XSEC_TOKEN \
171 --content "评论内容"
172```
1737. 可选:点赞或收藏:
174```bash
175python scripts/cli.py like-feed \
176 --feed-id FEED_ID --xsec-token XSEC_TOKEN
177
178python scripts/cli.py favorite-feed \
179 --feed-id FEED_ID --xsec-token XSEC_TOKEN
180```
1818. 每次互动之间保持 30-60 秒间隔。
182
183## 运营建议
184
185- **竞品分析频率**:每周 1-2 次,跟踪竞品动态。
186- **热点追踪频率**:每天 1 次,抓住时效性内容。
187- **互动频率**:每天不超过 20 条评论,避免被限流。
188- **发布时间**:工作日 12:00-13:00、18:00-21:00 为高峰时段。
189
190## 失败处理
191
192- **搜索无结果**:扩大关键词范围或调整筛选条件。
193- **详情获取失败**:笔记可能已删除或设为私密。
194- **发布失败**:参考 xhs-publish 的失败处理。
195- **评论失败**:参考 xhs-interact 的失败处理。
196- **频率限制**:增大操作间隔,降低频率。
197
In the file
SKILL.md435 words
Files1
LicenceMIT
Why you can read it

Nothing in a skill executes. The client loads the text and the model follows it, so a skill can be audited the way a runbook is — by reading it.

What it costs in context

Skills are not billed by the call. They are paid for in context: every token the instructions occupy is a token your code, your diff and your conversation cannot use. Here is what this one takes and when it takes it.

≈70
always loaded
The name and description, so the model knows the skill exists and when to reach for it.
1,555
on trigger
The instruction body, read only when the skill fires.
0.81%
of a 200k window
Ten skills this size would take about 8% of the window before you open a file.
050k100k150k200k context window

1.6k tokens, estimated from the bundle at four bytes to the token, held for the rest of the session once it triggers. Middling. Fine to keep on in a project where you use it weekly, worth unloading in one where you never do.

Servers bill, skills cost

A server charges by the month. A skill charges once per session, in context, and then keeps charging it for as long as the session lives.

Before and after

The same question, put to the same model twice: once as it comes, and once with these instructions loaded.

No worked example has been published for this skill yet.

Adoption
Installsnone yet
Ratingno reviews yet

The procedure it runs

The procedure has not been published here. It is in the skill’s own SKILL.md, which its author has not sent to the marketplace yet.

Prose, not code

These steps are written for a model to follow, not executed by a runtime. It can still be told to skip one, and it will say so when it does.

Servers it uses

None. This skill calls no MCP servers at all.

Everything it needs is in the instructions, so it works in a project with nothing connected — the model reads the file and changes how it works with what it can already reach.

It writes no files and reaches no network. All it changes is how the model reasons and writes.

What it asks for
Writes filesno
Network accessno

Read from the allowed-tools line of this skill’s own SKILL.md. A skill grants no permissions of its own — it can only ask for tools your client already has.

What it will not do

Every skill is narrow, and the useful ones say where they stop. These are the jobs this one is the wrong tool for.

What this skill is not for has not been published here. Nothing is implied by that: it is a section the author has not filled in.

What is in the bundle

1 file, 6.5 kB on disk. A bundle is text throughout: the instructions the model reads, plus the templates it fills in.

  • SKILL.md6.5 kB
What is not in it

No dependencies and nothing executable: a skill is text the agent reads, so the bundle is 1 file you can review in full before installing. The MIT licence covers the templates and examples as well as the instructions.

Install

Installing copies the bundle into your project. Nothing runs at install time — the files sit on disk until the model reads them.

$29 once
XHS Content Ops · MIT · autoclaw-cc
one-time
Price$29 once
LicenceMIT — the author’s, unchanged by this purchase
Paid throughStripe, once, on the card you add at the checkout
Keeps workingfor good — the files are yours once they are on disk
Updatesevery release of 1.x through this account

You can read the whole bundle before paying — the SKILL.md above is the product, not a preview of it. What the money buys is the delivery: the folder packaged and handed to your machine by key, every update its author ships, and our support if it does not do what this listing says. The terms of use are MIT, set by the author and unchanged by buying it here.

Payment runs through Stripe, on a page like this one rather than a redirect. Once there is an account it joins the same mcprush invoice as everything else you run, so there is never a second card to enter.

Which clients pick it up on their own

A skill is a folder of text. A client with a skills folder reads it without being told; everywhere else the same text works, it is just handed to the model rather than found.

Claude Code.claude/skills/
Claude Desktop
ChatGPT
Cursor.cursor/skills/
VS Code.github/skills/
Codex CLI.agents/skills/
Gemini CLI.gemini/skills/
Grok.grok/skills/
Zed.agents/skills/
Windsurf.windsurf/skills/
Agent SDK.claude/skills/
HTTP / API
This release
Version1.0.0
Publishedno release date on file
Price$29
Referenceautoclaw-cc/xhs-content-ops

Versions

v1.0.0 is what is on the shelf; no release here carries a date. Instructions change more often than APIs do — a skill can be rewritten entirely without anything it depends on moving.

v1.0.0
  • No earlier releases have been published to the marketplace.
Pinning

Put autoclaw-cc/xhs-content-ops@1.0.0 in the install command to hold this exact version. Without the suffix you get whatever is current the day you install, and nothing moves under you afterwards.

Reviews

no reviews yet · no installs yet

Nobody has reviewed this skill yet. The rating is the mean of the reviews written here, so there is none until somebody writes the first.

Who can post

Only accounts that have had the skill installed for fourteen days, so a review is written after living with it rather than after reading it. Publishers may reply once.

Who wrote it

AU
autoclaw-cc

Publishes on mcprush.

0 servers listed2 skills listednot claimed
Profile
Publisher
Servers0