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

@ineersa/my-pi-scheduler

v0.1.13

Published

Scheduler extension for pi: recurring checks, one-time reminders, and the LLM-callable schedule_prompt tool.

Downloads

849

Readme

scheduler

Recurring checks, one-time reminders, and the LLM-callable schedule_prompt tool for pi.

Tasks run only while pi is active and idle. Scheduler state is persisted in shared pi storage using a workspace-mirrored path so tasks survive restarts.

Commands

| Command | Description | |---------|-------------| | /loop 5m <prompt> | Schedule recurring prompt every 5 minutes | | /loop --workspace 5m <prompt> | Same, but workspace-scoped (survives instance changes) | | /loop cron '<expr>' <prompt> | Schedule recurring prompt via cron expression | | /remind in 45m <prompt> | One-time reminder in 45 minutes | | /remind --workspace in 45m <prompt> | Same, but workspace-scoped | | /schedule | Open interactive TUI task manager | | /schedule list | List all scheduled tasks | | /schedule enable <id> | Enable a task | | /schedule disable <id> | Disable a task | | /schedule delete <id> | Delete a task | | /schedule clear | Clear all tasks | | /schedule adopt <id\|all> | Adopt foreign tasks to this instance | | /schedule release <id\|all> | Release tasks back to unowned | | /schedule clear-foreign | Remove all foreign-owned tasks | | /unschedule <id> | Alias for /schedule delete |

Tool

The schedule_prompt tool lets the LLM schedule prompts directly:

  • add — create recurring or one-shot tasks (supports intervals and cron)
  • list — list all tasks
  • delete / clear — remove tasks
  • enable / disable — toggle tasks
  • adopt / release / clear_foreign — manage multi-instance ownership

Ownership model

Tasks are instance-scoped by default: they belong to one pi instance and other instances restore them for review instead of auto-running. Use --workspace scope for shared CI/build/deploy monitors that should survive instance changes in the same repository.

When another live instance already owns scheduler activity for the workspace, pi prompts before taking over. Manage ownership explicitly with:

  • /schedule adopt <id|all>
  • /schedule release <id|all>
  • /schedule clear-foreign

Limits

| Setting | Value | |---------|-------| | Max tasks | 50 | | Min recurring interval | 1 minute | | Max dispatches per minute | 6 | | Recurring task expiry | 3 days | | Min cron cadence | 1 minute |

Dependencies

  • croner — cron expression parsing and next-run calculation

Related extensions