Claude-skill-registry dev-desktop-sandbox
Run isolated mux desktop (Electron) instances (temp MUX_ROOT + free ports)
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/dev-desktop-sandbox" ~/.claude/skills/majiayu000-claude-skill-registry-dev-desktop-sandbox && rm -rf "$T"
manifest:
skills/data/dev-desktop-sandbox/SKILL.mdsource content
Desktop (Electron) sandbox instances
make dev + make start (Electron) uses MUX_ROOT for persisted state (config, sessions, worktrees, etc.). Running multiple Electron instances against the same mux root is noisy and risky during development.
This skill documents the repo workflow for starting multiple desktop dev instances in parallel (including from different git worktrees) by giving each instance its own temporary
MUX_ROOT.
Quick start
make dev-desktop-sandbox
What it does
- Creates a fresh temporary
directoryMUX_ROOT - Copies these files into the sandbox if present:
(provider config)providers.jsonc
(project list)config.json
- Picks free ports:
- Vite devserver port (used by the renderer)
- Electron remote debugging port (optional)
- Runs
with:make devMUX_ROOT=<temp>MUX_VITE_PORT=<free-port>
- Waits for Vite to be reachable, then runs
(Electron expectsmake build-static
)dist/splash.html - Launches Electron (
) with:bunx electron .MUX_ROOT=<temp>MUX_DEVSERVER_HOST=127.0.0.1MUX_DEVSERVER_PORT=<vite-port>
by default (avoidsMUX_SERVER_PORT=0
if yourEADDRINUSE
pinsconfig.json
)apiServerPort
(so you can run alongside another dev instance)CMUX_ALLOW_MULTIPLE_INSTANCES=1
Options
# Use a specific root to seed from (defaults to $MUX_ROOT then ~/.mux-dev then ~/.mux) SEED_MUX_ROOT=~/.mux-dev make dev-desktop-sandbox # Keep the sandbox root directory after exit (useful for debugging) KEEP_SANDBOX=1 make dev-desktop-sandbox # Pin Vite port VITE_PORT=5174 make dev-desktop-sandbox # Control how long we wait for Vite to come up (ms) VITE_READY_TIMEOUT_MS=120000 make dev-desktop-sandbox # Enable/pin Electron remote debugging port (defaults to an auto-picked free port) ELECTRON_DEBUG_PORT=9223 make dev-desktop-sandbox # Disable Electron remote debugging entirely ELECTRON_DEBUG_PORT=0 make dev-desktop-sandbox # Override the internal API server port (defaults to 0/random for sandboxes) MUX_SERVER_PORT=3772 make dev-desktop-sandbox # Override which make binary to use MAKE=gmake make dev-desktop-sandbox
Optional: deeper Electron isolation (MUX_E2E=1
)
MUX_E2E=1Even with a unique
MUX_ROOT, Electron's userData directory (localStorage, window state, single-instance lock, etc.) is not automatically relocated unless MUX_E2E=1 is set.
If you want full isolation (including
userData), run:
MUX_E2E=1 make dev-desktop-sandbox
Security notes
may contain API keys.providers.jsonc- The sandbox root directory is created on disk (usually under your system temp dir).
- This flow intentionally does not copy
.secrets.json