Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

xiaohongshu-content-benchmark小红书内容基准

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

321

周安装

13

GitHub Stars

公开资料未说明

下载量

101
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:xiaohongshu-content-benchmark(小红书内容基准)
来源仓库:https://github.com/postplusai/postplus-skills
仓库路径:skills/xiaohongshu-content-benchmark
安装命令:
npx skills add https://github.com/postplusai/postplus-skills --skill xiaohongshu-content-benchmark
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/postplusai/postplus-skills --skill xiaohongshu-content-benchmark

简介

xiaohongshu-content-benchmark 用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 适合让 Agent 提炼结构、补齐章节、统一术语或检查链接,把零散材料整理成可读文档。
  • 使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时需控制语气。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 可结合来源仓库和 SKILL.md 进一步了解功能边界和使用限制。

SKILL.md

XHS Content Benchmark

Follow shared release-shell rules in:

  • postplus-shared release-shell rules

Legacy alias: xhs-content-benchmark.

Use this skill when the user wants to:

  • benchmark competitor or inspiration accounts on Xiaohongshu
  • identify repeated Xiaohongshu title hooks and cover patterns
  • shortlist strong note examples before adapting them into local XHS cards
  • compare recent post output from one or more known Xiaohongshu profiles

Read these references before implementation:

  • skills/20-research/xhs-content-benchmark/references/actor-selection.md
  • skills/20-research/xhs-content-benchmark/references/brief-schema.md
  • skills/20-research/xhs-content-benchmark/references/normalized-schema.md

Default posture

Start from account-based benchmarking, not broad keyword search.

Default starting surface:

  • known profile URLs -> recent post benchmark pool

Do not use this as the default first surface:

  • keyword or topic search as the first collection surface

Do not silently switch between surfaces. If the user asks for keyword search, use the keyword-search route explicitly and fail visibly if it returns no items.

Validated actor path

Default actor for this skill:

  • rednote-xiaohongshu-user-posts-scraper

Use it when the user provides:

  • one or more Xiaohongshu profileUrls
  • one or more Xiaohongshu profileIds

This is the current default because it returns the post-level fields this benchmark flow needs:

  • note URL
  • note id
  • title
  • post type
  • like count
  • author metadata
  • cover image metadata

Experimental route

Keyword route:

  • rednote-xiaohongshu-search-scraper

Use it only when the user explicitly wants keyword or topic benchmarking.

Current operational rule:

  • require maxItems >= 100
  • fail if the actor returns zero items

Do not pretend keyword benchmarking succeeded when the actor returned an empty dataset.

Not part of this skill

  • comment mining
  • audience language extraction
  • media downloading
  • profile health snapshots
  • publishing or scheduling notes

Route those later to dedicated XHS skills.

Recommended workflow

  1. classify the request:

- account benchmark - keyword benchmark

  1. compile a small benchmark brief into actor input
  2. run the chosen actor through the shared collection runner
  3. normalize into one local post dataset
  4. rank by like signal plus theme relevance
  5. summarize:

- recurring hooks - title pattern families - cover aspect patterns - content-type split - strongest benchmark examples

Cost discipline

Validated account route:

  • start with 8-15 recent posts per profile
  • benchmark 1-3 profiles at a time

Experimental keyword route:

  • the actor currently enforces a much higher minimum item count
  • do not hide that constraint
  • keep keyword batches narrow and specific

Release-Shell Execution Contract

  • keep benchmark briefs, actor inputs, raw datasets, normalized datasets, rankings, and analysis outputs under <work-folder>/.postplus/xiaohongshu-content-benchmark/
  • keep only final user-facing benchmark summaries or shortlists outside .postplus/
  • start with a bounded first pass:

- 1-3 profiles for the validated account route - narrow keyword batches only when the user explicitly requests search

  • if hosted capability is unavailable, unauthorized, or returns a stable network error, stop immediately instead of switching to ad hoc shell glue

Main scripts

  • scripts/build_xhs_benchmark_actor_input.mjs
  • scripts/normalize_xhs_benchmark_dataset.mjs
  • scripts/rank_xhs_benchmark_posts.mjs
  • scripts/analyze_xhs_benchmark_dataset.mjs

Use the shared collection runner for actor calls:

  • ${CLAUDE_SKILL_DIR}/_postplus_shared/00-core/shared-collection/scripts/collection_actor_run.mjs

Minimal workflow

Account benchmark

Build actor input from a brief:

node ${CLAUDE_SKILL_DIR}/scripts/build_xhs_benchmark_actor_input.mjs \
  --brief <work-folder>/.postplus/xhs-benchmark-brief.json \
  --output <work-folder>/.postplus/xhs-benchmark-actor-input.json

Run the validated actor:

node ${CLAUDE_SKILL_DIR}/_postplus_shared/00-core/shared-collection/scripts/collection_actor_run.mjs \
  --collection-key xhs-account-posts \
  --input <work-folder>/.postplus/xhs-benchmark-actor-input.json \
  --output <work-folder>/.postplus/xhs-benchmark-raw.json

Normalize, rank, analyze:

node ${CLAUDE_SKILL_DIR}/scripts/normalize_xhs_benchmark_dataset.mjs \
  --input <work-folder>/.postplus/xhs-benchmark-raw.json \
  --output <work-folder>/.postplus/xhs-benchmark-normalized.json

node ${CLAUDE_SKILL_DIR}/scripts/rank_xhs_benchmark_posts.mjs \
  --input <work-folder>/.postplus/xhs-benchmark-normalized.json \
  --theme "职场,打工人,办公室" \
  --output <work-folder>/.postplus/xhs-benchmark-ranking.json

node ${CLAUDE_SKILL_DIR}/scripts/analyze_xhs_benchmark_dataset.mjs \
  --input <work-folder>/.postplus/xhs-benchmark-normalized.json \
  --output <work-folder>/.postplus/xhs-benchmark-analysis.json

Keyword benchmark

Use the same build script, but provide keywords in the brief.

Operational constraint:

  • keep limit >= 100
  • expect a visible failure if the actor returns zero items

Good output

Return:

  • benchmark shortlist
  • top note URLs
  • recurring title hooks
  • title pattern breakdown
  • cover-shape breakdown
  • observed content-type split
  • data-quality warnings when fields are missing
  • suggested card angles that can later feed skills/40-creative/xiaohongshu-card-notes

Failure posture

  • fail if the request mixes profile benchmarking and keyword benchmarking without saying which should be primary
  • fail if no profileUrls, profileIds, or keywords are provided
  • fail if the keyword-search actor returns zero items
  • fail if the normalized dataset has no note URLs
  • keep raw actor output for debugging

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.35%
按下载量换算37

Claude

30.82%
按下载量换算31

Cursor

16.36%
按下载量换算17

Gemini CLI

9.6%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/postplusai/postplus-skills --skill xiaohongshu-content-benchmark 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills