pi-web-extension
A pi extension that adds web search and web fetch tools to the coding agent.
Package details
Install pi-web-extension from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-web-extension- Package
pi-web-extension- Version
0.1.2- Published
- Mar 23, 2026
- Downloads
- 106/mo · 28/wk
- Author
- nicoavanzdev
- License
- MIT
- Types
- extension
- Size
- 21.7 KB
- Dependencies
- 2 dependencies · 2 peers
Pi manifest JSON
{
"extensions": [
"./index.ts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi web extension
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
Install
pi install npm:pi-web-extension
From the public git repo:
pi install git:github.com/NicoAvanzDev/pi-web-extension
From a local clone:
pi install .
Load without installing:
pi --no-extensions -e ./index.ts
How it works
websearch
Runs 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).
webfetch
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.
Prompt steering
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.
Tools
The extension exposes LLM-callable tools:
websearchwebfetch
websearch
Parameters:
query: string-- the search query
webfetch
Parameters:
url: string-- the URL to fetchformat?: "markdown" | "text" | "html"-- output format (default:"markdown")