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

@gaodes/pi-dev-kit

v2.0.3

Published

Developer toolkit for Pi — modular skills for authoring extensions, skills, prompt templates, themes, packages, and context files. Includes introspection tools for version, docs, changelog, benchmarking, and loaded tools.

Readme

@gaodes/pi-dev-kit

Fork of @aliou/pi-dev-kit by Aliou DIA — MIT License

Additional tools ported from:

This fork is maintained by El Che under the @gaodes npm scope. The original project and all upstream authors retain full credit for their work.

Developer toolkit for the Pi coding agent.

Source · npm · Upstream

Tools

| Tool | Description | | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | pi_version | Returns the currently running Pi version. | | pi_docs | Lists Pi markdown documentation files from the installation directory. | | pi_changelog | Returns changelog entries for a specific Pi version (or latest). Fetches from GitHub for versions newer than installed. | | pi_changelog_versions | Lists all available Pi changelog versions. | | pi_ext_benchmark | Profile Pi extension loading times — discovers all extensions (global, project-local, packages) and measures import + factory execution time per extension. Actions: profile (default), list. Scopes: all, global, project, packages. | | loaded_tools | List all loaded tools with source provenance and active status. Returns tools grouped by source (built-in, SDK, extensions) with active/inactive indicators and per-extension grouping. | | detect_package_manager | Detect the package manager used in the current project by checking lockfiles and package.json. Returns the package manager name, version, lockfile, and install/run commands. |

Commands

| Command | Description | | -------- | --------------------------------------------------------------- | | /tools | List all loaded tools with source provenance and active status. |

Configuration

Startup display

By default, the tools list is not shown at session start. To enable it, add to ~/.pi/agent/prime-settings.json:

{
  "pi-dev-kit": {
    "showOnStartup": true
  }
}

Or per-project in .pi/prime-settings.json.

Skills

| Skill | Description | | -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | | pi-extension | Comprehensive Pi extension development reference — tools, hooks, commands, components, modes, state, providers, testing, publishing, and 12 API reference docs | | demo-setup | Demo project setup guide for new Pi extensions |

Changelog

v0.3.0

  • Upgrade version-tool and docs-tool to defineTool API with ToolCallHeader rendering
  • Add promptSnippet and promptGuidelines to upgraded tools
  • Add pi-extension skill with 12 reference docs from upstream
  • Add demo-setup skill and setup-demo prompt from upstream
  • Add @aliou/pi-utils-ui dependency for ToolCallHeader/ToolBody rendering

v0.2.0

  • Add pi_ext_benchmark tool — profile extension loading times
  • Add loaded_tools tool — list all tools with source provenance
  • Add /tools command and message renderer
  • Add startup display (opt-in via showOnStartup)

v0.1.0

  • Initial release: pi_version, pi_docs, pi_changelog, pi_changelog_versions

Related extensions

  • pi-package-managerpi_package_manager tool for scanning, installing, and uninstalling Pi packages.
  • pi-updaterpi_updater tool and /update command.