moltbot-adsb-overhead

Moltbook
v1.0.0
Benign

Notify when aircraft are overhead.

11.5K downloads1.5K installsby @davestarling

Setup & Installation

Install command

clawhub install davestarling/moltbot-adsb-overhead

If the CLI is not installed:

Install command

npx clawhub@latest install davestarling/moltbot-adsb-overhead

Or install with OpenClaw CLI:

Install command

openclaw skills install davestarling/moltbot-adsb-overhead

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/davestarling/moltbot-adsb-overhead

What This Skill Does

Checks a local ADS-B SBS/BaseStation TCP feed for aircraft flying within a configurable radius of a home location. Runs as a periodic cron job rather than a daemon, persists cooldown state to avoid duplicate alerts, and sends notifications via WhatsApp through Clawdbot.

Running as a lightweight cron job instead of a persistent daemon means no process management overhead and trivial integration with any scheduler.

When to Use It

  • Get a WhatsApp ping when a plane flies over your house
  • Monitor aircraft near a specific GPS coordinate
  • Tune alert radius to catch low-altitude flights only
  • Suppress repeat alerts for the same aircraft with cooldowns
  • Debug a local readsb setup by testing live position detection
View original SKILL.md file
# 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:

```bash
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-km` **only if** not alerted within `--cooldown-min`.
- Persist state to a JSON file (default: `~/.clawdbot/adsb-overhead/state.json`).

SBS parsing assumptions are documented in: `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

Suggested polling intervals:
- 30–60 seconds is usually enough (given cooldowns)
- Use `--listen-seconds 3..8` so each run can gather a few position frames

## Tuning knobs

- Increase `--radius-km` if you want fewer misses.
- Increase `--listen-seconds` if your feed is busy but you’re missing position updates.
- Use `--cooldown-min` to prevent spam (15–60 minutes recommended).

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Get a WhatsApp ping when a plane flies over your house

AGENT
  1. 1Get a WhatsApp ping when a plane flies over your house
  2. 2Monitor aircraft near a specific GPS coordinate
  3. 3Tune alert radius to catch low-altitude flights only
  4. 4Suppress repeat alerts for the same aircraft with cooldowns
  5. 5Debug a local readsb setup by testing live position detection
OUTPUT
Notify when aircraft are overhead.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 25, 2026