Using Claude Code, Cursor, or another coding agent? Paste this into your prompt to run cross-browser and real-device tests, debug sessions, and wire up CI on the TestMu AI cloud:
- OAuth — recommended for everyday local use. Opens a browser, you approve once, and tokens are stored on your machine.
- Basic auth — your username and access key. Use this in CI and other non-interactive environments where no browser is available.
OAuth Login
kane-cli login interactively without flags, Kane CLI launches a guided login wizard that walks you through choosing a method, profile, and (for basic auth) entering credentials.
Basic Auth
Basic auth uses your username and account access key. It is the right choice for CI runners, Docker containers, and any other environment where opening a browser is not possible.Per-Run Flags
Pass credentials directly on the command you are running. They take precedence over any stored credentials:kane-cli run and kane-cli feedback accept --username and --access-key.
Persistent Basic Auth
To save basic auth credentials for a profile so you do not have to pass them every time, log in with the basic auth flags:Where to Find Your Access Key
Sign in to the dashboard > Credentials and copy your access key. Treat it like a password — anyone with your username and access key can run tests on your account.Profiles
A profile is a named login. Profiles are useful when you work with more than one account or organisation, or when you want separate credentials for personal and team use without re-authenticating each time you switch.Create a Profile
Pass--profile <name> to login to authenticate under a named profile. If you omit --profile, Kane CLI uses the profile named default.
List Profiles
Switch the Active Profile
work until you switch again.
Delete a Profile
Run Against a Specific Profile Without Switching
A few commands accept--profile <name> so you can target a profile for a single invocation without changing the active one. This is supported on kane-cli login, kane-cli whoami, and kane-cli balance. For other commands, use kane-cli profiles switch first.
Check Who You Are Logged In As
whoami prints an identity card showing the active profile, environment, authentication method (OAuth or basic), the username (when known), and — for OAuth — whether the stored token is valid, expired, or missing, along with its expiry date.
Pass --profile <name> to inspect a profile other than the active one.
Log Out
logout signs out of the active profile. For OAuth profiles, Kane CLI revokes the stored tokens with before deleting them. The on-disk credentials for the profile are removed. If you have other profiles configured, Kane CLI automatically switches to one of them; otherwise you are left with no active profile.
Where Credentials Are Stored
Credentials live under your home directory:0600) so only your user account can read it. There is no need to inspect or edit this file by hand — use kane-cli login, kane-cli logout, and the kane-cli profiles commands to manage it.