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-workflow

v0.1.7

Published

Visual companion for pi coding agent workflows

Downloads

19

Readme

Pi Workflow — VSCode Extension

Integrated UI for pi coding agent workflows. Chat with the agent, track plans, review verifications, and manage multiple workflows — all inside VSCode.

Features

💬 Chat Panel

  • Built-in chat interface with pi coding agent (RPC-based bidirectional communication)
  • Markdown rendering with syntax highlighting
  • Tool call visualization with ANSI color support and collapsible cards
  • Streaming response display with thinking indicators
  • Input queueing during agent processing

📋 Workflow Sidebar

  • Workflow Status — Real-time state tracking across all stages (Planning → Verification → Implementation → Compound)
  • TODO Progress — Tree view with per-item status (pending / in-progress / done)
  • Changed Files — Git diff tree with per-TODO and per-branch change tracking

📝 Plan & Verification Panels

  • Plan viewer with markdown rendering and active TODO highlighting
  • Verification results with severity-based color coding (🔴 CRITICAL / 🟡 WARNING / 🔵 INFO)
  • Multi-domain parallel verification progress display

⚙️ Workflow Management

  • Multi-workflow support — Create, switch, and delete workflows
  • TODO rollback — Undo completed TODOs via context menu (git reset)
  • Resume context — Implementation notes preserved per TODO for session continuity
  • Settings UI — Tabbed settings panel for models, stages, search, and verification config
  • Model selection — Provider/model dropdown with per-stage configuration

🔍 Parallel Search

  • Multi-query parallel codebase search with configurable scopes
  • Scopes: codebase, docs, solutions, web, tests, types, config

Requirements

  • VSCode 1.85+
  • pi coding agent installed and available in PATH
  • Git (for changed files and diff features)

How It Works

The extension spawns a pi process via RPC (pi --mode rpc) and communicates over JSON lines. Workflow state is stored in .pi/workflows/ and synced between CLI and VSCode sessions in real-time.

Workflow States

| State | Description | |-------|-------------| | 📝 Planning | Writing the implementation plan | | 🔍 Verifying Plan | Plan is being verified | | 🔨 Implementing | Code is being written | | ✅ Verifying | Implementation is being verified | | 📦 Compound | Multi-step compound task in progress | | ⏸️ Idle | No active workflow |

Commands

| Command | Description | |---------|-------------| | Pi: Start Chat | Start pi agent and open chat panel | | Pi: Stop Chat | Stop the running pi agent | | Pi: New Workflow | Create a new workflow | | Pi: Open Plan | Open the plan viewer webview | | Pi: Verification Results | Open verification results panel | | Pi: Show Changes | Show changed files with diff | | Pi: Settings | Open workflow settings panel | | Pi: Refresh | Force refresh all views | | Activate Workflow | Switch to a different workflow (context menu) | | Rollback TODO | Undo a completed TODO (context menu) |

License

MIT