Storage & Variables
Upload files, list storage, and manage workspace variables and secrets from the trickest CLI.
On this page7
trickest storage
Vault-scoped file storage for artifacts you upload and reference from workflows.
| Subcommand | Description |
|---|---|
storage ls [path] | List files at a path |
storage get <id> | File metadata by ID |
storage push <local> <remote> | Upload a file |
storage pull <remote> [local] | Download a file |
storage mkdir <path> | Create a directory |
storage rm <id> | Delete a file |
storage ls
trickest storage ls
trickest storage ls /reports --type application/pdf --size 1024[{"id":"6ab5fcef-…","name":"voiceover.mp3","size":297600,"pretty_size":"290.6KB","modified_date":"2026-06-02T09:43:29Z","username":"zaric"}]| Flag | Description |
|---|---|
--type <type> | Filter by content type |
--size <bytes> | Minimum size in bytes |
Upload and download
trickest storage push ./scan.txt /inputs/scan.txt
trickest storage push ./report.pdf /reports/q2.pdf --content-type application/pdf
trickest storage pull /reports/q2.pdf ./q2-local.pdftrickest variables
Workspace variables (alias var) — configuration values injected into
workflows. Secret variables mask values on read.
| Subcommand | Description |
|---|---|
variables ls | List variables |
variables get <name-or-id> | Get one variable |
variables set <name> <value> | Create or update |
variables rm <name-or-id> | Delete |
variables secrets | Secret-variable subcommands |
variables ls
trickest variables ls
trickest variables ls --space 5c57db3d-…
trickest variables ls --secrets[{"id":"007d09b7-…","name":"TRICKEST_TOKEN","value":"","is_global":true,"is_dynamic":true,"is_secret":true,"is_overridden":false}]Secret values come back empty when is_secret: true — the CLI never prints
the raw secret in list/get output.
variables set / rm
trickest variables set DOMAIN example.com --space 5c57db3d-…
trickest variables set API_KEY "$API_KEY" --secret
trickest variables rm DOMAINvariables set flag | Description |
|---|---|
--secret | Store as a secret variable |
--space <id> | Scope to a space |