Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
13 changes: 13 additions & 0 deletions .changeset/disable-codex-app-github.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@prover-coder-ai/docker-git": patch
---

Disable the unused `codex_app.github` connector in the managed Codex config.

The generated `config.toml` enables `apps`, which surfaces the built-in
`codex_app.github` connector. It is redundant inside docker-git because
containers already get GitHub access through the cloned repository, the synced
GitHub token, and the managed git wrapper, so the connector only adds noise.
The default Codex config now sets `[apps.github] enabled = false` (both the
`defaultCodexConfig` written by auth sync and the entrypoint heredoc), turning
the connector off while keeping the rest of the `apps` feature intact.
9 changes: 9 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @prover-coder-ai/docker-git

## 1.3.5

### Patch Changes

- chore: automated version bump

- Updated dependencies []:
- @prover-coder-ai/docker-git-session-sync@1.0.63

## 1.3.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prover-coder-ai/docker-git",
"version": "1.3.4",
"version": "1.3.5",
"description": "docker-git Bun and Gridland CLI plus browser frontend",
"main": "dist/src/docker-git/main.js",
"bin": {
Expand Down
4 changes: 4 additions & 0 deletions packages/app/src/lib/core/templates-entrypoint/codex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ multi_agent = true
apps = true
shell_tool = true

[apps.github]
# docker-git: disable the unused codex_app.github connector (issue #410)
enabled = false

[profiles.longcontx]
model = "gpt-5.5"
model_context_window = 1050000
Expand Down
4 changes: 4 additions & 0 deletions packages/app/src/lib/usecases/auth-sync-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ export const defaultCodexConfig = [
"apps = true",
"shell_tool = true",
"",
"[apps.github]",
"# docker-git: disable the unused codex_app.github connector (issue #410)",
"enabled = false",
"",
"[profiles.longcontx]",
"model = \"gpt-5.5\"",
"model_context_window = 1050000",
Expand Down
6 changes: 6 additions & 0 deletions packages/docker-git-session-sync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @prover-coder-ai/docker-git-session-sync

## 1.0.63

### Patch Changes

- chore: automated version bump

## 1.0.62

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/docker-git-session-sync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prover-coder-ai/docker-git-session-sync",
"version": "1.0.62",
"version": "1.0.63",
"description": "Standalone docker-git AI agent session synchronization tool",
"main": "dist/docker-git-session-sync.js",
"bin": {
Expand Down
4 changes: 4 additions & 0 deletions packages/lib/src/core/templates-entrypoint/codex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ multi_agent = true
apps = true
shell_tool = true

[apps.github]
# docker-git: disable the unused codex_app.github connector (issue #410)
enabled = false

[profiles.longcontx]
model = "gpt-5.5"
model_context_window = 1050000
Expand Down
4 changes: 4 additions & 0 deletions packages/lib/src/usecases/auth-sync-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export const defaultCodexConfig = [
"apps = true",
"shell_tool = true",
"",
"[apps.github]",
"# docker-git: disable the unused codex_app.github connector (issue #410)",
"enabled = false",
"",
"[profiles.longcontx]",
"model = \"gpt-5.5\"",
"model_context_window = 1050000",
Expand Down
3 changes: 3 additions & 0 deletions packages/lib/tests/usecases/auth-sync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ describe("syncGithubAuthKeys", () => {
expect(configText).toContain("model_auto_compact_token_limit = 945000")
expect(configText).toContain("model_reasoning_effort = \"xhigh\"")
expect(configText).toContain("plan_mode_reasoning_effort = \"xhigh\"")
// issue #410: the unused codex_app.github connector must be disabled
expect(configText).toContain("[apps.github]")
expect(configText).toContain("enabled = false")
})
).pipe(Effect.provide(NodeContext.layer)))

Expand Down