<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: onecookie</title>
    <description>The latest articles on DEV Community by onecookie (@onecookie).</description>
    <link>https://dev.to/onecookie</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3921943%2F4d30bebf-f8be-41c9-9a80-e5ac0467a1f6.jpg</url>
      <title>DEV Community: onecookie</title>
      <link>https://dev.to/onecookie</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/onecookie"/>
    <language>en</language>
    <item>
      <title>I shipped code from my phone while lying on the couch. Here's the exact setup.</title>
      <dc:creator>onecookie</dc:creator>
      <pubDate>Tue, 09 Jun 2026 09:02:57 +0000</pubDate>
      <link>https://dev.to/onecookie/i-shipped-code-from-my-phone-while-lying-on-the-couch-heres-the-exact-setup-4h49</link>
      <guid>https://dev.to/onecookie/i-shipped-code-from-my-phone-while-lying-on-the-couch-heres-the-exact-setup-4h49</guid>
      <description>&lt;p&gt;No staging environments. No laptop. &lt;/p&gt;

&lt;p&gt;Just an iPhone, a Mac sitting in the other room, and an AI coding agent running over SSH with Tailscale + tmux + &lt;a href="https://redock.dev" rel="noopener noreferrer"&gt;Redock&lt;/a&gt; .&lt;/p&gt;




&lt;h2&gt;
  
  
  The short version
&lt;/h2&gt;

&lt;p&gt;Mac has Remote Login (built-in SSH server). iPhone connects to it. AI agent runs on the Mac, not on the phone. &lt;/p&gt;

&lt;p&gt;The phone is just a thin terminal, but with tmux persistence, one-tap project launchers, and background tasks that survive disconnects. You can literally start a minutes build, close the app, and check the output later.&lt;/p&gt;

&lt;p&gt;If this sounds like a toy, I thought so too. Then I refactored a NextJS crate from bed at 2 AM and it actually worked.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 1: Turn your Mac into an SSH server
&lt;/h2&gt;

&lt;p&gt;This is the foundation. No third-party server, no cloud VM needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On your Mac:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;System Settings &amp;gt; General &amp;gt; Sharing &amp;gt; Remote Login → ON&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Allow only your dev account&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Find your LAN IP&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ifconfig | grep "inet " | grep -v 127.0.0.1&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;look for 192.168.x.x or 10.x.x.x, that's your LAN address&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;On your iPhone:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Open the Redock app, go to Launch → Add Host&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Tap "Discover Local Devices" (it scans your LAN for SSH hosts)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Or enter manually: Host &lt;code&gt;192.168.1.23&lt;/code&gt;, Port &lt;code&gt;22&lt;/code&gt;, your Mac username, your Mac password&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Connect → you now have a real terminal session into your Mac&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F921fhe94q0r4amgme7r0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F921fhe94q0r4amgme7r0.png" alt="Host Config" width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That's it. You're now SSH'd into your Mac from your phone. Navigate to a project, fire up &lt;code&gt;nvim&lt;/code&gt;, run &lt;code&gt;git status&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;It all works. Latency on LAN is around 2-5ms.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 2: Add Tailscale so it works from anywhere
&lt;/h2&gt;

&lt;p&gt;LAN is great for the couch, but useless when you're on cellular or at a coffee shop. Tailscale puts your phone and Mac on the same virtual network without exposing SSH to the public internet.&lt;/p&gt;

&lt;p&gt;On Mac:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;brew install tailscale&lt;br&gt;
tailscale up&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;On iPhone:&lt;/p&gt;

&lt;p&gt;Install Tailscale from App Store, sign in to same account&lt;/p&gt;

&lt;p&gt;Now your Mac has a &lt;code&gt;100.x.y.z&lt;/code&gt; Tailscale IP. Use that as the Host instead of the LAN IP. Same Port 22, same credentials. Works from cellular, office Wi-Fi, other countries — wherever.&lt;/p&gt;

&lt;p&gt;Other options if you prefer: &lt;/p&gt;

&lt;p&gt;ngrok TCP tunnel for temporary access, or direct port forwarding if you have a public IP. But Tailscale is the zero-config sweet spot for most people.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 3: The workflow that makes mobile coding actually usable
&lt;/h2&gt;

&lt;p&gt;Raw SSH from a phone is painful. Typing long commands, remembering project paths, losing sessions when you switch apps, it adds up. Here's what makes it fast:&lt;/p&gt;

