skills/web-search/SKILL.md
# Web Search Skill ## When to Use Use this skill when the user wants information that requires looking at the live web. ## Trigger Conditions **Use `web_search` (fast, ~3-5s) when:** - Single-source fact lookup: news, exchange rates, sports scores, weather, stock prices - One specific product at one named retailer: "what does Bunnings charge for X" - Simple factual question answerable from one good search result **Use `deep_web_research` (~60s) when:** - ANY mention of location / "near me"
npx skillsauth add jason-easyazz/zoe-ai-assistant skills/web-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when the user wants information that requires looking at the live web.
Use web_search (fast, ~3-5s) when:
Use deep_web_research (~60s) when:
Is there a location / "near me" in the query?
YES → deep_web_research (it resolves location and finds all local sources)
NO → Is the user comparing or discovering multiple options?
YES → deep_web_research
NO → web_search
Always tell the user what you're doing before calling the tool, so the ~60s wait feels active:
Include the full location context in the query string:
"cheapest Emu Export beer Geraldton WA 6530""Italian restaurants open now Fitzroy Melbourne 3065""plumbers near Ballarat VIC reviews""cheapest beer" (no location, no product detail)When you call deep_web_research, the framework:
You do NOT need to call multiple tools. One deep_web_research call does all of this.
{"tool": "deep_web_research", "query": "cheapest Emu Export beer Geraldton WA 6530"}
{"tool": "deep_web_research", "query": "Italian restaurants open now near Fitzroy Melbourne"}
{"tool": "deep_web_research", "query": "plumbers near Geraldton WA reviews phone number"}
{"tool": "deep_web_research", "query": "what's on this weekend Fremantle WA events"}
{"tool": "deep_web_research", "query": "hotels in Broome WA under 150 dollars"}
{"tool": "deep_web_research", "query": "jobs for nurses in Perth WA 2026"}
{"tool": "web_search", "query": "Bitcoin price AUD today"}
{"tool": "web_search", "query": "latest AI news May 2026"}
tools
# Touch Panel Skill Zoe drives physical kiosk panels via `panel_*` MCP tools and can SSH into them for diagnostics and repair. ## When to use this skill - User asks about the touch screen / panel / kiosk - Diagnosing why the panel is blank, frozen, or showing wrong content - Restarting, updating, or re-provisioning a panel - Controlling what shows on the panel (navigate, announce, smart-home overlay, etc.) - Registering a new panel or managing panel tokens --- ## Current hardware (productio
tools
# zoe-widget-builder Build new dashboard widgets for Zoe's touch panel and desktop UI. ## Trigger conditions This skill activates when the system message begins with `[ZOE_SELF_BUILD: widget]`. ## Prerequisites - Caller must have admin role. Check via `zoe_self_capabilities` tool (role field). If not admin, reply: "Widget building requires admin access." - Do NOT build if the widget already exists (`zoe_self_capabilities` returns it in existing_widgets). ## Step-by-step workflow ### 1. Chec
tools
# zoe-page-builder Build new HTML pages and views for Zoe's UI at `services/zoe-ui/dist/`. ## Trigger conditions This skill activates when the system message begins with `[ZOE_SELF_BUILD: page]`, or when the user asks to create a new page, dashboard, or view in the Zoe UI. ## Prerequisites - Caller must have admin role. Check via `zoe_self_capabilities` tool. If not admin, reply: "Page building requires admin access." - Do NOT modify any existing page without explicit user instruction. - NE
tools
# zoe-capability-extender Add new capabilities to Zoe: new intents, MCP tools, or OpenClaw skills. ## Trigger conditions This skill activates when the system message begins with `[ZOE_SELF_BUILD: capability]`, or when the user asks to add a new ability, command, feature, or integration to Zoe. ## Prerequisites - Caller must have admin role. Check via `zoe_self_capabilities` tool. If not admin, stop. - Read the relevant architectural files before writing anything: - `services/zoe-data/inte