Privacy-respecting web search via SearXNG with DuckDuckGo-style bangs support. Use for web searches when you need to find information online. SearXNG protects privacy by randomizing browser fingerprints, masking IP addresses, and blocking cookies/referrers. Supports 250+ search engines, multiple categories (general, news, images, videos, science), and DuckDuckGo-style bangs for direct engine searches (!w for Wikipedia, !yt for YouTube, !gh for GitHub, !r for Reddit, etc.). Aggregates results from multiple engines simultaneously. Prefer this over external search APIs for privacy-sensitive queries or high-volume searches.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install searxng-bangs或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install searxng-bangs⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/searxng-bangs/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: searxng-bangs description: Privacy-respecting web search via SearXNG with DuckDuckGo-style bangs support. Use for web searches when you need to find information online. SearXNG protects privacy by randomizing browser fingerprints, masking IP addresses, and blocking cookies/referrers. Supports 250+ search engines, multiple categories (general, news, images, videos, science), and DuckDuckGo-style bangs for direct engine searches (!w for Wikipedia, !yt for YouTube, !gh for GitHub, !r for Reddit, etc.). Aggregates results from multiple engines simultaneously. Prefer this over external search APIs for privacy-sensitive queries or high-volume searches. ---
Privacy-respecting metasearch engine that anonymizes searches and aggregates results from 250+ engines.
Search the web using the bundled script:
python3 scripts/search.py "your query"
Returns JSON with titles, URLs, and content snippets.
python3 scripts/search.py "OpenClaw AI agent" --num 5
python3 scripts/search.py "latest tech news" --categories news
python3 scripts/search.py "Python Tutorial" --lang de
python3 scripts/search.py "machine learning" --categories general,science --num 10
# Wikipedia
python3 scripts/search.py "Albert Einstein" --bang w
# YouTube
python3 scripts/search.py "python tutorial" --bang yt
# GitHub
python3 scripts/search.py "openclaw" --bang gh
# Reddit
python3 scripts/search.py "best laptop 2026" --bang r
Bangs are more granular than categories and search directly on specific engines.
SearXNG protects your privacy through multiple layers:
Result: Search engines cannot build a profile about you.
Prefer SearXNG for:
Prefer Brave API (web_search tool) for:
The script returns clean JSON that's easy to parse and present:
import json
import subprocess
result = subprocess.run(
['python3', 'scripts/search.py', 'query', '--num', '5'],
capture_output=True,
text=True
)
data = json.loads(result.stdout)
for item in data['results']:
print(f"Title: {item['title']}")
print(f"URL: {item['url']}")
print(f"Snippet: {item['content']}")
print()
See references/api.md for:
By default, the script uses http://127.0.0.1:8080. Configure via environment variable:
export SEARXNG_URL=http://your-searxng-instance.com
python3 scripts/search.py "query"
Options:
If you don't run your own SearXNG:
# Example with public instance
export SEARXNG_URL=https://searx.be
python3 scripts/search.py "query"
Note: Public instances may have rate limits or be slower than self-hosted.
http://127.0.0.1:8080 (override with SEARXNG_URL)scripts/search.py安装 Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) 后,可以对 AI 说这些话来触发它
Help me get started with Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh)
Explains what Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) does, walks through the setup, and runs a quick demo based on your current project
Use Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) to privacy-respecting web search via SearXNG with DuckDuckGo-style ban...
Invokes Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) with the right parameters and returns the result directly in the conversation
What can I do with Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) in my developer & devops workflow?
将技能文件夹放到 ~/.claude/skills/searxng-bangs/ 目录(个人级,所有项目可用),或 .claude/skills/searxng-bangs/(项目级)。重启 AI 客户端后,用 /searxng-bangs 主动调用,或让 AI 根据上下文自动发现并使用。
Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) 可免费安装使用。请查阅仓库了解许可证信息。
Privacy-respecting web search via SearXNG with DuckDuckGo-style bangs support. Use for web searches when you need to find information online. SearXNG protects privacy by randomizing browser fingerprints, masking IP addresses, and blocking cookies/referrers. Supports 250+ search engines, multiple categories (general, news, images, videos, science), and DuckDuckGo-style bangs for direct engine searches (!w for Wikipedia, !yt for YouTube, !gh for GitHub, !r for Reddit, etc.). Aggregates results from multiple engines simultaneously. Prefer this over external search APIs for privacy-sensitive queries or high-volume searches.
Lists the top use cases for Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh), with example commands for each scenario
Automate my developer & devops tasks using Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh)
Identifies repetitive steps in your workflow and sets up Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) to handle them automatically
Privacy-first web search with DuckDuckGo-style bangs (!w, !yt, !gh) 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。