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

@yandy0725/pi-todo

v0.1.1

Published

pi package providing a minimal todo tool with an editor-overhead widget

Readme

pi-todo

一个极简的 pi 扩展包,添加单个 todo 工具,并附带编辑器上方可视化的任务跟踪组件。

功能

  • 一个工具,三种操作:set(规划所有任务)、update(更改一个任务)、list(查看进度)
  • 三种状态pendingin_progressdone
  • 依赖关系:可选的 blockedBy 数组,含自依赖和循环检测
  • 紧凑组件悬于编辑器上方: pending · in_progress · done · 🔒 blocked
  • 分支安全的持久化:状态从会话分支重建,因此 /fork/resume 会保留正确的待办列表

安装

pi install npm:@yandy0725/pi-todo

或在 ~/.pi/agent/settings.json 中添加:

{
  "packages": ["npm:@yandy0725/pi-todo"]
}

工具参考

todo(action: "set" | "update" | "list", items?, id?, status?, title?, blockedBy?)
  • set — 用 items 替换整个列表(在规划阶段使用)
  • update — 根据 id 更新任务(statustitleblockedBy 可选)
  • list — 返回当前列表

全部任务完成后,组件会自动隐藏。