{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/searxng-docker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-docker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "docker/docker-compose.yml",
      "docker/settings.yml",
      "scripts/searxng_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-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/searxng-docker",
    "agentPageUrl": "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"
  },
  "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 Search Skill",
        "body": "Search the web using a self-hosted SearXNG instance."
      },
      {
        "title": "When to Use",
        "body": "User asks to search, look something up: \"搜索\", \"搜一下\", \"查一下\", \"search for\", \"look up\"\nNeed results from multiple engines (Google, Bing, DuckDuckGo, etc.)\nNeed news, images, IT/science, or social media search\nweb_search unavailable or returns poor results"
      },
      {
        "title": "Quick Start (Docker Compose)",
        "body": "The docker/ folder in this skill contains a ready-to-use Docker Compose setup. Run it directly — no need to copy files elsewhere.\n\n# 1. Generate a random secret key\nsed -i \"s/CHANGE_ME_TO_A_RANDOM_STRING/$(openssl rand -hex 16)/\" docker/settings.yml\n\n# 2. Start\ndocker compose -f docker/docker-compose.yml up -d\n\n# 3. Verify\ncurl -s \"http://127.0.0.1:8888/search?q=test&format=json\" | python3 -m json.tool | head -5"
      },
      {
        "title": "Configuration",
        "body": "Edit files in the docker/ folder:\n\nPort: Default 127.0.0.1:8888 → change in docker-compose.yml ports section\nEngines: Edit settings.yml engines list (Google, Bing, DuckDuckGo, Wikipedia, GitHub enabled by default)\nLanguage: default_lang in settings.yml (default: auto)"
      },
      {
        "title": "Troubleshooting",
        "body": "# Check if running\ndocker ps | grep searxng\n\n# Restart\ndocker compose -f docker/docker-compose.yml restart\n\n# View logs\ndocker logs searxng --tail 50"
      },
      {
        "title": "Usage",
        "body": "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.\n\n# Basic search\npython3 scripts/searxng_search.py \"your query\"\n\n# Number of results\npython3 scripts/searxng_search.py \"your query\" -n 5\n\n# Language\npython3 scripts/searxng_search.py \"your query\" -l zh    # Chinese\npython3 scripts/searxng_search.py \"your query\" -l en    # English\n\n# Category\npython3 scripts/searxng_search.py \"your query\" -c news\npython3 scripts/searxng_search.py \"your query\" -c images\npython3 scripts/searxng_search.py \"your query\" -c it\npython3 scripts/searxng_search.py \"your query\" -c science\n\n# Time filter\npython3 scripts/searxng_search.py \"your query\" -t day\npython3 scripts/searxng_search.py \"your query\" -t week\npython3 scripts/searxng_search.py \"your query\" -t month\n\n# Specific engines\npython3 scripts/searxng_search.py \"your query\" -e google,bing\n\n# JSON output\npython3 scripts/searxng_search.py \"your query\" --json\n\n# Custom SearXNG URL\npython3 scripts/searxng_search.py \"your query\" --base-url http://192.168.1.100:8888\n\n# Combined\npython3 scripts/searxng_search.py \"最新科技新闻\" -c news -l zh -t week -n 5"
      },
      {
        "title": "Categories",
        "body": "CategoryDescriptiongeneralWeb search (default)newsNews articlesimagesImage searchvideosVideo searchitIT / programmingscienceScientific articlesfilesFile searchsocial mediaSocial media posts"
      },
      {
        "title": "Notes",
        "body": "SearXNG aggregates and deduplicates results from multiple engines\nThe score field indicates cross-engine ranking confidence\nNo API key needed — fully self-hosted and private"
      }
    ],
    "body": "SearXNG Search Skill\n\nSearch the web using a self-hosted SearXNG instance.\n\nWhen to Use\nUser asks to search, look something up: \"搜索\", \"搜一下\", \"查一下\", \"search for\", \"look up\"\nNeed results from multiple engines (Google, Bing, DuckDuckGo, etc.)\nNeed news, images, IT/science, or social media search\nweb_search unavailable or returns poor results\nDeployment\nQuick Start (Docker Compose)\n\nThe docker/ folder in this skill contains a ready-to-use Docker Compose setup. Run it directly — no need to copy files elsewhere.\n\n# 1. Generate a random secret key\nsed -i \"s/CHANGE_ME_TO_A_RANDOM_STRING/$(openssl rand -hex 16)/\" docker/settings.yml\n\n# 2. Start\ndocker compose -f docker/docker-compose.yml up -d\n\n# 3. Verify\ncurl -s \"http://127.0.0.1:8888/search?q=test&format=json\" | python3 -m json.tool | head -5\n\nConfiguration\n\nEdit files in the docker/ folder:\n\nPort: Default 127.0.0.1:8888 → change in docker-compose.yml ports section\nEngines: Edit settings.yml engines list (Google, Bing, DuckDuckGo, Wikipedia, GitHub enabled by default)\nLanguage: default_lang in settings.yml (default: auto)\nTroubleshooting\n# Check if running\ndocker ps | grep searxng\n\n# Restart\ndocker compose -f docker/docker-compose.yml restart\n\n# View logs\ndocker logs searxng --tail 50\n\nUsage\n\nAll 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.\n\n# Basic search\npython3 scripts/searxng_search.py \"your query\"\n\n# Number of results\npython3 scripts/searxng_search.py \"your query\" -n 5\n\n# Language\npython3 scripts/searxng_search.py \"your query\" -l zh    # Chinese\npython3 scripts/searxng_search.py \"your query\" -l en    # English\n\n# Category\npython3 scripts/searxng_search.py \"your query\" -c news\npython3 scripts/searxng_search.py \"your query\" -c images\npython3 scripts/searxng_search.py \"your query\" -c it\npython3 scripts/searxng_search.py \"your query\" -c science\n\n# Time filter\npython3 scripts/searxng_search.py \"your query\" -t day\npython3 scripts/searxng_search.py \"your query\" -t week\npython3 scripts/searxng_search.py \"your query\" -t month\n\n# Specific engines\npython3 scripts/searxng_search.py \"your query\" -e google,bing\n\n# JSON output\npython3 scripts/searxng_search.py \"your query\" --json\n\n# Custom SearXNG URL\npython3 scripts/searxng_search.py \"your query\" --base-url http://192.168.1.100:8888\n\n# Combined\npython3 scripts/searxng_search.py \"最新科技新闻\" -c news -l zh -t week -n 5\n\nCategories\nCategory\tDescription\ngeneral\tWeb search (default)\nnews\tNews articles\nimages\tImage search\nvideos\tVideo search\nit\tIT / programming\nscience\tScientific articles\nfiles\tFile search\nsocial media\tSocial media posts\nNotes\nSearXNG aggregates and deduplicates results from multiple engines\nThe score field indicates cross-engine ranking confidence\nNo API key needed — fully self-hosted and private"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/triwinds/searxng-docker",
    "publisherUrl": "https://clawhub.ai/triwinds/searxng-docker",
    "owner": "triwinds",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}