sn-search-social-en
用于搜索英文社交平台,包括 Reddit 帖子、Twitter/X 推文和 YouTube 视频。
npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-social-en --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-en - 英文社交平台搜索 ## 凭证配置 API key、token 与 cookie 统一建议写在仓库根目录 `.env`(参考 `.env.example`),并由 runtime 或用户在执行前加载为同名环境变量。脚本仍只从环境变量或显式 CLI 参数读取凭证;不要把真实密钥写入 skill payload、报告、日志或提交。 搜索 Reddit、Twitter/X、YouTube 三个英文社交平台。 ## 可用脚本 | 脚本 | 平台 | 用途 | API 密钥 | |------|------|------|---------| | `reddit_search.py` | Reddit | 帖子和讨论搜索 | 无需 | | `twitter_search.py` | Twitter/X | 推文搜索 | 需 `TIKHUB_TOKEN` | | `youtube_search.py` | YouTube | 视频搜索 | 需 `YOUTUBE_API_KEY` | ## 依赖 首次运行或脚本提示缺库时,使用本技能的依赖清单安装到当前 Python 环境: ```bash python3 -m pip install -r requirements.txt ``` 不要在脚本内部自动安装依赖。若安装失败、网络不可用或包不可用,停止使用对应脚本并改用网页搜索,说明缺少依赖。 ## 参数说明 ### reddit_search.py ```bash python3 scripts/reddit_search.py <query> [选项] ``` | 参数 | 说明 | 默认值 | |------|------|--------| | `query` | 搜索关键词(必填) | — | | `--limit`, `-n` | 返回结果数量 | 10 | | `--subreddit`, `-r` | 限定子版块(如 `python`, `machinelearning`) | — | | `--sort` | 排序方式:`relevance`, `hot`, `top`, `new`, `comments` | relevance | | `--time`, `-t` | 时间范围:`hour`, `day`, `week`, `month`, `year`, `all` | all | ```bash python3 scripts/reddit_search.py "machine learning projects" --limit 5 python3 scripts/reddit_search.py "async python" --subreddit python --sort top --time m
- 凭证配置
- 可用脚本
- 依赖
- 参数说明
- redditsearch.py
- twittersearch.py
- youtubesearch.py
- 输出格式
python3 -m pip install -r requirements.txt python3 scripts/reddit_search.py <query> [选项] python3 scripts/reddit_search.py "machine learning projects" --limit 5 python3 scripts/reddit_search.py "async python" --subreddit python --sort top --time month --limit 5 python3 scripts/twitter_search.py <query> [选项] python3 scripts/twitter_search.py "AI agents" --limit 10 python3 scripts/twitter_search.py "LLM" --token your_tikhub_token --limit 5 python3 scripts/youtube_search.py <query> [选项] python3 scripts/youtube_search.py "transformer explained" --limit 5 python3 scripts/youtube_search.py "python tutorial" --order viewCount --limit 10
What does the sn-search-social-en skill do?
用于搜索英文社交平台,包括 Reddit 帖子、Twitter/X 推文和 YouTube 视频。
How do I install it?
Run `npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-social-en --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.
