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 secretbabelize auth signup
Create a new Babelize account.
babelize auth signup
babelize auth signup --email new@example.com --password mypassword123babelize auth logout
Log out and revoke your current session.
babelize auth logoutbabelize auth whoami
Show the currently authenticated user.
babelize auth whoami
babelize auth whoami --json # Machine-readablebabelize auth reset-password
Send a password reset email.
babelize auth reset-password --email you@example.combabelize auth refresh
Manually refresh the access token using the stored refresh token.
# Auto-triggered on 401 — but can be called manually
babelize auth refreshProvider 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 githubSessions
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 sessionLast updated: 2026-06-19
How is this guide?