opencara 0.22.0 → 0.22.2
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5516,7 +5516,7 @@ function sleep2(ms, signal) {
|
|
|
5516
5516
|
async function startAgent(agentId, platformUrl, agentInfo, reviewDeps, consumptionDeps, options) {
|
|
5517
5517
|
const client = new ApiClient(platformUrl, {
|
|
5518
5518
|
authToken: options?.authToken,
|
|
5519
|
-
cliVersion: "0.22.
|
|
5519
|
+
cliVersion: "0.22.2",
|
|
5520
5520
|
versionOverride: options?.versionOverride,
|
|
5521
5521
|
onTokenRefresh: options?.onTokenRefresh
|
|
5522
5522
|
});
|
|
@@ -5802,7 +5802,7 @@ async function startBatchAgents(config, agents, pollIntervalMs, oauthToken, opti
|
|
|
5802
5802
|
const { versionOverride, verbose, instancesOverride, agentOwner, userOrgs } = options;
|
|
5803
5803
|
const client = new ApiClient(config.platformUrl, {
|
|
5804
5804
|
authToken: oauthToken,
|
|
5805
|
-
cliVersion: "0.22.
|
|
5805
|
+
cliVersion: "0.22.2",
|
|
5806
5806
|
versionOverride,
|
|
5807
5807
|
onTokenRefresh: () => getValidToken(config.platformUrl, { configPath: config.authFile })
|
|
5808
5808
|
});
|
|
@@ -6145,7 +6145,7 @@ agentCommand.command("start").description("Start agents in polling mode").option
|
|
|
6145
6145
|
}
|
|
6146
6146
|
config = loadConfig();
|
|
6147
6147
|
}
|
|
6148
|
-
console.log(formatVersionBanner("0.22.
|
|
6148
|
+
console.log(formatVersionBanner("0.22.2", "f92b498"));
|
|
6149
6149
|
if (config.agents && config.agents.length > 0) {
|
|
6150
6150
|
const toolEntries = config.agents.map((a) => ({
|
|
6151
6151
|
tool: a.tool,
|
|
@@ -6968,7 +6968,7 @@ var statusCommand = new Command4("status").description("Show agent config, conne
|
|
|
6968
6968
|
});
|
|
6969
6969
|
|
|
6970
6970
|
// src/index.ts
|
|
6971
|
-
var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.22.
|
|
6971
|
+
var program = new Command5().name("opencara").description("OpenCara \u2014 distributed AI code review agent").version(`${"0.22.2"} (${"f92b498"})`);
|
|
6972
6972
|
program.addCommand(agentCommand);
|
|
6973
6973
|
program.addCommand(authCommand());
|
|
6974
6974
|
program.addCommand(dedupCommand());
|