duckduckgo-search

Free keyless web, news, and image search via ddgs.

  • search
  • duckduckgo
  • web-search
  • free
  • fallback

Declared platforms: linux · macos · windows

Install
npx skills add 'https://github.com/NousResearch/hermes-agent/tree/main/optional-skills/research/duckduckgo-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/duckduckgo.sh

scripts/duckduckgo.shBrowse 2 files
View on GitHub
← Back to SKILL.md
#!/bin/bash# DuckDuckGo Search Helper Script# Wrapper around ddgs CLI with sensible defaults# Usage: ./duckduckgo.sh <query> [max_results] set -e QUERY="$1"MAX_RESULTS="${2:-5}" if [ -z "$QUERY" ]; then    echo "Usage: $0 <query> [max_results]"    echo ""    echo "Examples:"    echo "  $0 'python async programming' 5"    echo "  $0 'latest AI news' 10"    echo ""    echo "Requires: pip install ddgs"    exit 1fi # Check if ddgs is availableif ! command -v ddgs &> /dev/null; then    echo "Error: ddgs not found. Install with: pip install ddgs"    exit 1fi ddgs text -q "$QUERY" -m "$MAX_RESULTS"