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

@2008muyu/pi-ui-prompt-dialog

v0.1.2

Published

A customizable TUI prompt dialog for pi extensions: inline menu + text input in a single overlay

Readme

pi-ui-prompt-dialog

A customizable TUI prompt dialog for pi coding agent extensions.
Inline menu + text input in a single overlay — no more two-step "select then input" dialogs.

Quick Start

pi install npm:@2008muyu/pi-ui-prompt-dialog
import { showPromptDialog } from "@2008muyu/pi-ui-prompt-dialog";

const result = await showPromptDialog(ctx, {
  title: "Plan 模式拦截了此操作",
  description: "agent 想跑:npm install lodash",
  actions: [
    { id: "exit", label: "退出并执行", default: true },
    { id: "cancel", label: "取消" },
  ],
  input: { label: "补充指令", placeholder: "想让我怎么做?" },
});

if (!result) {
  // Esc pressed
} else if (result.type === "action") {
  // result.action === "exit" | "cancel"
} else {
  // result.type === "input", result.value is the user's text
}

Usage Patterns

Actions only (no input)

const result = await showPromptDialog(ctx, {
  title: "选择操作",
  actions: [
    { id: "open", label: "打开文件", default: true },
    { id: "search", label: "搜索内容" },
    { id: "cancel", label: "取消" },
  ],
});

Pure input (single submit button)

const result = await showPromptDialog(ctx, {
  title: "输入项目名",
  description: "请输入一个 kebab-case 名称",
  actions: [{ id: "submit", label: "提交", default: true }],
  input: { label: "名称", placeholder: "my-project" },
});

API

showPromptDialog<TAction>(ctx, options) => Promise<PromptDialogResult<TAction>>

| Parameter | Type | Description | |-----------|------|-------------| | ctx | ExtensionContext | Pi extension context | | options.title | string | Dialog title | | options.description | string (optional) | Context text (shown in muted style) | | options.actions | PromptAction[] | 1–10 action items | | options.actions[].id | TAction | Unique identifier | | options.actions[].label | string | Display label | | options.actions[].default | boolean | Default (Enter key) action — max 1 | | options.input | PromptInput (optional) | Inline input field configuration | | options.input.label | string | Label shown before input | | options.input.placeholder | string (optional) | Placeholder when empty |

Return value

type PromptDialogResult<TAction extends string> =
  | { type: "action"; action: TAction }  // User selected an action
  | { type: "input"; value: string }      // User typed text
  | undefined;                            // Esc / cancelled

Exported types

import {
  showPromptDialog,
  type PromptAction,
  type PromptInput,
  type PromptDialogOptions,
  type PromptDialogResult,
} from "@2008muyu/pi-ui-prompt-dialog";

Keyboard Controls

| Key | Action | |-----|--------| | | Navigate actions / input row | | Tab / on input row | Enter input mode | | (in input) | Move cursor | | Backspace (in input) | Delete character | | / Esc (in input) | Exit input mode | | Enter | Submit (action or input) | | Esc | Cancel dialog |

Limits

  • Max 10 actions
  • Single-line input only (no multi-line)
  • No scrolling (if terminal is too narrow, content is clipped)
  • No custom theming (uses pi's built-in theme colors)

License

MIT