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

@vibeshiphq/cli

v0.2.1

Published

VibeShip CLI for starter initialization and Hyperdrive setup.

Downloads

56

Readme

VibeShip CLI

Public CLI for initializing the private VibeShip starter and installing VibeShip Hyperdrive for guided setup.

npm install -g @vibeshiphq/cli
vibeship login
vibeship init my-app
cd my-app
vibeship hyperdrive install

The CLI does not embed proprietary setup runbooks. It authenticates the user, checks starter/Hyperdrive entitlement through VibeShip, clones the private starter, and writes local Codex MCP config for Hyperdrive.

Commands

vibeship login                    # Authenticate this machine with VibeShip
vibeship logout                   # Remove local CLI auth
vibeship whoami                   # Show account and entitlement status
vibeship doctor                   # Inspect auth, project, and Hyperdrive config
vibeship init [targetDir]         # Clone the private starter into a new app
vibeship hyperdrive install   # Install Hyperdrive MCP config into .codex/config.toml
vibeship hyperdrive status    # Show Hyperdrive subscription, config, and MCP reachability

Configuration is stored at ~/.vibeship/config.json. The default production API is https://www.vibeship.today; override it with VIBESHIP_API_URL or --api-url when dogfooding against a local internal app.

Hyperdrive MCP defaults to https://hyperdrive.vibeship.today/mcp; override it with VIBESHIP_HYPERDRIVE_MCP_URL or --mcp-url. vibeship hyperdrive status calls Hyperdrive's vibeship_hyperdrive_status MCP tool with your stored CLI token and reports whether the server accepted the token.

vibeship init checks your VibeShip entitlement first, then tries to clone the private starter over SSH and falls back to HTTPS. If GitHub access fails after entitlement approval, connect the Polar GitHub repository access benefit in the VibeShip customer portal, verify access to vibeshiphq/vibeship-starter, and rerun vibeship init. Support can provide --repo-url or VIBESHIP_STARTER_REPO_URL for temporary clone overrides.

Development

pnpm install
pnpm check
pnpm dev -- --help

Local Dogfooding

Run the internal app first:

cd ~/projects/vibeship-workspace/internal
pnpm dev

Then log in from the CLI repo:

cd ~/projects/vibeship-workspace/cli
pnpm dev login

When invoked through the dev script, the CLI uses http://localhost:3000 as the VibeShip API URL. A built CLI uses production defaults.

For offline CLI UI work:

VIBESHIP_CLI_OFFLINE=1 pnpm dev -- whoami

Publishing

Before publishing:

pnpm check
npm pack --dry-run

The package publishes only dist and this README. prepack runs a clean TypeScript build so stale local artifacts are not included.