Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

mobilerun-official移动运行官方

Agent Skill

mobilerun-official 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,889

周安装

276

GitHub Stars

公开资料未说明

下载量

2,230
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mobilerun-official(移动运行官方)
来源仓库:https://github.com/pelae1/mobilerun-official
安装命令:
openclaw skills install mobilerun-official
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mobilerun-official

简介

让您的 OpenClaw 代理使用真实的 Android 手机执行各类操作。

  • 适用于需要物理设备支持的自动化测试或交互任务。
  • 支持点击、输入、截图及读取 UI 辅助树等核心功能。
  • 使用前请确认设备已正确连接并授予必要权限。
  • 操作过程中请注意避免误触关键应用或服务。mobilerun-official 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
mobilerun-official
description
>
metadata
{ "openclaw": { "emoji": "📱", "primaryEnv": "MOBILERUN_API_KEY" } }
tags
category
Device Control / Automation

Mobilerun

Control real Android phones through an API -- tap, swipe, type, take screenshots, read the UI tree, manage apps, and more.

Before You Start

Do NOT ask the user for an API key or to set up a device before checking. Always probe first:

  1. Resolve the API key:

- The key is provided via the MOBILERUN_API_KEY environment variable (set by OpenClaw during skill loading) - If the key is not available, ask the user to set it in their OpenClaw config or provide it when prompted

  1. Test the API key and check for devices in one call:

Call GET /devices with the user's key to check device availability: - 200 with a device in state: "ready" = good to go, skip all setup, just do what the user asked - 200 but no devices or all state: "disconnected" = device issue (see step 3) - 401 = key is bad, expired, or revoked -- ask the user to check their dashboard

  1. Only if no ready device: tell the user the device status and suggest a fix:

- No devices at all = user hasn't connected a phone yet, guide them to Portal APK (see setup.md) - Device with state: "disconnected" = Portal app lost connection, ask user to reopen it

  1. Confirm device is responsive (optional, only if first action fails):

Call GET /devices/{deviceId}/screenshot — if this returns a PNG image, the device is working.

Key principle: If the API key is set and a device is ready, go straight to executing the user's request. Don't walk them through setup they've already completed.

Quick Reference

GoalEndpoint
See the screenGET /devices/{id}/screenshot
Read UI elementsGET /devices/{id}/ui-state?filter=true
TapPOST /devices/{id}/tap -- {x, y}
SwipePOST /devices/{id}/swipe -- {startX, startY, endX, endY, duration}
Type textPOST /devices/{id}/keyboard -- {text, clear}
Press keyPUT /devices/{id}/keyboard -- {key} (Android keycode)
Go backPOST /devices/{id}/global -- {action: 1}
Go homePOST /devices/{id}/global -- {action: 2}
Open appPUT /devices/{id}/apps/{packageName}
List appsGET /devices/{id}/apps

All endpoints use base URL https://api.mobilerun.ai/v1 with the user's API key in the Authorization header (see setup.md for auth details).

Detailed Documentation

  • setup.md -- Authentication, API key setup, device connectivity, troubleshooting
  • phone-api.md -- Phone control API: screenshot, UI state, tap, swipe, type, app management
  • subscription.md -- Plans, pricing, credits, device types, and when to recommend upgrades

Common Patterns

Observe-Act Loop: Most phone control tasks follow this cycle:

  1. Take a screenshot and/or read the UI state
  2. Decide what action to perform
  3. Execute the action (tap, type, swipe, etc.)
  4. Observe again to verify the result
  5. Repeat

Finding tap coordinates: Use GET /devices/{id}/ui-state?filter=true to get the accessibility tree with element bounds, then calculate the center of the target element to get tap coordinates.

Typing into a field:

  1. Check phone_state.isEditable -- if false, tap the input field first
  2. Optionally clear existing text with clear: true
  3. Send the text via POST /devices/{id}/keyboard

Error Handling

ErrorLikely causeWhat to do
401Invalid or expired API keyAsk user to verify key in their Mobilerun dashboard
Empty device listNo device connectedGuide user to connect via Portal APK (see setup.md)
Device disconnectedPortal app closed or phone lost networkAsk user to check phone and reopen Portal
Billing/plan error on POST /devicesFree plan, cloud devices need subscriptionTell user to check plans in their dashboard (see subscription.md)
Action returns error on valid deviceDevice may be busy, locked, or unresponsiveTry taking a screenshot first to check state
403 with "limit reached"Plan limit hit (e.g. max concurrent devices)User needs to terminate a device or upgrade (see subscription.md)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.98%
按下载量换算1,895

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills