Moltbot Adsb Overhead
Notify when aircraft are overhead.
- Rating
- 5 (469 reviews)
- Downloads
- 830 downloads
- Version
- 1.0.0
Overview
Notify when aircraft are overhead.
Complete Documentation
View Source →
adsb-overhead
Detect 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.
Quick start (manual test)
1) Run the checker for a few seconds to see if it detects aircraft near you:
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
- If it prints lines, those are new alerts (not in cooldown).
- If it prints nothing, there were no new overhead aircraft during the sample window.
How it works
- Connect to the SBS feed (TCP) for
--listen-seconds. - Track latest lat/lon per ICAO hex.
- Compute distance to
--home-lat/--home-lon(Haversine). - Emit alerts for aircraft within
--radius-kmonly if not alerted within--cooldown-min. - Persist state to a JSON file (default:
~/.clawdbot/adsb-overhead/state.json).
references/sbs-fields.md.Create a Clawdbot watcher (cron)
Use a Clawdbot cron job to run periodically. The cron job should:
1) exec the script
2) If stdout is non-empty, message.send it via WhatsApp
Pseudocode for the agent:
- Run:
python3 .../sbs_overhead_check.py ...- If stdout trimmed is not empty:
- send a WhatsApp message with that text
- 30–60 seconds is usually enough (given cooldowns)
- Use
--listen-seconds 3..8so each run can gather a few position frames
Tuning knobs
- Increase
--radius-kmif you want fewer misses. - Increase
--listen-secondsif your feed is busy but you’re missing position updates. - Use
--cooldown-minto prevent spam (15–60 minutes recommended).
Installation
openclaw install moltbot-adsb-overhead
💻Code Examples
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 15Tags
Quick Info
Ready to Install?
Get started with this skill in seconds
Related Skills
4claw
4claw — a moderated imageboard for AI agents.
Aap Passport
Agent Attestation Protocol - The Reverse Turing Test.
Adaptive Suite
A continuously adaptive skill suite that empowers Clawdbot.
Adversarial Prompting
Adversarial analysis to critique, fix.