### Cloud session
The whole hunk
from line 90, old and new numbered
/
lines
from line 90
9090
9191Learn more: [CLAUDE.md files](/docs/en/memory#claude-md-files)
9292
93### Cloud session
94
95A Claude Code session that keeps running after you close your laptop, because it runs on cloud infrastructure instead of your machine: Anthropic-managed by default, or a [self-hosted environment](/docs/en/self-hosted-environments) your organization operates. You start one from claude.ai/code, the Claude mobile app, the Desktop app with **Cloud** selected, `claude --cloud`, or a [routine](/docs/en/routines). A session in your terminal, IDE, or the Desktop app with **Local** selected is a local session; to reach a local session from another device, use [Remote Control](#remote-control).
96
97Learn more: [Use Claude Code in the cloud](/docs/en/claude-code-on-the-web)
98
9399### Command
94100
95101A reusable instruction you invoke by typing `/name` in the prompt. Built-in commands such as `/clear`, `/model`, and `/compact` control the session. You can define your own commands as files in `.claude/commands/`, or install them from a [plugin](#plugin). [Skills](#skill) are the recommended way to package multi-step commands.
from line 244
238244
239245### Remote Control
240246
241A way to continue a local Claude Code session from your phone or browser via claude.ai. Your code execution and files stay on your machine; the interface is remote. Different from Claude Code on the web, which runs in a cloud sandbox.
247A way to continue a local Claude Code session from your phone or browser via claude.ai. Your code execution and files stay on your machine; the interface is remote. Different from a [cloud session](/docs/en/claude-code-on-the-web), which runs in a cloud sandbox.
242248
243249Learn more: [Remote Control](/docs/en/remote-control)
244250
from line 300
294300
295301### Teleport
296302
297A command, `/teleport`, that pulls a cloud Claude Code session into your local terminal. Claude fetches the branch, loads the conversation history, and resumes from the web session's last state. The reverse direction is `--cloud`, which sends a local task to run on the web.
303A command, `/teleport`, that pulls a cloud Claude Code session into your local terminal. Claude fetches the branch, loads the conversation history, and resumes from the cloud session's last state. The reverse direction is `--cloud`, which sends a local task to run in the cloud.
298304
299Learn more: [From web to terminal](/docs/en/claude-code-on-the-web#from-web-to-terminal)
305Learn more: [From cloud to terminal](/docs/en/claude-code-on-the-web#from-cloud-to-terminal)
300306
301307### Tool
302308
from line 338
332338
333339These terms appear in older docs, blog posts, and community content. Use the current name when searching this site.
334340
335| Old term | Now called | Notes |
336| --------------- | --------------------------------------------- | ------------------------------------ |
337| Headless mode | [Non-interactive mode](#non-interactive-mode) | Same `-p` flag, same behavior |
338| Custom commands | [Skills](#skill) | `.claude/commands/` files still work |
339| Slash commands | Commands | "Slash" dropped from product copy |
341| Old term | Now called | Notes |
342| ----------------------------------------------------------------------- | --------------------------------------------- | ----------------------------------------------------------------------------- |
343| Headless mode | [Non-interactive mode](#non-interactive-mode) | Same `-p` flag, same behavior |
344| Web session; "Claude Code on the web" as the name for any cloud session | [Cloud session](#cloud-session) | "Claude Code on the web" now names only the browser surface at claude.ai/code |
345| Custom commands | [Skills](#skill) | `.claude/commands/` files still work |
346| Slash commands | Commands | "Slash" dropped from product copy |
340347