## Description Updated the tests: - We now don't accept absolute urls (http / https) - We only accept urls that start with `../../../../.icons/*` and exists <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] New template - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Testing & Validation - [x] Tests pass (`bun test`) - [x] Code formatted (`bun fmt`) - [x] Changes tested locally --------- Co-authored-by: DevCats <christofer@coder.com>
23 lines
564 B
Markdown
23 lines
564 B
Markdown
---
|
|
display_name: "Goose"
|
|
description: "Run the Goose agent in your workspace to generate code and perform tasks"
|
|
icon: "https://github.com/coder/registry/pull/599.svg"
|
|
verified: false
|
|
tags: ["ai", "agent"]
|
|
---
|
|
|
|
# Goose
|
|
|
|
Run the [Goose](https://block.github.io/goose/) agent in your workspace to generate code and perform tasks.
|
|
|
|
```tf
|
|
module "goose" {
|
|
source = "registry.coder.com/coder/goose/coder"
|
|
version = "1.0.31"
|
|
agent_id = coder_agent.main.id
|
|
folder = "/home/coder"
|
|
install_goose = true
|
|
goose_version = "v1.0.16"
|
|
}
|
|
```
|