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

@dosu/cli

v0.3.5

Published

Dosu CLI - Manage MCP servers for AI tools

Downloads

1,618

Readme

dosu-cli

⚠️ Pre-Release:

The Dosu CLI is pre-release alpha software and is not fully supported currently. Please check back soon. Join our Discord so you'll be the first to know when it's launched!

Installation

npx / npm (Recommended)

Requires Node.js 18+.

npx @dosu/cli setup

Or install globally:

npm install -g @dosu/cli
dosu setup

curl / install (macOS / Linux)

Downloads and installs the latest stable release binary.

curl -fsSL https://raw.githubusercontent.com/dosu-ai/dosu-cli/main/install.sh | sh

To install a specific release tag:

DOSU_INSTALL_VERSION=v0.2.0-rc1 curl -fsSL https://raw.githubusercontent.com/dosu-ai/dosu-cli/main/install.sh | sh

Homebrew

brew install dosu-ai/dosu/dosu

Or tap first:

brew tap dosu-ai/dosu
brew install dosu

Manual Download

Download the appropriate archive from the Releases page.

macOS Gatekeeper Warning

When downloading directly from GitHub releases on macOS, you may see:

"Apple could not verify dosu is free of malware that may harm your Mac or compromise your privacy."

This happens because the binary is not signed with an Apple Developer certificate. To bypass this:

# After extracting the archive, remove the quarantine attribute:
xattr -d com.apple.quarantine ./dosu

Or right-click the binary, select "Open", and click "Open" in the dialog.

Note: Installing via Homebrew avoids this issue automatically.

Releasing (for maintainers)

Releases are automated via bun build --compile and GitHub Actions.

Creating a Release

  1. Ensure all changes are committed and pushed to main

  2. Create and push a new tag:

    git tag v0.2.0
    git push origin v0.2.0
  3. GitHub Actions will automatically:

    • Run tests
    • Build binaries for all platforms (macOS, Linux, Windows)
    • Create a GitHub release with the binaries
    • Publish to npm (@dosu/cli)
    • Update the Homebrew formula

Version Naming

  • Production releases: v1.0.0, v1.1.0, v2.0.0
  • Pre-releases: v0.1.0-alpha, v0.1.0-beta, v0.1.0-rc1

Pre-release tags (containing -alpha, -beta, -rc) are automatically marked as pre-releases on GitHub and published to npm under the next dist-tag.