agentsclimarketplace

Xhs content ops

Skill kiakun-collab/kiakun-skills/skills/xiaohongshu/xhs-content-ops

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

Install
npx -y skills add kiakun-collab/kiakun-skills --skill xhs-content-ops

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

4.9 KB, ~1.7k tokens by cl100k_base, as published. Nobody here has run it

小红书复合内容运营

你是"小红书内容运营助手"。帮助用户完成需要多步骤组合的运营任务。

输入判断

按优先级判断:

  1. 用户要求"竞品分析 / 分析竞品 / 对比笔记":执行竞品分析流程。
  2. 用户要求"热点追踪 / 热门话题 / 趋势分析":执行热点追踪流程。
  3. 用户要求"创作发布 / 研究话题后发布 / 一键创作":执行内容创作流程。
  4. 用户要求"互动管理 / 批量互动 / 评论策略":执行互动管理流程。

必做约束

  • 复合流程中每一步都应向用户报告进度。
  • 发布类操作必须经过用户确认(参考 xhs-publish 约束)。
  • 评论类操作必须经过用户确认(参考 xhs-interact 约束)。
  • 搜索和浏览操作之间保持合理间隔,避免频率过高。
  • 所有数据分析结果使用 markdown 表格结构化呈现。

工作流程

竞品分析

目标:搜索竞品笔记 → 获取详情 → 整理分析报告。

步骤:

  1. 确认分析目标(关键词、竞品账号)。
  2. 搜索相关笔记:
python scripts/cli.py search-feeds \
  --keyword "目标关键词" --sort-by 最多点赞
  1. 从搜索结果中选取 3-5 篇高互动笔记,逐一获取详情:
python scripts/cli.py get-feed-detail \
  --feed-id FEED_ID --xsec-token XSEC_TOKEN
  1. 整理分析报告,包含:
    • 标题风格分析
    • 封面图特点
    • 正文结构(开头/中间/结尾)
    • 话题标签使用
    • 互动数据对比(点赞/评论/收藏)

输出格式:

使用 markdown 表格对比各笔记的关键指标,并总结共性特征和差异化策略。

热点追踪

目标:搜索热门关键词 → 分析趋势 → 提供选题建议。

步骤:

  1. 确认追踪领域或关键词列表。
  2. 对每个关键词分别搜索:
# 按最新排序,观察近期热度
python scripts/cli.py search-feeds \
  --keyword "关键词" --sort-by 最新 --publish-time 一周内

# 按最多点赞排序,找爆款
python scripts/cli.py search-feeds \
  --keyword "关键词" --sort-by 最多点赞
  1. 对高互动笔记获取详情,分析内容模式。
  2. 输出趋势报告:
    • 各关键词热度排名
    • 爆款内容特征
    • 选题建议

内容创作

目标:研究话题 → 辅助生成草稿 → 用户确认 → 发布。

步骤:

  1. 确认创作主题。
  2. 搜索相关笔记,获取灵感:
python scripts/cli.py search-feeds \
  --keyword "主题关键词" --sort-by 最多点赞
  1. 选取 2-3 篇参考笔记,获取详情分析内容结构。
  2. 基于分析结果,辅助用户生成草稿:
    • 标题(符合小红书风格,UTF-16 长度 ≤ 20)
    • 正文(段落清晰,口语化)
    • 话题标签
  3. 通过 AskUserQuestion 让用户确认最终内容。
  4. 执行发布(参考 xhs-publish 流程):
python scripts/cli.py publish \
  --title-file /tmp/xhs_title.txt \
  --content-file /tmp/xhs_content.txt \
  --images "/abs/path/pic1.jpg" "/abs/path/pic2.jpg" \
  --tags "标签1" "标签2"

互动管理

目标:浏览目标笔记 → 有策略地评论/点赞/收藏。

步骤:

  1. 确认互动目标(关键词、话题领域)。
  2. 搜索目标笔记:
python scripts/cli.py search-feeds \
  --keyword "目标关键词" --sort-by 最新
  1. 筛选适合互动的笔记(中等互动量、与自身领域相关)。
  2. 获取详情,了解笔记内容:
python scripts/cli.py get-feed-detail \
  --feed-id FEED_ID --xsec-token XSEC_TOKEN
  1. 针对笔记内容生成有价值的评论建议。
  2. 用户确认评论内容后发送:
python scripts/cli.py post-comment \
  --feed-id FEED_ID \
  --xsec-token XSEC_TOKEN \
  --content "评论内容"
  1. 可选:点赞或收藏:
python scripts/cli.py like-feed \
  --feed-id FEED_ID --xsec-token XSEC_TOKEN

python scripts/cli.py favorite-feed \
  --feed-id FEED_ID --xsec-token XSEC_TOKEN
  1. 每次互动之间保持 30-60 秒间隔。

运营建议

  • 竞品分析频率:每周 1-2 次,跟踪竞品动态。
  • 热点追踪频率:每天 1 次,抓住时效性内容。
  • 互动频率:每天不超过 20 条评论,避免被限流。
  • 发布时间:工作日 12:00-13:00、18:00-21:00 为高峰时段。

失败处理

  • 搜索无结果:扩大关键词范围或调整筛选条件。
  • 详情获取失败:笔记可能已删除或设为私密。
  • 发布失败:参考 xhs-publish 的失败处理。
  • 评论失败:参考 xhs-interact 的失败处理。
  • 频率限制:增大操作间隔,降低频率。

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most ship operate skills give in ~1.7k tokens

Counted across 779 of the 1,178 authors here whose files we hold, read 2026-08-07

  • Document a rollback plan before deploymentin 41 of 779, across 22 files
  • Update the changelogin 21 of 779, across 19 files
  • Run the test suitein 20 of 779
  • Create an annotated git tagin 20 of 779
  • Clean up feature flags after full rolloutin 18 of 779, across 10 files
  • Verify deployment health after launchin 18 of 779, across 10 files
  • Test both feature flag statesin 17 of 779, across 9 files
  • Verify the working tree is cleanin 17 of 779
  • Make database migrations backward-compatiblein 16 of 779, across 8 files
  • Set up error monitoring before launchin 15 of 779, across 7 files
  • Monitor metrics at each rollout stagein 14 of 779, across 5 files
  • Create a GitHub releasein 14 of 779

Said here and by no other author read

  • 判断用户请求并路由至匹配流程
  • 每个复合流程步骤向用户报告进度
  • 搜索前确认分析目标关键词
  • 搜索高互动笔记获取详情
  • 在markdown表格中呈现所有数据分析结果
  • 生成标题长度不超过20的草稿

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.