with one click
搜索中文社交平台:B站视频、知乎问答、抖音视频。部分平台需要 cookie 认证,稳定性因平台而异。
npx skills add https://github.com/OpenSenseNova/SenseNova-Skills --skill sn-search-social-cnCopy and paste this command into Claude Code to install the skill
搜索中文社交平台:B站视频、知乎问答、抖音视频。部分平台需要 cookie 认证,稳定性因平台而异。
npx skills add https://github.com/OpenSenseNova/SenseNova-Skills --skill sn-search-social-cnCopy and paste this command into Claude Code to install the skill
Creative-mode PPT pipeline. One full-page 16:9 PNG per slide. LLM / VLM calls go through sn-ppt-standard/lib/model_client.py (shared thin client). Text-to-image (the actual png rendering) goes through sn-image-base/scripts/sn_agent_runner.py. Expects task_pack.json + info_pack.json already written by sn-ppt-entry.
Standard-mode PPT pipeline. All LLM / VLM / T2I calls are wrapped in a single CLI entry (scripts/run_stage.py). The main agent's job is simple: emit ONE shell command per stage, never write loops, never write prompts.
USE FOR Google-backed image discovery via Serper.dev. Returns image URLs, page URLs, titles, and source domains.
Base-layer skill for the SenseNova-Skills project, providing low-level APIs for image generation, recognition (VLM), and text optimization (LLM). This skill does not preprocess inputs; it only calls backend services and returns results. This skill is not user-facing and is intended for upper-layer skills only.
Generates professional infographics with various layout types and visual styles. Analyzes content, recommends layout and style, and generates publication-ready infographics. Use when user asks to create "infographic", "信息图", "visual summary", or "可视化".
Environment diagnostic for the PPT family. Validates sn-image-base, API keys, Node runtime, and optional deps; interactively writes .env for required vars. Runs before sn-ppt-entry; does not modify sn-image-* skills.
| name | sn-search-social-cn |
| description | 搜索中文社交平台:B站视频、知乎问答、抖音视频。部分平台需要 cookie 认证,稳定性因平台而异。 |
搜索 B站、知乎、抖音三个中文社交平台。
中文社交平台没有稳定的公开搜索 API,所有脚本依赖内部 API 或第三方库,可能因平台更新而失效。
运行脚本前先安装本 skill 的 Python 依赖:
python3 -m pip install -r skills/sn-search-social-cn/requirements.txt
如果项目使用 uv 环境:
uv pip install -r skills/sn-search-social-cn/requirements.txt
| 脚本 | 平台 | 稳定性 | 认证方式 |
|---|---|---|---|
bilibili_search.py | B站 | 较高 | 无需(可选 cookie 提高质量) |
zhihu_search.py | 知乎 | 中等 | 需 ZHIHU_COOKIE |
douyin_search.py | 抖音 | 较低 | 需 DOUYIN_COOKIE |
Cookie 字段python3 scripts/bilibili_search.py <query> [选项]
| 参数 | 说明 | 默认值 |
|---|---|---|
query | 搜索关键词(必填) | — |
--limit, -n | 返回结果数量 | 10 |
--cookie | B站 Cookie(也可通过 BILIBILI_COOKIE 环境变量设置,可选,提高结果质量) | — |
--order | 排序:空=综合, totalrank=最佳匹配, click=播放, pubdate=最新, dm=弹幕, stow=收藏 | 综合 |
python3 scripts/bilibili_search.py "机器学习教程" --limit 5
python3 scripts/bilibili_search.py "Python" --order click --limit 10
python3 scripts/zhihu_search.py <query> [选项]
| 参数 | 说明 | 默认值 |
|---|---|---|
query | 搜索关键词(必填) | — |
--limit, -n | 返回结果数量 | 10 |
--cookie | 知乎 Cookie(也可通过 ZHIHU_COOKIE 环境变量设置,必填) | — |
--type | 搜索类型:general, topic, people, zvideo | general |
ZHIHU_COOKIE="..." python3 scripts/zhihu_search.py "Python 异步编程" --limit 5
python3 scripts/zhihu_search.py "大模型" --cookie "..." --type topic --limit 5
python3 scripts/douyin_search.py <query> [选项]
| 参数 | 说明 | 默认值 |
|---|---|---|
query | 搜索关键词(必填) | — |
--limit, -n | 返回结果数量 | 10 |
--cookie | 抖音 Cookie(也可通过 DOUYIN_COOKIE 环境变量设置,必填) | — |
DOUYIN_COOKIE="..." python3 scripts/douyin_search.py "编程教程" --limit 5
标准 JSON:{"success": true, "query": "...", "provider": "bilibili|zhihu|douyin", "items": [...], "error": null}