@ouro.bot/cli 0.1.0-alpha.403 → 0.1.0-alpha.404

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,13 @@
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.404",
6
+ "changes": [
7
+ "`ouro up` and `ouro up --no-repair` now render degraded provider summaries as grouped blocks with blank lines between agents, so rescue guidance reads like deliberate instructions instead of a pile of fragments.",
8
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the provider-repair summary readability release."
9
+ ]
10
+ },
4
11
  {
5
12
  "version": "0.1.0-alpha.403",
6
13
  "changes": [
@@ -160,12 +160,8 @@ function readinessIssueFromDegraded(entry) {
160
160
  });
161
161
  }
162
162
  function writeProviderRepairSummary(deps, title, degraded) {
163
- deps.writeStdout(title);
164
- for (const entry of degraded) {
165
- for (const line of (0, readiness_repair_1.renderReadinessIssueNextSteps)(readinessIssueFromDegraded(entry))) {
166
- deps.writeStdout(line);
167
- }
168
- }
163
+ const blocks = degraded.map((entry) => (0, readiness_repair_1.renderReadinessIssueNextSteps)(readinessIssueFromDegraded(entry)).join("\n"));
164
+ deps.writeStdout([title, ...blocks].join("\n\n"));
169
165
  }
170
166
  function providerRepairCountSummary(count) {
171
167
  if (count === 0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.403",
3
+ "version": "0.1.0-alpha.404",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",