ocb-cli 1.2.3 → 1.2.4

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/dist/proxy.js CHANGED
@@ -59,7 +59,7 @@ async function createSession(workspace, modelId) {
59
59
  },
60
60
  body: JSON.stringify({
61
61
  workspace,
62
- agent: "claude-code",
62
+ agent: "build",
63
63
  modelId: modelId || currentModel
64
64
  })
65
65
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocb-cli",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "OpenCode Bridge - Use OpenCode AI models in Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/proxy.js",
package/src/proxy.ts CHANGED
@@ -78,7 +78,7 @@ async function createSession(workspace: string, modelId?: string): Promise<strin
78
78
  },
79
79
  body: JSON.stringify({
80
80
  workspace,
81
- agent: "claude-code",
81
+ agent: "build",
82
82
  modelId: modelId || currentModel
83
83
  })
84
84
  });