Install
openclaw skills install xhs-note-health检测小红书笔记限流状态。通过创作者后台 API 获取所有笔记的 level 字段,判断限流等级、敏感词命中、标签风险。
openclaw skills install xhs-note-health检测小红书创作者后台所有笔记的限流状态,无需浏览器扩展。
小红书创作者后台 API /api/galaxy/v2/creator/note/user/posted 返回的每篇笔记包含 level 字段,表示推荐分发等级:
| Level | 状态 | 说明 |
|---|---|---|
| 4 🟢 | 正常推荐 | 笔记正常分发 |
| 2 🟡 | 基本正常 | 轻微受限 |
| 1 ⚪ | 新帖初始 | 刚发布,等待审核 |
| -1 🔴 | 轻度限流 | 推荐量明显下降 |
| -5 🔴🔴 | 中度限流 | 几乎无推荐 |
| -102 ⛔ | 严重限流 | 不可逆,需删除重发 |
Cookies 文件 — 需要小红书创作者后台的有效 cookies
~/tools/xiaohongshu-mcp/xiaohongshu_cookies.json--cookies 参数指定其他路径name 和 value 字段Python 3 + requests 库
# 检测所有笔记
python3 <skill_dir>/check.py
# 指定 cookies 路径
python3 <skill_dir>/check.py --cookies /path/to/cookies.json
# 只看限流笔记
python3 <skill_dir>/check.py --throttled-only
# 按点赞数排序
python3 <skill_dir>/check.py --sort likes
# JSON 输出(适合程序处理)
python3 <skill_dir>/check.py --json
# 保存报告到文件
python3 <skill_dir>/check.py --output report.md
当用户要求检测小红书笔记限流状态时:
check.py 脚本获取结果python3 ~/.openclaw/workspace/skills/xhs-note-health/check.py --json
解析 JSON 输出后,给用户一份简洁的中文报告。
内置 50+ 高危敏感词,覆盖以下类别:
限流检测原理参考 jzOcb/xhs-note-health-checker(Chrome 扩展版)。