muster-workspace 0.3.1

A terminal workspace for running CLI agents and dev processes side by side
Documentation
1
2
3
4
5
6
7
8
9
/// Whether a process came from workspace configuration or the live TUI.
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)]
pub enum ProcessOrigin {
    /// A persistent process declared in `muster.yml`.
    #[default]
    Configured,
    /// A durable runtime agent session managed outside `muster.yml`.
    Session,
}