&lt;h3&gt;
  
  
  Projects + Actions = one-tap launch
&lt;/h3&gt;

&lt;p&gt;Define your project once (working directory, default host). Then create Actions, saved commands with a run mode.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F56ct7w2zg0ey5baq58xd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F56ct7w2zg0ey5baq58xd.png" alt="Project Action Config" width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Three run modes matter:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Terminal Interactive&lt;/strong&gt;: opens a live terminal session. Use this for AI agents (claude, codex, opencode), REPLs, or anything you need to talk to.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Quick Task&lt;/strong&gt;: runs a command over SSH, captures the output, saves it as a Run record. Perfect for &lt;code&gt;git status&lt;/code&gt;, &lt;code&gt;npm test&lt;/code&gt;, health checks.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Background Long Task&lt;/strong&gt;: starts the command inside remote tmux, keeps running after you close the app. For builds, long tests, batch jobs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvrlyvfhc2m9fplhtyh9v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvrlyvfhc2m9fplhtyh9v.png" alt="Action Config" width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  tmux persistence
&lt;/h3&gt;

&lt;p&gt;Install tmux on the Mac:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;brew &lt;span class="nb"&gt;install &lt;/span&gt;tmux
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then enable tmux in the host settings. The app handles session create/attach/restore automatically. &lt;/p&gt;

&lt;p&gt;You don't type &lt;code&gt;tmux new&lt;/code&gt; or &lt;code&gt;tmux attach&lt;/code&gt;, when you reconnect, it shows existing sessions and lets you pick one.&lt;/p&gt;

&lt;p&gt;One pane for the AI agent, another pane for watching logs or running tests. If your phone disconnects mid-session, the work is still running on the Mac.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3hfftca1qba9pohtaur4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3hfftca1qba9pohtaur4.png" alt="One-tap open agent" width="800" height="1739"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  The realistic daily loop
&lt;/h2&gt;

&lt;p&gt;Here's what a typical evening looks like:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open phone, tap "My Project" from Launch&lt;/li&gt;
&lt;li&gt;Tap the "Claude Code" action → terminal opens, agent is already in the project directory&lt;/li&gt;
&lt;li&gt;Describe a change, agent starts working&lt;/li&gt;
&lt;li&gt;Agent finishes, &lt;code&gt;git add . &amp;amp;&amp;amp; git commit -m "..."&lt;/code&gt; from the snippet bar&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Total taps: maybe 4. Total ti0-ppme on the keyboard: mainly the prompt and the commit message. Everything else is one-tap or snippet driven.&lt;/p&gt;

&lt;p&gt;The trick isn't the terminal, dozens of iOS SSH clients exist. The trick is that the project/action/tmux layer eliminates all the friction &lt;em&gt;around&lt;/em&gt; the terminal: remembering paths, retyping setup commands, losing sessions, digging through history to find old task output.&lt;/p&gt;




&lt;h2&gt;
  
  
  Q&amp;amp;A
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Q: Is this a gimmick or do you actually ship this way?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I use it for real work, quick fixes, PR reviews, starting long builds before bed, checking CI failures from brunch. It won't replace my desk setup for deep flow-state work, but it covers the other 60% of development moments when I'm not at my desk.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q: What AI agents work?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Anything that runs in a terminal: Claude Code, Codex, opencode, aider, cursor-agent. The agent runs on your Mac, the phone is just the display and keyboard. No mobile app SDK integration needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q: Security?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Your SSH credentials never leave your phone (stored in Apple Keychain). For Tailscale, the connection stays inside the tailnet. For public access, use SSH keys, the app supports key generation and importing existing keys.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q: Does it work on iPad?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Yes. Same app, bigger screen. Even better for split pane tmux layouts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q: Can I use it with a VPS instead of a Mac?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Yes. Linux VPS works the same way. SSH in, enable tmux, set up projects. If it has a public IP, skip Tailscale entirely and connect directly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Further reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://redock.dev/guide" rel="noopener noreferrer"&gt;Redock Setup Guide&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="https://tailscale.com/kb/1017/install" rel="noopener noreferrer"&gt;Tailscale Quickstart&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ngrok.com/docs/using-ngrok-with/ssh" rel="noopener noreferrer"&gt;ngrok SSH Tunnel&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://support.apple.com/guide/mac-help/allow-a-remote-computer-to-access-your-mac-mchlp1066/mac" rel="noopener noreferrer"&gt;Apple Remote Login&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ai</category>
      <category>showdev</category>
      <category>mobile</category>
      <category>agents</category>
    </item>
    <item>
      <title>AI coding agents made mobile development practical, so I built Redock</title>
      <dc:creator>onecookie</dc:creator>
      <pubDate>Sat, 09 May 2026 14:17:12 +0000</pubDate>
      <link>https://dev.to/onecookie/ai-coding-agents-made-mobile-development-practical-so-i-built-redock-5ic</link>
      <guid>https://dev.to/onecookie/ai-coding-agents-made-mobile-development-practical-so-i-built-redock-5ic</guid>
      <description>&lt;p&gt;For a long time, I did not think mobile development was very practical.&lt;/p&gt;

