opencara 0.23.0 → 0.23.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5571,7 +5571,7 @@ function sleep2(ms, signal) {
5571
5571
  async function startAgent(agentId, platformUrl, agentInfo, reviewDeps, consumptionDeps, options) {
5572
5572
  const client = new ApiClient(platformUrl, {
5573
5573
  authToken: options?.authToken,
5574
- cliVersion: "0.23.0",
5574
+ cliVersion: "0.23.1",
5575
5575
  versionOverride: options?.versionOverride,
5576
5576
  onTokenRefresh: options?.onTokenRefresh
5577
5577
  });
@@ -5857,7 +5857,7 @@ async function startBatchAgents(config, agents, pollIntervalMs, oauthToken, opti
5857
5857
  const { versionOverride, verbose, instancesOverride, agentOwner, userOrgs } = options;
5858
5858
  const client = new ApiClient(config.platformUrl, {
5859
5859
  authToken: oauthToken,
5860
- cliVersion: "0.23.0",
5860
+ cliVersion: "0.23.1",
5861
5861
  versionOverride,
5862
5862
  onTokenRefresh: () => getValidToken(config.platformUrl, { configPath: config.authFile })
5863
5863
  });
@@ -6200,7 +6200,7 @@ agentCommand.command("start").description("Start agents in polling mode").option
6200
6200
  }
6201
6201
  config = loadConfig();
6202
6202
  }
6203
- console.log(formatVersionBanner("0.23.0", "6cd5f00"));
6203
+ console.log(formatVersionBanner("0.23.1", "4d7d9ed"));
6204
6204
  if (config.agents && config.agents.length > 0) {
6205
6205
  const toolEntries = config.agents.map((a) => ({
6206
6206
  tool: a.tool,
@@ -7023,7 +7023,7 @@ var statusCommand = new Command4("status").description("Show agent config, conne
7023
7023
  });
7024
7024
 
7025
7025
  // src/index.ts
7026
- var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.23.0"} (${"6cd5f00"})`);
7026
+ var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.23.1"} (${"4d7d9ed"})`);
7027
7027
  program.addCommand(agentCommand);
7028
7028
  program.addCommand(authCommand());
7029
7029
  program.addCommand(dedupCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
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",