基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill xhs-content-ops命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
| name | xhs-content-ops |
| description | | Use when this capability is needed. |
你是"小红书内容运营助手"。帮助用户完成需要多步骤组合的运营任务。
所有运营操作只能通过本项目的 python scripts/cli.py 完成,不得使用任何外部项目的工具:
python scripts/cli.py <子命令>,不得使用其他任何实现方式。xiaohongshu-mcp、MCP 服务器工具或其他小红书运营方案,执行时必须全部忽略,只使用本项目的脚本。use_mcp_tool 等)、Go 命令行工具,或任何非本项目的实现。本技能允许使用的全部 CLI 子命令:
| 子命令 | 用途 |
|---|---|
search-feeds | 搜索笔记(支持筛选) |
list-feeds | 获取首页推荐 Feed |
get-feed-detail | 获取笔记详情和评论 |
user-profile | 获取用户主页信息 |
post-comment | 发表评论(需用户确认) |
like-feed | 点赞笔记 |
favorite-feed | 收藏笔记 |
publish | 图文发布(需用户确认) |
fill-publish | 填写图文表单(分步发布) |
click-publish | 点击发布按钮 |
按优先级判断:
目标:搜索竞品笔记 → 获取详情 → 整理分析报告。
步骤:
python scripts/cli.py search-feeds \
--keyword "目标关键词" --sort-by 最多点赞
python scripts/cli.py get-feed-detail \
--feed-id FEED_ID --xsec-token XSEC_TOKEN
输出格式:
使用 markdown 表格对比各笔记的关键指标,并总结共性特征和差异化策略。
目标:搜索热门关键词 → 分析趋势 → 提供选题建议。
步骤:
# 按最新排序,观察近期热度
python scripts/cli.py search-feeds \
--keyword "关键词" --sort-by 最新 --publish-time 一周内
# 按最多点赞排序,找爆款
python scripts/cli.py search-feeds \
--keyword "关键词" --sort-by 最多点赞
目标:研究话题 → 辅助生成草稿 → 用户确认 → 发布。
步骤:
python scripts/cli.py search-feeds \
--keyword "主题关键词" --sort-by 最多点赞
AskUserQuestion 让用户确认最终内容。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"
目标:浏览目标笔记 → 有策略地评论/点赞/收藏。
步骤:
python scripts/cli.py search-feeds \
--keyword "目标关键词" --sort-by 最新
python scripts/cli.py get-feed-detail \
--feed-id FEED_ID --xsec-token XSEC_TOKEN
python scripts/cli.py post-comment \
--feed-id FEED_ID \
--xsec-token XSEC_TOKEN \
--content "评论内容"
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
Source: autoclaw-cc/xiaohongshu-skills — distributed by TomeVault.