&lt;p&gt;Yes, you could install an SSH client on an iPhone or iPad, connect to a server, and run a few commands. But for real development work, it usually felt too awkward. The screen was small, typing was slow, terminal interaction was not designed for touch, and anything more than a quick check often became frustrating.&lt;/p&gt;

&lt;p&gt;AI coding agents changed that for me.&lt;/p&gt;

&lt;p&gt;With tools like Claude Code, Codex CLI, and other terminal based agents, mobile development no longer means writing every line of code on a phone. The phone can become more like a control surface for a real development machine.&lt;/p&gt;

&lt;p&gt;You connect to your Mac, Linux box, or remote server, guide the agent, review the output, trigger builds, and verify results. The actual heavy work still happens on the development machine.&lt;/p&gt;

&lt;p&gt;That shift made me think mobile development could become practical in a new way.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Redock&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Redock is an iOS and iPadOS terminal app designed around SSH, tmux, and AI coding agent workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem I wanted to solve
&lt;/h2&gt;

&lt;p&gt;The original use case came from my own workflow.&lt;/p&gt;

&lt;p&gt;Sometimes I am not at my desk. I might be outside, waiting in line, or just away from my Mac. But that is often exactly when a small product idea, bug fix, or implementation detail comes to mind.&lt;/p&gt;

&lt;p&gt;In the past, I would usually write it down and handle it later.&lt;/p&gt;

&lt;p&gt;But now, with AI coding agents, a lot of small development tasks can be started and verified remotely.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;connect to my development machine&lt;/li&gt;
&lt;li&gt;resume a previous tmux session&lt;/li&gt;
&lt;li&gt;ask the agent to inspect or modify part of the codebase&lt;/li&gt;
&lt;li&gt;run tests or scripts&lt;/li&gt;
&lt;li&gt;keep the session alive even if the phone disconnects&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Traditional mobile SSH clients can technically do some of this. But they are still mostly designed as generic terminals.&lt;/p&gt;

&lt;p&gt;Redock is designed around the development loop.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Redock is different from a generic SSH client
&lt;/h2&gt;

&lt;p&gt;A normal mobile SSH client gives you a terminal.&lt;/p&gt;

&lt;p&gt;That is useful, but it does not remove much friction from the workflow.&lt;/p&gt;

&lt;p&gt;When working with coding agents, I found myself repeatedly doing the same things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;navigating to the same project directory&lt;/li&gt;
&lt;li&gt;starting the same agent command&lt;/li&gt;
&lt;li&gt;attaching to the same tmux session&lt;/li&gt;
&lt;li&gt;running the same test, build, or deploy scripts&lt;/li&gt;
&lt;li&gt;copying and editing prompts before sending them&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On a desktop, that is manageable. On a phone, every repeated command becomes friction.&lt;/p&gt;

&lt;p&gt;So Redock adds a few workflow layers on top of SSH.&lt;/p&gt;

&lt;h2&gt;
  
  
  Projects
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;Project&lt;/strong&gt; groups a host, working directory, and common context together.&lt;/p&gt;

&lt;p&gt;Instead of thinking only in terms of “connect to this server,” Redock lets me think in terms of “continue working on this project.”&lt;/p&gt;

&lt;p&gt;This matters because agent workflows are context heavy. I usually want to land directly in the right machine, right directory, and right session.&lt;/p&gt;

&lt;h2&gt;
  
  
  Actions
&lt;/h2&gt;

