npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@alexion42/pi-web-search

v0.2.1

Published

Single-tool Exa-powered web search and URL reading for Pi coding agent

Readme

Pi Web Search

Lean web search for Pi, powered by Exa. A lean fork of nicobailon/pi-web-access.

npm version License: MIT

Install

pi install npm:@alexion42/pi-web-search

Works immediately with no API keys — Exa MCP provides zero-config search. For direct API access, add your key to ~/.pi/web-search.json:

{
  "exaApiKey": "exa-..."
}

Requires a recent Pi release using the @earendil-works/pi-* package namespace.

What's Available

| Tool | Description | |------|-------------| | web | Single web tool: mode: "search" finds sources, mode: "read" reads one known URL, mode: "get" reloads a stored result by resultId | | /search | Interactive command to browse stored web results | | Activity monitor | Ctrl+Shift+W to view live request/response activity |

Content extraction uses a robust fallback chain: Readability → RSC parser → Jina Reader. Full parameter reference and examples are in TOOLS.md.

Configuration

All config lives in ~/.pi/web-search.json. Every field is optional.

{
  "exaApiKey": "exa-...",
  "githubClone": {
    "enabled": true,
    "maxRepoSizeMB": 350,
    "cloneTimeoutSeconds": 30,
    "clonePath": "/tmp/pi-github-repos"
  },
  "shortcuts": {
    "activity": "ctrl+shift+w"
  }
}

EXA_API_KEY env var takes precedence over config file values. Config changes require a Pi restart.

How It Works

web({ mode: "search", query })
  → Exa (direct API with key, MCP without)

web({ mode: "read", url })
  → GitHub URL?  Clone repo, return file contents + local path
  → HTTP fetch → PDF? Extract text, save to ~/Downloads/
               → HTML? Readability → RSC parser → Jina Reader
               → Text/JSON/Markdown? Return directly

web({ mode: "get", resultId })
  → Load stored search or URL-read results from the current session

Limitations

  • PDFs are text-extracted only (no OCR for scanned documents).
  • GitHub branch names with slashes may misresolve file paths; the clone still works and the agent can navigate manually.
  • Non-code GitHub URLs (issues, PRs, wiki) fall through to normal web extraction.

Comparison with Other Pi Search Extensions

| Extension | Backends | Differentiator | |-----------|----------|----------------| | nicobailon/pi-web-access | Perplexity, Gemini, Exa | Upstream — curator, YouTube, video | | ronnieops/pi-search-hub | 12 backends | RRF combine mode, auto-fallback | | code-yeongyu/pi-websearch | 11 backends + native OpenAI/Anthropic | Provider routing, keyless DDG | | ayagmar/pi-codex-web-search | OpenAI Codex CLI | Wraps local codex CLI | | iaptsiauri/pi-surf | Brave + custom providers | Scout subagent, pluggable providers | | NicoAvanzDev/pi-web-extension | Brave, DDG (keyless) | Prompt steering, token-aware |

This project's niche: GitHub cloning + Exa MCP zero-config in a lean package, now exposed through a single web tool for simpler model tool-calling. No multi-provider routing, no browser UI, no video.