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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "cursor" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/cursor/coder"
version = "1.0.19"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
}
```

Expand Down
8 changes: 4 additions & 4 deletions cmd/readmevalidation/testSamples/sampleReadmeBody.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Run the [Goose](https://block.github.io/goose/) agent in your workspace to gener
module "goose" {
source = "registry.coder.com/coder/goose/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
folder = "/home/coder"
install_goose = true
goose_version = "v1.0.16"
Expand Down Expand Up @@ -40,7 +40,7 @@ module "coder-login" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.15"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
}

variable "anthropic_api_key" {
Expand Down Expand Up @@ -82,7 +82,7 @@ module "goose" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/goose/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
folder = "/home/coder"
install_goose = true
goose_version = "v1.0.16"
Expand Down Expand Up @@ -110,7 +110,7 @@ Run Goose as a standalone app in your workspace. This will install Goose and run
module "goose" {
source = "registry.coder.com/coder/goose/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
folder = "/home/coder"
install_goose = true
goose_version = "v1.0.16"
Expand Down
6 changes: 3 additions & 3 deletions examples/modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module "MODULE_NAME" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
extensions = [
"dracula-theme.theme-dracula"
]
Expand All @@ -49,7 +49,7 @@ module "MODULE_NAME" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
extensions = ["dracula-theme.theme-dracula"]
settings = {
"workbench.colorTheme" = "Dracula"
Expand All @@ -65,7 +65,7 @@ Run code-server in the background, don't fetch it from GitHub:
module "MODULE_NAME" {
source = "registry.coder.com/NAMESPACE/MODULE_NAME/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
offline = true
}
```
4 changes: 2 additions & 2 deletions registry/AJ0070/modules/pgadmin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ It can be served on a Coder subdomain for easy access, or on `localhost` if you
module "pgadmin" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/AJ0070/pgadmin/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
version = "1.0.1"
agent_id = coder_agent.main.id
}
```
8 changes: 4 additions & 4 deletions registry/BenraouaneSoufiane/modules/rustdesk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Launches RustDesk within your workspace with a virtual display to provide remote
module "rustdesk" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/BenraouaneSoufiane/rustdesk/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
version = "1.0.1"
agent_id = coder_agent.main.id
}
```

Expand All @@ -41,8 +41,8 @@ module "rustdesk" {
module "rustdesk" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/BenraouaneSoufiane/rustdesk/coder"
version = "1.0.0"
agent_id = coder_agent.example.id
version = "1.0.1"
agent_id = coder_agent.main.id
rustdesk_password = "mycustompass"
xvfb_resolution = "1920x1080x24"
rustdesk_version = "1.4.1"
Expand Down
10 changes: 5 additions & 5 deletions registry/anomaly/modules/tmux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ up a default or custom tmux configuration with session save/restore capabilities
```tf
module "tmux" {
source = "registry.coder.com/anomaly/tmux/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
version = "1.0.2"
agent_id = coder_agent.main.id
}
```

Expand All @@ -39,8 +39,8 @@ module "tmux" {
```tf
module "tmux" {
source = "registry.coder.com/anomaly/tmux/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
version = "1.0.2"
agent_id = coder_agent.main.id
tmux_config = "" # Optional: custom tmux.conf content
save_interval = 1 # Optional: save interval in minutes
sessions = ["default", "dev", "ops"] # Optional: list of tmux sessions
Expand Down Expand Up @@ -78,7 +78,7 @@ This module can provision multiple tmux sessions, each as a separate app in the
```tf
module "tmux" {
source = "registry.coder.com/anomaly/tmux/coder"
version = "1.0.1"
version = "1.0.2"
agent_id = var.agent_id
sessions = ["default", "dev", "anomaly"]
tmux_config = <<-EOT
Expand Down
20 changes: 10 additions & 10 deletions registry/coder-labs/modules/archive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ This module installs small, robust scripts in your workspace to create and extra
module "archive" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/archive/coder"
version = "0.0.1"
agent_id = coder_agent.example.id
version = "0.0.2"
agent_id = coder_agent.main.id

paths = ["./projects", "./code"]
}
Expand Down Expand Up @@ -43,8 +43,8 @@ Basic example:
module "archive" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/archive/coder"
version = "0.0.1"
agent_id = coder_agent.example.id
version = "0.0.2"
agent_id = coder_agent.main.id

# Paths to include in the archive (files or directories).
directory = "~"
Expand All @@ -61,8 +61,8 @@ Customize compression and output:
module "archive" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/archive/coder"
version = "0.0.1"
agent_id = coder_agent.example.id
version = "0.0.2"
agent_id = coder_agent.main.id

directory = "/"
paths = ["/etc", "/home"]
Expand All @@ -78,8 +78,8 @@ Enable auto-archive on stop:
module "archive" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/archive/coder"
version = "0.0.1"
agent_id = coder_agent.example.id
version = "0.0.2"
agent_id = coder_agent.main.id

# Creates /tmp/coder-archive.tar.gz of the users home directory (defaults).
create_on_stop = true
Expand All @@ -92,8 +92,8 @@ Extract on start:
module "archive" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/archive/coder"
version = "0.0.1"
agent_id = coder_agent.example.id
version = "0.0.2"
agent_id = coder_agent.main.id

# Where to look for the archive file to extract:
output_dir = "/tmp"
Expand Down
16 changes: 9 additions & 7 deletions registry/coder-labs/modules/auggie/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Run Auggie CLI in your workspace to access Augment's AI coding assistant with ad
```tf
module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
agent_id = coder_agent.example.id
version = "0.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
```
Expand Down Expand Up @@ -42,13 +42,13 @@ module "coder-login" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
}

module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
agent_id = coder_agent.example.id
version = "0.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"

# Authentication
Expand All @@ -74,6 +74,7 @@ EOF # Required for tasks
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/home/coder/project"]
}

}
}
EOF
Expand Down Expand Up @@ -103,8 +104,8 @@ EOF
```tf
module "auggie" {
source = "registry.coder.com/coder-labs/auggie/coder"
version = "0.2.1"
agent_id = coder_agent.example.id
version = "0.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"

# Multiple MCP configuration files
Expand All @@ -127,6 +128,7 @@ module "auggie" {
],
"timeout": 600
}

}
}
EOF
Expand Down
16 changes: 8 additions & 8 deletions registry/coder-labs/modules/codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Run Codex CLI in your workspace to access OpenAI's models through the Codex inte
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "3.1.0"
agent_id = coder_agent.example.id
version = "3.1.1"
agent_id = coder_agent.main.id
openai_api_key = var.openai_api_key
workdir = "/home/coder/project"
}
Expand All @@ -33,8 +33,8 @@ module "codex" {
module "codex" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder-labs/codex/coder"
version = "3.1.0"
agent_id = coder_agent.example.id
version = "3.1.1"
agent_id = coder_agent.main.id
openai_api_key = "..."
workdir = "/home/coder/project"
report_tasks = false
Expand All @@ -56,13 +56,13 @@ module "coder-login" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/coder-login/coder"
version = "1.0.31"
agent_id = coder_agent.example.id
agent_id = coder_agent.main.id
}

module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "3.1.0"
agent_id = coder_agent.example.id
version = "3.1.1"
agent_id = coder_agent.main.id
openai_api_key = "..."
ai_prompt = data.coder_parameter.ai_prompt.value
workdir = "/home/coder/project"
Expand Down Expand Up @@ -108,7 +108,7 @@ For custom Codex configuration, use `base_config_toml` and/or `additional_mcp_se
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "3.1.0"
version = "3.1.1"
# ... other variables ...

