Authentication is only required for account-scoped commands:
env action create and env action list (your actions live under your account). Scaffolding,
running missions, stats, and fine-tuning all work signed-out.Commands
| Command | Description |
|---|---|
cadenza login <name> <token> | Verify your credentials and save a session. |
cadenza whoami | Show the currently signed-in account. |
cadenza logout | Forget the saved session. |
How sessions work
- On
login, your(name, token)is verified live against the backend. On success the session is written to~/.cadenza/config.json(created owner-readable,0600). - Every protected command re-validates the session live on each call, with no caching. If your token is revoked, or an admin sets your account inactive, the next command fails immediately with a clear message.
- A deactivated account (
is_active = false) is refused even with a valid token.
Requesting a token
Don’t have a token yet? Email acparekh@stanford.edu to request one. You’ll be given aname and a token, then sign in with
cadenza login <name> <token>.