Earlier quoted context omitted.
Compression, encryption, auth: not immediately. What's the use case here? Multi-machine robots are _tricky_ to get right. Running remote controls and telemetry via the framework would be really cool, but is also tricky to tune (need really good qos controls), and needs some work to be exposed safely to the outside world. Proper schemas/API versioning: I'm not sure what you mean by "proper schemas", but schema/API ver…
Use case: Imagine a location with hundreds of autonomous mobile robots that want to share state and plans with each other to behave more optimally than if they only saw each other through their sensors. They also want to share state and telemetry with monitoring systems so that humans can maintain a fleet's healthiness and address issues proactively. After years of working with tens of thousands of deployed robots, o…
Message definitions: ros1msg does make this a little painful. Protobuf at least lets you have differing schema versions, and will do best effort to try and do forwards compatibility. The downside - this has bit me a few times in development where I've forgotten to restart a process - it will happily deserialize with the new fields being empty.