Skip to main content

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?

CommandPurpose
authStore, rotate, and inspect API keys
initScaffold .prokodo/config.json in your project
verifyUpload project files and run a cloud verification
creditsCheck your credit balance
doctorDiagnose your environment in one command

Design principles

  • CI-first โ€” every command supports --json output and PROKODO_API_KEY env vars
  • Predictable exit codes โ€” 0 success ยท 1 known failure ยท 2 usage / 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.