You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: registry/coder/modules/mux/README.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,23 +2,25 @@
2
2
display_name: mux
3
3
description: Coding Agent Multiplexer - Run multiple AI agents in parallel
4
4
icon: ../../../../.icons/mux.svg
5
-
verified: false
5
+
verified: true
6
6
tags: [ai, agents, development, multiplexer]
7
7
---
8
8
9
9
# mux
10
10
11
-
Automatically install and run mux in a Coder workspace. By default, the module installs `mux@next` from npm (with a fallback to downloading the npm tarball if npm is unavailable). mux is a desktop application for parallel agentic development that enables developers to run multiple AI agents simultaneously across isolated workspaces.
11
+
Automatically install and run [mux](https://github.com/coder/mux) in a Coder workspace. By default, the module installs `mux@next` from npm (with a fallback to downloading the npm tarball if npm is unavailable). mux is a desktop application for parallel agentic development that enables developers to run multiple AI agents simultaneously across isolated workspaces.
12
12
13
13
```tf
14
14
module "mux" {
15
15
count = data.coder_workspace.me.start_count
16
16
source = "registry.coder.com/coder/mux/coder"
17
-
version = "1.0.2"
17
+
version = "1.0.3"
18
18
agent_id = coder_agent.main.id
19
19
}
20
20
```
21
21
22
+

23
+
22
24
## Features
23
25
24
26
-**Parallel Agent Execution**: Run multiple AI agents simultaneously on different tasks
@@ -35,7 +37,7 @@ module "mux" {
35
37
module "mux" {
36
38
count = data.coder_workspace.me.start_count
37
39
source = "registry.coder.com/coder/mux/coder"
38
-
version = "1.0.2"
40
+
version = "1.0.3"
39
41
agent_id = coder_agent.main.id
40
42
}
41
43
```
@@ -46,7 +48,7 @@ module "mux" {
46
48
module "mux" {
47
49
count = data.coder_workspace.me.start_count
48
50
source = "registry.coder.com/coder/mux/coder"
49
-
version = "1.0.2"
51
+
version = "1.0.3"
50
52
agent_id = coder_agent.main.id
51
53
# Default is "latest"; set to a specific version to pin
52
54
install_version = "0.4.0"
@@ -59,7 +61,7 @@ module "mux" {
59
61
module "mux" {
60
62
count = data.coder_workspace.me.start_count
61
63
source = "registry.coder.com/coder/mux/coder"
62
-
version = "1.0.2"
64
+
version = "1.0.3"
63
65
agent_id = coder_agent.main.id
64
66
port = 8080
65
67
}
@@ -73,7 +75,7 @@ Run an existing copy of mux if found, otherwise install from npm:
73
75
module "mux" {
74
76
count = data.coder_workspace.me.start_count
75
77
source = "registry.coder.com/coder/mux/coder"
76
-
version = "1.0.2"
78
+
version = "1.0.3"
77
79
agent_id = coder_agent.main.id
78
80
use_cached = true
79
81
}
@@ -87,7 +89,7 @@ Run without installing from the network (requires mux to be pre-installed):
0 commit comments