Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2026-08-30

### Added
- **`ctl` control plane (C1) — opt-in.** amux can now host a *controllable*
hierarchy of agents. Launch with `amux --allow-ctl [--max-depth <N>] …` and
amux binds a per-process control channel (a Windows **named pipe** / unix
**socket**, zero third-party deps), injecting its address (`AMUX_CTL`) and each
pane's id (`AMUX_PANE`) into every pane it spawns. From inside a pane:
- `amux ctl spawn [--role R] -- <cmd>` opens a **visible** new worker pane
(returns its agent id + session id as JSON);
- `amux ctl list` returns the spawn tree (id, parent, role, depth, live
`agsess` status) as JSON.
The channel is drained non-blocking from the run loop (no thread). **Off by
default:** without `--allow-ctl` there is no pipe, `amux ctl` refuses, and
behavior is identical to before.
- **Spawn-tree safety guards.** `ctl spawn` accepts only commands on the agent
allowlist (`{claude}`, extensible per-session via `AMUX_CTL_ALLOW`), and a
`--max-depth` ceiling (default 6, `0` = unlimited) bounds *recursion* — never
fleet width — as a fork-bomb circuit-breaker. Every worker is a normal pane:
visible in the bar, killable, in the org chart.

_Not yet: `ctl send` / `status` / `kill`, identity delegation, `--here` splits
(they arrive in C2–C3)._

## [0.6.1] - 2026-08-29

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amux"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
rust-version = "1.70"
description = "tmux for agents: a multi-agent terminal that hosts your own CLIs in switchable panes with agent-aware chrome. 100% nativelite - zero third-party dependencies."
Expand Down
Loading
Loading