prokodo CLI
The prokodo CLI is the official command-line interface for the prokodo marketplace. It lets you authenticate, configure projects, upload files for cloud verification, and inspect your environment โ all without leaving the terminal.
What can you do with it?
Design principles
- CI-first โ every command supports
--jsonoutput andPROKODO_API_KEYenv vars - Predictable exit codes โ
0success ยท1known failure ยท2usage / config error - No surprises โ non-interactive mode is detected automatically; prompts only when stdin is a TTY
- Single binary โ built with tsup, all dependencies bundled, Node โฅ 22
Quick start
# 1. Install
npm install -g @prokodo/cli
# 2. Authenticate
prokodo auth login --key pk_live_โฆ
# 3. Configure your project
prokodo init --slug my-project
# 4. Verify
prokodo verify
tip
Run prokodo doctor at any time to get a full health-check of your environment,
credentials, and API connectivity.