Skip to content

// guides

Gitpod on iPad: What Works in 2026 (Now Ona)

Gitpod on an iPad is a half-answer, and the first thing to know is that Gitpod is now Ona. It rebranded on September 2, 2025 and re-centered on autonomous AI agents. We checked today: gitpod.io 308-redirects to ona.com, and the iPad feature request has been open since 2019. Ona runs as VS Code in a browser, so it opens in iPad Safari, but there has never been a native app, and using the IDE itself from a tablet is the part that does not really work. If your goal is to actually code on an iPad, the honest answer is a native app plus a persistent cloud Linux box, which is what we build at Cosyra.

There are two different questions hiding inside "Gitpod on iPad," and conflating them is where most write-ups go wrong. One is "can Ona run AI agents for me in the cloud?" Yes, that is now its entire business, fire-and-forget "task in, pull request out." The other is "can I sit on the couch with an iPad and use Gitpod interactively?" That is the gap. This guide covers the rebrand, what genuinely works on a tablet, where Ona still wins, and the setup that runs natively on an iPad today. For the Apple-specific agent story see our Claude Code on iPad guide, and for the same browser-IDE-without-an-app pattern in a different product, see Firebase Studio on iPad. Coder (the self-hosted enterprise platform) has the same iPhone shape — the official docs steer iOS users into the iSH emulator — and we walked through that maze in Coder on iPhone. The iPad shape of that same product — a Safari PWA install with documented keyboard, terminal, and ctrl+c limits Coder publishes itself — is in Coder on iPad.

Timeline of Gitpod's mobile gap: the iPad app request gitpod-io/gitpod#850 opened in October 2019 and is still open in 2026 about six and a half years later; the native mobile applications request gitpod-io/gitpod#6447 was closed in September 2022 without shipping; Gitpod rebranded to Ona on September 2, 2025 and pivoted to background agents while keeping browser VS Code; and as of May 2026 there is still no native app, so using Gitpod or Ona from an iPad means VS Code in a browser tab. The diagram also shows the split between Ona running agents in the cloud, which is real, and using the IDE interactively from an iPad, which is the gap.
The Gitpod/Ona mobile timeline: an iPad app requested in 2019 and never shipped, a 2025 rebrand to Ona, and a browser-tab-only reality on a tablet — verified first-hand 2026-05-29 against the gitpod.io redirect, GitHub #850 and #6447, and the Ona rebrand page.

Wait, Gitpod is now Ona?

Yes, and it matters for anything you read about "Gitpod on iPad," because almost all of it predates the change. On September 2, 2025 the company announced "Gitpod is now Ona: your AI software engineer" and re-centered the product on autonomous background agents. The verbatim framing from the rebrand story is blunt about why:

"IDEs defined the last era. Agents define the next."

Two practical consequences. First, the browser VS Code environment did not disappear — the same page says engineers still get "VS Code in the browser, or if you're feeling nostalgic: your favorite desktop IDE." Second, the headline product is now the agent, not the IDE. So when you go looking for "the Gitpod iPad app," you are looking for something from a product era that the company itself has moved past. Gitpod is not dead, it is renamed and reaimed, and the mobile story did not change in the process.

Can you use Gitpod (Ona) on an iPad?

You can open it, and you cannot meaningfully work in it the way you would on a laptop. Ona runs full VS Code in a browser inside a cloud environment, so it loads in iPad Safari. But it is a desktop IDE in a touch browser: the file tree, command palette, and side panels assume a mouse, a hardware keyboard, and a wide window. There is no native iPad app smoothing any of that over.

The clearest evidence is Gitpod's own issue tracker. A feature request titled "Feature Request: app for the iPad" was opened on October 13, 2019. We re-checked it today and it is still open — roughly six and a half years later, with no native iPad app shipped. A separate, broader request, "A Gitpod experience via Native Mobile Applications (iOS, iPadOS, Android)", was opened in 2021 and closed in September 2022 without a native client ever arriving. Two requests, six-plus years, zero native apps. That is not an accident; it is a product decision, and it is the same decision today under the Ona name.

