Skip to content

config

Terminal window
codeteleport config # show current config
codeteleport config set <key> <value> # update a setting

The config command displays your current configuration with a redacted token. Use config set to update individual settings without going through the full setup wizard.

KeyDescriptionExample
agentCoding agent IDclaude-code
deviceNameName for this machinework-laptop
apiUrlAPI server URLhttps://api.codeteleport.com/v1

The token field is not settable via config. Use codeteleport auth login or codeteleport setup to authenticate.

$ codeteleport config
CodeTeleport Configuration
agent : claude-code (Claude Code)
deviceName : work-laptop
apiUrl : https://api.codeteleport.com/v1
token : ctk_live_...f456 (set)
$ codeteleport config set deviceName home-desktop
Set deviceName = home-desktop
$ codeteleport config set apiUrl http://localhost:8787/v1
Set apiUrl = http://localhost:8787/v1
$ codeteleport config set token my-token
Token is not settable via config. Use `codeteleport auth login` instead.
$ codeteleport config set unknown value
Unknown config key: unknown
Settable keys: agent, deviceName, apiUrl