CONCEPT Cited by 1 source
Cloud IDE¶
Definition¶
A cloud IDE is a development environment delivered through the browser whose actual execution — file system, shell, compiler, runtime, tests — lives on a remote VM or container owned by the platform rather than on the developer's laptop. The browser tab is the editor UI; the substrate is a server-side sandbox.
Named production instances include GitHub Codespaces, Gitpod, Replit, StackBlitz, CodeSandbox, AWS Cloud9 (RIP), and — most recently on this wiki — Phoenix.new (2025-06-20).
What makes this a systems-design primitive¶
On-device IDEs (VSCode / IntelliJ / Emacs on a laptop) and remote IDEs both run compilers and tests; the architectural axis that matters for this wiki is where the execution environment sits relative to trust and cost:
- Substrate isolation. The execution environment is a platform-controlled sandbox (Firecracker micro-VM, Kubernetes pod, container). Destructive mistakes don't touch the laptop. Pre-condition for patterns/disposable-vm-for-agentic-loop and patterns/ephemeral-vm-as-cloud-ide.
- Portable state. The environment can be destroyed and recreated from a recipe (devcontainer.json, Dockerfile, Fly Machine spec). Laptop-centric dev environments accumulate config drift; cloud IDEs are reproducible by design.
- Preview URL proximity. Because the app runs on the platform's substrate, its bound ports are already reachable via the platform's routing fabric — see concepts/ephemeral-preview-url.
- Agent co-tenancy. Once the shell lives on a platform-owned VM rather than a developer-owned laptop, handing shell access to an LLM agent stops being a security crisis. The Phoenix.new framing — "root shell shared between you and the agent in an ephemeral VM" — depends on this.
Cloud-IDE shapes¶
Human-centered, persistent¶
- GitHub Codespaces / Gitpod — long-lived per-user / per-branch workspaces; primary user is a human developer; agent access is bolted on.
- AWS Cloud9 (deprecated) — full-featured IDE on EC2; never pivoted to agent workloads.
Human-centered, ephemeral¶
- StackBlitz / CodeSandbox — in-browser runtime (WebContainers or isolated VM) for quick prototyping; session lifetime is tied to the tab.
Agent-centered, ephemeral¶
- Phoenix.new (2025-06-20) — per-session Fly Machine, root shell shared with agent, full browser, preview URLs; the agent is the primary tenant.
- Replit Agent — same structural shape targeting broad-purpose code generation rather than a specific framework.
- Bolt / v0 / Lovable — similar browser-IDE-plus-agent shapes with narrower per-session environments.
Why the agent-centered shape is load-bearing¶
The VSCode-SSH Remote architecture — a Node agent downloaded onto a remote box via SSH, exposing a WebSocket RPC — is the human-centered precursor. As the 2025-02-07 Fly.io post (sources/2025-02-07-flyio-vscodes-ssh-agent-is-bananas) argues, once the primary operator of that remote environment stops being a human (who happens to run a coding-agent extension locally) and starts being an LLM agent whose whole loop lives on the remote VM, the architecture shifts: you want the remote environment to be the IDE rather than host a wire-protocol agent that a human IDE drives. Phoenix.new (2025-06-20) is the productised answer for the Elixir / Phoenix slice of that shift.
Caveats¶
- "Cloud IDE" is a user-surface category, not a single architectural shape. Codespaces (persistent Kubernetes-backed workspace) and Phoenix.new (ephemeral Fly Machine) are cloud IDEs with very different substrates.
- The shift from "IDE with remote extension host" (VSCode Remote) to "agent-centered cloud IDE" (Phoenix.new) is gradual; many products overlap categories.
- Preview URLs and agent root-shell are consequences of the cloud substrate, not part of the definition.
Seen in¶
- sources/2025-06-20-flyio-phoenixnew-remote-ai-runtime-for-phoenix — Phoenix.new as an agent-centered ephemeral cloud IDE tailored to Phoenix / LiveView.
- sources/2025-02-07-flyio-vscodes-ssh-agent-is-bananas — VSCode Remote as the human-centered precursor; motivated the architectural shift that Phoenix.new materialises.
Related¶
- concepts/ephemeral-dev-environment — session-scoped specialisation.
- concepts/remote-development-environment — broader parent category including SSH-remote-editing.
- concepts/agent-with-root-shell — the agent-co-tenancy consequence.
- systems/phoenix-new — canonical agent-centered instance.
- systems/vscode-remote-ssh — human-centered precursor.
- patterns/ephemeral-vm-as-cloud-ide — the pattern Phoenix.new canonicalises.
- patterns/disposable-vm-for-agentic-loop — adjacent pattern scoping why the ephemeral VM matters for agentic loops.