We think a six-year-old, still-open iPad request tells you exactly how much priority a touch-first experience has had, and how much it is likely to get now that the company's whole pitch is async agents rather than interactive editing. The Ona team would frame that differently, and would say the browser already works everywhere, so a native app is unnecessary. We disagree: a desktop IDE in a mobile Safari tab is not the same thing as an app built for the device in your hands on the train.

What "works on your phone" actually means

The Ona rebrand page does say the product "runs full VS Code in the browser and also works on your phone." That is true, and worth taking at face value: the browser interface is reachable from a phone or tablet browser. What it is not is a native app. You are loading desktop VS Code in a mobile browser tab, driving it with a touch keyboard. For reading a file, kicking off an agent run, or checking on a background task, that is fine. For sustained editing — multi-pane layouts, keyboard shortcuts, a terminal you actually type in — a browser tab on a tablet fights you.

This is the honest version of the answer that the stale, pre-rebrand "code from your iPad with Gitpod" tutorials skip. They tend to assume a Magic Keyboard and treat the iPad as a thin window onto a desktop browser. That works, in the narrow sense that the pixels render. It is just not a workflow designed for the device.

Where Ona genuinely wins

A fair guide names what the other tool does better, so here it is with no hedging. If these describe your situation, use Ona and do not look back:

How do you actually code on an iPad instead?

The pattern that works on an iPad is the one Gitpod never shipped: a native app talking to a persistent cloud Linux environment. The iPad's job is to be a good client to a real Linux box, not to pretend it can run a desktop IDE in a browser tab. Once you accept that division of labor, most "iPad is bad for coding" complaints dissolve.

That is what we build. The Cosyra iOS app is a universal binary that runs natively on iPad with full iPadOS multitasking: Split View, Slide Over, and Stage Manager on M-series iPads. You get a persistent Ubuntu 24.04 container with Claude Code, Codex CLI, OpenCode, and Gemini CLI already installed, 30 GB of storage, and hibernation that resumes exactly where you left off. The same container is reachable from iPhone, iPad, and the web, so we start a task on an iPad on the couch and pick it up on a phone in a waiting room without re-cloning anything.

Step 1: Install Cosyra from the App Store

Open the App Store on your iPad and install Cosyra. The same listing covers iPhone, iPad Pro, iPad Air, and iPad mini. Sign in with Apple, Google, or email, and the app provisions a fresh Ubuntu container on first launch.

Step 2: Add your model API key

Cosyra is bring-your-own-key, so you pay Anthropic, OpenAI, or Google directly rather than through us. In the terminal:

cosyra on iPad, adding a model key

$ # Persists across sessions and device switches

$ echo 'export ANTHROPIC_API_KEY="sk-ant-your-key-here"' >> ~/.bashrc

$ source ~/.bashrc

$ claude --version

Claude Code (latest)

Step 3: Run an agent

Clone a repo and start a session:

cosyra on iPad, starting an agent

$ git clone https://github.com/your-org/your-project.git

Cloning into 'your-project'...

$ cd your-project

$ claude

Claude Code (latest)

Type your prompt, or type "/" for commands.

 

> Add a health-check endpoint and a test, then run the suite.

Try it on your iPad. Sign up — 1 hour free, no credit card. Extend with a 10-hour, 7-day trial when you want more. App Store / Google Play / Pricing details

How do the iPad coding options compare?

Lined up against what matters on a tablet (a native app, a persistent environment, and how it is priced), the options sort out clearly. The table covers the realistic paths as of 2026-05-29.

