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 docs/ai-coder/custom-agents.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Custom Agents

Custom agents beyond the ones listed in the [Coder registry](https://registry.coder.com/modules?tag=agent) can be used with Coder Tasks.
Custom agents beyond the ones listed in the [Coder registry](https://registry.coder.com/modules?search=tag%3Aagent) can be used with Coder Tasks.

## Prerequisites

Expand Down
4 changes: 2 additions & 2 deletions dogfood/coder-envbuilder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ data "coder_workspace_owner" "me" {}

module "slackme" {
source = "dev.registry.coder.com/coder/slackme/coder"
version = "1.0.30"
version = "1.0.31"
agent_id = coder_agent.dev.id
auth_provider_id = "slack"
}

module "dotfiles" {
source = "dev.registry.coder.com/coder/dotfiles/coder"
version = "1.2.0"
version = "1.2.1"
agent_id = coder_agent.dev.id
}

Expand Down
4 changes: 2 additions & 2 deletions dogfood/coder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ module "dotfiles" {
module "git-clone" {
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/git-clone/coder"
version = "1.1.0"
version = "1.1.1"
agent_id = coder_agent.dev.id
url = "https://github.com/coder/coder"
base_dir = local.repo_base_dir
Expand Down Expand Up @@ -317,7 +317,7 @@ module "vscode-web" {
module "jetbrains" {
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/jetbrains/coder"
version = "1.0.0"
version = "1.0.2"
agent_id = coder_agent.dev.id
agent_name = "dev"
folder = local.repo_dir
Expand Down
Loading