@ouro.bot/cli 0.1.0-alpha.435 → 0.1.0-alpha.436

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/changelog.json CHANGED
@@ -1,6 +1,14 @@
1
1
  {
2
2
  "_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
3
3
  "versions": [
4
+ {
5
+ "version": "0.1.0-alpha.436",
6
+ "changes": [
7
+ "Distinct live provider pings now run in parallel during startup, repair, and connect-bay readiness checks, so the CLI stops making humans wait for one selected provider/model lane to finish before it even starts checking the next one.",
8
+ "The connect bay and provider-health surfaces still keep the same truthful live verification path and the same dedupe behavior when both lanes share one provider/model/revision, but healthy multi-provider setups now reach a ready state sooner.",
9
+ "New agent-config coverage locks in the concurrency contract directly: when two different provider lanes need live checks, the second ping must start before the first one finishes, so this speedup cannot silently regress back into serialized health checks."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.435",
6
14
  "changes": [
@@ -378,10 +378,14 @@ async function checkAgentConfigWithProviderHealth(agentName, bundlesRoot, deps =
378
378
  });
379
379
  }
380
380
  }
381
- let firstFailure = null;
382
- for (const group of pingGroups.values()) {
381
+ const groups = [...pingGroups.values()];
382
+ const pingResults = await Promise.all(groups.map(async (group) => {
383
383
  deps.onProgress?.(`checking ${group.provider} / ${group.model}...`);
384
384
  const result = await ping(group.provider, providerCredentialConfig(group.record), { model: group.model });
385
+ return { group, result };
386
+ }));
387
+ let firstFailure = null;
388
+ for (const { group, result } of pingResults) {
385
389
  if (!result.ok) {
386
390
  for (const lane of group.lanes) {
387
391
  writeLaneReadiness({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.435",
3
+ "version": "0.1.0-alpha.436",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",