A monorepo of Mobilerun agent skills and OpenClaw plugins.
Control real Android and iOS phones through the Mobilerun API -- tap, swipe, type, take screenshots, read the UI tree, and manage apps.
Install via the skills CLI:
npx skills add droidrun/skills --skill mobilerun-cloudInstall via npm (as OpenClaw plugin):
openclaw plugins install @mobilerun/openclaw-mobilerunOr download the skill directly: mobilerun-cloud.skill
- Create an account at cloud.mobilerun.ai
- Get an API key from cloud.mobilerun.ai/api-keys
- Give the API key to your agent
Portable Android and iOS device-control harness for agents using mobilerun-core — local ADB/Portal/Simulator control and Mobilerun cloud devices.
This directory is a mirror of droidrun/mobile-harness, refreshed by the sync workflow. Contribute changes in the source repository.
Install via the skills CLI:
npx skills add droidrun/skills --skill mobile-harnessOr download the skill directly: mobile-harness.skill
- Create a new directory at the root (e.g.
my-skill/) - Add a
SKILL.mdwith YAML frontmatter (nameanddescriptionrequired) - Add any reference files the skill needs
The packaging workflow will automatically detect any directory with a SKILL.md and build a .skill file for it.
The .skill zip files are built automatically on every push to master and attached to the latest GitHub Release.
├── README.md
├── .github/workflows/ # auto-packaging + mobile-harness sync
├── mobilerun-cloud/
│ ├── SKILL.md
│ └── references/
├── mobile-harness/ # mirror of droidrun/mobile-harness
│ ├── SKILL.md
│ ├── AGENTS.md
│ └── ...