opencara 0.2.2 → 0.4.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.
- package/dist/index.js +43 -11
- 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
|
-
{
|
|
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
|
-
{
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
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.
|
|
1971
|
+
var program = new Command4().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version("0.3.0");
|
|
1940
1972
|
program.addCommand(loginCommand);
|
|
1941
1973
|
program.addCommand(agentCommand);
|
|
1942
1974
|
program.addCommand(statsCommand);
|