Skip to content
AI Primer
release

Claude Code adds web-mobile session handoff with claude --teleport

Anthropic refreshed Claude Code on web and mobile with a sessions sidebar, routines view, faster responses, and claude --teleport handoff to the CLI. Use it to start work on web or mobile and continue in a terminal with branch state intact.

4 min read
Claude Code adds web-mobile session handoff with claude --teleport
Claude Code adds web-mobile session handoff with claude --teleport

TL;DR

You can open Claude Code on the web, skim the one-off scheduling docs, and read the session storage docs. The interesting part is how cleanly these pieces line up: a prettier web shell, a handoff command into the CLI, background routines that keep running while your laptop is closed, and shared session storage for agents that may not stay on one machine.

Web refresh

Anthropic's public thread is light on copy and heavy on product direction. The web and mobile surfaces now mirror the desktop redesign, which makes Claude Code feel less like a sidecar and more like the main front door.

The visible changes it called out are short and concrete:

  • sessions sidebar
  • drag-and-drop layout
  • refreshed routines view
  • live availability on web and mobile

Those details come straight from ClaudeDevs' new look post and ClaudeDevs' live now post. For creative teams juggling prompts, branches, and half-finished tasks across devices, the sessions sidebar is probably the part that lands first because it turns the web app into a session manager, not just a chat box.

claude --teleport

The handoff feature is the real story. Anthropic says you can begin a session on the web or mobile, then run claude --teleport in a terminal and pick up with full history and the correct branch already loaded.

That is a specific promise, not vague “cross-platform continuity.” The session moves from browser to terminal without dropping the conversational context, and the branch state matters because it turns teleport into a coding workflow feature instead of a UI sync trick.

The product pitch fits the way people actually use agents now: sketch on the phone, inspect on the web, finish in a repo. aakashgupta's routines example is about background work rather than teleport, but his screenshot spells out the same system shape, agent, environment, and session, and the session box explicitly says it persists through disconnections and is checkpointed every step.

Routines

Routines are the other half of this refresh. Anthropic already shipped them on April 14, and the new web layout gives them a more prominent home. aakashgupta's morning briefing workflow shows why they are different from foreground copilots: the run happens while the laptop is closed, then drops a summary into Slack before the day starts.

The recent routine mechanics now visible in the evidence are:

One-time task scheduling in the Claude Code UI

This makes the refreshed routines view more than a navigation tweak. It is becoming the control panel for background agent jobs, recurring or one-shot, with triggers coming from calendars, GitHub events, or plain time.

Session storage adapters

The quieter infrastructure update came two days earlier in the Agent SDK. Anthropic published example session store adapters for S3, Redis, and Postgres, which means session transcripts can live in your own backend and resume on another host.

Noah Zwebner's thread lists three reasons for that shared store:

  1. Multi-host deployments, where serverless functions, CI runners, and autoscaled workers do not share a filesystem.
  2. Durability, because local containers disappear on restart or redeploy.
  3. Compliance and audit, since teams can keep transcripts under their own retention and access rules.

That infrastructure note helps explain why teleport and web-to-CLI continuity are showing up now. Anthropic is not just polishing surfaces. It is building the session layer that lets a coding agent survive device switches, disconnections, and host changes with less duct tape.

Further reading

Discussion across the web

Where this story is being discussed, in original context.

On X· 3 threads
TL;DR3 posts
Web refresh1 post
Routines3 posts