Prerequisite globally installs an unpinned npm package
Source references: 1The guide directly runs `npm install -g mmx-cli` without pinning a version, checking a hash, or verifying the package source. A global npm install trusts whichever package the registry resolves at that time and may run installation lifecycle code. The supplied material does not contain the package implementation, so its behavior cannot be verified here.
If the package name, publisher account, or a future release is compromised, installation could execute code with the current user's permissions and leave a persistent global `mmx` executable.
This is an active global-install instruction, not a warning or test. It neither pins a version nor verifies package integrity, so execution trusts whatever `mmx-cli` npm resolves at that time and may run its install scripts. The package implementation is not provided for further review. A user can ask for a pinned, integrity-verified version or inspect it in an isolated environment first.
```bash# Installnpm install -g mmx-cli# Auth (OAuth persists to ~/.mmx/credentials.json, API key persists to ~/.mmx/config.json)mmx auth login --api-key sk-xxxxx