Skip to Content
DocsPlaygroundRecipesOverview

Playground · recipes

Streaming intelligence recipes

Short, focused guides for common streaming intelligence patterns. Each recipe solves one problem with an interactive demo running real winkComposer nodes in your browser.

Change detection

Which approach fits depends on the signal. Gradual drift needs evidence accumulation — patience. Sudden shifts need immediate detection — speed. Subtle shifts need pattern recognition — sensitivity. Some real systems need all three.

Model-vs-reality diagnostics

When a sensor reports what it sees but cannot see everything, the model-vs-reality gap becomes the diagnostic signal.

Signal quality

Sometimes the problem is not that the signal changed — it is that it stopped changing. A frozen sensor reports stale data that looks perfectly valid to every other check.

Subsampling & compression

The opposite of detection: deciding which samples are not worth keeping. A high-rate sensor stream is mostly redundant — the trick is identifying the informative samples and dropping the rest without losing what matters. Read the deadband recipe first for the adaptive-gate pattern; the trajectory-aware recipe then adds a Kalman predictor and boundary anchoring for when reconstruction quality matters.

Last updated on