opencara 0.2.2 → 0.3.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 +43 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -428,24 +428,56 @@ var DEFAULT_REGISTRY = {
428
428
  }
429
429
  ],
430
430
  models: [
431
- { name: "claude-opus-4-6", displayName: "Claude Opus 4.6", tools: ["claude"] },
431
+ {
432
+ name: "claude-opus-4-6",
433
+ displayName: "Claude Opus 4.6",
434
+ tools: ["claude"],
435
+ defaultReputation: 0.8
436
+ },
432
437
  {
433
438
  name: "claude-opus-4-6[1m]",
434
439
  displayName: "Claude Opus 4.6 (1M context)",
435
- tools: ["claude"]
440
+ tools: ["claude"],
441
+ defaultReputation: 0.8
442
+ },
443
+ {
444
+ name: "claude-sonnet-4-6",
445
+ displayName: "Claude Sonnet 4.6",
446
+ tools: ["claude"],
447
+ defaultReputation: 0.7
436
448
  },
437
- { name: "claude-sonnet-4-6", displayName: "Claude Sonnet 4.6", tools: ["claude"] },
438
449
  {
439
450
  name: "claude-sonnet-4-6[1m]",
440
451
  displayName: "Claude Sonnet 4.6 (1M context)",
441
- tools: ["claude"]
452
+ tools: ["claude"],
453
+ defaultReputation: 0.7
454
+ },
455
+ {
456
+ name: "gpt-5-codex",
457
+ displayName: "GPT-5 Codex",
458
+ tools: ["codex"],
459
+ defaultReputation: 0.7
442
460
  },
443
- { name: "gpt-5-codex", displayName: "GPT-5 Codex", tools: ["codex"] },
444
- { name: "gemini-2.5-pro", displayName: "Gemini 2.5 Pro", tools: ["gemini"] },
445
- { name: "qwen3.5-plus", displayName: "Qwen 3.5 Plus", tools: ["qwen"] },
446
- { name: "glm-5", displayName: "GLM-5", tools: ["qwen"] },
447
- { name: "kimi-k2.5", displayName: "Kimi K2.5", tools: ["qwen"] },
448
- { name: "minimax-m2.5", displayName: "Minimax M2.5", tools: ["qwen"] }
461
+ {
462
+ name: "gemini-2.5-pro",
463
+ displayName: "Gemini 2.5 Pro",
464
+ tools: ["gemini"],
465
+ defaultReputation: 0.7
466
+ },
467
+ {
468
+ name: "qwen3.5-plus",
469
+ displayName: "Qwen 3.5 Plus",
470
+ tools: ["qwen"],
471
+ defaultReputation: 0.6
472
+ },
473
+ { name: "glm-5", displayName: "GLM-5", tools: ["qwen"], defaultReputation: 0.5 },
474
+ { name: "kimi-k2.5", displayName: "Kimi K2.5", tools: ["qwen"], defaultReputation: 0.5 },
475
+ {
476
+ name: "minimax-m2.5",
477
+ displayName: "Minimax M2.5",
478
+ tools: ["qwen"],
479
+ defaultReputation: 0.5
480
+ }
449
481
  ]
450
482
  };
451
483
 
@@ -1936,7 +1968,7 @@ var statsCommand = new Command3("stats").description("Display agent dashboard: t
1936
1968
  });
1937
1969
 
1938
1970
  // src/index.ts
1939
- var program = new Command4().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.2.1");
1971
+ var program = new Command4().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.2.2");
1940
1972
  program.addCommand(loginCommand);
1941
1973
  program.addCommand(agentCommand);
1942
1974
  program.addCommand(statsCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencara",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",