Related ToolsClaude CodeCursorCodyClaude

Claude Code Gets an iPad Clone With Local File Ops, Git, and Shell

Claude by Anthropic
Image: Anthropic

What Happened

A developer team launched an agentic coding tool for iPad that mirrors the workflow of Claude Code on desktop. The app integrates 7 tools - Read, Write, Edit, Glob, Grep, Bash, and Git - all executing locally on the device, not in the cloud.

The shell environment is a JavaScript polyfill covering roughly 25 Unix commands, with support for pipes, chaining, and redirection. Git operations run through isomorphic-git. API calls to Claude stream token-by-token via Server-Sent Events (SSE).

The team claims they dogfooded the tool from day one, using it on the iPad to develop itself. They've been open about hitting iPad platform limitations along the way, which is expected given iOS sandboxing restrictions.

The project was posted as a Show HN on March 6, 2026.

Why It Matters

The gap between mobile and desktop development environments has been narrowing for years, but agentic coding tools have remained firmly desktop-only. This is the first serious attempt at bringing the full agentic loop - read codebase, plan changes, edit files, commit, push - to a tablet.

For developers who travel, commute, or just want to triage code from the couch, this opens up a workflow that previously required a laptop. The local execution model means your files stay on-device rather than bouncing through a cloud IDE.

The practical ceiling here is the iPad itself. File system sandboxing, memory limits, and the lack of a real terminal mean this will handle small-to-medium repos but probably choke on large monorepos. Still, for quick fixes, code reviews, and prototyping, the form factor makes sense.

Our Take

This is a clever proof of concept more than a production tool right now. The JavaScript shell polyfill covering 25 commands will handle basic operations, but anyone who's tried to replicate Unix tooling in JS knows edge cases pile up fast. isomorphic-git is solid for standard operations but lacks some of the plumbing git commands that agentic tools lean on.

The real question is whether Apple's platform restrictions will let this grow or slowly strangle it. iOS sandboxing means you can't easily work across apps or access arbitrary file paths, and memory pressure on iPad could kill long-running agent loops.

That said, the concept is sound. Claude Code on desktop has proven that agentic coding with file operations and shell access is a productivity multiplier. Bringing that to iPad - even in limited form - fills a gap nobody else is addressing. If they can solve the platform constraints, this becomes genuinely useful for the "I just need to push a quick fix" scenario that currently requires pulling out a laptop.

Worth watching, not worth switching to yet.