feat: add Codex and Claude Code support via ACP adapters#20
Merged
Conversation
- Add Dockerfile.codex (node:22 + codex-acp + codex CLI for OAuth) - Simplify PVC mount: persist entire /home/agent instead of subPaths This ensures auth tokens for any CLI backend (kiro, codex, etc.) survive restarts - Bump chart to 0.1.9 Closes #14
- Add variant matrix to build both Dockerfile and Dockerfile.codex - Produces ghcr.io/thepagent/agent-broker (kiro) and ghcr.io/thepagent/agent-broker-codex - Trigger on Dockerfile.* changes - Separate cache scopes per variant+platform
- Add Dockerfile.claude (node:22 + @agentclientprotocol/claude-agent-acp@0.25.0 + claude CLI) - Add claude variant to CI build matrix - Produces ghcr.io/thepagent/agent-broker-claude Note: @zed-industries/claude-agent-acp is deprecated, using @agentclientprotocol/claude-agent-acp Closes #16
Show kiro-cli, codex, or claude auth steps based on agent.command value.
3881bcf to
9ac4212
Compare
pahud
approved these changes
Apr 4, 2026
henrieopenclaw
added a commit
to henrieopenclaw/agent-broker
that referenced
this pull request
Apr 6, 2026
* feat: add Codex support via codex-acp adapter - Add Dockerfile.codex (node:22 + codex-acp + codex CLI for OAuth) - Simplify PVC mount: persist entire /home/agent instead of subPaths This ensures auth tokens for any CLI backend (kiro, codex, etc.) survive restarts - Bump chart to 0.1.9 Closes openabdev#14 * ci: build codex image alongside kiro in CI - Add variant matrix to build both Dockerfile and Dockerfile.codex - Produces ghcr.io/thepagent/agent-broker (kiro) and ghcr.io/thepagent/agent-broker-codex - Trigger on Dockerfile.* changes - Separate cache scopes per variant+platform * feat: add Claude Code support via claude-agent-acp adapter - Add Dockerfile.claude (node:22 + @agentclientprotocol/claude-agent-acp@0.25.0 + claude CLI) - Add claude variant to CI build matrix - Produces ghcr.io/thepagent/agent-broker-claude Note: @zed-industries/claude-agent-acp is deprecated, using @agentclientprotocol/claude-agent-acp Closes openabdev#16 * docs: dynamic NOTES.txt auth instructions per backend Show kiro-cli, codex, or claude auth steps based on agent.command value. * chore: remove unused matrix field, add token expiry note --------- Co-authored-by: thepagent <thepagent@users.noreply.github.com>
Reese-max
pushed a commit
to Reese-max/openab
that referenced
this pull request
Apr 12, 2026
* feat: add Codex support via codex-acp adapter - Add Dockerfile.codex (node:22 + codex-acp + codex CLI for OAuth) - Simplify PVC mount: persist entire /home/agent instead of subPaths This ensures auth tokens for any CLI backend (kiro, codex, etc.) survive restarts - Bump chart to 0.1.9 Closes openabdev#14 * ci: build codex image alongside kiro in CI - Add variant matrix to build both Dockerfile and Dockerfile.codex - Produces ghcr.io/thepagent/agent-broker (kiro) and ghcr.io/thepagent/agent-broker-codex - Trigger on Dockerfile.* changes - Separate cache scopes per variant+platform * feat: add Claude Code support via claude-agent-acp adapter - Add Dockerfile.claude (node:22 + @agentclientprotocol/claude-agent-acp@0.25.0 + claude CLI) - Add claude variant to CI build matrix - Produces ghcr.io/thepagent/agent-broker-claude Note: @zed-industries/claude-agent-acp is deprecated, using @agentclientprotocol/claude-agent-acp Closes openabdev#16 * docs: dynamic NOTES.txt auth instructions per backend Show kiro-cli, codex, or claude auth steps based on agent.command value. * chore: remove unused matrix field, add token expiry note --------- Co-authored-by: thepagent <thepagent@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Codex and Claude Code as pluggable agent backends alongside kiro-cli.
The PVC mount changed from individual subPaths to the entire home directory:
Before (0.1.8):
After (0.1.9):
Migration for existing kiro-cli users: After upgrading, copy data from subPaths to the new layout:
Or simply re-authenticate:
kubectl exec -it deployment/agent-broker -- kiro-cli login --use-device-flowChanges
Dockerfiles
Dockerfile.codex— node:22 +@zed-industries/codex-acp@0.9.5+@openai/codexCLIDockerfile.claude— node:22 +@agentclientprotocol/claude-agent-acp@0.25.0+@anthropic-ai/claude-codeCLIHelm chart (0.1.9)
/home/agentinstead of individual subPaths. Ensures auth tokens for any CLI backend survive pod restarts.agent.commandvalue (kiro-cli, codex, claude)CI
ghcr.io/thepagent/agent-broker(kiro-cli, default)ghcr.io/thepagent/agent-broker-codexghcr.io/thepagent/agent-broker-claudeUsage
Tested
Reference
Closes #14, closes #16