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.
Build the CLI
pnpm build --filter=hyper-pmThe bundled entry used by scripts and wrappers is typically apps/hyper-pm/dist/main.cjs.
Run
node apps/hyper-pm/dist/main.cjs --helpYou 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-pmVerify:
hyper-pm --helpAfter 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- Web: run
hyper-pm-webfrom your repo (or setHYPER_PM_WEB_REPO). Full setup: Web UI (hyper-pm-web). - MCP: register
hyper-pm-mcpin your editor’s MCP config. Full setup: MCP server (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.