Skip to main content

Installation

Requirements

RequirementVersion
Node.js≥ 22
npm / pnpm / yarnany recent version
tip

Not sure which version you have? Run node --version. If you need Node 22, use nvm: nvm install 22 && nvm use 22.

Install globally

npm install -g @prokodo/cli
# or with pnpm
pnpm add -g @prokodo/cli
# or with yarn
yarn global add @prokodo/cli

Verify the installation:

prokodo --version

You should see the current version number printed to stdout.

Without global install (npx)

You can run the CLI without installing it globally:

npx @prokodo/cli --help

Verify your environment

After installing, run the built-in health check:

prokodo doctor

Expected output (green checkmarks for all five checks):

✓  Node version               22.x.x (required ≥ 22)
✗ API key configured Source: none
✗ .prokodo/config.json No config found in current directory

The API key configured and .prokodo/config.json checks will fail until you complete authentication — that's expected.

Update

npm update -g @prokodo/cli

Uninstall

npm uninstall -g @prokodo/cli