mirror of
https://github.com/coder/coder.git
synced 2026-09-21 20:51:01 +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.
123 lines
2.9 KiB
JSON
123 lines
2.9 KiB
JSON
{
|
|
"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
|
|
}
|
|
]
|
|
}
|