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

ghostpm

v1.4.0

Published

The invisible, zero-latency PM interface for AI Agents. Connects to GitHub Issues and Azure DevOps via MCP.

Readme

GhostPM 👻

Zero-latency, vendor-agnostic PM interface for AI agents. Connects GitHub Issues and Azure DevOps to any MCP-compatible AI tool.

Install

npm install -g ghostpm

Prerequisites

Quick Start

cd your-project
ghostpm init

init auto-detects your PM vendor from .git/config, sniffs workflow states from your existing issues, creates .mcp-pm.yml, and registers the MCP server with Claude Code and Claude Desktop. No manual config editing.

Commands

| Command | Description | |---------|-------------| | ghostpm init | Initialize project + auto-register MCP server | | ghostpm setup | Re-register MCP server with AI tools | | ghostpm setup --global | Register in global Claude Code settings | | ghostpm tasks | List cached tasks from local DB | | ghostpm sync | Force sync with remote PM tool | | ghostpm status | Show vendor, cache size, outbox, last sync | | ghostpm serve | Start MCP server (used by MCP clients internally) |

How It Works

GhostPM uses a local-first Outbox Pattern:

  1. Local SQLite cache (.mcp-pm.db) stores the latest known board state
  2. Reads are instant — always served from cache, zero network latency
  3. Writes queue locally — optimistically applied to cache, synced in background
  4. Conflict detection — if remote changed while your update was queued, GhostPM flags it and provides resolve_conflict

A background daemon polls every 5 minutes, or syncs immediately after any mutation.

MCP Tools

Once connected, AI agents get these tools:

| Tool | Description | |------|-------------| | query_tasks | Markdown table of all cached tasks | | get_task | Full JSON of a single task | | start_task | Transition to "In Progress" + checkout task/<id> branch | | update_task | Change state or add comment | | open_attachment | Open URL in local browser | | resolve_conflict | Resolve sync conflict (keep local or accept remote) |

Supported Providers

  • GitHub Issues — uses gh CLI
  • Azure DevOps — uses az boards CLI

Configuration

ghostpm init generates .mcp-pm.yml at your repo root:

vendor: "github"
workflow:
  states: ["open", "in_progress", "in_review", "closed"]
  transitions:
    start_task: "in_progress"
    code_push: "in_review"
views:
  list_columns: ["id", "state", "title", "assignee"]
  detail_fields: ["id", "title", "body", "comments"]

Manual MCP Registration

If ghostpm setup doesn't cover your MCP client, add this to your client's config:

{
  "mcpServers": {
    "ghostpm": {
      "command": "ghostpm",
      "args": ["serve"]
    }
  }
}

Development

git clone https://github.com/dpkay-io/ghostpm.git
cd ghostpm
npm install
npm run build
npm test

License

MIT