dronemobile
Control vehicles via DroneMobile (Firstech/Compustar remote start systems). Use when the user asks to start their car, stop the engine, lock/unlock doors, open the trunk, check battery voltage, or get vehicle status. Triggers on phrases like "start my car", "remote start", "lock my car", "unlock the car", "check battery", "open trunk", "stop the engine", "vehicle status". Requires DRONEMOBILE_EMAIL and DRONEMOBILE_PASSWORD environment variables. Optionally DRONEMOBILE_DEVICE_KEY for multi-vehicle accounts.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/bryantegomoh/dronemobileDroneMobile Vehicle Control
Control any DroneMobile-connected vehicle via natural language.
Setup
Set credentials in OpenClaw env (openclaw.json → env):
"DRONEMOBILE_EMAIL": "[email protected]",
"DRONEMOBILE_PASSWORD": "yourpassword",
"DRONEMOBILE_DEVICE_KEY": "40632023374"
DRONEMOBILE_DEVICE_KEY is optional if you have one vehicle — the script auto-selects the first vehicle on the account.
Install the library if not present:
pip install drone-mobile --break-system-packages
Commands
Run scripts/dronemobile.py with the appropriate command:
| User asks | Command |
|---|---|
| Start / remote start | python3 scripts/dronemobile.py start |
| Stop engine | python3 scripts/dronemobile.py stop |
| Lock doors | python3 scripts/dronemobile.py lock |
| Unlock doors | python3 scripts/dronemobile.py unlock |
| Open trunk | python3 scripts/dronemobile.py trunk |
| Check battery / status | python3 scripts/dronemobile.py status |
Output
The script prints a one-line status with key telemetry:
✅ start | Temp: 6°C | Battery: 12.5V | Engine: off
On failure it prints the error and exits with code 1.
Notes
- Commands are fire-and-forget — the car executes asynchronously. Engine-on status may still show False immediately after start (takes ~30s).
- Battery below 11.8V = low; below 11.0V = critical.
drone-mobilePyPI package has a known bug whereresponse.successis always False. The script readsraw_data['command_success']directly. PR submitted: https://github.com/bjhiltbrand/drone_mobile_python/pull/18
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-bryantegomoh-dronemobile": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
gateway-watchdog
Production-grade bash watchdog for the OpenClaw gateway. Runs via launchd every 5 minutes. Handles boot grace periods, progressive retry with backoff, port-level fallback checks, stale PID detection, and restart cooldowns — preventing restart loops while keeping the gateway reliably alive.
crawlee-web-scraper
Resilient web scraper with bot-detection evasion using the Crawlee library. Use when web_fetch is blocked by rate limits or bot detection. Supports single URLs, bulk file input, and automatic fallback from requests to Crawlee on 403/429 responses.
content-security-filter
Prompt injection and malware detection filter for external content. Scans text, files, or URLs for 20+ attack patterns including instruction overrides, credential exfiltration, persona hijacking, encoded payloads, fake system messages, and invisible character injection. Returns JSON with risk level and sanitized text.