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

@mrclrchtr/supi-ask-user

v2.4.1

Published

SuPi ask-user extension — rich questionnaire UI for structured agent-user decisions

Readme

@mrclrchtr/supi-ask-user

SuPi Ask-User brings structured decision forms to your pi sessions. When the agent needs your input, you get a clear, keyboard-driven form instead of a chat message.

Install

pi install npm:@mrclrchtr/supi-ask-user

For local development:

pi install ./packages/supi-ask-user

What to expect

During a session, the agent may pause and open a small form when it needs an explicit decision from you. The form appears directly in the TUI and blocks the agent until you respond.

Each form can contain up to ten questions. A question is either a choice (pick one or more from a list) or a text (type a short answer). The agent can suggest a recommended answer, which is preselected or prefilled for you.

All questions are expected to be answered before the form can be submitted. If you leave any question unanswered, the agent receives a "needs discussion" outcome so it can follow up.

You can also add comments to individual questions, options, or the whole form if you want to explain your thinking.

Agent-facing behavior

ask_user is an interactive TUI-only handoff. The agent should use one form for one focused decision, combine related questions instead of opening multiple forms, and wait for the result before doing work that depends on your answer. Only one form can be active at a time.

The model-visible result summary is bounded to Pi's default tool-output limits: 2,000 lines or 50KB, whichever is hit first. If a very large response is truncated, the agent is told to ask a focused follow-up for any omitted text it still needs.

Preview

Keyboard reference

Choice questions

| Key | Action | |-----|--------| | | Move between options | | Space | Select / toggle an option | | Enter | Confirm and advance | | Tab / | Next question (last question goes to review) | | Shift+Tab / | Previous question | | n | Comment on the focused option | | c | Comment on the current question | | u | Mark the current question unanswered | | Esc | Cancel the whole form |

Text questions

| Key | Action | |-----|--------| | Enter | Submit text and advance | | Tab | Next question | | Alt+C | Comment on the current question | | Alt+U | Mark the current question unanswered | | Esc | Cancel the whole form |

Review screen

| Key | Action | |-----|--------| | | Move between questions and Submit | | Enter | Open a question for editing, or submit the form | | / Shift+Tab | Return to the last question | | c | Edit the form-level comment | | Esc | Cancel the whole form |

Comment editors

| Key | Action | |-----|--------| | Enter | Save comment and return | | Esc | Discard comment edits and return |

The recommended option is labeled [recommended]. On wide terminals, option details render side-by-side with the list; on narrow terminals they stack below.