/android-build
Build the Rust libraries and install the APK to the connected Android device. Does NOT launch the app or monitor logs.
$ npx -y skills add tanlethanh/zedra --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/android-build
Context preview
What this command does when you run it.
Build the Rust libraries and install the APK to the connected Android device. Does NOT launch the app or monitor logs.
Command definition
android-build.mdBuild the Rust libraries and install the APK to the connected Android device. Does NOT launch the app or monitor logs.
If the user says "preview" or "preview mode", add `--features preview` to the cargo build command.
1. **Build** (arm64 only, fast incremental):
cargo ndk -t arm64-v8a -o ./android/app/libs build -p zedra --lib
For preview mode:
cargo ndk -t arm64-v8a -o ./android/app/libs build -p zedra --lib --features android-platform preview
2. **Install** (skip redundant Rust build):
cd android && ./gradlew installDebug -x buildRustLib && cd ..
Report success or failure. If the build fails, show the relevant compiler errors.
Release build
For release builds (all architectures, optimized), use the full build script instead of step 1:
./scripts/build-android.sh # normal mode ./scripts/build-android.sh --preview # preview mode
And remove `-x buildRustLib` from step 2.
An experimental remote code editor on mobile with GPU-accelerated rendering powered by Zed's GPUI, P2P tunnel over QUIC/UDP by Iroh.
Repo: tanlethanh/zedra
Other commands on zedra.
- /android-dev
Build, install, launch, and monitor the Android app.
Open command - /android-log
Clear logcat and stream filtered logs from the running Android app.
Open command - /devtool
Drive the Zedra Android UI from the agent via the in-app GPUI devtool HTTP server.
Open command - /ios-dev
Build, install, launch, and monitor the iOS app on a connected device.
Open command - /ios-log
Stream and analyze logs from a USB-connected iOS device running Zedra.
Open command - /perf-debug
Capture and analyze performance diagnostics from the running Android app.
Open command

