Hyper PM
Getting started

Install

Build hyper-pm from the monorepo or use the published npm package.

From this monorepo (development)

Prerequisites

Use Node.js 20+ and pnpm. The required pnpm version is pinned under packageManager in the repo root package.json.

Install dependencies

From the repository root:

pnpm install

Build the CLI

pnpm build --filter=hyper-pm

The bundled entry used by scripts and wrappers is typically apps/hyper-pm/dist/main.cjs.

Run

node apps/hyper-pm/dist/main.cjs --help

You can also use pnpm exec hyper-pm from a workspace package that depends on hyper-pm, or link the package globally if that fits your workflow.

Published npm package

The package name on the public registry is hyper-pm (see apps/hyper-pm/package.json). Install globally:

npm install -g hyper-pm

Verify:

hyper-pm --help

After install, hyper-pm --help should match the in-repo CLI for the same version.

Publishing notes for maintainers live in apps/hyper-pm/README.md (build before publish, prefer pnpm publish so workspace ranges resolve).

Optional: web UI and MCP

Published npm packages (install after hyper-pm or let npm pull the dependency):

npm install -g hyper-pm-web
npm install -g hyper-pm-mcp

From the monorepo, build hyper-pm first, then pnpm --filter hyper-pm-web dev or pnpm --filter hyper-pm-mcp build as described on those pages.