Skip to content

chore: update module sources for Windsurf, Zed and JetBrains #18759

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 8, 2025
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
9 changes: 6 additions & 3 deletions dogfood/coder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,10 @@ module "vscode-web" {

module "jetbrains" {
count = data.coder_workspace.me.start_count
source = "git::https://github.com/coder/registry.git//registry/coder/modules/jetbrains?ref=jetbrains"
source = "dev.registry.coder.com/coder/jetbrains/coder"
version = "1.0.0"
agent_id = coder_agent.dev.id
agent_name = "dev"
folder = local.repo_dir
major_version = "latest"
}
Expand Down Expand Up @@ -337,15 +339,16 @@ module "cursor" {

module "windsurf" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windsurf/coder"
source = "dev.registry.coder.com/coder/windsurf/coder"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With dev containers / multi agents, we'll need to add agent_name to this module as well.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. Please contribute in coder/registry :)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will hold on merging if you want to help add that to all IDE modules.

Copy link
Member Author

@matifali matifali Jul 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can handle agent_name support for WindSurf in a follow up PR.

version = "1.0.0"
agent_id = coder_agent.dev.id
folder = local.repo_dir
}

module "zed" {
count = data.coder_workspace.me.start_count
source = "./zed"
source = "dev.registry.coder.com/coder/zed/coder"
version = "1.0.0"
agent_id = coder_agent.dev.id
agent_name = "dev"
folder = local.repo_dir
Expand Down
39 changes: 0 additions & 39 deletions dogfood/coder/zed/main.tf

This file was deleted.

Loading