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

pi-zvec-grep

v0.1.0

Published

Use zvec-grep semantic workspace search from Pi.

Readme

pi-zvec-grep

Search your codebase from Pi with zg.

This extension runs the local zg CLI directly. It does not use MCP or a server.

What you need

  • Pi
  • Node.js / npm
  • The zg CLI

You’ll install zg in the next step.

Fastest way to get started

  1. Install zg:
npm install -g @zvec/zvec-grep
  1. Install this extension:
pi install npm:pi-zvec-grep
  1. Open your project in Pi.
  2. Start with a search:
/zg-query "where are user settings loaded?"

Use /zg-rg when you want exact matches:

/zg-rg rg -n -F "loadTheme" -g "*.ts" src

Use /zg-status when you want to check the index:

/zg-status /absolute/path/to/workspace

Commands you’ll use most

| Command | What it does | | --- | --- | | /zg-query <query> | Smart search across the indexed workspace | | /zg-rg <rg command> | Exact ripgrep search through the workspace | | /zg-status [root] [--check-ready] | Check whether an index exists and is ready | | /zg-index [embedding] [root] | Create or update the index | | /zg-index-drop [root] | Delete the index |

Examples

/zg-query "authentication flow"
/zg-query "where preferences are restored"
/zg-rg rg -n "TODO|FIXME" src
/zg-status /project --check-ready

root must be an absolute path when you pass it to the tools.

If something goes wrong

  • Unable to run zg...command not found → install zg with the npm command above.
  • root must be an absolute workspace path → pass a full path like /Users/me/project.
  • At least one of query, queries, fts, or vector is required → add a search query.
  • zg index was cancelled → you declined the confirmation prompt.

Tool reference

zvec_grep_search

{
  "root": "/absolute/path/to/workspace",
  "query": "authentication flow",
  "limit": 5
}

zvec_grep_rg

{
  "root": "/absolute/path/to/workspace",
  "command": "rg -n -F 'loadTheme' -g '*.ts' src"
}

zvec_grep_index_status

{
  "root": "/absolute/path/to/workspace",
  "checkReady": true
}

zvec_grep_index

{
  "root": "/absolute/path/to/workspace",
  "rebuild": true
}

zvec_grep_index_drop

{
  "root": "/absolute/path/to/workspace"
}

Development

npm test
npm run pack:check