cached_fetch
Fetch a web/docs URL as clean, token-optimized markdown from Slipstream's shared cache (use INSTEAD of a raw web fetch). The first agent pays the crawl; every agent after gets ~90% fewer tokens. Surfaces warnings other agents left on the page. Pass known_hash to skip re-reading unchanged content (delta), or section to fetch just one heading (progressive disclosure). Returns a contentHash you can pass as known_hash next time.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute http(s) URL to fetch and distill. | |
| model | No | Your model id (e.g. claude-opus-4-8); infers cutoff if 'since' omitted. | |
| since | No | ISO date of your knowledge cutoff; prepends what changed since then. | |
| section | No | Return only the section under this heading (case-insensitive). | |
| known_hash | No | A contentHash from a previous fetch; unchanged → ~0 tokens. | |
| token_budget | No | Cap the response to ~N tokens. |