&lt;p&gt;An &lt;strong&gt;Action&lt;/strong&gt; is a reusable command.&lt;/p&gt;

&lt;p&gt;It can be something like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;start Claude Code&lt;/li&gt;
&lt;li&gt;run tests&lt;/li&gt;
&lt;li&gt;open a project directory&lt;/li&gt;
&lt;li&gt;trigger a build script&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to hide the terminal. The goal is to avoid typing the same operational commands over and over on a small screen.&lt;/p&gt;

&lt;p&gt;For mobile workflows, tappable commands make a big difference.&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent TUI friendly terminal UX
&lt;/h2&gt;

&lt;p&gt;Coding agents often use terminal UIs, long running output, and conversational history.&lt;/p&gt;

&lt;p&gt;Redock adapts the terminal experience for that kind of usage:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;scrollable history&lt;/li&gt;
&lt;li&gt;gesture navigation&lt;/li&gt;
&lt;li&gt;voice input&lt;/li&gt;
&lt;li&gt;a draft input area for preparing prompts before sending&lt;/li&gt;
&lt;li&gt;better handling of long agent output on a small screen&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The draft input area is especially important to me.&lt;/p&gt;

&lt;p&gt;When I am using a phone, I do not want every typed character to go directly into the terminal. I often want to compose a prompt, edit it, and then send it as one message.&lt;/p&gt;

&lt;p&gt;That feels much closer to how I actually interact with AI coding agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  Built-in tmux workflow
&lt;/h2&gt;

&lt;p&gt;Mobile connections are unreliable.&lt;/p&gt;

&lt;p&gt;The app can be backgrounded. The network can change. The phone can disconnect. Long running agent sessions, builds, and deploy scripts should not die because of that.&lt;/p&gt;

&lt;p&gt;So tmux is central to the workflow.&lt;/p&gt;

&lt;p&gt;Redock makes it easy to create, resume, and keep sessions alive. The development task keeps running on the machine, while the phone is just the interface.&lt;/p&gt;

&lt;p&gt;This is one of the biggest differences between “mobile terminal as a quick emergency tool” and “mobile terminal as a real workflow.”&lt;/p&gt;

&lt;h2&gt;
  
  
  Why terminal first instead of chat first
&lt;/h2&gt;

&lt;p&gt;There are also remote agent controller products that provide a more chat like interface.&lt;/p&gt;

&lt;p&gt;I considered that direction, but I wanted Redock to stay terminal first.&lt;/p&gt;

&lt;p&gt;The reason is flexibility.&lt;/p&gt;

&lt;p&gt;With SSH, I can use any CLI agent, any script, any shell tool, and any development environment. I can inspect files, run commands and verify things myself.&lt;/p&gt;

&lt;p&gt;Redock does not proxy coding sessions through my server. It connects to your own machine over SSH.&lt;/p&gt;

&lt;p&gt;That means the workflow is not tied to one specific agent or one hosted backend.&lt;/p&gt;

&lt;p&gt;For my use case, that matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Link
&lt;/h2&gt;

&lt;p&gt;You can find Redock here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://redock.dev" rel="noopener noreferrer"&gt;https://redock.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qzvpgmnf5e4l0ybmri9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3qzvpgmnf5e4l0ybmri9.png" alt=" " width="800" height="337"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The bigger question
&lt;/h2&gt;

&lt;p&gt;I do not think the phone will replace a desktop development setup.&lt;/p&gt;

&lt;p&gt;That is not the point.&lt;/p&gt;

&lt;p&gt;The more interesting question is whether AI coding agents make small pockets of development time more useful.&lt;/p&gt;

&lt;p&gt;If the agent can do more of the implementation work on a real development machine, then maybe the phone becomes good enough for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;starting a task&lt;/li&gt;
&lt;li&gt;guiding an agent&lt;/li&gt;
&lt;li&gt;reviewing progress&lt;/li&gt;
&lt;li&gt;running verification&lt;/li&gt;
&lt;li&gt;resuming a session&lt;/li&gt;
&lt;li&gt;shipping a small fix&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is the workflow I wanted to explore with Redock.&lt;/p&gt;

&lt;p&gt;I am curious how other developers think about this.&lt;/p&gt;

&lt;p&gt;Do you ever do real development work from a phone or tablet? Or prefer to keep coding strictly tied to a desktop setup?&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>ios</category>
      <category>ai</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
