feat: dynamic classifier classes, per-node UI, XSS fix, RSSI fix#328
Open
taylorjdawson wants to merge 1 commit intoruvnet:mainfrom
Open
feat: dynamic classifier classes, per-node UI, XSS fix, RSSI fix#328taylorjdawson wants to merge 1 commit intoruvnet:mainfrom
taylorjdawson wants to merge 1 commit intoruvnet:mainfrom
Conversation
Complements ruvnet#326 (per-node state pipeline) with additional features: - Dynamic adaptive classifier: discover activity classes from training data filenames instead of hardcoded array. Users add classes via filename convention (train_<class>_<desc>.jsonl), no code changes. - Per-node UI cards: SensingTab shows individual node status with color-coded markers, RSSI, variance, and classification per node. - Colored node markers in 3D gaussian splat view (8-color palette). - Per-node RSSI history tracking in sensing service. - XSS fix: UI uses createElement/textContent instead of innerHTML. - RSSI sign fix: ensure dBm values are always negative. - GET /api/v1/nodes endpoint for per-node health monitoring. - node_features field in WebSocket SensingUpdate messages. - Firmware watchdog fix: yield after every frame to prevent IDLE1 starvation. Addresses ruvnet#237, ruvnet#276, ruvnet#282 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Mar 28, 2026
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #326 (per-node state pipeline) — adds the UI, classifier, and security improvements that complement the server-side per-node tracking.
train_<class>_<desc>.jsonl) — no code changes needed to add new classescreateElement/textContentinstead ofinnerHTMLwith server datasaturating_neg()ensures dBm values are always negativeGET /api/v1/nodesendpoint: per-node health monitoring REST APInode_featuresWebSocket field: per-node breakdown inSensingUpdatemessagesContext
PR #289 was opened on March 22 with a comprehensive per-node CSI separation implementation. PR #326 merged on March 27 covering the core
HashMap<u8, NodeState>tracking. This PR extracts the remaining features from #289 that #326 did not include, rebased cleanly on top of currentmain.Addresses #237, #276, #282
Test plan
cargo check -p wifi-densepose-sensing-servercompiles cleanlytrain_cooking_kitchen.jsonl, train → model includes "cooking" class/api/v1/nodesreturns per-node health JSON<script>tags render as text, not HTML🤖 Generated with Claude Code