BabelizeBabelize
CLI

Authentication

Login, logout, session management, and provider (GitHub) tokens.

Commands

babelize auth login

Log in to your Babelize account. Interactive if no flags provided.

babelize auth login
babelize auth login --email you@example.com --password secret

babelize auth signup

Create a new Babelize account.

babelize auth signup
babelize auth signup --email new@example.com --password mypassword123

babelize auth logout

Log out and revoke your current session.

babelize auth logout

babelize auth whoami

Show the currently authenticated user.

babelize auth whoami
babelize auth whoami --json   # Machine-readable

babelize auth reset-password

Send a password reset email.

babelize auth reset-password --email you@example.com

babelize auth refresh

Manually refresh the access token using the stored refresh token.

# Auto-triggered on 401 — but can be called manually
babelize auth refresh

Provider Tokens (GitHub)

Manage OAuth tokens for connected providers (e.g. GitHub).

babelize auth provider-tokens list
babelize auth provider-tokens validate
babelize auth provider-tokens get github
babelize auth provider-tokens delete github

Sessions

Active sessions are managed via the account command group:

babelize account sessions           # List all sessions
babelize account session-count      # Count active sessions
babelize account revoke-session <id>  # Force-logout a session

Last updated: 2026-06-19

How is this guide?

On this page