Skip to content

Commit dbb2c21

Browse files
committed
docs(claude-code): tighten README intro
Drop three items from the intro that were noise rather than signal: - "Exports environment variables to the Coder agent." The `env` map has its own dedicated section a few lines down; the bullet restated the obvious in agent-speak that users don't care about. - "It does not start Claude, create a web app, or orchestrate Tasks..." The "Upgrading from v4.x" section already explains the v5 scope change with concrete variable names, which is what returning v4 users need. - "Declare your Terraform variable with `sensitive = true`..." Generic Terraform hygiene, not claude-code specific.
1 parent 1384fd6 commit dbb2c21

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ tags: [agent, claude-code, ai, anthropic]
1010

1111
Install and configure the [Claude Code](https://docs.anthropic.com/en/docs/claude-code/overview) CLI in your workspace.
1212

13-
This module does three things:
13+
This module does two things:
1414

1515
1. Installs Claude Code via the [official installer](https://claude.ai/install.sh).
16-
2. Exports environment variables to the Coder agent.
17-
3. Optionally applies user-scope MCP server configuration.
18-
19-
It does not start Claude, create a web app, or orchestrate Tasks. Compose with dedicated modules for those concerns.
16+
2. Optionally applies user-scope MCP server configuration.
2017

2118
```tf
2219
module "claude-code" {
@@ -34,8 +31,6 @@ module "claude-code" {
3431

3532
Pass any Claude Code env var (or any custom var your pre/post scripts consume) through the `env` map. Each key/value pair becomes one `coder_env` resource on the agent.
3633

37-
Declare your Terraform variable with `sensitive = true` to keep secrets out of plan output. Values retain their sensitivity when passed through the module.
38-
3934
```tf
4035
variable "anthropic_api_key" {
4136
type = string

0 commit comments

Comments
 (0)