{
  "schemaVersion": "1.0",
  "item": {
    "slug": "searxng-selfhost",
    "name": "SearXNG Self-Host",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/saikatkumardey/searxng-selfhost",
    "canonicalUrl": "https://clawhub.ai/saikatkumardey/searxng-selfhost",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/searxng-selfhost",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-selfhost",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/usage.md",
      "scripts/install_searxng.sh",
      "scripts/search.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/searxng-selfhost"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/searxng-selfhost",
    "agentPageUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "SearXNG",
        "body": "SearXNG is a self-hosted search aggregator that queries Google, Bing, Brave, Startpage, DuckDuckGo, and Wikipedia simultaneously. No API keys required. Results returned as JSON."
      },
      {
        "title": "Quick start (already installed)",
        "body": "python3 scripts/search.py \"your query\"             # human-readable\npython3 scripts/search.py \"your query\" --json      # JSON (for parsing)\npython3 scripts/search.py \"query\" --count 5 --json # limit + JSON\n\nPlace search.py anywhere convenient — typically tools/search.py in the workspace.\n\nFor detailed usage patterns and service management: see references/usage.md."
      },
      {
        "title": "Installation (new instance)",
        "body": "Run as root on Ubuntu 22.04/24.04:\n\nbash scripts/install_searxng.sh\n\nThis installs SearXNG, creates a searxng system user, writes /etc/searxng/settings.yml, and starts a systemd service on http://127.0.0.1:8888.\n\nVerify:\n\ncurl 'http://127.0.0.1:8888/search?q=test&format=json' | python3 -m json.tool | head -20\nsystemctl status searxng"
      },
      {
        "title": "Connecting search.py to the instance",
        "body": "search.py targets http://127.0.0.1:8888 by default. If the port differs, update SEARXNG_URL at the top of the script."
      },
      {
        "title": "Fallback",
        "body": "If SearXNG is down, search.py falls back to Wikipedia + GitHub APIs automatically. No action needed — results still return, just from narrower sources."
      },
      {
        "title": "Troubleshooting",
        "body": "SymptomFix[SearXNG unavailable] in stderrsystemctl restart searxngPort conflict on 8888Change port: in /etc/searxng/settings.yml + update SEARXNG_URL in scriptEmpty results from all enginesCheck /etc/searxng/settings.yml engines block; restart serviceConnection refusedService not running — systemctl start searxng"
      }
    ],
    "body": "SearXNG\n\nSearXNG is a self-hosted search aggregator that queries Google, Bing, Brave, Startpage, DuckDuckGo, and Wikipedia simultaneously. No API keys required. Results returned as JSON.\n\nQuick start (already installed)\npython3 scripts/search.py \"your query\"             # human-readable\npython3 scripts/search.py \"your query\" --json      # JSON (for parsing)\npython3 scripts/search.py \"query\" --count 5 --json # limit + JSON\n\n\nPlace search.py anywhere convenient — typically tools/search.py in the workspace.\n\nFor detailed usage patterns and service management: see references/usage.md.\n\nInstallation (new instance)\n\nRun as root on Ubuntu 22.04/24.04:\n\nbash scripts/install_searxng.sh\n\n\nThis installs SearXNG, creates a searxng system user, writes /etc/searxng/settings.yml, and starts a systemd service on http://127.0.0.1:8888.\n\nVerify:\n\ncurl 'http://127.0.0.1:8888/search?q=test&format=json' | python3 -m json.tool | head -20\nsystemctl status searxng\n\nConnecting search.py to the instance\n\nsearch.py targets http://127.0.0.1:8888 by default. If the port differs, update SEARXNG_URL at the top of the script.\n\nFallback\n\nIf SearXNG is down, search.py falls back to Wikipedia + GitHub APIs automatically. No action needed — results still return, just from narrower sources.\n\nTroubleshooting\nSymptom\tFix\n[SearXNG unavailable] in stderr\tsystemctl restart searxng\nPort conflict on 8888\tChange port: in /etc/searxng/settings.yml + update SEARXNG_URL in script\nEmpty results from all engines\tCheck /etc/searxng/settings.yml engines block; restart service\nConnection refused\tService not running — systemctl start searxng"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/saikatkumardey/searxng-selfhost",
    "publisherUrl": "https://clawhub.ai/saikatkumardey/searxng-selfhost",
    "owner": "saikatkumardey",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/searxng-selfhost",
    "downloadUrl": "https://openagent3.xyz/downloads/searxng-selfhost",
    "agentUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-selfhost/agent.md"
  }
}