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-roblox-docs

v0.1.4

Published

Pi native Roblox documentation tools without a background MCP server.

Readme

pi-roblox-docs

CI Publish npm version License: MIT

Pi native Roblox documentation tools.

This package does not start an MCP server, uvx, or a background Node daemon. It runs inside Pi's TypeScript extension runtime and registers Roblox documentation tools directly with pi.registerTool().

Tools

MVP tools:

  • roblox_sync - download/update local Roblox API cache
  • roblox_health - show cache/index status
  • roblox_search - search classes, members, and enums
  • roblox_get_class - show one class with grouped members
  • roblox_get_member - show one class member
  • roblox_get_enum - show enum values
  • roblox_search_devforum - search Roblox Developer Forum discussions
  • roblox_clear_cache - delete local cache

Slash commands

  • /roblox:sync - sync local Roblox docs cache
  • /roblox:sync --force - redownload even when versions match
  • /roblox:health - show cache/index status
  • /roblox:devforum <query> - search DevForum discussions
  • /roblox:clear-cache - delete local cache after confirmation

Data sources

Public sources used by the extension:

  • MaximumADHD/Roblox-Client-Tracker for API-Dump.json, api-docs/en-us.json, and version.txt
  • Roblox Creator Docs links for output references

Install

From npm:

pi install npm:pi-roblox-docs

From GitHub:

pi install git:github.com/eiei114/pi-roblox-docs

Local development:

pi -e ./extensions/roblox-docs.ts

Development

npm ci
npm run check

Usage

First sync data:

Call roblox_sync with force=false

Then ask Roblox API questions. Examples:

  • "How do I use TweenService?"
  • "Is BodyPosition deprecated?"
  • "What enum values does EasingStyle have?"
  • "Find APIs for player character spawning."

Cache

Cache location is OS-specific:

  • Windows: %LOCALAPPDATA%/pi-roblox-docs
  • macOS: ~/Library/Caches/pi-roblox-docs
  • Linux: ~/.cache/pi-roblox-docs

The extension does not write large Roblox JSON files into your project or Obsidian vault.

DevForum search results are cached for 1 hour in devforum-cache.json and are deleted by /roblox:clear-cache.

Security

Pi packages can execute code with your local permissions. Review extensions before installing third-party packages.

For vulnerability reporting, see SECURITY.md.

Release

Version history and release notes are in CHANGELOG.md.