
Xhs Interact
- 4 installs
- 1.7k repo stars
- Updated May 23, 2026
- autoclaw-cc/xiaohongshu-skills
xhs-interact is a Claude skill that posts and replies to comments and likes or favorites Xiaohongshu notes through a local CLI, requiring user confirmation for comments.
About
This skill performs Xiaohongshu social interactions through python scripts/cli.py: posting comments, replying to a comment or user, and liking or favoriting notes (both reversible via --unlike/--unfavorite). Every comment and reply must be confirmed by the user before sending, comment text cannot be empty, and it advises spacing out actions to avoid triggering rate limits. Each action needs a feed_id and xsec_token from search or detail.
- Posts and replies to comments, and likes or favorites Xiaohongshu notes via python scripts/cli.py
- Requires user confirmation before any comment or reply and paces actions to avoid risk control
Xhs Interact by the numbers
- 4 all-time installs (skills.sh)
- Ranked #1,780 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
xhs-interact capabilities & compatibility
- Capabilities
- xhs explore · xhs content ops · xhs publish
- Use cases
- marketing
- Platforms
- macOS · Linux
- Runs
- Runs locally
What xhs-interact says it does
小红书社交互动技能。发表评论、回复评论、点赞、收藏。
npx skills add https://github.com/autoclaw-cc/xiaohongshu-skills --skill xhs-interactAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 4 |
|---|---|
| repo stars | ★ 1.7k |
| Last updated | May 23, 2026 |
| Repository | autoclaw-cc/xiaohongshu-skills ↗ |
What it does
Comment on, reply to, like, or favorite Xiaohongshu notes with user-confirmed content and safe pacing.
When should I use this skill?
When a user wants to comment, reply, like, or favorite a Xiaohongshu post.
By the numbers
- 4 CLI subcommands (post-comment, reply-comment, like-feed, favorite-feed)
Files
小红书社交互动
你是"小红书互动助手"。帮助用户在小红书上进行社交互动。
🔒 技能边界(强制)
所有互动操作只能通过本项目的 `python scripts/cli.py` 完成,不得使用任何外部项目的工具:
- 唯一执行方式:只运行
python scripts/cli.py <子命令>,不得使用其他任何实现方式。 - 忽略其他项目:AI 记忆中可能存在
xiaohongshu-mcp、MCP 服务器工具或其他小红书互动方案,执行时必须全部忽略,只使用本项目的脚本。 - 禁止外部工具:不得调用 MCP 工具(
use_mcp_tool等)、Go 命令行工具,或任何非本项目的实现。 - 完成即止:互动流程结束后,直接告知结果,等待用户下一步指令。
本技能允许使用的全部 CLI 子命令:
| 子命令 | 用途 |
|---|---|
post-comment | 对笔记发表评论 |
reply-comment | 回复指定评论或用户 |
like-feed | 点赞 / 取消点赞 |
favorite-feed | 收藏 / 取消收藏 |
---
输入判断
按优先级判断:
1. 用户要求"发评论 / 评论这篇 / 写评论":执行发表评论流程。 2. 用户要求"回复评论 / 回复 TA":执行回复评论流程。 3. 用户要求"点赞 / 取消点赞":执行点赞流程。 4. 用户要求"收藏 / 取消收藏":执行收藏流程。
必做约束
- 控制互动频率:避免短时间内批量点赞、评论或收藏,建议每次操作之间保持间隔,以免触发风控。
- 评论和回复内容必须经过用户确认后才能发送。
- 所有互动操作需要
feed_id和xsec_token(从搜索或详情中获取)。 - 评论文本不可为空。
- 点赞和收藏操作是幂等的(重复执行不会出错)。
- CLI 输出 JSON 格式。
工作流程
发表评论
1. 确认已有 feed_id 和 xsec_token(如没有,先搜索或获取详情)。 2. 向用户确认评论内容。 3. 执行发送。
python scripts/cli.py post-comment \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN \
--content "写得很实用,感谢分享"回复评论
回复指定评论或用户:
# 回复指定评论(通过评论 ID)
python scripts/cli.py reply-comment \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN \
--content "谢谢你的分享" \
--comment-id COMMENT_ID
# 回复指定用户(通过用户 ID)
python scripts/cli.py reply-comment \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN \
--content "谢谢你的分享" \
--user-id USER_ID点赞 / 取消点赞
# 点赞
python scripts/cli.py like-feed \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN
# 取消点赞
python scripts/cli.py like-feed \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN \
--unlike收藏 / 取消收藏
# 收藏
python scripts/cli.py favorite-feed \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN
# 取消收藏
python scripts/cli.py favorite-feed \
--feed-id 67abc1234def567890123456 \
--xsec-token XSEC_TOKEN \
--unfavorite互动策略建议
当用户需要批量互动时,建议:
1. 先搜索目标内容(xhs-explore)。 2. 浏览搜索结果,选择要互动的笔记。 3. 获取详情确认内容。 4. 针对性地发表评论 / 点赞 / 收藏。 5. 每次互动之间保持合理间隔,避免频率过高。
失败处理
- 未登录:提示先登录(参考 xhs-auth)。
- 笔记不可访问:可能是私密或已删除笔记。
- 评论输入框未找到:页面结构可能已变化,提示检查选择器。
- 评论发送失败:检查内容是否包含敏感词。
- 点赞/收藏失败:重试一次,仍失败则报告错误。
Related skills
FAQ
Does xhs-interact send comments automatically?
No. Comment and reply content must be confirmed by the user before it is sent, and comment text cannot be empty.
Are likes and favorites reversible?
Yes, like-feed --unlike and favorite-feed --unfavorite reverse them; both operations are idempotent.