— WV-OS · v4.2
A modular autonomy runtime. Bring your airframe, sensors, and mission requirements — we provide the brains.

WV-OS runs as a containerized service on the flight computer, exposing a stable C++ and Python API to your existing flight stack. Mission modules deploy over the air, signed and verified.
— SAMPLE INTEGRATION
from wv_os import Aircraft, Mission, Perception
drone = Aircraft.connect("udp://192.168.1.42:14550")
drone.load(Perception.from_pretrained("wv-vision-l"))
with Mission("recon-grid-7") as m:
m.search(area="kml://target.kml", classes=["vehicle", "person"])
m.report(channel="ops")
m.return_to_base(on="low_battery | mission_complete")
drone.execute(m)