
anysearch-team/anysearch-dsh
495最近提交 2026年8月15日
anysearch-dsh DSH 插件
该插件将 AnySearch 连接到 DeepSeek Harness,增强其内置的 `web_search` 工具,并额外提供域名发现、垂直搜索、批量搜索以及可选的页面内容清理功能。
如何安装 anysearch-dsh DSH 插件
dsh plugin --profile web add @anysearch/anysearch-dsh复制不会执行命令。安装 anysearch-dsh DSH 插件前请核对仓库和版本。
anysearch-dsh DSH 插件数据来源
anysearch-dsh DSH 插件快照日期:2026年8月16日
discovered
anysearch-dsh DSH 插件能做什么
- 通过 AnySearch 驱动 Harness 原生的 `web_search` 工具
- 提供 `anysearch_capabilities` 工具,动态发现可搜索的域名、标签和参数
- 提供 `anysearch_search` 工具,支持垂直搜索和参数化搜索
- 提供 `anysearch_batch_search` 工具,可一次执行 1–5 个搜索,单个失败不影响其他结果
- 可选返回清理后的页面内容,用于深度研究
anysearch-dsh DSH 插件适合哪些场景
- 在 DeepSeek Harness 对话中实时搜索网络信息
- 在发起专业查询前,先发现可用的搜索域名和标签
- 批量执行多个搜索,进行多维度调研
- 让 AI 智能体获取最新、可引用的网页来源
anysearch-dsh DSH 插件适合谁
- 需要实时网络搜索的 DeepSeek Harness 用户
- 构建需要实时信息检索的 AI 智能体的开发者
anysearch-dsh DSH 插件的限制
- DeepSeek Harness 处于开发者预览阶段,可能发生不兼容变更
- 当前版本未提供 `anysearch_extract` 工具
- API 密钥必须通过 DSH 管理的凭据或环境变量配置;DSH 设置页面暂不支持第三方提供商的凭据字段
- 默认使用匿名配额,建议常规使用注册 AnySearch 账号并配置 API 密钥
anysearch-dsh DSH 插件的仓库 README 摘录
以下文字摘自 anysearch-dsh DSH 插件的上游仓库 anysearch-team/anysearch-dsh 的 README,版权归原作者,仅作引用。
`@anysearch/anysearch-dsh` connects [AnySearch](https://anysearch.com) to [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness). It powers Harness's native `web_search` and adds capability discovery, vertical search, and bounded batch search. ## Quick start ### For AI Agents ```sh # Fetch the complete installation guide, read it end to end, and then follow it step by step: curl -fsSL https://raw.githubusercontent.com/anysearch-team/anysearch-dsh/refs/heads/main/docs/agent-installation.md ``` ### For Humans Requires Node.js 22.19 or Node.js 24+, pnpm 11.7, and DeepSeek Harness. The DSH plugin command uses pnpm to manage profile dependencies, so `pnpm` must be available on `PATH`. Windows, Linux, and macOS use the same installation command. Before installing, ensure that Node.js, `npx`, and `pnpm` can all be run directly from `PATH`. Install the plugin into the `web` profile: ```sh npx -y @deepseek-ai/dsh plugin --profile web add @anysearch/anysearch-dsh ``` Start DeepSeek Harness: ```sh npx -y @deepseek-ai/dsh web ``` No API key is required for a quick start. Requests use AnySearch's anonymous quota until you configure one. ## What you get - AnySearch-powe
阅读完整 README仓库许可: MIT
anysearch-dsh DSH 插件常见问题
如何安装 AnySearch-DSH 插件?
运行命令 `npx -y @deepseek-ai/dsh plugin --profile web add @anysearch/anysearch-dsh` 将其安装到 `web` 配置文件中。确保已安装 Node.js 22.19+、pnpm 11.7 和 DeepSeek Harness。安装后,使用 `npx -y @deepseek-ai/dsh web` 启动 Harness。
使用这个插件需要 API 密钥吗?
不需要,你可以立即开始使用,插件默认使用 AnySearch 的匿名配额。建议常规使用时注册 AnySearch 账号并配置 API 密钥,以获得更高的请求限制。密钥可存储在 `~/.dsh/.credentials.yaml` 文件中,格式为 `ANYSEARCH_API_KEY: "as_sk_your_key"`。
如何配置 API 密钥?
编辑或创建文件 `$DSH_HOME/.credentials.yaml`(默认是 `~/.dsh/.credentials.yaml`),添加一行 `ANYSEARCH_API_KEY: "as_sk_your_key"`。插件每次操作都会解析该凭据,凭据轮换后下一次请求就会生效,无需重启 DSH。环境变量 `ANYSEARCH_API_KEY` 优先级更高。
这个插件添加了哪些工具?
插件添加了三个高级工具:`anysearch_capabilities` 用于发现可用的域名和标签,`anysearch_search` 进行垂直搜索或参数化搜索,`anysearch_batch_search` 用于同时运行 1 到 5 个搜索。同时还增强了 Harness 内置的 `web_search` 工具,将其结果源替换为 AnySearch。
如何更新或卸载插件?
更新命令:`npx -y @deepseek-ai/dsh plugin --profile web update @anysearch/anysearch-dsh`;卸载命令:`npx -y @deepseek-ai/dsh plugin --profile web remove @anysearch/anysearch-dsh`。插件通过 DSH 的插件系统管理。