Original Reddit post

I’ve been working on WebToMobile, an open-source plugin/skills repo for Claude Code, Codex, and Cursor. The goal is not “paste a URL and magically get a perfect app.” The goal is to stop AI agents from blindly jumping into code when someone says: “Turn this website into a mobile app.” The workflow is: /web-to-mobile [website_url | github_repo_url | local_path] Then it:

  • audits the website or repo first
  • detects framework, routes, scripts, auth, APIs, styling, browser-only APIs, env vars, and mobile risks
  • maps web routes into mobile navigation/screens
  • separates reusable code from rewrite-required code
  • flags mobile-native gaps like auth/session handling, storage, camera, push, files, maps, etc.
  • creates a Markdown migration plan/checklist
  • waits for approval before implementation
  • runs checks before claiming completion Repo: https://github.com/suntay44/web-to-mobile-magic-plugin Default target is Expo React Native. Swift/SwiftUI is only for iOS-only or deep Apple-native needs. It also includes supporting commands: /mobile-resume /mobile-scan /mobile-review /mobile-audit /mobile-qa The main value is structure and token efficiency: the agent works from audit output + a checklist instead of repeatedly guessing from chat history. Feedback welcome, especially from people who have tried moving real web apps into mobile. submitted by /u/suntay44

Originally posted by u/suntay44 on r/ClaudeCode