skills$openclaw/radio-copilot
davestarling2.6k

by davestarling

radio-copilot – OpenClaw Skill

radio-copilot is an OpenClaw Skills integration for coding workflows. Predict satellite passes (NOAA APT, METEOR LRPT, ISS) for a configured latitude/longitude and send WhatsApp alerts with manual dish alignment info (AOS/LOS azimuth+elevation, track direction, inclination). Use when setting up or operating a zero-AI pass scheduler/orchestrator for SDR satellite reception, including configuring NORAD IDs, minimum elevation, alert lead time, and optional remote capture/decode hooks (Pi RTL-SDR capture + Jetson SatDump decode).

2.6k stars6.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameradio-copilot
descriptionPredict satellite passes (NOAA APT, METEOR LRPT, ISS) for a configured latitude/longitude and send WhatsApp alerts with manual dish alignment info (AOS/LOS azimuth+elevation, track direction, inclination). Use when setting up or operating a zero-AI pass scheduler/orchestrator for SDR satellite reception, including configuring NORAD IDs, minimum elevation, alert lead time, and optional remote capture/decode hooks (Pi RTL-SDR capture + Jetson SatDump decode). OpenClaw Skills integration.
ownerdavestarling
repositorydavestarling/satellite-copilot
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @davestarling/satellite-copilot
last updatedFeb 7, 2026

Maintainer

davestarling

davestarling

Maintains radio-copilot in the OpenClaw Skills directory.

View GitHub profile
File Explorer
8 files
.
scripts
orchestrator.py
8.3 KB
pass_predictor.mjs
4.8 KB
radio_scheduler.py
6.2 KB
_meta.json
292 B
config.example.json
2.0 KB
README.md
2.2 KB
SKILL.md
1.3 KB
SKILL.md

name: radio-copilot description: Predict satellite passes (NOAA APT, METEOR LRPT, ISS) for a configured latitude/longitude and send WhatsApp alerts with manual dish alignment info (AOS/LOS azimuth+elevation, track direction, inclination). Use when setting up or operating a zero-AI pass scheduler/orchestrator for SDR satellite reception, including configuring NORAD IDs, minimum elevation, alert lead time, and optional remote capture/decode hooks (Pi RTL-SDR capture + Jetson SatDump decode).

radio-copilot

Plan and alert on satellite passes for SDR reception.

Quick start

  1. Copy the example config:
mkdir -p ~/.clawdbot/radio-copilot
cp config.example.json ~/.clawdbot/radio-copilot/config.json
chmod 600 ~/.clawdbot/radio-copilot/config.json
  1. Run the orchestrator once:
python3 scripts/orchestrator.py
  1. Run periodically (system cron):
*/5 * * * * /usr/bin/python3 /path/to/radio-copilot/scripts/orchestrator.py >> ~/.clawdbot/radio-copilot/orchestrator.log 2>&1

What it sends

Alerts include:

  • pass start/max/end timestamps
  • AOS (start) azimuth/elevation
  • LOS (end) azimuth/elevation
  • track direction (AOS→LOS compass)
  • orbit inclination

Notes

  • Runtime is zero-AI by default.
  • Capture/decode hooks are included but disabled until you configure your Pi/Jetson commands.
README.md

radio-copilot (Moltbot/Clawdbot add-on)

A zero-AI satellite pass planner + orchestrator that can:

  • predict upcoming satellite passes over a given lat/lon (NORAD + TLE)
  • notify you on WhatsApp with manual dish alignment info (AOS/LOS az+el, track direction, inclination)
  • (optional) trigger remote capture on a Raspberry Pi and remote decode on a Jetson (disabled by default)

This repo is the skeleton/orchestration layer. It’s designed to be safe and production-friendly: nothing transmits or captures unless you enable it.

Example alert

Example WhatsApp pass alert

What you need

  • Node.js (for pass prediction)
  • Python 3 (for the orchestrator)
  • A Moltbot/Clawdbot instance configured for WhatsApp notifications

Optional (when you’re ready to automate captures):

  • Raspberry Pi with RTL-SDR dongle (USB)
  • Jetson (or any Linux host) to run SatDump decode jobs

Data flow

  1. Pass prediction
  • scripts/pass_predictor.mjs fetches a TLE for a satellite by NORAD ID and predicts passes above a minimum elevation.
  • Output includes:
    • start/max/end times
    • AOS/LOS azimuth/elevation (for manual pointing)
    • a simple compass track direction (AOS→LOS)
  1. Orchestrator
  • scripts/orchestrator.py reads config, calls the predictor, dedupes alerts, and sends a WhatsApp message before the pass.
  • It can also (optionally) run capture and decode hooks (disabled by default).
  1. State + run folders
  • State is persisted so you don’t get spammy repeats.
  • Run folders are created per pass under ~/.clawdbot/radio-copilot/runs/… (for future capture/decode artifacts).

Configuration

Copy the example config:

mkdir -p ~/.clawdbot/radio-copilot
cp config.example.json ~/.clawdbot/radio-copilot/config.json
chmod 600 ~/.clawdbot/radio-copilot/config.json

Edit ~/.clawdbot/radio-copilot/config.json:

  • observer.lat / observer.lon
  • satellites[] NORAD IDs (e.g. NOAA 19 = 33591)
  • schedule:
    • alertLeadMinutes
    • minRepeatMinutes (anti-spam backstop)

Install & run (system cron)

Run every 5 minutes:

*/5 * * * * /usr/bin/python3 /path/to/radio-copilot/scripts/orchestrator.py \
  >> ~/.clawdbot/radio-copilot/orchestrator.log 2>&1

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install radio-copilot?

Run openclaw add @davestarling/satellite-copilot in your terminal. This installs radio-copilot into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/davestarling/satellite-copilot. Review commits and README documentation before installing.