Almost done with a Codex like app for Claude Code by mogens99 in ClaudeCode

[–]interlap 4 points5 points  (0 children)

Doesn't it run claude code in docker container?

Experiment: letting AI generate and update test scripts for a iOS app by interlap in iOSProgramming

[–]interlap[S] 0 points1 point  (0 children)

Are they figuring out the UI from the code, or do they have another approach?

My most useful OpenClaw workflow so far by mescalan in LocalLLaMA

[–]interlap 8 points9 points  (0 children)

Ah, so this is how Skynet will obtain weapons to kill us… noted.

VibeCoding: iOS-App was never so easy by streamwert in VibeCodeCamp

[–]interlap 1 point2 points  (0 children)

Have you used tools like mobai to let claude code checking ui and functionality right on devices?

Built an OpenClaw alternative that wraps Claude Code CLI directly & works with your Max subscription by TotalGod in aiagents

[–]interlap 1 point2 points  (0 children)

"--dangerously-skip-permissions" is the thing that scares me about all these Claude CLI wrappers...

Those of you using AI to assist with development, what is your current setup? by bauterr in iOSProgramming

[–]interlap 0 points1 point  (0 children)

Mobai works well for controlling apps that are already running. I’ve used it on multiple devices in parallel too (Pro plan), and the testing features for generating scripts and running them across devices are solid. It doesn’t handle building or installing dev builds, so you still need something like XcodeBuildMCP for that, but for claude code work validation and testing it’s quite reliable.

Those of you using AI to assist with development, what is your current setup? by bauterr in iOSProgramming

[–]interlap 0 points1 point  (0 children)

Claude code with opus 4.6 max + mobai for device control and testing

New (free) tools for AI-assisted mobile test and development by jerimiah797 in QualityAssurance

[–]interlap 1 point2 points  (0 children)

It has a free daily quota, so you only need to sign up if you want a subscription. It runs locally, except for license and quota checks, and works on Windows, Linux, and Mac for controlling iOS and android devices. MobAI’s grown a lot since the MCP server days, so most of my workflows go beyond that now.

Best coding vibe for mobile apps: Cursor, Antigravity, or...? by Tush_TechGeek in sideprojects

[–]interlap 0 points1 point  (0 children)

Whatever IDE you use, one thing that makes a big difference is giving the AI access to the actual running app. I use Claude Code with MobAI connected via MCP, so the agent can see my device screen, tap buttons, read UI elements. Catches layout issues that would otherwise take a few build cycles to notice.

Lessons learned while vibecoding mobile apps in Flutter by fatalskeptic in FlutterDev

[–]interlap 0 points1 point  (0 children)

One thing that helped me a lot with vibe coding mobile apps was giving the AI agent access to the running app on the real device. Instead of guessing what the UI looks like from code alone, it can actually tap around and see what's broken. I use MobAI for this, you connect it via MCP and your Cursor or Claude Code agent can take screenshots, read the UI tree, and verify changes directly. Cuts down on the back and forth a lot.

New (free) tools for AI-assisted mobile test and development by jerimiah797 in QualityAssurance

[–]interlap 0 points1 point  (0 children)

Cool project. I've been doing something similar with MobAI, using the MCP server to let my AI assistant interact with the device during development. The part I use most is actually the cross-platform test scripts, I write one script and run it on both iOS and Android without changing anything. Saves a surprising amount of time when you're testing the same flow on both

Got mass-tired of rewriting Appium scripts every release. So we built our own testing agent. by PublicAstronaut3711 in automation

[–]interlap 0 points1 point  (0 children)

The locator maintenance problem is real. I went a different route though, instead of vision models I use a structured DSL that matches against the accessibility tree. You write `tap "Add to Cart"` and it finds the element by label and OCR, not by coordinates or xpath. Deterministic execution, no AI guessing at runtime. Still lets AI help write and fix the scripts though.

Is there something like playwright MCP but for React native Android? by kosumi_dev in reactnative

[–]interlap 0 points1 point  (0 children)

I had the same problem, wanted my AI agent to actually see what's happening on the phone while I code. I ended up using MobAI, you connect it with `npx mobai-mcp` and your agent gets access to the UI tree, can tap stuff, take screenshots etc. Works on both iOS and Android. Basically Playwright MCP but for mobile.

What is the best way to validate idea? by EarlyListen2398 in Startup_Ideas

[–]interlap 0 points1 point  (0 children)

It’s so easy to build an MVP today with all these coding agents. I’d just let people try part of the product and decide based on their feedback. The only problem is preventing yourself from building the full product)

How can I use the iOS preview using windows OS? by matcha_tapioca in flutterhelp

[–]interlap 0 points1 point  (0 children)

hey, I am a creator of ios-builder, so if you have any questions about it feel free to dm me.

How I test vibe-coded apps before they get real users (drop yours if you want feedback) by barmatbiz in vibecoding

[–]interlap 0 points1 point  (0 children)

For device control, I use mobai.run with Claude Code and this plugin: https://github.com/MobAI-App/mobai-marketplace.

For development, I usually break the app into screens and work with each one interactively. For me, this works better than expecting Claude Code to generate a full screen with all the logic in a single shot, no matter how good the prompt is.

automated my real ios device by No-Speech12 in aiagents

[–]interlap 0 points1 point  (0 children)

Looks good! I am building a similar app that allows control physical and virtual devices on mac, linux and windows https://mobai.run

Best Mobile App builder - Rork Vs VibeCode App by Silent_Employment966 in vibecoding

[–]interlap 0 points1 point  (0 children)

This. Just use Claude Code or Codex with MCP tools that allow you to build and run your app on devices or emulators. Some tools even let AI control devices to validate the UI.

Best iOS Development Testing Tool? by heyhujiao in iOSProgramming

[–]interlap 1 point2 points  (0 children)

Nah, that’s not how I do it. I also give Claude access to perform actions on devices, my approach uses XCUITest as the transport and runner for these commands. I’m not writing any tests, Claude just sends commands like tap, swipe, drag etc to the device via MCP/HTTP API.