sn-search-code
用于查找代码示例、开源项目、GitHub Issue、技术问答、开发者讨论、HuggingFace 模型/数据集/Space。
npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-code --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-code - 开发者搜索 ## 凭证配置 API key、token 与 cookie 统一建议写在仓库根目录 `.env`(参考 `.env.example`),并由 runtime 或用户在执行前加载为同名环境变量。脚本仍只从环境变量或显式 CLI 参数读取凭证;不要把真实密钥写入 skill payload、报告、日志或提交。 搜索 GitHub、Stack Overflow、Hacker News、HuggingFace 四个开发者核心平台。所有脚本无需 API 密钥 即可使用,但 GitHub `--type code` 搜索是例外(见下方说明)。 ## 可用脚本 | 脚本 | 平台 | 用途 | API 密钥 | |------|------|------|---------| | `github_search.py` | GitHub | 仓库、代码、Issue 搜索 | `code` 类型**必须**;其他类型可选(提高限额) | | `stackoverflow_search.py` | Stack Overflow | 技术问答搜索 | 无需 | | `hackernews_search.py` | Hacker News | 技术新闻和讨论 | 无需 | | `huggingface_search.py` | HuggingFace | 模型、数据集、Space 搜索 | 可选 `HF_TOKEN`(提高限额) | ## 依赖 首次运行或脚本提示缺库时,使用本技能的依赖清单安装到当前 Python 环境: ```bash python3 -m pip install -r requirements.txt ``` 不要在脚本内部自动安装依赖。若安装失败、网络不可用或包不可用,停止使用对应脚本并改用网页搜索,说明缺少依赖。 ## 参数说明 ### github_search.py ```bash python3 scripts/github_search.py <query> [选项] ``` | 参数 | 说明 | 默认值 | |------|------|--------| | `query` | 搜索关键词(必填) | — | | `--limit`, `-n` | 返回结果数量 | 10 | | `--type`, `-t` | 搜索类型:`repositories`, `code`, `issues`, `repo`, `issue` | repositories | | `--token` | GitHub Token(也可通过 `GITHUB_TOKEN` 环境变量设置) | — | > **注意:`--type code` 必须提供 token。** > GitHub API 对代码搜索接口强制要求
- 凭证配置
- 可用脚本
- 依赖
- 参数说明
- githubsearch.py
- stackoverflowsearch.py
- huggingfacesearch.py
- hackernewssearch.py
- 输出格式
python3 -m pip install -r requirements.txt python3 scripts/github_search.py <query> [选项] python3 scripts/github_search.py "machine learning framework" --type repositories --limit 5 python3 scripts/github_search.py "import asyncio" --type code --token ghp_xxx --limit 5 python3 scripts/stackoverflow_search.py <query> [选项] python3 scripts/stackoverflow_search.py "python async await" --limit 5 python3 scripts/stackoverflow_search.py "rust lifetime" --sort votes --tagged rust --limit 10 python3 scripts/huggingface_search.py <query> [选项] python3 scripts/huggingface_search.py "bert" --type models --limit 5 python3 scripts/huggingface_search.py "text classification" --type datasets --limit 5
What does the sn-search-code skill do?
用于查找代码示例、开源项目、GitHub Issue、技术问答、开发者讨论、HuggingFace 模型/数据集/Space。
How do I install it?
Run `npx skills add OpenSenseNova/SenseNova-Skills --skill sn-search-code --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.
