@ -30,9 +30,6 @@ No Makefile or build automation exists. Need a script for:
## Medium
## Medium
### Implement WebSocket backpressure
`bridge.rs` broadcast channel has capacity 256. Events are silently dropped when full. Should either increase capacity, add warning logging, or implement backpressure.
### Improve fallback JSON encoder
### Improve fallback JSON encoder
`rgl_framework.lua` fallback JSON decoder only handles flat `{"key":"value"}` — fails on nested objects, arrays, numbers, booleans. Since cjson is always expected to be present, consider making it a hard requirement instead of silently degrading.
`rgl_framework.lua` fallback JSON decoder only handles flat `{"key":"value"}` — fails on nested objects, arrays, numbers, booleans. Since cjson is always expected to be present, consider making it a hard requirement instead of silently degrading.
@ -63,9 +60,6 @@ No protection against API spam. Could add simple per-endpoint rate limits.
### Add request/response logging middleware
### Add request/response logging middleware
No HTTP access logging in Rust. Add optional access log for debugging API calls.
No HTTP access logging in Rust. Add optional access log for debugging API calls.
### Optimize broadcast channel capacity
Current 256 capacity is arbitrary. Profile actual event rates and set appropriately.
### Add module versioning
### Add module versioning
No way to track which version of a module is loaded. Could add `M.version` field and display in admin panel.
No way to track which version of a module is loaded. Could add `M.version` field and display in admin panel.