searxng-search

Free keyless meta-search aggregating 70+ engines.

  • search
  • searxng
  • meta-search
  • self-hosted
  • free
  • fallback

Declared platforms: linux · macos

Install
npx skills add 'https://github.com/NousResearch/hermes-agent/tree/main/optional-skills/research/searxng-search'
Download bundle ↓
main · 24fd22bScanned 2026-09-15

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

scripts/searxng.sh

scripts/searxng.shBrowse 2 files
View on GitHub
← Back to SKILL.md
#!/bin/bash# Usage: ./searxng.sh <query> [max_results] [engines]# Example: ./searxng.sh "python async" 10 "google,bing" QUERY="${1:-}"MAX="${2:-5}"ENGINES="${3:-google,bing}" if [ -z "$SEARXNG_URL" ]; then    echo "Error: SEARXNG_URL is not set"    exit 1fi if [ -z "$QUERY" ]; then    echo "Usage: $0 <query> [max_results] [engines]"    exit 1fi ENCODED_QUERY=$(echo "$QUERY" | sed 's/ /+/g') curl -s --max-time 10 \    "${SEARXNG_URL}/search?q=${ENCODED_QUERY}&format=json&limit=${MAX}&engines=${ENGINES}"