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

claude-poni-deck

v0.1.1

Published

Claude Code plugin that reports session status to Poni Deck via a PowerShell hook, writing status JSON to %APPDATA%\poni-deck\agents\{pid}.json

Readme

claude-poni-deck

Claude Code plugin that reports session status to Poni Deck.

It ships a PowerShell hook that runs on Claude Code lifecycle events (SessionStart, UserPromptSubmit, PreToolUse, PostToolUse, PermissionRequest, Stop, Notification, StopFailure, SessionEnd) and writes a small JSON status file to %APPDATA%\poni-deck\agents\{claudePid}.json. Poni Deck watches that directory and displays the live status of every running agent.

The hook is a pure side effect: it returns no decision, so it never blocks or allows/denies tool calls.

Requirements

  • Windows (PowerShell 5.1+)
  • Claude Code with plugin support (v2.1.x or newer)

Install from npm

The plugin can be distributed as an npm package through a Claude Code plugin marketplace. Host a marketplace catalog (e.g. a git repo or a file) that references this package:

{
  "name": "poni-deck-plugins",
  "owner": {
    "name": "Poni Deck Contributors"
  },
  "plugins": [
    {
      "name": "poni-deck",
      "source": {
        "source": "npm",
        "package": "claude-poni-deck",
        "version": "0.1.0"
      },
      "description": "Reports Claude Code session status to Poni Deck"
    }
  ]
}

Then install it in Claude Code:

/plugin marketplace add https://github.com/<owner>/<marketplace-repo>.git
/plugin install poni-deck@poni-deck-plugins
/reload-plugins

Install from git (this repo)

This package also ships a .claude-plugin/marketplace.json, so it can be used as a marketplace directly. From inside the repo root:

/plugin marketplace add ./packages/claude-poni-deck
/plugin install poni-deck@poni-deck-plugins
/reload-plugins

Note on hook execution: hooks must be registered in exec form ("command": "powershell.exe" + "args": ["-NoProfile", ...]) with "async": true. Using shell form (a bare .ps1 path as command) or leaving hooks synchronous makes Claude Code block on the hook for every event, which breaks normal requests.

Status file contract

| Field | Type | Description | | ----------- | -------- | -------------------------------------------------- | | status | string | working, idle, waiting_confirmation, error | | pid | number | The claude process id | | cwd | string | Working directory of the session | | launcher | string | vscode or terminal | | tool | string | Always claude | | seq | number | Monotonic ordering guard against stale writes | | timestamp | string | ISO 8601 timestamp of the last write |

Development

The canonical hook lives at hooks/agent-status.ps1. It mirrors the behavior of the opencode plugin in opencode-poni-deck.

License

MIT