searxngcli
This skill should be used when the user asks to "search the web", "look up online", "find recent information", "search for", "what's the latest on", or needs web search results. Provides access to a private SearXNG metasearch engine instance via the `searxng` CLI. Prefer this over WebSearch when available.
What this skill does
# searxngcli
Search the web via a private SearXNG metasearch engine instance using the `searxng` CLI.
SearXNG aggregates results from multiple search engines (Google, Bing, DuckDuckGo, etc.) and supports engine-specific operators like `site:`, `filetype:`, `intitle:` — these are passed through to backend engines as-is.
## Usage
Always use `--json` for machine-readable output. Always quote the query string.
```bash
# Basic search
searxng search "python asyncio" --json
# Filter by category (general, images, news, videos, music, files, it, science, social media)
searxng search "breaking news" --categories news --json
# Filter by specific engines
searxng search "rust" --engines google,duckduckgo --json
# Filter by time range (day, week, month, year)
searxng search "latest updates" --time-range week --json
# Combine filters
searxng search "climate change" --categories news --time-range month --num 20 --json
# Use search engine operators (passed through to engines)
searxng search "site:github.com python cli" --json
```
### Search Options
| Flag | Description |
|------|-------------|
| `--categories` | Comma-separated categories |
| `--engines` | Comma-separated engines |
| `--language` | Language code (en, de, cs, etc.) |
| `--num` | Number of results (default: 10) |
| `--page` | Page number (default: 1) |
| `--time-range` | day, week, month, year |
| `--safe-search` | 0=off, 1=moderate, 2=strict |
| `--json` | Raw JSON output |
## Discovery
```bash
# List available engines on the instance
searxng engines
# List available categories
searxng categories
```
## Output Format
The `--json` output is a JSON object with these top-level fields:
```json
{
"query": "search terms",
"number_of_results": 100,
"results": [
{
"title": "asyncio — Asynchronous I/O — Python 3.14.3 documentation",
"url": "https://docs.python.org/3/library/asyncio.html",
"content": "asyncio is a library to write concurrent code using the async/await syntax...",
"engine": "google",
"engines": ["braveapi", "google", "startpage"],
"category": "general",
"score": 9.0,
"published_date": "2025-07-30T00:00:00",
"thumbnail": ""
}
],
"suggestions": ["related query 1", "related query 2"],
"corrections": []
}
```
**Never pipe through `grep`, `head`, `tail`, or similar text tools** — the output is already structured JSON. Use `jq` if filtering is needed:
```bash
# Extract just URLs
searxng search "python asyncio" --json | jq -r '.results[].url'
# Extract title and URL pairs
searxng search "python asyncio" --json | jq '.results[] | {title, url}'
```
## Important Notes
- **Prefer defaults** — do not use `-c`, `-e`, or `-l` flags unless there is a clear reason to narrow the scope (e.g., user explicitly asks for news, or for results from a specific engine). The instance is pre-configured with good defaults.
- Place all flags **after** the subcommand: `searxng search "query" --json` (not `searxng --json search "query"`)
- If the CLI is not configured, ask the user for their SearXNG instance URL
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.