Skip to content

Commit c62fe56

Browse files
authored
fix(registry/coder/claude): fix versions in claude-code readme (#589)
## Description <!-- Briefly describe what this PR does and why --> ## Type of Change - [ ] New module - [ ] New template - [x] 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 ## Template Information <!-- Delete this section if not applicable --> **Path:** `registry/[namespace]/templates/[template-name]` ## Testing & Validation - [x] Tests pass (`bun test`) - [ ] Code formatted (`bun fmt`) - [x] Changes tested locally ## Related Issues <!-- Link related issues or write "None" if not applicable -->
1 parent ce2087b commit c62fe56

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 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.3"
16+
version = "4.2.4"
1717
agent_id = coder_agent.example.id
1818
workdir = "/home/coder/project"
1919
claude_api_key = "xxxx-xxxxx-xxxx"
@@ -46,12 +46,12 @@ This example shows how to configure the Claude Code module to run the agent behi
4646
module "claude-code" {
4747
source = "dev.registry.coder.com/coder/claude-code/coder"
4848
enable_boundary = true
49-
boundary_version = "4.2.2"
49+
boundary_version = "main"
5050
boundary_log_dir = "/tmp/boundary_logs"
5151
boundary_log_level = "WARN"
5252
boundary_additional_allowed_urls = ["GET *google.com"]
5353
boundary_proxy_port = "8087"
54-
version = "4.2.3"
54+
version = "4.2.4"
5555
}
5656
```
5757

@@ -70,16 +70,16 @@ data "coder_parameter" "ai_prompt" {
7070
7171
module "claude-code" {
7272
source = "registry.coder.com/coder/claude-code/coder"
73-
version = "4.2.3"
73+
version = "4.2.4"
7474
agent_id = coder_agent.example.id
7575
workdir = "/home/coder/project"
7676
7777
claude_api_key = "xxxx-xxxxx-xxxx"
7878
# OR
7979
claude_code_oauth_token = "xxxxx-xxxx-xxxx"
8080
81-
claude_code_version = "4.2.2" # Pin to a specific version
82-
agentapi_version = "4.2.2"
81+
claude_code_version = "2.0.62" # Pin to a specific version
82+
agentapi_version = "0.11.3"
8383
8484
ai_prompt = data.coder_parameter.ai_prompt.value
8585
model = "sonnet"
@@ -106,11 +106,11 @@ Run and configure Claude Code as a standalone CLI in your workspace.
106106
```tf
107107
module "claude-code" {
108108
source = "registry.coder.com/coder/claude-code/coder"
109-
version = "4.2.3"
109+
version = "4.2.4"
110110
agent_id = coder_agent.example.id
111111
workdir = "/home/coder"
112112
install_claude_code = true
113-
claude_code_version = "4.2.2"
113+
claude_code_version = "2.0.62"
114114
report_tasks = false
115115
cli_app = true
116116
}
@@ -129,7 +129,7 @@ variable "claude_code_oauth_token" {
129129
130130
module "claude-code" {
131131
source = "registry.coder.com/coder/claude-code/coder"
132-
version = "4.2.3"
132+
version = "4.2.4"
133133
agent_id = coder_agent.example.id
134134
workdir = "/home/coder/project"
135135
claude_code_oauth_token = var.claude_code_oauth_token
@@ -202,7 +202,7 @@ resource "coder_env" "bedrock_api_key" {
202202
203203
module "claude-code" {
204204
source = "registry.coder.com/coder/claude-code/coder"
205-
version = "4.2.3"
205+
version = "4.2.4"
206206
agent_id = coder_agent.example.id
207207
workdir = "/home/coder/project"
208208
model = "global.anthropic.claude-sonnet-4-5-20250929-v1:0"
@@ -259,7 +259,7 @@ resource "coder_env" "google_application_credentials" {
259259
260260
module "claude-code" {
261261
source = "registry.coder.com/coder/claude-code/coder"
262-
version = "4.2.3"
262+
version = "4.2.4"
263263
agent_id = coder_agent.example.id
264264
workdir = "/home/coder/project"
265265
model = "claude-sonnet-4@20250514"

0 commit comments

Comments
 (0)