# Send SearXNG Docker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "searxng-docker",
    "name": "SearXNG Docker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/triwinds/searxng-docker",
    "canonicalUrl": "https://clawhub.ai/triwinds/searxng-docker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/searxng-docker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-docker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "docker/docker-compose.yml",
      "docker/settings.yml",
      "scripts/searxng_search.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "searxng-docker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T12:20:40.870Z",
      "expiresAt": "2026-05-15T12:20:40.870Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-docker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-docker",
        "contentDisposition": "attachment; filename=\"searxng-docker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "searxng-docker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/searxng-docker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/searxng-docker",
    "downloadUrl": "https://openagent3.xyz/downloads/searxng-docker",
    "agentUrl": "https://openagent3.xyz/skills/searxng-docker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-docker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-docker/agent.md"
  }
}
```
## Documentation

### SearXNG Search Skill

Search the web using a self-hosted SearXNG instance.

### When to Use

User asks to search, look something up: "搜索", "搜一下", "查一下", "search for", "look up"
Need results from multiple engines (Google, Bing, DuckDuckGo, etc.)
Need news, images, IT/science, or social media search
web_search unavailable or returns poor results

### Quick Start (Docker Compose)

The docker/ folder in this skill contains a ready-to-use Docker Compose setup. Run it directly — no need to copy files elsewhere.

# 1. Generate a random secret key
sed -i "s/CHANGE_ME_TO_A_RANDOM_STRING/$(openssl rand -hex 16)/" docker/settings.yml

# 2. Start
docker compose -f docker/docker-compose.yml up -d

# 3. Verify
curl -s "http://127.0.0.1:8888/search?q=test&format=json" | python3 -m json.tool | head -5

### Configuration

Edit files in the docker/ folder:

Port: Default 127.0.0.1:8888 → change in docker-compose.yml ports section
Engines: Edit settings.yml engines list (Google, Bing, DuckDuckGo, Wikipedia, GitHub enabled by default)
Language: default_lang in settings.yml (default: auto)

### Troubleshooting

# Check if running
docker ps | grep searxng

# Restart
docker compose -f docker/docker-compose.yml restart

# View logs
docker logs searxng --tail 50

### Usage

All commands use the script at scripts/searxng_search.py (relative to this skill directory). The script defaults to http://127.0.0.1:8888 but accepts --base-url to point elsewhere.

# Basic search
python3 scripts/searxng_search.py "your query"

# Number of results
python3 scripts/searxng_search.py "your query" -n 5

# Language
python3 scripts/searxng_search.py "your query" -l zh    # Chinese
python3 scripts/searxng_search.py "your query" -l en    # English

# Category
python3 scripts/searxng_search.py "your query" -c news
python3 scripts/searxng_search.py "your query" -c images
python3 scripts/searxng_search.py "your query" -c it
python3 scripts/searxng_search.py "your query" -c science

# Time filter
python3 scripts/searxng_search.py "your query" -t day
python3 scripts/searxng_search.py "your query" -t week
python3 scripts/searxng_search.py "your query" -t month

# Specific engines
python3 scripts/searxng_search.py "your query" -e google,bing

# JSON output
python3 scripts/searxng_search.py "your query" --json

# Custom SearXNG URL
python3 scripts/searxng_search.py "your query" --base-url http://192.168.1.100:8888

# Combined
python3 scripts/searxng_search.py "最新科技新闻" -c news -l zh -t week -n 5

### Categories

CategoryDescriptiongeneralWeb search (default)newsNews articlesimagesImage searchvideosVideo searchitIT / programmingscienceScientific articlesfilesFile searchsocial mediaSocial media posts

### Notes

SearXNG aggregates and deduplicates results from multiple engines
The score field indicates cross-engine ranking confidence
No API key needed — fully self-hosted and private
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: triwinds
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T12:20:40.870Z
- Expires at: 2026-05-15T12:20:40.870Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/searxng-docker)
- [Send to Agent page](https://openagent3.xyz/skills/searxng-docker/agent)
- [JSON manifest](https://openagent3.xyz/skills/searxng-docker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/searxng-docker/agent.md)
- [Download page](https://openagent3.xyz/downloads/searxng-docker)