Hacker News new | ask | show | jobs
Show HN: Vilano Runtime – a durable runtime for building agent systems (runtime.vilano.ai)
1 points by mcl0vinit 89 days ago
Vilano Runtime is a durable runtime for building agent systems.

It uses deterministic replay over durable state, with a BEAM-based kernel for coordination and durability and disposable TypeScript workers for execution.

The idea is:

  the code reruns
  the state does not
This 0.1 release is intentionally narrow: local-first, single-machine, Bun-first, and open source.

I’d especially love feedback on the execution model, durability semantics, and where this should go next.

GitHub: https://github.com/vilano-ai/runtime Install: https://runtime.vilano.ai

1 comments

A bit more context on the design:

The main thing I wanted was a stronger execution model than scripts + retries.

In Vilano Runtime, the kernel owns durable truth and coordination: waits, timers, retries, service inbox state, supervision, and replay state. Workers are disposable and rerun orchestration code from the top, resolving durable operations through the kernel.

That split is what lets workflows and long-lived keyed services recover cleanly across failure and restart.