Claude Code for Desktop: local, cloud, and permission choices

Kurnia Kharisma Agung Samiadjie
Written by

Kurnia Kharisma Agung Samiadjie

Last edited September 9, 2026

Expert Verified
Claude Code lettering beside a person and a gear illustration

Start with the environment

Follow the Desktop quickstart to install the app for macOS or Windows, or the supported Linux beta. Sign in and open the Code tab. The standard subscription route requires Pro, Max, Team, or Enterprise; Team access is not limited to the legacy premium-seat requirement. For current charges and usage allowances, check Claude pricing. Managed third-party-provider deployments have their own setup.

On Windows, install Git for Windows and restart the app before your first local session. The app includes Claude Code, so it does not require a separate Claude CLI or Node installation merely to open Code. Your project still needs its own runtime, package manager, credentials, and test command. Select Local when those tools must run on your machine.

The Desktop reference describes Local sessions on your machine, Cloud sessions that can continue after you close the app, and SSH sessions on a remote machine you manage. Each session has independent context and code changes.

EnvironmentUse it forCheck before work
LocalFiles and tools on your machineProject folder, local credentials, and permissions
CloudLong-running remote workRepository access and cloud-specific controls
SSHA remote machine you manageHost, account, network policy, and project path

Windows also supports WSL sessions, where the tools and Git run inside the selected WSL 2 distribution. Cloud runs on Anthropic-managed infrastructure by default; organizations can configure self-hosted environments. A local credential or file is not automatically available in either remote environment.

Do not assume a feature from one environment exists in another. For example, the integrated terminal is available in local sessions; the file pane is available in local and SSH sessions. Review the current Desktop documentation before moving a workflow between surfaces.

Pick a permission mode for the task

Desktop lets you change permission modes during a session. Manual asks before edits and commands. Plan explores and proposes an approach without editing source. Accept edits pre-approves edits and common filesystem commands but still asks before other terminal commands. Auto and Bypass have different safeguards and availability; Bypass is for isolated environments, not a shortcut around review.

Cloud sessions have their own limits: Desktop documents Accept edits, Plan, and Auto there, and says Bypass is unavailable. Organization policy can restrict modes. A visible selector is not proof that a downstream account action is authorized.

Choose Desktop, CLI, or both

Desktop is useful when you want the plan, terminal, file, browser, and diff beside the conversation. The terminal CLI remains the better fit for a noninteractive script or CI job, where flags, structured output, and process exit codes are part of the contract. Both can read shared configuration in local sessions, but do not assume a CLI flag or an interactive Desktop control exists in every environment.

For Git projects, Desktop uses worktrees to give parallel sessions separate working directories. A different branch name alone does not isolate files in a shared checkout. Review the worktree and changed files before merging, and remember that separate worktrees can still use the same database, account credentials, or external services.

The usage ring beside the model picker shows context and plan usage. Context is specific to the session; plan usage is shared across Claude Code surfaces. Starting a second session is not a fresh usage allowance. Desktop also supports scheduled tasks, while CLI --print and structured-output flags remain useful for scripts; these are different kinds of automation, not a blanket UI-versus-automation divide.

Check which configuration carried over

Local Code sessions and the CLI share project memory, settings, hooks, and skills. Remote sessions need the appropriate remote setup. For example, a personal skill on your laptop does not become a personal skill on an SSH host.

MCP deserves a separate check. Local Code sessions can load servers from claude_desktop_config.json, as well as Claude Code's configuration files; the standalone CLI does not read that Desktop file automatically. Duplicate server names have Desktop-specific precedence. Use the shared-configuration reference and inspect the connected tools instead of assuming a matching server name means matching credentials or permissions.

Use Plan for an unfamiliar change, then inspect the proposal and diff before moving to execution. The Browser pane also has separate external-site safeguards; an action on a signed-in website deserves its own target and effect review.

Use the desktop panes to review, not guess

