Skip to content

Commit 7de72fc

Browse files
authored
feat(mux): add GitHub link, set verified, bump to v1.0.3 (#572)
1 parent 3e1ddbf commit 7de72fc

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed
249 KB
Loading

registry/coder/modules/mux/README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,25 @@
22
display_name: mux
33
description: Coding Agent Multiplexer - Run multiple AI agents in parallel
44
icon: ../../../../.icons/mux.svg
5-
verified: false
5+
verified: true
66
tags: [ai, agents, development, multiplexer]
77
---
88

99
# mux
1010

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.
1212

1313
```tf
1414
module "mux" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/mux/coder"
17-
version = "1.0.2"
17+
version = "1.0.3"
1818
agent_id = coder_agent.main.id
1919
}
2020
```
2121

22+
![mux](.images/product-hero.webp)
23+
2224
## Features
2325

2426
- **Parallel Agent Execution**: Run multiple AI agents simultaneously on different tasks
@@ -35,7 +37,7 @@ module "mux" {
3537
module "mux" {
3638
count = data.coder_workspace.me.start_count
3739
source = "registry.coder.com/coder/mux/coder"
38-
version = "1.0.2"
40+
version = "1.0.3"
3941
agent_id = coder_agent.main.id
4042
}
4143
```
@@ -46,7 +48,7 @@ module "mux" {
4648
module "mux" {
4749
count = data.coder_workspace.me.start_count
4850
source = "registry.coder.com/coder/mux/coder"
49-
version = "1.0.2"
51+
version = "1.0.3"
5052
agent_id = coder_agent.main.id
5153
# Default is "latest"; set to a specific version to pin
5254
install_version = "0.4.0"
@@ -59,7 +61,7 @@ module "mux" {
5961
module "mux" {
6062
count = data.coder_workspace.me.start_count
6163
source = "registry.coder.com/coder/mux/coder"
62-
version = "1.0.2"
64+
version = "1.0.3"
6365
agent_id = coder_agent.main.id
6466
port = 8080
6567
}
@@ -73,7 +75,7 @@ Run an existing copy of mux if found, otherwise install from npm:
7375
module "mux" {
7476
count = data.coder_workspace.me.start_count
7577
source = "registry.coder.com/coder/mux/coder"
76-
version = "1.0.2"
78+
version = "1.0.3"
7779
agent_id = coder_agent.main.id
7880
use_cached = true
7981
}
@@ -87,7 +89,7 @@ Run without installing from the network (requires mux to be pre-installed):
8789
module "mux" {
8890
count = data.coder_workspace.me.start_count
8991
source = "registry.coder.com/coder/mux/coder"
90-
version = "1.0.2"
92+
version = "1.0.3"
9193
agent_id = coder_agent.main.id
9294
install = false
9395
}

0 commit comments

Comments
 (0)