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

@themuuln/pi-research

v0.1.0

Published

Deep research extensions for pi coding agents: /research (deep multi-agent dives), /research-general (any topic), /dig (fast adaptive research). Works in both pi-coding-agent and OMP.

Readme

@themuuln/pi-research

Deep research extensions for pi-coding-agent (and OMP, the Oh My Pi fork). Three commands that turn a prompt into an evidence-backed, publication-quality research run:

| Command | What it does | |---|---| | /research <query> | Deep multi-agent research with planning, parallel workers, quality checkpoints, synthesis and audit | | /research-general <query> | Same orchestrator for ANY topic — markets, health, geopolitics, consumer decisions, science, news. Source tiers, freshness and bias checks built in | | /dig <query> | Fast adaptive research — 3-4 calls (~30s) for simple facts, auto-escalates to deeper rounds or subagents when evidence is thin |

Install

pi install @themuuln/pi-research

OMP users can install the same package; it works in both runtimes.

Usage

/research compare Bun and Node.js runtime tradeoffs for CLI tools
/research-general is a carnivore diet backed by current evidence?
/dig mongolian payment sms automation
/dig --deep carbon capture tax credits
/dig --lang=mn cэрэг мэдээ

How it works

/research and /research-general

The command injects an orchestrator prompt that:

  1. Boots a run directory (default ~/.omp/research/ when ~/.omp exists, otherwise ~/.pi/research/; override with PI_RESEARCH_HOME)
  2. Writes a plan: complexity class, orthogonal sub-questions, source-quality bar
  3. Parallel mode — when a task tool is available, spawns one subagent per sub-question in a single batch, each writing notes to notes/*.md Inline mode — without a task tool, does the searching itself and writes the same notes sequentially (same workflow, no subagents)
  4. Synthesizes claims + sources, then calls the research_checkpoint / research_general_checkpoint tool — a code-enforced quality gate (min sources, avg confidence, unresolved contradictions)
  5. Iterates with targeted gap-fillers up to 3 rounds, then critic pass, synthesis.md, and meta.json

/dig

  1. Triage → Phase 1 (fast search, 3-4 calls)
  2. Calls dig_checkpoint — the tool returns DONE / ITERATE / ESCALATE
  3. DONE: synthesize. ITERATE: one more inline round. ESCALATE: spawns 1-2 read-only subagents (or, inline mode, does 3-6 more targeted searches)
  4. Answers in the query's language, with evidence, caveats and exact sources

Configuration

| Env var | Default | Purpose | |---|---|---| | PI_RESEARCH_HOME | ~/.omp/research (if ~/.omp exists) else ~/.pi/research | Where run directories are created |

Requirements

  • Node.js >= 20
  • A pi-coding-agent-compatible runtime (pi or OMP) with web access tools configured (search, page fetch). Research quality depends on the tools the runtime exposes — the orchestrator uses whatever is available.

License

MIT