web-search

Installation
SKILL.md

Web Search (Companion Sub-Skill)

Search the public web, fetch page content, and crawl documentation sites. This is a companion to Browser Control — use this for public content, use Browser Control (CDP / AppleScript) for authenticated pages.

Availability Check

Before using any web-search command, check if omni-search-skill is installed:

OMNI_SEARCH_DIR="${OMNI_SEARCH_DIR:-$(find ~ -maxdepth 4 -type d -name 'omni-search-skill' 2>/dev/null | head -1)}"
if [ -z "$OMNI_SEARCH_DIR" ] || [ ! -f "$OMNI_SEARCH_DIR/scripts/omni_search.py" ]; then
  echo "omni-search-skill not found"
else
  echo "omni-search-skill found at: $OMNI_SEARCH_DIR"
fi

If not found, inform the user:

Installs
5
GitHub Stars
7
First Seen
Jun 3, 2026
web-search — d-wwei/browser-control-skill