Account
The Account page at app.codeteleport.com lets you view your profile, change your password, set up the CLI, and log out.
Profile
Section titled “Profile”The profile section displays your email address — the one you registered with or the email associated with your GitHub account if you signed up via GitHub OAuth.
Change password
Section titled “Change password”To update your password:
- Enter your current password.
- Enter a new password (minimum 8 characters).
- Click Change Password.
CLI setup
Section titled “CLI setup”The account page includes instructions for connecting the CLI to your account. The steps are:
-
Install the package globally:
Terminal window npm install -g codeteleport -
Log in from your terminal:
Terminal window codeteleport auth loginThis will prompt you to choose GitHub OAuth or email/password, then store an API token locally at
~/.codeteleport/config.json. -
(First machine only) Choose your coding agent. CodeTeleport supports three AI coding agents — Claude Code (id
claude-code, the default), Codex (OpenAI, idcodex), and Antigravity (Google, idantigravity):Terminal window codeteleport config set agent <claude-code|codex|antigravity>Pick interactively with
codeteleport setup(it lists all supported agents from the registry), or set it directly as shown above. Setting an unrecognized id fails withUnknown agent: <id>. Supported: claude-code, codex, antigravity. Theagentsetting controls only what is bundled and scanned locally (push, local list); it does not affect pull — pulling uses the bundle’s own recorded agent, so a session pushed by one agent resumes correctly even on a machine configured for a different one.
See Authentication for the full walkthrough, including GitHub OAuth and the --api-url flag for local development.
Danger zone
Section titled “Danger zone”The Logout button ends your current web session and returns you to the login page. This does not revoke CLI tokens — your terminal sessions remain authenticated until you run codeteleport auth logout.
Related
Section titled “Related”- Authentication — full guide to logging in via CLI and web