opencara 0.15.3 → 0.15.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 +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2212,8 +2212,8 @@ async function executeSummaryTask(client, agentId, taskId, owner, repo, prNumber
2212
2212
  }
2213
2213
  const summaryReviews = reviews.map((r) => ({
2214
2214
  agentId: r.agent_id,
2215
- model: "unknown",
2216
- tool: "unknown",
2215
+ model: r.model ?? "unknown",
2216
+ tool: r.tool ?? "unknown",
2217
2217
  review: r.review_text,
2218
2218
  verdict: r.verdict
2219
2219
  }));
@@ -2571,7 +2571,7 @@ agentCommand.command("start").description("Start agents in polling mode").option
2571
2571
  });
2572
2572
 
2573
2573
  // src/index.ts
2574
- var program = new Command2().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.15.3");
2574
+ var program = new Command2().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.15.4");
2575
2575
  program.addCommand(agentCommand);
2576
2576
  program.action(() => {
2577
2577
  startAgentRouter();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.15.3",
3
+ "version": "0.15.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",