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

@nmzpy/pi-ember-stack

v0.2.4

Published

Ember's configurable Pi stack with modes, compact tools, subagents, and Devin, Cursor, and xAI providers

Readme

pi-ember-stack

The Ember-owned pi package. It installs the complete Ember agent workflow as one package:

  • Primary modes: /coder, /architect, /doctor, /orchestrator, and /ui-doctor.
  • Inline questionnaire UI for decision-oriented questions. Agents are told to prefer it when they need a user choice.
  • A compact native edit renderer that shows the filename and a single +N / -N result row.
  • Vendored subagent support with bundled coder and architect definitions, plus the upstream bundled roles.
  • Bundled Devin auth/provider support, including OAuth, model catalog refresh, and streaming transport.
  • Cursor subscription support through the official Cursor Agent CLI, with Pi retaining its native session and tool loop.
  • A self-contained Ctrl+Space mode-cycle shortcut and a footer showing the active mode, model, and thinking variant.

Plugin registry

The package has one top-level pi extension which dispatches to the internal plugins under plugins/. Enable them globally in PI_HOME/pi-ember-stack.json:

{
  "plugins": ["pi-compact-tools", "pi-custom-agents", "devin-auth", "pi-cursor-auth"]
}

Remove a plugin ID to disable it, or use /stack-plugins to toggle one from the TUI. Restart pi after changing the list. The available plugins are:

  • pi-compact-tools: collapsed native edit rendering.
  • pi-custom-agents: questionnaire UI, primary modes, plans, subagent tool, and bundled agent definitions.
  • devin-auth: Devin provider, OAuth, catalog refresh, and streaming.
  • pi-cursor-auth: Cursor subscription auth, model refresh, and native Pi streaming.

Project setup

The Ember repository contains a project-local .pi/settings.json entry for:

"npm:@nmzpy/[email protected]"

On a new clone, start pi from the project directory. Pi will ask for a one-time project trust decision before it installs the package into the project-local .pi/npm/ directory. The same decision can be approved non-interactively with:

pi --approve

Project trust is intentionally a user decision; a repository cannot safely bypass it. After trust, normal startup is just pi from the Ember directory.

When a new version is intentionally released, update the pinned version in the project settings and run:

pi update --extensions

Third-party utilities such as pi-fff and image paste remain separate package entries. Devin auth is now bundled as a stack plugin, but credentials and provider secrets stay in the machine-local pi configuration and are not part of this repository.

Development

The package entrypoint is plugins/index.ts. Compact tools are under plugins/pi-compact-tools/, while questionnaire, primary modes, plans, subagents, and bundled agents are under plugins/pi-custom-agents/. Provider plugins are under plugins/devin-auth/, plugins/pi-cursor-auth/, and plugins/xai-auth/.

Run the package typecheck with:

npm install
npm run typecheck

Release

Run ./gacp.sh --release to bump the patch version, typecheck, commit, tag, push, and publish the package to npm. This only publishes the package; update Ember's pinned package version separately when you want the project to install it.

The package is cross-platform: bundled paths are resolved from import.meta.url and do not depend on a Windows home directory or the current working directory.