← 返回 Skills 市场
sorrymaker0624

Bohrium Web Search

作者 Sorrymaker0624 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
35
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install bohrium-web-search
功能描述
Web search via Bohrium's open-platform proxy (backed by searchapi.io). Use when: user needs to search the open web for research papers, documentation, tutori...
使用说明 (SKILL.md)

SKILL: Bohrium Web Search

Overview

Proxy to searchapi.io via open.bohrium.com's /v1/search/web endpoint. Issues keyword queries against the open internet and returns a list of hits with title, URL, and snippet.

Use when: locating a software's homepage, a blog post, a quick fact check, a news article.

Don't use for:

  • Academic paper search → use bohrium-paper-search or bohrium-scholar-search
  • Bohrium knowledge-base search → use bohrium-knowledge-base

No CLI support — HTTP API only. The bohr CLI ships a built-in BohrWebSearch tool that calls this endpoint automatically.

Auth configuration

ACCESS_KEY comes from the OpenClaw config file ~/.openclaw/openclaw.json:

"bohrium-web-search": {
  "enabled": true,
  "apiKey": "YOUR_ACCESS_KEY",
  "env": {
    "ACCESS_KEY": "YOUR_ACCESS_KEY"
  }
}

OpenClaw injects env.ACCESS_KEY into the runtime.

API

GET https://open.bohrium.com/openapi/v1/search/web?q=QUERY&num=N
Header: accessKey: $ACCESS_KEY
Param Type Default Description
q string required Search query
num int 3 Number of results, range 1-10

Python example

import os, requests

AK = os.environ["ACCESS_KEY"]
BASE = "https://open.bohrium.com/openapi/v1/search/web"

r = requests.get(BASE,
    headers={"accessKey": AK},
    params={"q": "graphene synthesis CVD", "num": 5})
data = r.json()

for i, hit in enumerate(data.get("organic_results", []), 1):
    print(f"[{i}] {hit['title']}")
    print(f"    {hit['link']}")
    print(f"    {hit.get('snippet', '')[:200]}")
    print()

Response fields:

Field Description
organic_results Array of main results
organic_results[].title Page title
organic_results[].link Page URL
organic_results[].snippet Excerpt
organic_results[].position Result rank

curl example

AK="YOUR_ACCESS_KEY"
curl -s "https://open.bohrium.com/openapi/v1/search/web?q=deepmd-kit&num=5" \
  -H "accessKey: $AK" | jq '.organic_results[] | {title, link, snippet}'

Troubleshooting

Symptom Cause Fix
No organic_results No matches for the query Rephrase; English queries generally return more hits than Chinese
401 Bad ACCESS_KEY Check accessKey header case; don't use Authorization: Bearer
num ignored Out of range Must be 1-10; values outside the range may be clamped or ignored

Pairs well with

  • web-search to find a software's homepage → then bohrium-job to submit a job using it
  • web-search to sanity-check a method name → then bohrium-paper-search to locate the original paper
  • web-search for recent arxiv preprint URLs → hand off to bohrium-pdf-parser
能力标签
requires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install bohrium-web-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /bohrium-web-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug bohrium-web-search
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Bohrium Web Search 是什么?

Web search via Bohrium's open-platform proxy (backed by searchapi.io). Use when: user needs to search the open web for research papers, documentation, tutori... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 35 次。

如何安装 Bohrium Web Search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install bohrium-web-search」即可一键安装,无需额外配置。

Bohrium Web Search 是免费的吗?

是的,Bohrium Web Search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Bohrium Web Search 支持哪些平台?

Bohrium Web Search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Bohrium Web Search?

由 Sorrymaker0624(@sorrymaker0624)开发并维护,当前版本 v1.0.0。

💬 留言讨论