Desktop can show chat, diff, browser, terminal, files, plans, tasks, and subagents side by side. A diff lets you comment on a changed line and submit the comments for revision. That makes a useful human review loop:

  1. State the task, files in scope, and test that would prove it.
  2. Start in Plan when the approach is uncertain.
  3. Review the resulting diff and test output.
  4. Keep external writes, merges, and customer-facing actions outside the assumption that a code edit was approved.

Use eesel CLI from Desktop for a documentation handoff

With eesel CLI, a developer or support owner can ask Claude Code to compare an approved product change with the instructions and connected sources of the same eesel teammate used in the dashboard. The person can also run these commands directly, or reuse the approved checks in a script or another coding agent such as Codex or Cursor.

For example, suppose an approved change renames a product's “Team inbox” screen to “Shared inbox,” without changing who can access it. Give Claude the actual approved release note and documentation diff. Ask it to identify an outdated navigation instruction, not infer new access rights from the new name. This is a proposed review scenario, not a reported customer result.

For a support owner approving a product-rename documentation handoff, use the visible local terminal to establish CLI identity first. Install Node.js 18.17 or newer; Desktop does not guarantee that npx is available on the selected machine. The CLI returns JSON by default and operates the same workspace as the dashboard:

Bash
npx @eesel/cli login
npx @eesel/cli whoami
npx @eesel/cli agents

Check that whoami identifies the intended workspace before continuing, then replace the placeholder below with the actual approved teammate ID or name. For scripts, EESEL_API_URL and EESEL_API_TOKEN override stored login credentials; Claude's own login is separate.

Then use only the owner-approved teammate. These commands read configuration; they do not change it:

Bash
DESKTOP_REVIEW_AGENT="REPLACE_WITH_OWNER_APPROVED_AGENT"
npx @eesel/cli status --agent "$DESKTOP_REVIEW_AGENT"
npx @eesel/cli integrations --agent "$DESKTOP_REVIEW_AGENT"
npx @eesel/cli integrations download list --agent "$DESKTOP_REVIEW_AGENT"
npx @eesel/cli instructions --agent "$DESKTOP_REVIEW_AGENT"

Ask Claude to write a local review report and open that file beside the documentation diff. Include the approved old/new names and release-note version, the relevant current instruction, source-download status, and any unresolved conflict. A source's name or ready status does not prove its contents include the new wording: inspect the actual approved source separately. The owner can then see whether a navigation instruction needs changing and whether the change is supported by the release note.

Keep edits to that local report separate from edits to the eesel workspace. For this example, the useful finding might be “the instruction still says Team inbox; the release note changes only the label.” It is not permission to change access rules or tell customers that their account has been checked.

The result should be a difference an owner can inspect in the dashboard, not an automatic update. If a change is approved, consult current command help, preview supported writes with --dry-run, apply only that change, and read back the state. Use a separately approved nonproduction teammate with consequential actions Disabled for any response test, and approve billed chats first.

The owner sets those permissions in Actions and Approvals, not merely by putting “do not act” in a prompt. Test the new navigation wording and a case where the user cannot see the screen; the latter should not receive an invented access entitlement. Inspect the actual reply and activity. A dry-run preview or a clean documentation diff does not establish response quality.

eesel dashboard showing a Get your teammate ready checklist, helpdesk and chat response channels, and a chat panel.
eesel dashboard showing a Get your teammate ready checklist, helpdesk and chat response channels, and a chat panel.

Try eesel CLI with a defined support job

Claude Code Desktop is useful when you want the session, plan, diff, and terminal in view. For a defined support job, Try eesel and use the dashboard or CLI to inspect the same teammate together.

Frequently Asked Questions

What is Claude Code for Desktop?

It is the Code tab in Claude Desktop, with sessions, panes, file and diff review, and choices for local, cloud, or SSH execution.

Can Desktop run work locally or in the cloud?

Yes. Select the environment for each session. Local uses your machine; cloud and SSH have different available features and configuration rules.

How do Desktop permissions work?

Choose a permission mode per session and review the behavior for that environment. Manual, Plan, Accept edits, Auto, and Bypass do not apply identically everywhere.

