@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 +7 -0
- package/dist/heart/daemon/cli-exec.js +2 -6
- package/package.json +1 -1
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
|
-
|
|
164
|
-
|
|
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)
|