mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
> [!NOTE] > This PR was authored by Coder Agents on behalf of @jeremyruppel. Runs the `scripts/modulegen` generator against the coder/registry to produce the initial module catalog for the template builder. Generates `module.json` and `.tf.tmpl` files for 19 modules across four categories: - **IDE**: code-server, jetbrains, vscode-desktop, vscode-web, cursor, windsurf, zed, kiro - **AI Agent**: claude-code, aider, goose, amazon-q - **Source Control**: git-clone, git-config, git-commit-signing - **Utility**: dotfiles, personalize, filebrowser, jupyterlab Also updates `catalog_test.go` to validate the new embedded modules load correctly.
18 lines
765 B
Cheetah
18 lines
765 B
Cheetah
module "goose" {
|
|
count = data.coder_workspace.me.start_count
|
|
source = "{{ .RegistryBase }}/coder/goose/coder"
|
|
version = "{{ .PinnedVersion }}"
|
|
agent_id = coder_agent.{{ .AgentResourceName }}.id
|
|
additional_extensions = {{ .Variables.additional_extensions }}
|
|
agentapi_version = {{ .Variables.agentapi_version }}
|
|
folder = {{ .Variables.folder }}
|
|
goose_model = {{ .Variables.goose_model }}
|
|
goose_provider = {{ .Variables.goose_provider }}
|
|
goose_version = {{ .Variables.goose_version }}
|
|
icon = {{ .Variables.icon }}
|
|
install_agentapi = {{ .Variables.install_agentapi }}
|
|
install_goose = {{ .Variables.install_goose }}
|
|
post_install_script = {{ .Variables.post_install_script }}
|
|
pre_install_script = {{ .Variables.pre_install_script }}
|
|
}
|