Skip to main content

Cheat sheet

Twenty commands cover most of what anyone does with clika-rt. Every one of them is documented in full on the page linked in the last column.

#CommandWhat it does
1clika-rt --base-url https://platform.clika.io login --api-keyLog in once and save the deployment and credential to a profile. The bare --api-key prompts, so the secret never reaches your shell history. More
2clika-rt auth meShow which account the current credential belongs to. More
3clika-rt --profile onprem devices listRun any command against a second deployment, using its saved profile. More
4clika-rt devices list --status onlineSee which devices are up right now. More
5clika-rt devices get jetson-01Inspect one device in full, by name rather than UUID. More
6clika-rt devices exec jetson-01 'nvidia-smi'Run a command on a device and get its output and exit code back. More
7clika-rt devices push jetson-01 ./run.sh /opt/clika/run.sh --permissions 0755Copy a local file onto a device. More
8clika-rt devices files-fetch jetson-01 /var/log/agent.log ./agent.logPull a file back off a device, checksum verified. More
9clika-rt devices connect jetson-01Open an SSH session to a device without looking up its address. More
10clika-rt apply -f benchmark.yamlCreate or update whatever a YAML file names, idempotently for definitions. More
11clika-rt benchmarks watch nightly-llm-sweepFollow a benchmark to completion and exit non-zero if any leg failed. The CI gate. More
12clika-rt benchmarks results nightly-llm-sweep -o jsonRead a benchmark group's measured metrics, in a form a script can parse. More
13clika-rt jobs list --status failedFind the jobs that went wrong. More
14clika-rt jobs execution-log <job>Read what actually happened on the device during a job. More
15clika-rt artifacts upload ./model.onnx --type model --version v2Put a file in the artifact library, resumably, however large it is. More
16clika-rt artifacts download imagenet-val ./data/Stream an artifact back out to a local path. More
17clika-rt export JobDefinition llm-latency > config.yamlBring a definition authored in the dashboard into your repository. More
18clika-rt events tail --types job_completedFollow the platform's durable event feed live, resumable from a cursor. More
19clika-rt mcp --toolset device-opsServe the platform to an AI assistant as a curated set of tools. More
20clika-rt self-updatePull the CLI build this deployment publishes, checksum and signature verified. More

Flags worth knowing

FlagEffect
-o jsonJSON instead of a table, pagination envelope included, for piping into jq.
--profile <name>Address a different deployment.
-yAnswer confirmation prompts with yes. Required for a destructive delete in a script.
--insecure-tlsSkip certificate verification, for an on-premise stack with a throwaway certificate authority.
--dry-runOn apply, print the requests instead of sending them.
--rawOn a generated command, print the response body byte for byte.

When you do not know the command

clika-rt --help
clika-rt devices --help
clika-rt tools --tag devices
clika-rt help credentials

The first two walk the tree, tools lists every operation by tool name, and help <topic> prints the built-in prose guides. See the complete command index for every top-level command and the page that documents it.