Skip to content

Commit 5d0504a

Browse files
authored
feat: update agentapi_version to 0.10.0 (#456)
Closes # ## Description <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/[namespace]/modules/[module-name]` **New version:** `v1.0.0` **Breaking change:** [ ] Yes [ ] No ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun run fmt`) - [ ] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable -->
1 parent c1c0dec commit 5d0504a

File tree

18 files changed

+53
-53
lines changed

18 files changed

+53
-53
lines changed

registry/coder-labs/modules/auggie/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run Auggie CLI in your workspace to access Augment's AI coding assistant with ad
1313
```tf
1414
module "auggie" {
1515
source = "registry.coder.com/coder-labs/auggie/coder"
16-
version = "0.1.0"
16+
version = "0.2.0"
1717
agent_id = coder_agent.example.id
1818
folder = "/home/coder/project"
1919
}
@@ -47,7 +47,7 @@ module "coder-login" {
4747
4848
module "auggie" {
4949
source = "registry.coder.com/coder-labs/auggie/coder"
50-
version = "0.1.0"
50+
version = "0.2.0"
5151
agent_id = coder_agent.example.id
5252
folder = "/home/coder/project"
5353
@@ -103,7 +103,7 @@ EOF
103103
```tf
104104
module "auggie" {
105105
source = "registry.coder.com/coder-labs/auggie/coder"
106-
version = "0.1.0"
106+
version = "0.2.0"
107107
agent_id = coder_agent.example.id
108108
folder = "/home/coder/project"
109109

registry/coder-labs/modules/auggie/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ variable "install_agentapi" {
6666
variable "agentapi_version" {
6767
type = string
6868
description = "The version of AgentAPI to install."
69-
default = "v0.6.0"
69+
default = "v0.10.0"
7070
validation {
7171
condition = can(regex("^v[0-9]+\\.[0-9]+\\.[0-9]+", var.agentapi_version))
7272
error_message = "agentapi_version must be a valid semantic version starting with 'v', like 'v0.3.3'."
@@ -178,7 +178,7 @@ locals {
178178

179179
module "agentapi" {
180180
source = "registry.coder.com/coder/agentapi/coder"
181-
version = "1.1.1"
181+
version = "1.2.0"
182182

183183
agent_id = var.agent_id
184184
web_app_slug = local.app_slug

registry/coder-labs/modules/codex/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run Codex CLI in your workspace to access OpenAI's models through the Codex inte
1313
```tf
1414
module "codex" {
1515
source = "registry.coder.com/coder-labs/codex/coder"
16-
version = "2.0.0"
16+
version = "2.1.0"
1717
agent_id = coder_agent.example.id
1818
openai_api_key = var.openai_api_key
1919
folder = "/home/coder/project"
@@ -33,7 +33,7 @@ module "codex" {
3333
module "codex" {
3434
count = data.coder_workspace.me.start_count
3535
source = "registry.coder.com/coder-labs/codex/coder"
36-
version = "2.0.0"
36+
version = "2.1.0"
3737
agent_id = coder_agent.example.id
3838
openai_api_key = "..."
3939
folder = "/home/coder/project"
@@ -60,7 +60,7 @@ module "coder-login" {
6060
6161
module "codex" {
6262
source = "registry.coder.com/coder-labs/codex/coder"
63-
version = "2.0.0"
63+
version = "2.1.0"
6464
agent_id = coder_agent.example.id
6565
openai_api_key = "..."
6666
ai_prompt = data.coder_parameter.ai_prompt.value
@@ -106,7 +106,7 @@ For custom Codex configuration, use `base_config_toml` and/or `additional_mcp_se
106106
```tf
107107
module "codex" {
108108
source = "registry.coder.com/coder-labs/codex/coder"
109-
version = "2.0.0"
109+
version = "2.1.0"
110110
# ... other variables ...
111111
112112
# Override default configuration

registry/coder-labs/modules/codex/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ variable "install_agentapi" {
8080
variable "agentapi_version" {
8181
type = string
8282
description = "The version of AgentAPI to install."
83-
default = "v0.5.0"
83+
default = "v0.10.0"
8484
}
8585

8686
variable "codex_model" {
@@ -128,7 +128,7 @@ locals {
128128

129129
module "agentapi" {
130130
source = "registry.coder.com/coder/agentapi/coder"
131-
version = "1.1.1"
131+
version = "1.2.0"
132132

133133
agent_id = var.agent_id
134134
web_app_slug = local.app_slug

registry/coder-labs/modules/copilot/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run [GitHub Copilot CLI](https://docs.github.com/copilot/concepts/agents/about-c
1313
```tf
1414
module "copilot" {
1515
source = "registry.coder.com/coder-labs/copilot/coder"
16-
version = "0.1.2"
16+
version = "0.2.0"
1717
agent_id = coder_agent.example.id
1818
workdir = "/home/coder/projects"
1919
}
@@ -51,7 +51,7 @@ data "coder_parameter" "ai_prompt" {
5151
5252
module "copilot" {
5353
source = "registry.coder.com/coder-labs/copilot/coder"
54-
version = "0.1.2"
54+
version = "0.2.0"
5555
agent_id = coder_agent.example.id
5656
workdir = "/home/coder/projects"
5757
@@ -71,7 +71,7 @@ Customize tool permissions, MCP servers, and Copilot settings:
7171
```tf
7272
module "copilot" {
7373
source = "registry.coder.com/coder-labs/copilot/coder"
74-
version = "0.1.2"
74+
version = "0.2.0"
7575
agent_id = coder_agent.example.id
7676
workdir = "/home/coder/projects"
7777
@@ -142,7 +142,7 @@ variable "github_token" {
142142
143143
module "copilot" {
144144
source = "registry.coder.com/coder-labs/copilot/coder"
145-
version = "0.1.2"
145+
version = "0.2.0"
146146
agent_id = coder_agent.example.id
147147
workdir = "/home/coder/projects"
148148
github_token = var.github_token
@@ -156,7 +156,7 @@ Run Copilot as a command-line tool without task reporting or web interface. This
156156
```tf
157157
module "copilot" {
158158
source = "registry.coder.com/coder-labs/copilot/coder"
159-
version = "0.1.2"
159+
version = "0.2.0"
160160
agent_id = coder_agent.example.id
161161
workdir = "/home/coder"
162162
report_tasks = false

registry/coder-labs/modules/copilot/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ resource "coder_env" "github_token" {
242242

243243
module "agentapi" {
244244
source = "registry.coder.com/coder/agentapi/coder"
245-
version = "1.1.1"
245+
version = "1.2.0"
246246

247247
agent_id = var.agent_id
248248
folder = local.workdir

registry/coder-labs/modules/cursor-cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run the Cursor Agent CLI in your workspace for interactive coding assistance and
1313
```tf
1414
module "cursor_cli" {
1515
source = "registry.coder.com/coder-labs/cursor-cli/coder"
16-
version = "0.1.1"
16+
version = "0.2.0"
1717
agent_id = coder_agent.example.id
1818
folder = "/home/coder/project"
1919
}
@@ -42,7 +42,7 @@ module "coder-login" {
4242
4343
module "cursor_cli" {
4444
source = "registry.coder.com/coder-labs/cursor-cli/coder"
45-
version = "0.1.1"
45+
version = "0.2.0"
4646
agent_id = coder_agent.example.id
4747
folder = "/home/coder/project"
4848

registry/coder-labs/modules/cursor-cli/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "install_agentapi" {
5656
variable "agentapi_version" {
5757
type = string
5858
description = "The version of AgentAPI to install."
59-
default = "v0.5.0"
59+
default = "v0.10.0"
6060
}
6161

6262
variable "force" {
@@ -131,7 +131,7 @@ resource "coder_env" "cursor_api_key" {
131131

132132
module "agentapi" {
133133
source = "registry.coder.com/coder/agentapi/coder"
134-
version = "1.1.1"
134+
version = "1.2.0"
135135

136136
agent_id = var.agent_id
137137
web_app_slug = local.app_slug

registry/coder-labs/modules/gemini/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run [Gemini CLI](https://github.com/google-gemini/gemini-cli) in your workspace
1313
```tf
1414
module "gemini" {
1515
source = "registry.coder.com/coder-labs/gemini/coder"
16-
version = "2.0.0"
16+
version = "2.1.0"
1717
agent_id = coder_agent.example.id
1818
folder = "/home/coder/project"
1919
}
@@ -46,7 +46,7 @@ variable "gemini_api_key" {
4646
4747
module "gemini" {
4848
source = "registry.coder.com/coder-labs/gemini/coder"
49-
version = "2.0.0"
49+
version = "2.1.0"
5050
agent_id = coder_agent.example.id
5151
gemini_api_key = var.gemini_api_key
5252
folder = "/home/coder/project"
@@ -94,7 +94,7 @@ data "coder_parameter" "ai_prompt" {
9494
module "gemini" {
9595
count = data.coder_workspace.me.start_count
9696
source = "registry.coder.com/coder-labs/gemini/coder"
97-
version = "2.0.0"
97+
version = "2.1.0"
9898
agent_id = coder_agent.example.id
9999
gemini_api_key = var.gemini_api_key
100100
gemini_model = "gemini-2.5-flash"
@@ -118,7 +118,7 @@ For enterprise users who prefer Google's Vertex AI platform:
118118
```tf
119119
module "gemini" {
120120
source = "registry.coder.com/coder-labs/gemini/coder"
121-
version = "2.0.0"
121+
version = "2.1.0"
122122
agent_id = coder_agent.example.id
123123
gemini_api_key = var.gemini_api_key
124124
folder = "/home/coder/project"

registry/coder-labs/modules/gemini/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ variable "install_agentapi" {
8181
variable "agentapi_version" {
8282
type = string
8383
description = "The version of AgentAPI to install."
84-
default = "v0.2.3"
84+
default = "v0.10.0"
8585
}
8686

8787
variable "gemini_model" {
@@ -176,7 +176,7 @@ EOT
176176

177177
module "agentapi" {
178178
source = "registry.coder.com/coder/agentapi/coder"
179-
version = "1.1.1"
179+
version = "1.2.0"
180180

181181
agent_id = var.agent_id
182182
web_app_slug = local.app_slug

0 commit comments

Comments
 (0)