Claude Code Expands Multi-Device Support with Free CLI and Subscription-Tier Deep Workflows

Anthropic launches multi-device Claude Code clients with free terminal CLI and subscription access for other surfaces.

New post

Core Announcement: Claude Code now supports multi-device surfaces

Anthropic has officially opened Claude Code across multiple deployment surfaces, offering Terminal CLI, IDE extensions, Desktop App, and Web as primary access points. The Terminal CLI, VS Code, and JetBrains extensions all support third-party provider integrations, lowering the barrier to free trial access.

Key facts:

  • Terminal CLI works standalone without subscription
  • VS Code and JetBrains extensions support third-party API providers
  • Desktop and Web require Claude subscription or Anthropic Console account
  • Native Install is the recommended method, via Git for Windows, Homebrew, or WinGet
  • WSL users do not need Git for Windows

Installation & Compatibility: Cross-platform environment detection

Installation flow emphasizes Shell environment awareness: syntax differences between PowerShell and CMD produce distinct error messages. For instance, && causes an error in PowerShell (it is CMD-only), while irm is unrecognized in CMD (PowerShell uses Invoke-WebRequest). Users must verify their environment from prompt (PS C:\ = PowerShell).

Git for Windows plays a critical role in installation: after installation, Claude Code invokes the Bash tool; without it, the system falls back to PowerShell as the shell; WSL users are unaffected. Failed installs (syntax errors, 403, or curl issues) are troubleshooting through official documentation providing error matching and alternative methods.

The ANTHROPIC_API_KEY environment variable skips the login prompt, requiring only user confirmation of the key—streamlining automated deployments.

Feature Tiers: From local automation to orchestration

Claude Code covers high-frequency development tasks: automatic code fixes, feature implementation, commit/PR generation; supports external tool connections via MCP; and permits agents in parallel and custom agent construction.

Users add CLAUDE.md to project roots to specify coding standards, architecture decisions, preferred libraries, and review checklists. Skills package repeatable workflows for team sharing (e.g., /review-pr); Hooks trigger shell commands before/after actions (e.g., auto-format after edits).

Capability access by surface

TierAccess methodSubscription requiredCore capabilities
CLI localTerminal executionNoBasic editing, building, running
Local schedulingDesktop app scheduled tasksYes (partial)Direct local file/tool access
Cloud schedulingCloud Routines via webYesContinues execution offline
Remote collaboration/teleport /desktop handoffsYesMobile-initiated tasks switch to terminal

A notable反差 (counterintuitive contrast) lies in scheduled execution: desktop Routines run on local machines, whereas cloud Routines detach entirely from the local device, making them suitable for long-running CI/CD pipelines.

Reader recommendations: choose by workflow

  • Free trial users: Start with Terminal CLI or VS Code extension—no subscription needed. Install Git for Windows if Bash support is desired
  • Team adopters: Enable CLAUDE.md and Skills sharing for shared conventions; subscribe for remote handoffs and cloud Routines
  • Remote developers: claude.ai subscribers should use Remote Control, Teleport, and /desktop features; non-subscribers remain CLI-bound
  • WSL developers: No Git for Windows installation needed; native Linux toolchain compatibility is automatic

Final note

Anthropic adopts a tiered model—free terminal access combined with paid tier features—to minimize adoption friction while preserving monetization for advanced collaboration and cloud orchestration capabilities. The unified CLAUDE.md configuration across surfaces delivers consistent, predictable experiences regardless of device or interface.