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-flutter-run

v1.0.2

Published

Flutter run, hot reload, logs, and Dart VM debug cockpit for Pi Agent.

Readme

pi-flutter-run

Flutter run, hot reload, logs, and Dart VM debug cockpit for Pi Agent.

pi-flutter-run is a Pi extension for Flutter developers who want to keep Flutter runtime feedback inside their agent workflow instead of switching between terminal, IDE, logs, and chat.

Install

pi install npm:pi-flutter-run

Restart Pi or run /reload after installation if the current session does not pick up the new package automatically.

Usage

Run this command inside a Flutter project that has .vscode/launch.json Dart/Flutter launch configurations:

/flutter-run

The extension opens an interactive Flutter debug cockpit where you can choose a launch config, keep the Flutter process running, inspect logs, hot reload/restart, and send debug context back to the agent.

Features

  • /flutter-run command for selecting Flutter launch configs and starting flutter run.
  • Interactive debug overlay/cockpit with retained Flutter output.
  • Hot reload and hot restart controls.
  • Latest error/log extraction for fast agent debugging.
  • Dart VM Service connection for pause/resume/step/breakpoint-oriented debug workflows.
  • Agent-callable tools:
    • flutter_debug_state()
    • flutter_debug_logs(maxLines?)
    • flutter_debug_latest_error()
    • flutter_debug_hot_reload()
    • flutter_debug_hot_restart()
    • flutter_debug_stop()

Requirements

  • Pi Agent with extension package support.
  • Flutter SDK available on PATH.
  • A Flutter project with .vscode/launch.json configurations using Dart/Flutter launch entries.
  • Node.js supported by the installed Pi Agent version.

Example .vscode/launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Flutter debug",
      "request": "launch",
      "type": "dart",
      "program": "lib/main.dart",
      "flutterMode": "debug"
    }
  ]
}

Public discovery

This package is tagged with the pi-package npm keyword so Pi package search/gallery tooling can discover it. It is published as a public npm package and can also be inspected on GitHub:

  • npm: https://www.npmjs.com/package/pi-flutter-run
  • repository: https://github.com/Sarrius/pi-flutter-run

Contributing

Community contributions are welcome.

  • Report bugs: https://github.com/Sarrius/pi-flutter-run/issues/new/choose
  • Propose features: https://github.com/Sarrius/pi-flutter-run/issues/new/choose
  • Discuss ideas: https://github.com/Sarrius/pi-flutter-run/discussions
  • Read the contributor guide: CONTRIBUTING.md

Please keep pull requests focused and run the local checks before submitting.

Development

npm install
npm run check
npm run pack:check

Pi loads the TypeScript extension directly through the package manifest:

{
  "pi": {
    "extensions": ["./index.ts"]
  }
}

License

MIT