Loading...
Loading...
Search the web for information using DuckDuckGo or other search engines via curl. Use when users ask questions requiring up-to-date information, research, or fact-checking.
npx skill4agent add naohainezha/skill web-search# Basic search — returns instant answers
curl -s "https://api.duckduckgo.com/?q=QUERY&format=json&no_html=1" | jq '.Abstract, .RelatedTopics[:5]'# Get search results page and extract links
curl -s "https://html.duckduckgo.com/html/?q=QUERY" | grep -o 'href="https\{0,1\}://[^"]*' | head -10# Check if SERPAPI_KEY is set
alma config get serpapi.apiKey
# If available:
curl -s "https://serpapi.com/search.json?q=QUERY&api_key=API_KEY" | jq '.organic_results[:5] | .[] | {title, link, snippet}'WebFetch(url="https://example.com/article")curl -sL "https://example.com/article" | head -200+%20jqcurl -s "https://html.duckduckgo.com/html/?q=latest+AI+news+2026" | grep -o 'href="https\{0,1\}://[^"]*' | grep -v duckduckgo | head -5curl -s "https://api.duckduckgo.com/?q=python+3.13+new+features&format=json&no_html=1" | jq '.Abstract'