bonsai-bt v0.12.0 released: live visualizations for AI behavior trees
We've just shipped v0.12.0 of `bonsai-bt`, and the big addition this release is live visualizations in the browser — you can now watch the state of your behavior tree update in real time as it ticks, including which nodes are running, succeeding, or failing.
For anyone unfamiliar: behavior trees are a great way to build deterministic AI — they're widely used for things like robotics control loops, game NPCs, and any agent that needs predictable, debuggable decision-making. The new visualizer makes it a lot easier to actually see what your tree is doing and catch issues without sprinkling print statements everywhere.
The visualizer is gated behind a feature flag. Add it to your `Cargo.toml` like this:
```toml
[dependencies]
bonsai-bt = { version = "0.12.0", features = ["visualize"] }
```
For more, see repo: https://github.com/Sollimann/bonsai