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

@dreki-gg/pi-questionnaire

v0.2.1

Published

Tool-first questionnaire flow for pi with shared tabbed TUI and custom rendering

Readme

@dreki-gg/pi-questionnaire

Tool-first questionnaire extension for pi.

It adds:

  • a questionnaire tool for collecting 1-5 structured answers in one interaction
  • a /questionnaire demo command powered by the same shared tabbed TUI flow

Install

pi install npm:@dreki-gg/pi-questionnaire

What it provides

| Feature | Name | Notes | |---|---|---| | Tool | questionnaire | Collects structured user answers with single/multi select + optional Other text | | Command | /questionnaire | Demo flow using Scope, Priority, Approach |

Input schema (summary)

{
  questions: Array<{
    id: string;
    label?: string;
    prompt: string;
    selectionMode?: 'single' | 'multiple';
    options: Array<{
      value: string;
      label: string;
      description?: string;
    }>;
    allowOther?: boolean; // defaults to true at runtime
  }> // min 1, max 5
}

Validation includes:

  • 1-5 question limit
  • non-empty option lists
  • duplicate question id rejection
  • duplicate option value rejection per question

Normalized output schema (summary)

{
  questions: NormalizedQuestion[];
  answers: Array<{
    questionId: string;
    questionLabel: string;
    selectedOptions: Array<{ value: string; label: string }>;
    otherText: string | null;
    wasOtherSelected: boolean;
  }>;
  cancelled: boolean;
}

Other answers are rendered explicitly as:

Other: "GraphQL"

Keyboard model

  • ← / →: switch tabs (question tabs + Review tab)
  • ↑ / ↓: move option cursor (question tab) or row cursor (Review tab)
  • Space:
    • question tab: select/toggle option or enter Other input
    • review tab: jump to selected question for editing
  • r: jump to Review tab
  • Esc hierarchy:
    1. exit Other input mode
    2. from Review, go back to prior question tab
    3. from question tab outermost, cancel questionnaire
  • Enter:
    • in Other editor: submit typed text
    • in Review: submit only when all required answers are valid

Example tool call

{
  "name": "questionnaire",
  "arguments": {
    "questions": [
      {
        "id": "scope",
        "label": "Scope",
        "prompt": "What is the project scope?",
        "selectionMode": "single",
        "options": [
          { "value": "low", "label": "Low" },
          { "value": "high", "label": "High" }
        ]
      },
      {
        "id": "priority",
        "label": "Priority",
        "prompt": "What priority should we assign?",
        "selectionMode": "single",
        "options": [
          { "value": "p0", "label": "P0" },
          { "value": "p1", "label": "P1" }
        ]
      }
    ]
  }
}

Example result summaries

Completed (collapsed):

✓ Scope: High • Priority: P1 • Approach: Other: "GraphQL"

Cancelled:

⚠ Cancelled

Cancellation and non-interactive behavior

  • User cancellation is not treated as an error (cancelled: true in details).
  • Non-interactive mode (!ctx.hasUI) returns an immediate error result (isError: true).