sn-search-social-cn
用于搜索中文社交平台。脚本入口覆盖 B站视频、知乎问答和抖音视频;小红书、微博当前没有脚本入口,只能通过 browser-use / 公开网页兜底。
npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-social-cn --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# sn-search-social-cn - 中文社交平台搜索 ## 凭证配置 API key、token 与 cookie 统一建议写在仓库根目录 `.env`(参考 `.env.example`),并由 runtime 或用户在执行前加载为同名环境变量。脚本仍只从环境变量或显式 CLI 参数读取凭证;不要把真实密钥写入 skill payload、报告、日志或提交。 脚本搜索 B站、知乎、抖音三个中文社交平台。小红书、微博当前没有可用脚本入口,如研究必须覆盖这两类来源,使用 browser-use 打开公开网页结果或平台搜索页,并在结果中说明该来源来自网页兜底。 ## 稳定性说明 中文社交平台没有稳定的公开搜索 API,所有脚本依赖内部 API 或第三方库,**可能因平台更新而失效**。 | 脚本 | 平台 | 稳定性 | 认证方式 | |------|------|--------|---------| | `bilibili_search.py` | B站 | 较高 | 无需(可选 cookie 提高质量) | | `zhihu_search.py` | 知乎 | 中等 | 需 `ZHIHU_COOKIE` | | `douyin_search.py` | 抖音 | 较低 | 需 `DOUYIN_COOKIE` | | 无脚本 | 小红书 | 低 | browser-use / 公开网页兜底 | | 无脚本 | 微博 | 低 | browser-use / 公开网页兜底 | ## 依赖 首次运行或脚本提示缺库时,使用本技能的依赖清单安装到当前 Python 环境: ```bash python3 -m pip install -r requirements.txt ``` 不要在脚本内部自动安装依赖。若安装失败、网络不可用或包不可用,停止使用对应脚本并改用 browser-use 搜索免费可见网页,说明缺少依赖。 ## Cookie 获取方式 1. 在浏览器中登录对应脚本平台 2. 打开开发者工具(F12)→ Network 标签 3. 刷新页面,在请求头中找到 `Cookie` 字段 4. 将完整 cookie 字符串设置为对应环境变量。小红书、微博当前没有脚本入口,不读取 `XHS_COOKIE` / `WEIBO_COOKIE`。 ## 参数说明 ### bilibili_search.py ```bash python3 scripts/bilibili_search.py <query> [选项] ``` | 参数 | 说明 | 默认值 | |------|------|--------| | `query` | 搜索关键词(必填) | — | | `--limit`, `-n` | 返回结果数量 | 10 | | `--cookie`
- 凭证配置
- 稳定性说明
- 依赖
- Cookie 获取方式
- 参数说明
- bilibilisearch.py
- zhihusearch.py
- douyinsearch.py
- 输出格式
python3 -m pip install -r requirements.txt python3 scripts/bilibili_search.py <query> [选项] python3 scripts/bilibili_search.py "机器学习教程" --limit 5 python3 scripts/bilibili_search.py "Python" --order click --limit 10 python3 scripts/zhihu_search.py <query> [选项] python3 scripts/zhihu_search.py "大模型" --cookie "..." --type topic --limit 5 python3 scripts/douyin_search.py <query> [选项]
What does the sn-search-social-cn skill do?
用于搜索中文社交平台。脚本入口覆盖 B站视频、知乎问答和抖音视频;小红书、微博当前没有脚本入口,只能通过 browser-use / 公开网页兜底。
How do I install it?
Run `npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-social-cn --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From OpenSenseNova/SenseNova-Skills, a repository with 4,855 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