Is a diff review a security boundary?

No. A diff helps review code changes. It does not replace permissions, account roles, or an owner’s approval for external actions.

Can Claude act on external sites in Desktop?

The Browser pane has separate safety checks and site approvals. Treat every external write as consequential and review the target before approving it.

Does Desktop use the same settings as Claude Code CLI?

Local Desktop sessions read the same settings files as the CLI, but desktop-managed, cloud, and SSH sessions have environment-specific rules.

Can Desktop inspect an eesel teammate?

With an authorized local terminal, eesel CLI can inspect the same workspace and teammate as the dashboard. Confirm the CLI identity and target separately from Claude login.

Share this article

Kurnia Kharisma Agung Samiadjie

Article by

Kurnia Kharisma Agung Samiadjie

Kurnia is a software engineer and writer at eesel AI with two years of SEO experience, writing about AI tools, helpdesk software, and customer support. He pairs a developer's understanding of how these products are built with search-driven research into what actually ranks and resonates with the people searching for them.

Related Posts

All posts →
Illustration of a presenter pointing to a flip chart
Guides

Amazon Bedrock Claude Code: setup, model access, and limits

How to configure Claude Code through Amazon Bedrock, choose a current inference profile, manage IAM access, and validate the setup.

Kenneth PanganKenneth PanganSep 30, 2025
Orange Claude Code lettering beside an illustrated person holding a gear.
Guides

Claude AI coding assistant: a current Claude Code guide

Learn what Claude Code does, where it fits in a development workflow, how permissions and MCP change the risk, and how to release support updates carefully.

Rama Adi NugrahaRama Adi NugrahaJan 9, 2026
Black-and-white illustration of a person using a laptop, with code on a screen
Guides

A developer's Claude Code CLI reference (2026 guide)

A practical guide to installing Claude Code, using project instructions and hooks, connecting MCP tools, and reviewing work before it changes a codebase.

Rama Adi NugrahaRama Adi NugrahaJun 5, 2026
A person holding a gear beside the words Claude Code on a peach background
Guides

Claude Code plugins: build and share reusable workflows in 2026

Learn what Claude Code plugins contain, when to use one instead of a project skill, how to test it locally, and how to connect a reviewed eesel CLI workflow.

Stevia PutriStevia PutriJan 9, 2026
A developer at a terminal directing Claude Code, an agentic AI coding assistant, through an explore-plan-implement-commit workflow.
Guides

How to prompt Claude Code: a practical guide to better results

A practical guide to how to prompt Claude Code: be specific, plan before you code, give it a way to verify, and manage your context window like a budget.

Rama Adi NugrahaRama Adi NugrahaJun 17, 2026
Claude Code VS Code extension hero illustration
Guides

Claude Code VS Code extension: a complete guide (2026)

A practical 2026 guide to the Claude Code VS Code extension: install, features, the CLI question, pricing, and the gotchas real users hit.

Rama Adi NugrahaRama Adi NugrahaJun 5, 2026
Claude Code terminal workflow with Anthropic logo on warm off-white editorial background
Guides

Claude Code review (2026): Anthropic's agentic coding tool, tested

We tested Claude Code across every surface and plan. Here's what the $17/mo Pro plan actually delivers, when the $100/mo Max plan makes sense, and our honest take on the rate limits.

Stevia PutriStevia PutriJun 4, 2026
Banner image for Claude Pro pricing in 2026: Everything you need to know
Guides

Claude Pro pricing in 2026: Everything you need to know

Claude's pricing has shifted from a simple $20 subscription to a complex tiered model featuring Max plans for power users. Here is the data-backed guide.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieApr 30, 2026
Refurbly - making environmentally responsible choices with eesel AI
Guides

Refurbly - making environmentally responsible choices with eesel AI

Refurbly uses eesel on their website to help customer self serve their queries and escalates to their Freshdesk agents as needed.

Kenneth PanganKenneth PanganMar 6, 2025

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free