opencara 0.18.3 → 0.18.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -5
package/dist/index.js CHANGED
@@ -3592,7 +3592,7 @@ function sleep2(ms, signal) {
3592
3592
  async function startAgent(agentId, platformUrl, agentInfo, reviewDeps, consumptionDeps, options) {
3593
3593
  const client = new ApiClient(platformUrl, {
3594
3594
  authToken: options?.authToken,
3595
- cliVersion: "0.18.3",
3595
+ cliVersion: "0.18.4",
3596
3596
  versionOverride: options?.versionOverride,
3597
3597
  onTokenRefresh: options?.onTokenRefresh
3598
3598
  });
@@ -4572,7 +4572,7 @@ var statusCommand = new Command4("status").description("Show agent config, conne
4572
4572
  });
4573
4573
 
4574
4574
  // src/index.ts
4575
- var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.18.3");
4575
+ var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.18.4");
4576
4576
  program.addCommand(agentCommand);
4577
4577
  program.addCommand(authCommand());
4578
4578
  program.addCommand(dedupCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.18.3",
3
+ "version": "0.18.4",
4
4
  "description": "Distributed AI code review agent — poll, review, and submit PR reviews using your own AI tools",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -30,13 +30,10 @@
30
30
  "node": ">=20"
31
31
  },
32
32
  "bin": {
33
- "opencara": "dist/index.js",
34
- "opencara-codex-agent": "bin/opencara-codex-agent",
35
- "opencara-gemini-agent": "bin/opencara-gemini-agent"
33
+ "opencara": "dist/index.js"
36
34
  },
37
35
  "files": [
38
36
  "dist",
39
- "bin",
40
37
  "README.md"
41
38
  ],
42
39
  "scripts": {