mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: remove Goose module from catalog (#26833)
Removes the Goose AI agent module from the template builder backend catalog. ## Changes - Deleted `coderd/templatebuilder/modules/goose/` (Terraform template and module metadata) - Removed the `"goose"` entry from `scripts/templatebuildermodulegen/main.go` Frontend assets (`goose.svg`, `icons.json`) are intentionally left in place as other parts of the app still reference them. > Generated by Coder Agents on behalf of @jeremyruppel
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
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 }}
|
||||
}
|
||||
@@ -1,122 +0,0 @@
|
||||
{
|
||||
"id": "goose",
|
||||
"display_name": "Goose",
|
||||
"description": "Run Goose in your workspace",
|
||||
"icon": "/icon/goose.svg",
|
||||
"category": "AI Agent",
|
||||
"tags": [
|
||||
"agent",
|
||||
"goose",
|
||||
"ai",
|
||||
"tasks"
|
||||
],
|
||||
"compatible_os": [
|
||||
"linux"
|
||||
],
|
||||
"conflicts_with": [],
|
||||
"pinned_version": "3.0.1",
|
||||
"variables": [
|
||||
{
|
||||
"name": "additional_extensions",
|
||||
"type": "string",
|
||||
"description": "Additional extensions configuration in YAML format to append to the config.",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "agent_id",
|
||||
"type": "string",
|
||||
"description": "The ID of a Coder agent.",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": true
|
||||
},
|
||||
{
|
||||
"name": "agentapi_version",
|
||||
"type": "string",
|
||||
"description": "The version of AgentAPI to install.",
|
||||
"default": "v0.10.0",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "folder",
|
||||
"type": "string",
|
||||
"description": "The folder to run Goose in.",
|
||||
"default": "/home/coder",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "goose_model",
|
||||
"type": "string",
|
||||
"description": "The model to use for Goose (e.g., claude-3-5-sonnet-latest).",
|
||||
"required": true,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "goose_provider",
|
||||
"type": "string",
|
||||
"description": "The provider to use for Goose (e.g., anthropic).",
|
||||
"required": true,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "goose_version",
|
||||
"type": "string",
|
||||
"description": "The version of Goose to install.",
|
||||
"default": "stable",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "icon",
|
||||
"type": "string",
|
||||
"description": "The icon to use for the app.",
|
||||
"default": "/icon/goose.svg",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "install_agentapi",
|
||||
"type": "bool",
|
||||
"description": "Whether to install AgentAPI.",
|
||||
"default": true,
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "install_goose",
|
||||
"type": "bool",
|
||||
"description": "Whether to install Goose.",
|
||||
"default": true,
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "post_install_script",
|
||||
"type": "string",
|
||||
"description": "Custom script to run after installing Goose.",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
},
|
||||
{
|
||||
"name": "pre_install_script",
|
||||
"type": "string",
|
||||
"description": "Custom script to run before installing Goose.",
|
||||
"required": false,
|
||||
"sensitive": false,
|
||||
"computed": false
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -30,7 +30,6 @@ var moduleConfigs = map[string]ModuleConfig{
|
||||
"kiro": {Category: "IDE", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"claude-code": {Category: "AI Agent", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"aider": {Category: "AI Agent", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"goose": {Category: "AI Agent", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"amazon-q": {Category: "AI Agent", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"git-clone": {Category: "Source Control", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
"git-config": {Category: "Source Control", CompatibleOS: []string{"linux"}, ConflictsWith: []string{}},
|
||||
|
||||
Reference in New Issue
Block a user