Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
938d2dd
feat(install): add dasel installation function and update config merg…
35C4n0r May 23, 2026
77e2113
refactor(install): simplify variable assignments and improve config m…
35C4n0r May 23, 2026
7273758
fix(install): ensure config.toml is created if it doesn't exist or is…
35C4n0r May 23, 2026
3e21d6a
refactor(install): extract TOML merging logic into a dedicated function
35C4n0r May 23, 2026
dcea2fc
debug
35C4n0r May 23, 2026
eb9dd48
debug
35C4n0r May 23, 2026
ac7e1a8
debug
35C4n0r May 23, 2026
d4e6866
chore: remove debug logs
35C4n0r May 24, 2026
eaab5d5
test: add idempotent tests to preserve user edits in config
35C4n0r May 24, 2026
b486406
Merge branch 'main' into 35C4n0r/idempotent-codex-config
35C4n0r May 24, 2026
4aa448a
fix: update test assertions for dasel single-quote TOML output
35C4n0r May 24, 2026
fbee712
fix: compare runs 2 and 3 to avoid dasel PATH issue in test
35C4n0r May 24, 2026
5f5c6d1
docs(coder-labs/modules/codex): bump version to 5.0.1
35C4n0r May 24, 2026
1a52b2a
debug
35C4n0r May 25, 2026
b30f521
refactor(coder-labs/modules/codex): build config as JSON via jq, sing…
35C4n0r May 25, 2026
26ad896
fix(coder-labs/modules/codex): address deep-review findings
35C4n0r May 25, 2026
d100931
refactor(coder-labs/modules/codex): streamline config generation and …
35C4n0r May 25, 2026
4ce8186
refactor(coder-labs/modules/codex): restructure config assembly for u…
35C4n0r May 26, 2026
470ce50
refactor(coder-labs/modules/codex): enhance user content preservation…
35C4n0r May 26, 2026
f1064cd
fix(coder-labs/modules/codex): rename sed label to avoid typos-checke…
35C4n0r May 26, 2026
493582d
Merge branch 'main' into 35C4n0r/idempotent-codex-config
35C4n0r May 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions registry/coder-labs/modules/codex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Install and configure the [Codex CLI](https://github.com/openai/codex) in your w
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "5.0.0"
version = "5.0.1"
agent_id = coder_agent.main.id
openai_api_key = var.openai_api_key
}
Expand All @@ -33,7 +33,7 @@ locals {

module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "5.0.0"
version = "5.0.1"
agent_id = coder_agent.main.id
workdir = local.codex_workdir
openai_api_key = var.openai_api_key
Expand Down Expand Up @@ -64,7 +64,7 @@ resource "coder_app" "codex" {
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "5.0.0"
version = "5.0.1"
agent_id = coder_agent.main.id
workdir = "/home/coder/project"
enable_ai_gateway = true
Expand All @@ -88,7 +88,7 @@ When `enable_ai_gateway = true`, the module configures Codex to use the `aigatew
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "5.0.0"
version = "5.0.1"
agent_id = coder_agent.main.id
workdir = "/home/coder/project"
openai_api_key = var.openai_api_key
Expand Down Expand Up @@ -117,7 +117,7 @@ The module exposes the `scripts` output: an ordered list of `coder exp sync` nam
```tf
module "codex" {
source = "registry.coder.com/coder-labs/codex/coder"
version = "5.0.0"
version = "5.0.1"
agent_id = coder_agent.main.id
openai_api_key = var.openai_api_key
}
Expand Down
Loading