Skip to content

Commit d745117

Browse files
chore(coder/modules/claude-code): bump agentapi version in claude-code (#590)
## Description bump agentapi version to 0.11.4 ## Type of Change - [ ] New module - [ ] New template - [ ] Bug fix - [ ] Feature/enhancement - [x] Documentation - [ ] Other ## Module Information <!-- Delete this section if not applicable --> **Path:** `registry/coder/modules/claude-code` **New version:** `v4.2.6` **Breaking change:** [ ] Yes [x] No ## Testing & Validation - [x] Tests pass (`bun test`) - [x] Code formatted (`bun fmt`) - [x] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable --> --------- Co-authored-by: DevCats <christofer@coder.com>
1 parent a99d338 commit d745117

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

registry/coder/modules/claude-code/README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude
1313
```tf
1414
module "claude-code" {
1515
source = "registry.coder.com/coder/claude-code/coder"
16-
version = "4.2.5"
16+
version = "4.2.6"
1717
agent_id = coder_agent.main.id
1818
workdir = "/home/coder/project"
1919
claude_api_key = "xxxx-xxxxx-xxxx"
@@ -45,7 +45,7 @@ This example shows how to configure the Claude Code module to run the agent behi
4545
```tf
4646
module "claude-code" {
4747
source = "dev.registry.coder.com/coder/claude-code/coder"
48-
version = "4.2.5"
48+
version = "4.2.6"
4949
agent_id = coder_agent.main.id
5050
workdir = "/home/coder/project"
5151
enable_boundary = true
@@ -72,7 +72,7 @@ data "coder_parameter" "ai_prompt" {
7272
7373
module "claude-code" {
7474
source = "registry.coder.com/coder/claude-code/coder"
75-
version = "4.2.5"
75+
version = "4.2.6"
7676
agent_id = coder_agent.main.id
7777
workdir = "/home/coder/project"
7878
@@ -81,7 +81,7 @@ module "claude-code" {
8181
claude_code_oauth_token = "xxxxx-xxxx-xxxx"
8282
8383
claude_code_version = "2.0.62" # Pin to a specific version
84-
agentapi_version = "0.11.3"
84+
agentapi_version = "0.11.4"
8585
8686
ai_prompt = data.coder_parameter.ai_prompt.value
8787
model = "sonnet"
@@ -95,6 +95,7 @@ module "claude-code" {
9595
"command": "my-tool-server"
9696
"args": ["--port", "8080"]
9797
}
98+
9899
}
99100
}
100101
EOF
@@ -108,7 +109,7 @@ Run and configure Claude Code as a standalone CLI in your workspace.
108109
```tf
109110
module "claude-code" {
110111
source = "registry.coder.com/coder/claude-code/coder"
111-
version = "4.2.5"
112+
version = "4.2.6"
112113
agent_id = coder_agent.main.id
113114
workdir = "/home/coder/project"
114115
install_claude_code = true
@@ -130,7 +131,7 @@ variable "claude_code_oauth_token" {
130131
131132
module "claude-code" {
132133
source = "registry.coder.com/coder/claude-code/coder"
133-
version = "4.2.5"
134+
version = "4.2.6"
134135
agent_id = coder_agent.main.id
135136
workdir = "/home/coder/project"
136137
claude_code_oauth_token = var.claude_code_oauth_token
@@ -203,7 +204,7 @@ resource "coder_env" "bedrock_api_key" {
203204
204205
module "claude-code" {
205206
source = "registry.coder.com/coder/claude-code/coder"
206-
version = "4.2.5"
207+
version = "4.2.6"
207208
agent_id = coder_agent.main.id
208209
workdir = "/home/coder/project"
209210
model = "global.anthropic.claude-sonnet-4-5-20250929-v1:0"
@@ -260,7 +261,7 @@ resource "coder_env" "google_application_credentials" {
260261
261262
module "claude-code" {
262263
source = "registry.coder.com/coder/claude-code/coder"
263-
version = "4.2.5"
264+
version = "4.2.6"
264265
agent_id = coder_agent.main.id
265266
workdir = "/home/coder/project"
266267
model = "claude-sonnet-4@20250514"

registry/coder/modules/claude-code/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ variable "install_agentapi" {
8686
variable "agentapi_version" {
8787
type = string
8888
description = "The version of AgentAPI to install."
89-
default = "v0.11.3"
89+
default = "v0.11.4"
9090
}
9191

9292
variable "ai_prompt" {

0 commit comments

Comments
 (0)