Install
openclaw skills install moltbot-adsb-overheadNotify when aircraft are overhead within a configurable radius using a local ADS-B SBS/BaseStation feed (readsb port 30003). Use when setting up or troubleshooting plane-overhead alerts, configuring radius/home coordinates/cooldowns, or creating a Clawdbot cron watcher that sends WhatsApp notifications for nearby aircraft.
openclaw skills install moltbot-adsb-overheadDetect aircraft overhead (within a radius) from a local readsb SBS/BaseStation TCP feed and notify via Clawdbot messaging.
This skill is designed for a periodic checker (cron) rather than a long-running daemon.
python3 skills/public/adsb-overhead/scripts/sbs_overhead_check.py \
--host <SBS_HOST> --port 30003 \
--home-lat <LAT> --home-lon <LON> \
--radius-km 2 \
--listen-seconds 5 \
--cooldown-min 15
--listen-seconds.--home-lat/--home-lon (Haversine).--radius-km only if not alerted within --cooldown-min.~/.clawdbot/adsb-overhead/state.json).SBS parsing assumptions are documented in: references/sbs-fields.md.
Use a Clawdbot cron job to run periodically. The cron job should:
exec the scriptmessage.send it via WhatsAppPseudocode for the agent:
python3 .../sbs_overhead_check.py ...Suggested polling intervals:
--listen-seconds 3..8 so each run can gather a few position frames--radius-km if you want fewer misses.--listen-seconds if your feed is busy but you’re missing position updates.--cooldown-min to prevent spam (15–60 minutes recommended).