A privacy-centric tool that connects OpenClaw agents to a local SearXNG instance for real-time web searching.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install search-web
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install search-web using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Search Web skill is a specialized integration designed to provide Openclaw Skills with real-time access to the internet without compromising privacy. By connecting to a self-hosted SearXNG instance, this tool allows an agent to bypass the limitations of static training data and retrieve the most current information available online. It is particularly valuable for developers and researchers who require a secure, local-first approach to web data retrieval.
This skill acts as a bridge between the AI agent and the SearXNG HTTP API, ensuring that every search query is handled through your own infrastructure. This architecture supports a wide range of Openclaw Skills by providing structured JSON results that the agent can immediately analyze, summarize, or use for further automated tasks.
To use this skill, you must have a running instance of SearXNG accessible to your agent. Ensure that the JSON output format is enabled in your SearXNG configuration.
# Example: Run SearXNG using Docker
docker run -d -p 8080:8080 searxng/searxng
In your SearXNG settings.yml, verify that the search format includes JSON:
search:
formats:
- json
Once the server is running, configure the Openclaw Skills tool to point to your local endpoint, typically http://localhost:8080/search.
The skill utilizes a simple input schema and returns a structured list of web results. This makes it easy to integrate with other Openclaw Skills that require predictable data formats.
| Attribute | Description |
|---|---|
query |
The search string sent to the API. |
title |
The display name or headline of the search result. |
url |
The direct link to the web resource. |
Example Output:
[
{
"title": "Example Research Paper",
"url": "https://example.com/paper"
}
]
Loading
Automatically transform Envato marketplace comments into prioritized development tasks logged directly into Google Sheets.

An AI-powered skill for generating professional slide presentations and PPTX files through interactive dialogue and reference material analysis.

A voice-first social interaction skill that enables AI agents to participate in and host real-time audio rooms on Moltspaces.

A CLI-first workflow for deploying, updating, and verifying web applications hosted on Puter.

Protect your remote access with automated baseline capture and rollback for high-risk system modifications.

A full-lifecycle deployment framework to bootstrap, restore, and verify OpenClaw environments on Ubuntu servers.








































