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

@getpie/pi-loop

v0.0.1

Published

Session-scoped /loop for Pi: compact-interval scheduler_create / scheduler_list / scheduler_delete

Downloads

0

Readme

@getpie/pi-loop

Session-scoped /loop for Pi. Compact-interval scheduler in the current session: scheduler_create, scheduler_list, scheduler_delete.

Fires with sendMessage({ customType: "@getpie/pi-loop" }, { triggerTurn: true }) so the fire is a custom message, not a user bubble. In-memory only: tasks disappear on process exit, /reload, /new, /resume, and /fork.

Install

Local checkout:

pi install /Users/dinq/Code/oxwen11/pi-loop

Or load once without installing:

pi -ne -e /Users/dinq/Code/oxwen11/pi-loop --no-session

After publishing:

pi install npm:@getpie/pi-loop

Use

/loop 5m check the deploy
/loop check CI
/loop

/loop asks the model to call scheduler_create. It does not create the loop itself.

| Input | What the model should do | |---|---| | /loop 5m check the deploy | interval=5m, standing order, fire_immediately=true | | /loop check CI | pick an interval, default 5m, tell you, do not ask | | /loop / /loop 15m | no prompt → .pi/loop.md, ~/.pi/agent/loop.md, or the built-in maintenance prompt |

Clock-time, weekday, and one-shot delays are not this tool. Use cron / systemd / GitHub Actions.

Limits

  • Interval: Ns / Nm / Nh / Nd. Below 60 seconds is raised to 60s. Above 7 days is rejected.
  • Max 50 tasks. 7-day TTL.
  • Session idle and no pending messages before a fire. Busy fires wait; missed fires coalesce to one.
  • Completion boundary is agent_settled.
  • No restart recovery, no queue revoke, no loop-scoped abort.

Develop

npm install
npm test
npm run typecheck
npm run lint
pi -ne -e . --no-session