π¦ ClawHub
Parallel Search
by @normallygaussian
AI-powered web search via Parallel API. Returns ranked results with LLM-optimized excerpts. Use for up-to-date research, fact-checking, and domain-scoped sea...
β‘ When to Use
π‘ Examples
Basic search:
parallel-cli search "When was the United Nations founded?" --json --max-results 5
With keyword filters:
parallel-cli search "Latest developments in quantum computing" \
-q "quantum" -q "computing" -q "2026" \
--json --max-results 10
Domain-scoped search:
parallel-cli search "React hooks best practices" \
--include-domains react.dev --include-domains github.com \
--json --max-results 5
Recent news only:
parallel-cli search "AI regulation news" \
--after-date 2026-01-01 \
--json --max-results 10
βοΈ Configuration
1. Get an API key at parallel.ai 2. Install the CLI:
curl -fsSL https://parallel.ai/install.sh | bash
export PARALLEL_API_KEY=your-key
TERMINAL
clawhub install parallel-search