# Override default configuration
Expand Down
21 changes: 11 additions & 10 deletions registry/coder-labs/modules/copilot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Run [GitHub Copilot CLI](https://docs.github.com/copilot/concepts/agents/about-c
```tf
module "copilot" {
source = "registry.coder.com/coder-labs/copilot/coder"
version = "0.2.2"
agent_id = coder_agent.example.id
version = "0.2.3"
agent_id = coder_agent.main.id
workdir = "/home/coder/projects"
}
```
Expand Down Expand Up @@ -51,8 +51,8 @@ data "coder_parameter" "ai_prompt" {

module "copilot" {
source = "registry.coder.com/coder-labs/copilot/coder"
version = "0.2.2"
agent_id = coder_agent.example.id
version = "0.2.3"
agent_id = coder_agent.main.id
workdir = "/home/coder/projects"

ai_prompt = data.coder_parameter.ai_prompt.value
Expand All @@ -71,8 +71,8 @@ Customize tool permissions, MCP servers, and Copilot settings:
```tf
module "copilot" {
source = "registry.coder.com/coder-labs/copilot/coder"
version = "0.2.2"
agent_id = coder_agent.example.id
version = "0.2.3"
agent_id = coder_agent.main.id
workdir = "/home/coder/projects"

# Version pinning (defaults to "latest", use specific version if desired)
Expand Down Expand Up @@ -101,6 +101,7 @@ module "copilot" {
tools = ["*"]
trust = true
}

playwright = {
command = "npx"
args = ["-y", "@playwright/mcp@latest", "--headless", "--isolated"]
Expand Down Expand Up @@ -142,8 +143,8 @@ variable "github_token" {

module "copilot" {
source = "registry.coder.com/coder-labs/copilot/coder"
version = "0.2.2"
agent_id = coder_agent.example.id
version = "0.2.3"
agent_id = coder_agent.main.id
workdir = "/home/coder/projects"
github_token = var.github_token
}
Expand All @@ -156,8 +157,8 @@ Run Copilot as a command-line tool without task reporting or web interface. This
```tf
module "copilot" {
source = "registry.coder.com/coder-labs/copilot/coder"
version = "0.2.2"
agent_id = coder_agent.example.id
version = "0.2.3"
agent_id = coder_agent.main.id
workdir = "/home/coder"
report_tasks = false
cli_app = true
Expand Down
9 changes: 5 additions & 4 deletions registry/coder-labs/modules/cursor-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Run the Cursor Agent CLI in your workspace for interactive coding assistance and
```tf
module "cursor_cli" {
source = "registry.coder.com/coder-labs/cursor-cli/coder"
version = "0.2.1"
agent_id = coder_agent.example.id
version = "0.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"
}
```
Expand Down Expand Up @@ -42,8 +42,8 @@ module "coder-login" {

module "cursor_cli" {
source = "registry.coder.com/coder-labs/cursor-cli/coder"
version = "0.2.1"
agent_id = coder_agent.example.id
version = "0.2.2"
agent_id = coder_agent.main.id
folder = "/home/coder/project"

# Optional
Expand All @@ -60,6 +60,7 @@ module "cursor_cli" {
command = "npx"
args = ["-y", "@playwright/mcp@latest", "--headless", "--isolated", "--no-sandbox"]
}

desktop-commander = {
command = "npx"
args = ["-y", "@wonderwhy-er/desktop-commander"]
Expand Down
Loading