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

easyprm

v0.2.0

Published

File-based project management MCP server for solo developers building with AI. Plan end-to-end and stay on the plan — tickets, dependency DAG, kanban + architecture diagrams, all in .claude/easyprm/.

Readme

easyprm

File-based project management MCP server for solo developers building with AI. It owns a .claude/easyprm/ doc tree, gives you rich tickets, and keeps a kanban board, dependency graph, architecture diagram, and "where was I" status auto-generated from your tickets.

Install (Claude Code)

claude mcp add easyprm -- npx -y easyprm

Or configure manually in your MCP client:

{
  "mcpServers": {
    "easyprm": { "command": "npx", "args": ["-y", "easyprm"] }
  }
}

The server manages files under the current working directory's .claude/easyprm/. Set EASYPRM_ROOT to target a different project root.

The loop

  1. init_project — scaffold the tree.
  2. Draft docs/big-picture.mdsfr.mdtrf.md.
  3. create_epiccreate_task (declare dependsOn).
  4. get_status / get_next_task — stay on the plan.
  5. update_task — track progress; → done requires all "How To Test" boxes checked.

overview/ files are auto-generated — never edit them by hand.

What's new in 0.2

  • PM playbooks bundled in the package. Call list_playbooks for the catalog (13 entries: project-setup, big-picture-writing, requirements-writing, tech-doc-writing, epic-decomposition, task-decomposition, user-story-writing, definition-of-done, definition-of-ready, dependency-mapping, estimating, adr-writing, risk-identification), get_playbook(name) for full content.
  • Phases as optional grouping above epics — sequential releases (MVP → v2 → v3). create_phase, set_active_phase, then create_epic lands in the active phase by default. list_tasks / get_next_task default to the active phase.
  • ADRs — lightweight decision log in decisions/ via add_decision, list_decisions, update_decision. Latest 3 surface in status.md.
  • get_briefing — one tool returns project + active phase + in-progress + recommended next + recent ADRs + recent comments. Call at session start.
  • Sharper next_steps hints — every tool response now points to the relevant playbook for what to do next.

Develop

npm install
npm test
npm run build