V.E.L.O.C.I.T.Y.-OS, a bare-metal operating system described by its developer in a multi-part series, expands its multitasking and update capabilities while pursuing self-evolution. In the swarms update (Part 11), the system introduces a Nexus Core Swarm Runtime to run background compilation and model inference concurrently with GUI rendering. The runtime spawns sandboxed “agents” under a cooperative scheduler and uses lock-free shared-memory message rings with Merkle-hash validation on write and read. The same release also describes a headless “Beacon” streaming protocol that divides the display into an 80×50 grid, computes per-cell signatures each tick, and streams RLE delta frames at 30+ FPS over serial or Ethernet; it also injects remote keyboard and mouse events into the kernel input queues. For reliability, the OS implements zero-downtime OTA hot-patching for kernel drivers using cryptographic signature verification, atomic compare-and-swap pointer swapping, and Read-Copy-Update (RCU) reclamation after CPU quiescent ticks. In the self-evolution update (Part 12), the developer claims a telemetry-driven loop that uses CPU cycle counters and page-fault signals to prompt a local Qwen-Coder analyzer to generate optimized AST candidates, which are sandboxed and hot-swapped into the running kernel.