Every feature shipped, every fix deployed, every design decision made. We build in public because we believe the teams who trust us deserve to see the work.
One email per release. No marketing. Unsubscribe any time.
The full fleet management dashboard ships in this release. Realtime device telemetry via Server-Sent Events, 6 dashboard pages (Overview, Devices, Deployments, Events, Drift, Settings), JWT authentication, and the complete REST API backing it.
Statistical drift detection now runs on the device itself, not in the cloud. Kullback-Leibler divergence computed via a sliding circular buffer with integer arithmetic optimised for ARM Cortex-A class CPUs. Under 2ms per check on Jetson Nano.
Stage-based canary rollouts with per-hardware-class targeting. Define stages by device class (jetson_orin, jetson_nano, raspberry_pi5) not just percentage. Health gates block progression if accuracy drops more than a configurable delta.
mlops deploy v4.0 --stage 1:hw_class=jetson_orin,count=1 --health-gate accuracy_delta=-0.03Complete rewrite of the sync protocol from push-based to pull-based. The agent polls the control plane for desired state, reconciles idempotently, and buffers telemetry locally during outages. Binary delta compression reduces model update transfer size by 95.7% on typical version-to-version updates.
Systematic binary size reduction to make the agent viable on constrained devices. 84.3% reduction from initial build to production binary.
-ldflags="-s -w" — strip debug symbols and DWARF info (−12MB)--best --lzma compression — 50ms startup overhead, acceptable for long-running agent (−14MB)First working version of the mlops-agent. Single binary, installs with one curl command, reports heartbeat to control plane, loads and runs ONNX models via ONNX Runtime.
curl -fsSL get.mlops.dev | sh