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

@llblab/pi-wakeup

v0.4.0

Published

Singleton wake-up scheduler extension for pi

Readme

pi-wakeup

Singleton wake-up scheduler extension for the pi coding agent.

Start Here

Features

  • WAKEUP.md is the durable schedule
  • /wakeup-start selects the active pi instance
  • /wakeup-stop explicitly releases the scheduler lock
  • wakeup tool: check, schedule, done
  • The wakeup tool is active only in the singleton owner session, keeping inactive pi contexts free of schedule prompt guidance
  • Footer status: wakeup off, wakeup on, or wakeup [hh:mm:ss]
  • Fired tasks become [~] until closed with wakeup done or wakeup done N
  • If pending tasks become overdue while another task is [~], the oldest one fires after the current task is closed
  • Wake-up messages and schedule checks include monotonically increasing task indexes
  • Completed tasks are kept while work remains, then WAKEUP.md resets to the empty template when all tasks are done

Install

From npm:

pi install npm:@llblab/pi-wakeup

From git:

pi install git:github.com/llblab/pi-wakeup

Usage

/wakeup-start
wakeup schedule "in 10m | Read one AAA spec section deeply"
wakeup check
wakeup done
/wakeup-stop

Scheduling

Schedule with relative time to avoid timezone mistakes:

wakeup schedule "in 10m | Review WAKEUP.md"
wakeup schedule "1h30m | Deep work checkpoint"
wakeup schedule "2026-04-28T15:00:00Z | Absolute UTC task"

Supported duration units: s, m, h, d.

WAKEUP.md

Entries are stored as UTC ISO 8601 timestamps:

# Wakeup Plan

> Flat list of scheduled agent awakenings
> Format: `N. [status] YYYY-MM-DDTHH:MM:SSZ | action`
> N: task index, starts from 3
> Status: ` ` pending, `x` done, `~` in progress
> Timestamps are stored as UTC ISO 8601

---

0. [x] 2026-04-28T10:00:00Z | Finished task
1. [~] 2026-04-28T11:00:00Z | Current fired task
2. [ ] 2026-04-28T12:00:00Z | Future task

---

WAKEUP.md keeps human-edited order. > N: task index, starts from ... stores the next task index. Use direct file edits for rescheduling or removing tasks.

Runtime

  • WAKEUP.md is editable schedule state and stores the next task index in > N: task index, starts from ...
  • locks.json stores { "@llblab/pi-wakeup": { "pid": ..., "cwd": ... } }
  • Timers are rebuilt from WAKEUP.md on startup, tool edits, and manual file changes
  • Only the locked pi process sends ⏰ Wakeup
  • Only the locked pi process keeps the wakeup tool active in the agent context
  • /wakeup-start can move singleton ownership here when another live pi instance owns the lock
  • /new and process restarts resume explicit ownership from the lock when pid/cwd semantics allow it
  • The footer countdown is updated from cached schedule state, not by rereading WAKEUP.md every second
  • No cron, daemon, or external service

Architecture overview: docs/architecture.md Lock standard: docs/locks.md