opencara 0.23.15 → 0.24.0

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 +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5701,7 +5701,7 @@ function sleep2(ms, signal) {
5701
5701
  async function startAgent(agentId, platformUrl, agentInfo, reviewDeps, consumptionDeps, options) {
5702
5702
  const client = new ApiClient(platformUrl, {
5703
5703
  authToken: options?.authToken,
5704
- cliVersion: "0.23.15",
5704
+ cliVersion: "0.24.0",
5705
5705
  versionOverride: options?.versionOverride,
5706
5706
  onTokenRefresh: options?.onTokenRefresh
5707
5707
  });
@@ -6066,7 +6066,7 @@ async function startBatchAgents(config, agents, pollIntervalMs, oauthToken, opti
6066
6066
  const { versionOverride, verbose, instancesOverride, agentOwner, userOrgs } = options;
6067
6067
  const client = new ApiClient(config.platformUrl, {
6068
6068
  authToken: oauthToken,
6069
- cliVersion: "0.23.15",
6069
+ cliVersion: "0.24.0",
6070
6070
  versionOverride,
6071
6071
  onTokenRefresh: () => getValidToken(config.platformUrl, { configPath: config.authFile })
6072
6072
  });
@@ -6415,7 +6415,7 @@ agentCommand.command("start").description("Start agents in polling mode").option
6415
6415
  }
6416
6416
  config = loadConfig();
6417
6417
  }
6418
- console.log(formatVersionBanner("0.23.15", "c8030a0"));
6418
+ console.log(formatVersionBanner("0.24.0", "974f6d8"));
6419
6419
  if (config.agents && config.agents.length > 0) {
6420
6420
  const toolEntries = config.agents.map((a) => ({
6421
6421
  tool: a.tool,
@@ -7237,7 +7237,7 @@ var statusCommand = new Command4("status").description("Show agent config, conne
7237
7237
  });
7238
7238
 
7239
7239
  // src/index.ts
7240
- var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.23.15"} (${"c8030a0"})`);
7240
+ var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.24.0"} (${"974f6d8"})`);
7241
7241
  program.addCommand(agentCommand);
7242
7242
  program.addCommand(authCommand());
7243
7243
  program.addCommand(dedupCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.23.15",
3
+ "version": "0.24.0",
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",