Authenticate and Select Workspace

Log in to the Kick CLI, use personal access tokens safely, and confirm the workspace before running client commands.

Before running client commands, confirm who the CLI is acting as and which workspace the command will use.

Log in interactively

For interactive use, run:

kick login

The browser flow lets you approve a personal access token. The CLI stores the token in your OS keychain when available. If a keychain is unavailable, it falls back to ~/.config/kick/credentials with restricted file permissions.

Confirm the active user:

kick whoami

Use a token for scripts

For scripts, CI, or agent jobs, provide a PAT explicitly:

export KICK_PAT=kick_pat_...
kick whoami

Token lookup order is:

  1. --token <value>

  2. KICK_PAT

  3. KICK_API_TOKEN for the older environment variable name

  4. OS keychain from kick login

  5. ~/.config/kick/credentials

Do not commit PATs, paste them into shared docs, or store them in scripts without a secrets manager.

Select a workspace

List workspaces:

Run a command in a workspace:

If you work across multiple clients, pass --workspace explicitly. This is safer than relying on a remembered default.

Use profiles for repeated work

Profiles can store environment and workspace defaults:

Use named profiles only when the team understands what each profile points to.

Sign out

When you are done on a shared machine:

Last updated

Was this helpful?