Helvesec Launches Rmux v0.2.0 as a Rust-Based Terminal Multiplexer for Agentic Workflows
Released on 18 May 2026, the public preview version targets developers seeking detachable, scriptable terminal environments across Linux, macOS, and Windows.
Helvesec has released version 0.2.0 of Rmux, a universal terminal multiplexer written in Rust. The software is positioned as a tool for the "agentic era," designed to support long-lived agents and headless command-line interface workflows. The release introduces a typed software development kit, a daemon-backed architecture, and native integration with the Ratatui terminal graphics library.
The multiplexer is compatible with Linux, macOS, and Windows. Notably, it provides native support for Windows Named Pipes without requiring the Windows Subsystem for Linux. The current release implements all 90 tmux-compatible commands, aiming to provide a familiar interface while exploring use cases such as terminal inspection, scripting, and orchestration that the developer considers partially unexplored by existing tools.
Rmux was developed to address a specific operational need: running long-lived agents over secure shell connections without losing terminal sessions. The software allows users to detach, script, and inspect these sessions. It supports persistent sessions and structured snapshots, enabling agents, headless workflows, and human users to drive terminal applications from code or reconnect to them later.
The architecture features three public surfaces that share a single local protocol: the rmux command-line interface, the rmux-sdk Rust crate, and the ratatui-rmux widget. This design ensures that any action performed on one surface can be replicated on the others. The project is open source and hosted on GitHub under the repository Helvesec/rmux.
Security and stability measures include the use of the #![forbid(unsafe_code)] attribute in upper-level crates, with operating system and terminal boundary code isolated in lower-level runtime crates. Configuration files are read from standard system and user locations on Linux and macOS, with specific paths defined for Windows.
Direct downloads and SHA256 checksums are available from the GitHub Release page. Comprehensive documentation, including installation guides, command-line references, SDK examples, and API documentation, is hosted at rmux.io/docs. The project is currently in a public preview stage, and the developer has noted that bugs are expected during this phase.


