johell1ns/browser-search
Multi-engine web search (SearXNG) + browsing/scraping (Camofox, CloakBrowser). Use whenever you need to do web research.
npx skills add https://github.com/Johell1NS/browser-search --skill browser-search
Web search and browsing for AI agents. Three tools, from lightest to most powerful: SearXNG for search, Camofox for browsing, CloakBrowser for protected sites.
| Tool | When to use | How |
| ---------------------------- | --------------------------------------------- | --------------------------------------------------------- |
| SearXNG (Docker, :8080) | Default: Multi-source search, find URLs/info | exec + node <skill_dir>/scripts/searxng/searxng.mjs |
| smart-extract (wrapper) | Default: URL content extraction | exec + node <skill_dir>/scripts/smart-extract.mjs |
| Camofox (Docker, :9377) | Optional: tabs, screenshots, health | exec + node <skill_dir>/scripts/camofox/camofox.mjs |
| CloakBrowser (npm) | Optional: proxy, session, stealth | exec + node <skill_dir>/scripts/cloak/cloak-fetch.mjs |
When this skill is active, it operates as a Deep Research engine:
--time-range flag in SearXNG to prefer recent results.smart-extract.mjs for any URL that needs in-page extraction. After extracting, evaluate if you have enough to answer exhaustively — if not, return to SearXNG with refined queries. Never stop until you have exhaustive, cross-verified coverage.The only exception is screenshot commands (which save a PNG file).
Goal: find relevant URLs for every aspect of the user's request, to pass to smart-extract.mjs for content extraction.
Docker container on localhost:8080. Always the first choice for any search.
Commands:
Deterministic script <skill_dir>/scripts/searxng/searxng.mjs. JSON output on stdout, logs on stderr.
URL encoding is handled internally — no manual escaping needed.
# Simple search
exec node <skill_dir>/scripts/searxng/searxng.mjs search "<query>"
# With language and category
exec node <skill_dir>/scripts/searxng/searxng.mjs search "<query>" --lang it --categories news
# With time range (day, week, month, year)
exec node <skill_dir>/scripts/searxng/searxng.mjs search "<query>" --time-range month
# Image search
exec node <skill_dir>/scripts/searxng/searxng.mjs search "<query>" --categories images
# Pagination
exec node <skill_dir>/scripts/searxng/searxng.mjs search "<query>" --page 2
# Multiple queries (run in series with a 3s gap between them)
exec node <skill_dir>/scripts/searxng/searxng.mjs search \
--query "<q1>" --time-range month \
--query "<q2>" --lang it \
--query "<q3>"
# Health check
exec node <skill_dir>/scripts/searxng/searxng.mjs health
All flags are optional.
By default, SearXNG searches all enabled engines.
Use --engines only when you need to restrict to specific engines, e.g. --engines google,wikipedia.
Rate-limit: when you need several searches, group them into a single command with --query — each query can have its own flags. The script runs them in series with a 3s gap between queries so the burst doesn't look like a bot. Never launch multiple separate search commands in rapid succession.
Language strategy:
| Case | Flag |
| ------------------------------------------------------ | ---------------------- |
| Query matches content language, general/cultural topic | --lang <user-locale> |
| Query matches content language, technical topic | --lang en |
| Query in English | --lang en |
| Fallback if preferred locale returns 0 results | retry with --lang en |
Troubleshooting — container down:
searxng.mjs search auto-recovers a stopped SearXNG container: on a connection failure it finds the container exposing port 8080, restarts it, waits for it to come back up, and retries the search once.
Manual fallback:
cd <searxng-dir> && docker compose up -d
Goal: extract content from every useful URL returned by SearXNG.
smart-extract.mjs is the default tool for extracting content from any URL. It has 3 operation modes, to be used in this order:
Workflow:
Always start with exploratory mode to read the page content. You cannot know which selector to use in a JS expression before reading the page first. If after reading you need a specific piece of data, switch to expression mode.
> [!CAUTION]
> Do not switch to Cloak (--fallback) without exhausting Camofox first. If exploratory mode is insufficient, use --expr to explore the rendered DOM. Cloak is extremely slow — use it only as a last resort.
Base command (1, 2, or n URLs):
exec node <skill_dir>/scripts/smart-extract.mjs "<url1>" ["<url2>" ...]
Examples (modes 1 and 2):
# 1. Exploratory: read page content
exec node <skill_dir>/scripts/smart-extract.mjs "https://example.com"
# 2. Expression: extract specific data (only after reading the page)
exec node <skill_dir>/scripts/smart-extract.mjs "https://example.com" --expr "document.querySelector('h1')?.textContent"
Options:
Behavior (exploratory or expression mode):
--expr "<js>" — evaluate a JS expression on the page--min-chars <n> — minimum character threshold for a valid result (default: 300, does not apply with --expr)Cloak tuning (automatic escalation or --fallback):
--wait <ms> — extra wait for JS rendering (default: 2000). Passed to Cloak--timeout <ms> — general timeout (default: 60000, Cloak receives 2x)--verbose — diagnostic logs on stderr. Useful for Cloak debuggingWhat happens in practice (modes 1 and 2):
mode: "camofox" with mixed results, manually escalate the failed URLs with --fallback.mode: "camofox" if at least one URL succeeded, mode: "full-auto" if auto-escalation to Cloak occurred.Last resort — Direct Cloak mode:
When Camofox failed and auto-escalation did not trigger (mixed mode). Accepts one or more URLs:
exec node <skill_dir>/scripts/smart-extract.mjs --fallback "https://url1" "https://url2" "https://url3"
--fallback skips Camofox and uses Cloak directly, since the goal is to recover content where Camofox has already proven insufficient.
Output: JSON on stdout with version, mode, results[] (one entry per URL with ok, content, chars, source, steps).
After reviewing the output, decide: do you have enough information to answer the user's request exhaustively? If yes, proceed. If not, go back to SearXNG with new search queries to fill the gaps.
For operations not covered by smart-extract.mjs, use the underlying tools directly.
See <skill_dir>/data/advanced-browsing-reference.md for the full command reference.
| Tool | Capabilities |
|--------------------|---------------------------------------------------------------------------|
| camofox.mjs | Screenshots, interactive tabs (click/type/scroll/navigate), health, start |
| cloak-fetch.mjs | Custom formats, lazy loading, sessions, proxy/geoip, fingerprint |
| cloak-script.mjs | Complex multi-step interactions (login flows, form automation) |
Initial setup and diagnostics for SearXNG and Camofox. See <skill_dir>/docker/setup.md when needed.
Take johell1ns/browser-search from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.