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

@howaboua/pi-vent

v0.2.1

Published

A Pi extension that lets the agent append major-issue feedback to VENT.md.

Readme

pi-vent

A tiny Pi extension that gives the agent a vent tool.

When the agent notices repeated or systemic workflow friction, it can leave a note in VENT.md in your current workspace. This is less about complaining and more about capturing patterns that should become future automation, docs, or workflow fixes.

The tool is meant for cases like repeated hook/tool failures with the same root cause, manually applying the same cleanup workaround more than once, tool output that forces the same retry sequence, or project instructions that cause avoidable backtracking. It should not be used for one-off lint/type errors or ordinary coding mistakes that are simply part of normal development.

Entries are batched and appended near the end of an agent turn, so you get a useful feedback log without constant tool chatter.

What it writes

If VENT.md does not exist, pi-vent creates it. Each entry is appended with a human-readable local timestamp:

## 26-04-29 10:42 — tool_error

Symptom: a hook failed twice for the same generated artifact. Repeated workaround: manually deleted the artifact and reran the same command sequence. Suggested fix: add cleanup to the hook or document the generated-file lifecycle.

Install

Install globally for all Pi projects:

pi install npm:@howaboua/pi-vent

Install only for the current project:

pi install -l npm:@howaboua/pi-vent

Try it for one run without installing:

pi -e npm:@howaboua/pi-vent

Pi packages run with your full system permissions. Only install extensions from sources you trust.

Tool

pi-vent registers one tool:

vent({
  thought: string,
  trigger?: string
})
  • thought — the repeated/systemic friction note. Good entries include what failed, what workaround was repeated, and what would prevent it next time.
  • trigger — optional short label, for example tool_error, bad_docs, or confusing_task.

The tool description tells the agent to use it for repeated workflow friction, batch feedback, and call it near the end of the turn after completing the task.