Quick Start
This guide gets you from zero to a successful cloud verification in under five minutes.
Step 1 — Install
npm install -g @prokodo/cli
Step 2 — Get your API key
- Log in to the prokodo marketplace
- Go to Account → API Keys
- Click Create new key and copy the value — it starts with
pk_live_
warning
API keys are shown only once. Store your key securely (e.g. in a password manager or a CI secret).
Step 3 — Authenticate
prokodo auth login --key pk_live_yourkeyhere
The CLI validates the key against the prokodo API and stores it at ~/.config/prokodo/credentials.json with 0600 permissions.
Confirm it was saved:
prokodo auth whoami
# → API key: ••••••••abcd
Step 4 — Initialise your project
Inside your project directory, run:
cd /path/to/my-project
prokodo init --slug my-project
This creates .prokodo/config.json:
{
"projectSlug": "my-project",
"verifyGlobs": ["src/**/*", "public/**/*"],
"timeout": 300
}
Commit this file to version control — it is safe to share.
Step 5 — Verify
prokodo verify
The CLI will:
- Collect files matching
verifyGlobs - Upload them to the prokodo cloud
- Stream live logs while the run is in progress
- Print the result and exit with
0(pass) or1(fail)
All done!
# Check your balance after the run
prokodo credits
# Run a full environment health-check
prokodo doctor --json | jq .
Next steps
- Command reference — full flag documentation for every command
- Global options —
--json,--api-key,--verbose, and more - CI/CD integration — using the CLI in GitHub Actions and other pipelines