@ouro.bot/cli 0.1.0-alpha.449 → 0.1.0-alpha.450

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.450",
6
+ "changes": [
7
+ "`ouro connect` now finishes its connection-check progress with neutral `checked` language instead of saying the whole check is `ready` when one selected provider just reported trouble.",
8
+ "The connection menu remains the authority for what needs attention: provider rows can show the real live-check failure while the progress line simply says the current connection scan completed.",
9
+ "A regression test now locks this copy truth in place for the failed-live-check root connect path."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.449",
6
14
  "changes": [
@@ -2706,7 +2706,7 @@ async function executeConnect(command, deps) {
2706
2706
  const progress = createHumanCommandProgress(deps, "connect");
2707
2707
  let menu;
2708
2708
  try {
2709
- menu = await runCommandProgressPhase(progress, "checking current connections", () => buildConnectMenu(command.agent, deps, (message) => progress.updateDetail(message)), () => "ready");
2709
+ menu = await runCommandProgressPhase(progress, "checking current connections", () => buildConnectMenu(command.agent, deps, (message) => progress.updateDetail(message)), () => "checked");
2710
2710
  }
2711
2711
  finally {
2712
2712
  progress.end();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.449",
3
+ "version": "0.1.0-alpha.450",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",