@aryanbhargav/codebridge 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/codebridge.config.example.yaml +5 -0
- package/dist/bin/codebridge.js +327 -326
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,6 +101,7 @@ codebridge run --task "Fix bug in checkout flow" \
|
|
|
101
101
|
| **Claude Code** | `claude` | ✅ Full Support | Best for planning and reviewing |
|
|
102
102
|
| **Qwen Code** | `qwen` | ✅ Full Support | Configure model in `~/.qwen/settings.json` |
|
|
103
103
|
| **Codex CLI** | `codex` | ✅ Full Support | OpenAI Codex integration |
|
|
104
|
+
| **OpenCode** | `opencode` | ✅ Full Support | Install with `npm i -g opencode-ai@latest` |
|
|
104
105
|
| **Aider** | `aider` | ⚠️ Partial Support | Install: `pip install aider-chat` |
|
|
105
106
|
| **Gemini CLI** | `gemini` | ✅ Full Support | Google Gemini integration |
|
|
106
107
|
|
|
@@ -29,6 +29,11 @@ adapters:
|
|
|
29
29
|
args: ["--full-auto"] # Enable full automation mode
|
|
30
30
|
timeout: 300000
|
|
31
31
|
|
|
32
|
+
opencode:
|
|
33
|
+
timeout: 300000
|
|
34
|
+
# Install with: npm i -g opencode-ai@latest
|
|
35
|
+
# Model format: provider/model (for example anthropic/claude-sonnet-4-20250514)
|
|
36
|
+
|
|
32
37
|
aider:
|
|
33
38
|
args: ["--yes", "--no-git"] # Auto-confirm, disable git integration
|
|
34
39
|
timeout: 300000
|