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

@shipshitdev/shipcode

v0.1.2

Published

Autonomous AI coding pipeline. GitHub issues in, pull requests out.

Downloads

382

Readme

@shipshitdev/shipcode

Headless CLI for ShipCode — an autonomous AI coding pipeline that takes GitHub issues in and ships pull requests out.

This package is the terminal / CI / server entry point. If you want the desktop GUI instead, install the ShipCode desktop app via brew install --cask shipcode — the two share the same pipeline engine but are otherwise separate products. You don't need both.

Install

# Run once without installing
npx @shipshitdev/shipcode onboard

# Or install globally so the `shipcode` command is always on your PATH
npm install -g @shipshitdev/shipcode
shipcode onboard

The package is published to npm as @shipshitdev/shipcode. The bin name stays shipcode, so npx @shipshitdev/shipcode, npm install -g @shipshitdev/shipcode, then shipcode ....

Prerequisites

  • Node.js ≥ 22.5.0 — required for the built-in node:sqlite module
  • git, gh, claude, codex CLIs — all four must be installed and on PATH
  • gh authenticated (gh auth login)
  • claude authenticated
  • OpenRouter API key (optional) — set OPENROUTER_API_KEY to enable the openrouter executor

The shipcode onboard command runs a doctor pass against all of these and fails fast if anything is missing.

Commands

| Command | Description | |---------|-------------| | shipcode onboard | Doctor check + initialize ShipCode in the current repo (verifies tools, gh/claude auth, GitHub labels, writes project row) | | shipcode status | Show active pipelines and recent threads | | shipcode run <issue> | Process a single GitHub issue end-to-end through the plan → review → execute → verify → ship pipeline | | shipcode start | Interactive mode — prompt for an issue number |

Pass --help to any subcommand for its flags.

Environment variables

| Variable | Required | Purpose | |----------|----------|---------| | OPENROUTER_API_KEY | Optional | Enables the openrouter executor + shipcode:agent:openrouter, shipcode:agent:openrouter/auto, shipcode:agent:openrouter/free GitHub label routes |

Claude and Codex auth come from their own CLIs (claude auth, codex login); gh auth comes from gh auth login. The CLI does not read any other env vars directly.

Local development

From the monorepo root:

bun install                                             # install all workspace deps
bun run --filter shipcode build                         # build apps/cli -> apps/cli/dist
node apps/cli/dist/index.js onboard                     # run the built CLI in any repo

Watch mode (rebuild on change):

bun run --filter shipcode dev

Providers

The CLI supports the same execution providers as the desktop app:

  • claude — Claude Code CLI
  • codex — OpenAI Codex CLI
  • openrouter — OpenRouter provider (any model, routed through their API)

Executor selection happens per-issue via GitHub labels (shipcode:agent:claude, shipcode:agent:codex, shipcode:agent:openrouter, shipcode:agent:openrouter/auto, shipcode:agent:openrouter/free). Unknown or missing labels fall back to shipcode:agent:claude.

Architecture

The CLI is a thin wrapper over the shared workspace packages:

  • @shipcode/shared — types, constants, PipelinePhase, AgentType
  • @shipcode/agents — provider registry (createClaudeCliProvider, createCodexCliProvider, createOpenRouterProvider), health checks
  • @shipcode/db — SQLite persistence via node:sqlite
  • @shipcode/git — git service + worktree manager
  • @shipcode/pipeline — state machine (plan → review → execute → verify → ship)

See the architecture docs for the full package layout.

CLI vs Desktop — which do I need?

| If you want... | Use | |---|---| | A GUI to watch pipelines, triage issues, edit settings, view costs | Desktop app (brew install --cask shipcode) | | To run the pipeline from a terminal, script, cron job, or CI job | This CLI (npm i -g @shipshitdev/shipcode) | | Both | Install both — they share the same SQLite DB and worktree layout |

See also