# Send SearXNG Local Search 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-local-search-v1",
    "name": "SearXNG Local Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/grakeshk-max/searxng-local-search-v1",
    "canonicalUrl": "https://clawhub.ai/grakeshk-max/searxng-local-search-v1",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/searxng-local-search-v1",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-local-search-v1",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      ".clawhub/origin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "searxng-local-search-v1",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T12:23:29.000Z",
      "expiresAt": "2026-05-15T12:23:29.000Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-local-search-v1",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-local-search-v1",
        "contentDisposition": "attachment; filename=\"searxng-local-search-v1-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "searxng-local-search-v1"
      },
      "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-local-search-v1"
    },
    "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-local-search-v1",
    "downloadUrl": "https://openagent3.xyz/downloads/searxng-local-search-v1",
    "agentUrl": "https://openagent3.xyz/skills/searxng-local-search-v1/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-local-search-v1/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-local-search-v1/agent.md"
  }
}
```
## Documentation

### SearXNG Search Skill

Search the web using your self-hosted SearXNG instance.
Privacy-respecting metasearch that aggregates results from Google, DuckDuckGo, Brave, Startpage, and many other engines.

### Prerequisites

SearXNG running locally or on a server.

Quick Docker setup:

mkdir -p ~/Projects/searxng/searxng
cd ~/Projects/searxng

cat > docker-compose.yml << 'EOF'
services:
  searxng:
    image: searxng/searxng:latest
    container_name: searxng
    ports:
      - "8080:8080"
    volumes:
      - ./searxng:/etc/searxng:rw
    environment:
      - SEARXNG_BASE_URL=http://localhost:8080/
    restart: unless-stopped
EOF

cat > searxng/settings.yml << 'EOF'
use_default_settings: true
server:
  secret_key: "change-me-to-random-string"
  bind_address: "127.0.0.1"
  port: 8080
search:
  safe_search: 0
  autocomplete: "google"
  default_lang: "en"
  formats:
    - html
    - json
EOF

docker compose up -d

### Configuration

Set the SearXNG URL (optional, defaults to http://localhost:8080):

export SEARXNG_URL="http://localhost:8080"

### Response Format

Each result includes:

title – Result title
url – Link to the result
content – Snippet/description
engines – Engines returning the result
score – Relevance score
category – Result category

### Security Notes

Default binding is 127.0.0.1 to prevent public exposure.
Replace the default secret_key with a strong random value.
Do not expose SearXNG directly to the public internet without HTTPS and authentication.
This skill uses HTTP requests only and does not execute shell commands.

### Why SearXNG?

Privacy-first (no tracking, no ads)
Aggregates 70+ engines
Self-hosted control
JSON API support
No API keys or rate limits
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: grakeshk-max
- Version: 1.0.2
## 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:23:29.000Z
- Expires at: 2026-05-15T12:23:29.000Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/searxng-local-search-v1)
- [Send to Agent page](https://openagent3.xyz/skills/searxng-local-search-v1/agent)
- [JSON manifest](https://openagent3.xyz/skills/searxng-local-search-v1/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/searxng-local-search-v1/agent.md)
- [Download page](https://openagent3.xyz/downloads/searxng-local-search-v1)