What problem does it solve? Shipping a Jac web client to phones and tablets normally requires manually wiring Capacitor, configuring native toolchains, and managing signing and port forwarding. This Skill codifies the entire mobile target workflow so a Jac client becomes an installable Android APK/AAB or iOS app with a few commands. ## Core Features & Use Cases - One-time scaffolding: jac setup mobile installs Capacitor dependencies, creates capacitor.config.json, scaffolds android/ and ios/ projects, and writes [client.mobile] config into jac.toml. - Dev loop with live reload: jac start main.jac --client mobile --dev runs cap sync + cap run with automatic host selection and automatic adb reverse port forwarding on Android. - Production builds: jac build --client mobile produces debug/release APKs, AAB bundles, or iOS builds via xcodebuild, with signing and provisioning guidance. - Use Case: You have a Jac app with routing and auth working in the browser. Run the scaffold, set app_id in [client.mobile], start the dev loop on an emulator, then produce a signed release APK for distribution. ## Quick Start Ask the assistant to scaffold the mobile target with jac setup mobile for Android and start the dev loop with live reload on a connected emulator.