mobilevc-installer

Solid

Install and start MobileVC — a Claude Code mobile workspace launcher that lets the user run Claude Code on a phone (iOS / Android) with their dev machine as the backend. Use this skill when the user asks to: - "install mobilevc" / "set up mobilevc" / "装一个 mobilevc" - "在手机上用 Claude Code" / "want to use Claude Code on my phone" - "把 Claude Code 装到手机" / "mobile claude code" - "扫码连手机" 这类与 mobilevc 关联的请求 This skill installs the published npm package `@justprove/mobilevc`, runs `mobilevc start` (which prints a LAN QR code), and points the user to https://www.mobilevc.top to install the iOS / Android client. iOS installs through the TestFlight link on the homepage; Android installs through the APK download link. Skip if the user asks to MODIFY MobileVC source code or rebuild it from scratch — this skill is a launcher, not a dev environment bootstrapper.

Code & Development 191 stars 24 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
76
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# mobilevc-installer Install and run MobileVC for the user. The user's dev machine becomes the Claude Code backend; the phone runs the official client app and connects to it over LAN or through the public Relay flow. GitHub: https://github.com/JayCRL/MobileVC npm: https://www.npmjs.com/package/@justprove/mobilevc ## What you do Run these steps in order. Stop and report to the user as soon as anything fails. ### Step 1 — Preflight Before installing, check the environment. Run these commands and confirm: ```bash node --version # require >= 18.0.0 npm --version ``` If `node` is missing or older than 18, STOP and tell the user how to install Node.js (`brew install node`, `nvm install 20`, or https://nodejs.org). Do NOT proceed. ### Step 2 — Install the npm package Try the global install first: ```bash npm install -g @justprove/mobilevc ``` If it fails with `EACCES` or permission errors, do NOT use `sudo`. Instead suggest one of: - `npm config set prefix ~/.npm-global && export PATH=~/.npm-global/bin:$PATH` then re-run install - `nvm use <version>` if the user has nvm - `npm install --prefix ~/.local @justprove/mobilevc` and add `~/.local/bin` to PATH Verify: ```bash mobilevc --help ``` ### Step 3 — First-run setup (interactive) Tell the user that `mobilevc start` will ask three questions on first run: 1. **Language** — `zh` or `en` 2. **Port** — default `8001`. Pick something else if 8001 is busy. 3. **Auth token** — any string the user wants. The phone cl...

Details

Author
JayCRL
Repository
JayCRL/MobileVC
Created
2 months ago
Last Updated
2 days ago
Language
Go
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category