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-archimedes/todo

v1.4.0

Published

Todo list tool with auto-clear and subagent visibility

Readme

@pi-archimedes/todo

Todo list management with auto-clear and live subagent visibility for the Pi coding agent.

Features

  • manage_todo_list tool — structured todo tracking with read and write operations
  • Auto-clear — when all todos are completed, the list clears itself after a brief 2-second delay
  • Multi-column widget — main agent todos on the left, each subagent's todos in their own column to the right
  • Live subagent visibility — subagent todos stream through the core bus so you can see what they're working on
  • /todos command — toggle the widget or clear todos (/todos clear)
  • Session persistence — todos survive /reload via session branch reconstruction

Screenshots

Multiple todos with progress tracking

Widget showing three todos with completion status — completed items dimmed with strikethrough, in-progress highlighted:

todos multiple todos

Main agent + subagent side by side

Main agent todos (left) alongside a subagent's todos (right), separated by a divider. Subagent column auto-removes when the subagent finishes:

todos and subagent

Installation

pi install @pi-archimedes/todo

Or install the full pi-archimedes meta package for the integrated experience:

pi install pi-archimedes

Usage

As a tool

The manage_todo_list tool accepts two operations:

Read current todos:

{
  "operation": "read"
}

Write (replace) the todo list:

{
  "operation": "write",
  "todoList": [
    { "id": 1, "title": "Parse config files", "description": "Read and validate all config files", "status": "in-progress" },
    { "id": 2, "title": "Build state manager", "description": "Implement TodoStateManager class", "status": "not-started" },
    { "id": 3, "title": "Wire up widget", "description": "Connect widget to bus events", "status": "not-started" }
  ]
}

As a command

  • /todos — toggle the todo widget visibility
  • /todos clear — clear all todos immediately

Todo statuses

| Status | Icon | Description | |--------|------|-------------| | not-started | ○ | Not yet begun | | in-progress | ◉ | Currently being worked on | | completed | ✓ | Fully finished |

Auto-clear

When all todos in the list are marked completed, the widget shows the all-done state for 2 seconds, then auto-clears. No need to manually run /todos clear.

Subagent integration

When installed via pi-archimedes (the meta package), subagent todo events flow through @pi-archimedes/core/bus and appear as separate columns in the widget. Each subagent gets its own column labeled with its agent name. The column auto-removes when the subagent finishes.