{
  "schemaVersion": "1.0",
  "item": {
    "slug": "searxng-self-hosted",
    "name": "SearXNG Self-Hosted Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/clockworksquirrel/searxng-self-hosted",
    "canonicalUrl": "https://clawhub.ai/clockworksquirrel/searxng-self-hosted",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/searxng-self-hosted",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=searxng-self-hosted",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-self-hosted"
    },
    "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-self-hosted",
    "agentPageUrl": "https://openagent3.xyz/skills/searxng-self-hosted/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-self-hosted/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-self-hosted/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 your self-hosted SearXNG instance. Privacy-respecting metasearch that aggregates results from Google, DuckDuckGo, Brave, Startpage, and 70+ other engines."
      },
      {
        "title": "Prerequisites",
        "body": "SearXNG running locally or on a server. Quick Docker setup:\n\nmkdir -p ~/Projects/searxng/searxng\ncd ~/Projects/searxng\n\n# Create docker-compose.yml\ncat > docker-compose.yml << 'EOF'\nservices:\n  searxng:\n    image: searxng/searxng:latest\n    container_name: searxng\n    ports:\n      - \"8080:8080\"\n    volumes:\n      - ./searxng:/etc/searxng:rw\n    environment:\n      - SEARXNG_BASE_URL=http://localhost:8080/\n    restart: unless-stopped\nEOF\n\n# Create settings.yml with JSON API enabled\ncat > searxng/settings.yml << 'EOF'\nuse_default_settings: true\nserver:\n  secret_key: \"change-me-to-random-string\"\n  bind_address: \"0.0.0.0\"\n  port: 8080\nsearch:\n  safe_search: 0\n  autocomplete: \"google\"\n  default_lang: \"en\"\n  formats:\n    - html\n    - json\nEOF\n\n# Start SearXNG\ndocker compose up -d"
      },
      {
        "title": "Configuration",
        "body": "Set the SearXNG URL (defaults to http://localhost:8080):\n\nexport SEARXNG_URL=\"http://localhost:8080\""
      },
      {
        "title": "Basic Search",
        "body": "curl \"http://localhost:8080/search?q=your+query&format=json\" | jq '.results[:5]'"
      },
      {
        "title": "Search with Categories",
        "body": "# General web search\ncurl \"http://localhost:8080/search?q=query&categories=general&format=json\"\n\n# Images\ncurl \"http://localhost:8080/search?q=query&categories=images&format=json\"\n\n# News\ncurl \"http://localhost:8080/search?q=query&categories=news&format=json\"\n\n# Videos\ncurl \"http://localhost:8080/search?q=query&categories=videos&format=json\"\n\n# IT/Tech documentation\ncurl \"http://localhost:8080/search?q=query&categories=it&format=json\"\n\n# Science/Academic\ncurl \"http://localhost:8080/search?q=query&categories=science&format=json\""
      },
      {
        "title": "Search with Language/Region",
        "body": "curl \"http://localhost:8080/search?q=query&language=en-US&format=json\"\ncurl \"http://localhost:8080/search?q=query&language=de-DE&format=json\""
      },
      {
        "title": "Paginated Results",
        "body": "# Page 2 (results 11-20)\ncurl \"http://localhost:8080/search?q=query&pageno=2&format=json\""
      },
      {
        "title": "Response Format",
        "body": "Each result includes:\n\ntitle - Result title\nurl - Link to the result\ncontent - Snippet/description\nengines - Array of search engines that returned this result\nscore - Relevance score (higher = better)\ncategory - Result category"
      },
      {
        "title": "Shell Function",
        "body": "Add to your .zshrc or .bashrc:\n\nsearxng() {\n  local query=\"$*\"\n  local url=\"${SEARXNG_URL:-http://localhost:8080}\"\n  curl -s \"${url}/search?q=$(echo \"$query\" | sed 's/ /+/g')&format=json\" | \\\n    jq -r '.results[:10][] | \"[\\(.score | floor)] \\(.title)\\n    \\(.url)\\n    \\(.content // \"No description\")\\n\"'\n}\n\nUsage: searxng how to make sourdough bread"
      },
      {
        "title": "Docker Management",
        "body": "# Start\ncd ~/Projects/searxng && docker compose up -d\n\n# Stop\ndocker compose down\n\n# View logs\ndocker compose logs -f searxng\n\n# Restart\ndocker compose restart"
      },
      {
        "title": "Troubleshooting",
        "body": "Container won't start:\n\ndocker compose logs searxng\n\nJSON format not working:\nEnsure formats: [html, json] is in your settings.yml\n\nNo results:\nSome engines may be rate-limited. Check logs for errors."
      },
      {
        "title": "Why SearXNG?",
        "body": "Privacy: No tracking, no ads, no data collection\nAggregation: Combines results from 70+ search engines\nSelf-hosted: Your data stays on your machine\nAPI: JSON output for automation\nFree: No API keys or rate limits"
      }
    ],
    "body": "SearXNG Search Skill\n\nSearch the web using your self-hosted SearXNG instance. Privacy-respecting metasearch that aggregates results from Google, DuckDuckGo, Brave, Startpage, and 70+ other engines.\n\nPrerequisites\n\nSearXNG running locally or on a server. Quick Docker setup:\n\nmkdir -p ~/Projects/searxng/searxng\ncd ~/Projects/searxng\n\n# Create docker-compose.yml\ncat > docker-compose.yml << 'EOF'\nservices:\n  searxng:\n    image: searxng/searxng:latest\n    container_name: searxng\n    ports:\n      - \"8080:8080\"\n    volumes:\n      - ./searxng:/etc/searxng:rw\n    environment:\n      - SEARXNG_BASE_URL=http://localhost:8080/\n    restart: unless-stopped\nEOF\n\n# Create settings.yml with JSON API enabled\ncat > searxng/settings.yml << 'EOF'\nuse_default_settings: true\nserver:\n  secret_key: \"change-me-to-random-string\"\n  bind_address: \"0.0.0.0\"\n  port: 8080\nsearch:\n  safe_search: 0\n  autocomplete: \"google\"\n  default_lang: \"en\"\n  formats:\n    - html\n    - json\nEOF\n\n# Start SearXNG\ndocker compose up -d\n\nConfiguration\n\nSet the SearXNG URL (defaults to http://localhost:8080):\n\nexport SEARXNG_URL=\"http://localhost:8080\"\n\nUsage Examples\nBasic Search\ncurl \"http://localhost:8080/search?q=your+query&format=json\" | jq '.results[:5]'\n\nSearch with Categories\n# General web search\ncurl \"http://localhost:8080/search?q=query&categories=general&format=json\"\n\n# Images\ncurl \"http://localhost:8080/search?q=query&categories=images&format=json\"\n\n# News\ncurl \"http://localhost:8080/search?q=query&categories=news&format=json\"\n\n# Videos\ncurl \"http://localhost:8080/search?q=query&categories=videos&format=json\"\n\n# IT/Tech documentation\ncurl \"http://localhost:8080/search?q=query&categories=it&format=json\"\n\n# Science/Academic\ncurl \"http://localhost:8080/search?q=query&categories=science&format=json\"\n\nSearch with Language/Region\ncurl \"http://localhost:8080/search?q=query&language=en-US&format=json\"\ncurl \"http://localhost:8080/search?q=query&language=de-DE&format=json\"\n\nPaginated Results\n# Page 2 (results 11-20)\ncurl \"http://localhost:8080/search?q=query&pageno=2&format=json\"\n\nResponse Format\n\nEach result includes:\n\ntitle - Result title\nurl - Link to the result\ncontent - Snippet/description\nengines - Array of search engines that returned this result\nscore - Relevance score (higher = better)\ncategory - Result category\nShell Function\n\nAdd to your .zshrc or .bashrc:\n\nsearxng() {\n  local query=\"$*\"\n  local url=\"${SEARXNG_URL:-http://localhost:8080}\"\n  curl -s \"${url}/search?q=$(echo \"$query\" | sed 's/ /+/g')&format=json\" | \\\n    jq -r '.results[:10][] | \"[\\(.score | floor)] \\(.title)\\n    \\(.url)\\n    \\(.content // \"No description\")\\n\"'\n}\n\n\nUsage: searxng how to make sourdough bread\n\nDocker Management\n# Start\ncd ~/Projects/searxng && docker compose up -d\n\n# Stop\ndocker compose down\n\n# View logs\ndocker compose logs -f searxng\n\n# Restart\ndocker compose restart\n\nTroubleshooting\n\nContainer won't start:\n\ndocker compose logs searxng\n\n\nJSON format not working: Ensure formats: [html, json] is in your settings.yml\n\nNo results: Some engines may be rate-limited. Check logs for errors.\n\nWhy SearXNG?\nPrivacy: No tracking, no ads, no data collection\nAggregation: Combines results from 70+ search engines\nSelf-hosted: Your data stays on your machine\nAPI: JSON output for automation\nFree: No API keys or rate limits"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/clockworksquirrel/searxng-self-hosted",
    "publisherUrl": "https://clawhub.ai/clockworksquirrel/searxng-self-hosted",
    "owner": "clockworksquirrel",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/searxng-self-hosted",
    "downloadUrl": "https://openagent3.xyz/downloads/searxng-self-hosted",
    "agentUrl": "https://openagent3.xyz/skills/searxng-self-hosted/agent",
    "manifestUrl": "https://openagent3.xyz/skills/searxng-self-hosted/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/searxng-self-hosted/agent.md"
  }
}