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-prompt-suggestions

v0.1.2

Published

Pi extension that suggests a natural next prompt after an agent response.

Downloads

61

Readme

pi-prompt-suggestions

Pi extension that suggests a natural next prompt after an agent response.

Disclaimer: this is clanker slop.

Behavior:

  • Generate a short next-prompt suggestion after agent_end.
  • Show it as ghost text in the input editor by default.
  • Optionally show it below the input editor.
  • Accept it with Right Arrow when the editor is empty.
  • Submit it immediately with Enter when the editor is empty.
  • Optionally accept it with Tab when the editor is empty.
  • Leave Tab/autocomplete behavior unchanged unless acceptTab is enabled.
  • Reject common bad model outputs such as questions, meta text, labels, errors, markdown formatting, evaluative replies, and overlong suggestions.

Install

From GitHub:

pi install git:github.com/SteelDynamite/pi-prompt-suggestions@master

Latest release tag currently points to the older below-editor implementation:

pi install git:github.com/SteelDynamite/[email protected]

After npm publishing:

pi install npm:[email protected]

Configuration

By default, suggestions use the active Pi model.

Optional global config:

~/.pi/agent/extensions/prompt-suggestions.json

Optional project config:

.pi/prompt-suggestions.json

Project config overrides global config.

{
  "enabled": true,
  "acceptTab": false,
  "display": "ghost",
  "model": "openai/gpt-5-mini",
  "maxTokens": 256,
  "maxChars": 80
}

acceptTab defaults to false. When true, Tab accepts the visible suggestion into an empty editor without submitting; this can steal Tab from autocomplete while a suggestion is visible.

display can be ghost or belowEditor; default is ghost.

model uses provider/modelId. If omitted or invalid, the extension falls back to the active Pi model.

The suggestion-generation system prompt lives in prompts/suggestion-system-prompt.md. Edit that file if you want to change the generation instructions before packaging/installing from source.

See docs/plan.md for the implementation plan.

Development

Run the validation suite:

npm run validate

Try the extension interactively from the local test project:

cd test
pi