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

@baremetallabs-ai/shipper-cli

v3.1.0

Published

CLI workflow orchestrator for GitHub issues using coding agents

Readme

@baremetallabs-ai/shipper-cli

The Shipper CLI is the public command-line entry point for Shipper. It orchestrates GitHub-backed issue workflows with coding agents, moving issues through grooming, design, planning, implementation, PR review, remediation, and merge readiness while GitHub remains the source of truth.

Shipper is not a generic task runner and it is not a coding agent. It gives agent-assisted software delivery a repeatable lifecycle: each stage has a command, a contract, GitHub labels, and durable issue or PR artifacts.

Prerequisites

  • Node.js 18 or newer.
  • A Git repository hosted on GitHub.
  • GitHub CLI installed and authenticated with gh auth login.
  • A supported coding agent CLI configured in Shipper settings. Shipper supports claude, codex, and copilot.

Install

npm install -g @baremetallabs-ai/shipper-cli

Initialize Shipper in each GitHub repository before running workflow commands:

shipper init

shipper init creates or updates local .shipper/ configuration, verifies local prerequisites, and ensures the workflow labels exist in GitHub.

First Workflow

Create an issue from a rough request:

shipper new "your idea"

Advance one stage at a time:

shipper next <issue>

Or ask Shipper to run the remaining workflow for an issue:

shipper ship <issue>

For queue-style operation, shipper ship --auto selects eligible issues by workflow state and priority.

Command Surface

  • Setup: shipper init and shipper setup configure repository state and agent settings.
  • Intake and adoption: shipper new, shipper adopt, and shipper issue list create, adopt, and inspect Shipper-managed issues.
  • Staged workflow: shipper groom, shipper design, shipper plan, shipper implement, shipper next, and shipper ship move issues through the lifecycle.
  • PR workflow: shipper pr open, shipper pr review, and shipper pr remediate open pull requests, inspect review feedback, and run remediation work.
  • Merge queue: shipper merge processes ready PRs after review and checks are satisfied.
  • Recovery: shipper reset, shipper unblock, and shipper unlock recover from blocked stages, stale locks, or a needed rollback.
  • Prompt customization: shipper eject copies bundled prompts into the repository for local overrides.
  • Priority: shipper priority marks issues as high, normal, or low priority for auto-ship ordering.

Documentation

  • Getting started: https://shipper.baremetallabs.ai/start-here/getting-started/
  • CLI reference: https://shipper.baremetallabs.ai/reference/cli/
  • Desktop guide: https://shipper.baremetallabs.ai/guides/desktop/

The desktop app is a supported peer entry point for the same Shipper workflows when you want visual triage, queue monitoring, and hands-on control.