search
Installation
SKILL.md
Search
Two tools cover the whole loop: web_search finds pages, scrape_webpage reads them. Most questions resolve from search snippets alone — only fetch a page when a snippet can't settle the point.
The loop
- Frame — restate the question as 2-4 concrete things you need to know.
- Search — fan out one batched
web_search, one query per angle (see Querying). - Triage — scan titles, snippets, and scores; pick the few URLs worth reading; drop duplicates.
- Fetch —
scrape_webpagethe survivors in a single batched call. - Extract — pull the facts you need out of the returned markdown. You are the extractor; there is no separate extraction model to call.
- Answer + cite — synthesize, then list every URL you actually used as markdown links.
Stop the moment the question is answered. Don't fetch a page whose snippet already gave you the fact.