Feature Gitpod / Ona (Safari) Cosyra (iPad app) Codespaces (Safari)
Native iPad app No (browser only) Yes No (browser only)
Native app ever shipped No (#850 open since 2019) Yes (iOS + Android) No
Persistent environment Auto-delete 3–7 days idle Ubuntu 24.04, 30 GB Per-repo, idle timeout
You-drive-it AI agents Async background agents 4 CLIs pre-installed Copilot (in-IDE)
Interactive terminal In browser tab Native, full-screen In browser tab
API key model OCU credit meter BYOK (pay provider) GitHub plan
Pricing model Metered (OCUs) Flat $29.99/mo Usage-based
Free entry $10 / 40-OCU one-time 1 hr free, then trial Monthly free hours

Who should pick which?

Here is the decision framework we would give a friend, with the tablet question front and center.

Frequently asked questions

Is Gitpod the same as Ona?

Yes. Gitpod rebranded to Ona on September 2, 2025, with the announcement "Gitpod is now Ona: your AI software engineer." Visit gitpod.io today and it returns an HTTP 308 permanent redirect to ona.com. The product re-centered on autonomous background agents, but the browser VS Code environment still ships underneath, and sign-in still lives at app.gitpod.io.

Can you use Gitpod on an iPad?

Only as a browser tab. Gitpod, now Ona, runs full VS Code in a browser, so it opens in iPad Safari, but there is no native iPad app. A feature request titled "app for the iPad" has been open since October 2019 and is still open in 2026, roughly six and a half years later. It loads, but a desktop IDE in a touch browser is not a polished iPad workflow.

Does Gitpod or Ona have a native iPad or iPhone app?

No. A dedicated request, "A Gitpod experience via Native Mobile Applications (iOS, iPadOS, Android)," was opened in 2021 and closed in September 2022 without a native client shipping. There is no official Gitpod or Ona app on the App Store or Google Play. The only mobile artifact is an unofficial community side-project, not a shipped product.

Is Gitpod being shut down?

No. This is a rebrand and a strategic pivot, not a shutdown. Gitpod became Ona on September 2, 2025, and the product, including VS Code in the browser, is still live. That is different from a product on a sunset clock. If you read "Gitpod is dead," it is wrong: it changed its name and its center of gravity to AI agents.

Ona says it "works on your phone" — what does that actually mean?

The rebrand page states Ona "runs full VS Code in the browser and also works on your phone." That means the browser interface is reachable from a phone browser, not that there is a native app. You are loading desktop VS Code in a mobile browser tab, with a touch keyboard. It is genuinely reachable, but it is the browser-tab experience, not an app built for the device.

What happens to my Ona environment if I leave it idle on a tablet?

On the Free tier, environments auto-delete after 3 days of inactivity (7 days on Core). Free is a one-time $10 / 40-OCU credit metered by usage, not a recurring monthly free allowance. If you dip in and out from a tablet over a week, a Free environment can disappear between sessions. A persistent container that hibernates and resumes is a different model.

tl;dr

Gitpod is now Ona (rebranded September 2, 2025) and runs as VS Code in a browser, with no native app — the iPad request has been open since 2019. It opens in iPad Safari and "works on your phone" as a browser tab, but that is a desktop IDE on a touch screen, and free environments auto-delete after 3 idle days. Ona wins on autonomous background agents and enterprise governance, so use it for that. To actually code on an iPad, use a native app on a persistent cloud Linux box — that is Cosyra, with four AI CLIs pre-installed.

App Store / Google Play. Sign up — 1 hour free, no credit card. Extend with a 10-hour, 7-day trial when you want more. See pricing.

For the wider picture, our guide to AI coding agents on mobile maps every agent across phone and tablet, and the mobile coding terminal pillar covers the terminal-on-a-device decision end to end. The cloud IDE on phone pillar lines Ona up against Coder, Firebase Studio, Codespaces, and Replit on the same question. If you are weighing the browser-IDE-without-an-app pattern specifically, see Cosyra vs GitHub Codespaces on mobile. For the head-to-head on this exact pair, see Cosyra vs Gitpod (Ona).

Get a real dev environment on your iPad in 3 minutes. Install Cosyra, add your API key, run an agent in a persistent Ubuntu container.

See pricing