CLI

The workspace from a terminal, for scripts and CI.

npx @harkly/cli login          # paste an API key; profiles per API host
harkly whoami
harkly doctor                  # release, key permissions, connected integrations
harkly posts list --board feature-requests --status planned --sort votes --json
harkly changelog list
harkly changelog publish --title "Dark mode" --file notes.md
harkly import posts feedback.csv --check      # dry run first
harkly export posts --format csv > posts.csv
harkly export users --format json > users.json

HARKLY_API_KEY and HARKLY_API_URL in the environment skip login, which is what a CI job wants. Every command exits non-zero with a one-line reason on failure and prints JSON with --json.