A pi extension that adds web search and web fetch tools to the coding agent.
- Keyless web search via Brave and DuckDuckGo HTML fallback
- Webpage fetching with HTML-to-Markdown conversion, saved to a temp file
- Agent reads fetched content in chunks via the read tool — no context bloat
- Automatic prompt steering for URL and web-search style prompts
- Token-aware: keeps search results compact, trims oversized pages
pi install npm:pi-web-extensionAlternative install methods
From the public git repo:
pi install git:github.com/NicoAvanzDev/pi-web-extensionFrom a local clone:
pi install .Load without installing:
pi --no-extensions -e ./index.tsRuns a keyless web search by scraping public search engines. Tries Brave first, falls back to DuckDuckGo HTML. Returns a compact list of results (title, URL, snippet).
Fetches a URL, strips non-content elements, converts the HTML to Markdown via Turndown, and saves the result to a temp file in the pi session directory. Returns metadata (file path, title, content length, preview) so the agent can read the file in chunks as needed.
Before each agent turn, the extension checks the user prompt for URLs and web-search intent patterns. When detected, it activates the web tools and injects steering instructions into the system prompt.
The extension exposes LLM-callable tools:
websearchwebfetch
Parameters:
query: string-- the search query
Parameters:
url: string-- the URL to fetchformat?: "markdown" | "text" | "html"-- output format (default:"markdown")