@ouro.bot/cli 0.1.0-alpha.415 → 0.1.0-alpha.416
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 +5 -3
- 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.416",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Post-repair provider health re-check in `ouro up` now shows a dedicated progress phase (`post-repair check`) with per-agent detail instead of running silently after interactive repair completes.",
|
|
8
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the post-repair progress release."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
4
11
|
{
|
|
5
12
|
"version": "0.1.0-alpha.415",
|
|
6
13
|
"changes": [
|
|
@@ -179,8 +179,8 @@ function providerRepairCountSummary(count) {
|
|
|
179
179
|
return "ok";
|
|
180
180
|
return `${count} ${count === 1 ? "needs" : "need"} attention`;
|
|
181
181
|
}
|
|
182
|
-
async function reportPostRepairProviderHealth(deps, repairedAgents) {
|
|
183
|
-
const remainingDegraded = await checkAgentProviders(deps, repairedAgents);
|
|
182
|
+
async function reportPostRepairProviderHealth(deps, repairedAgents, onProgress) {
|
|
183
|
+
const remainingDegraded = await checkAgentProviders(deps, repairedAgents, onProgress);
|
|
184
184
|
(0, runtime_1.emitNervesEvent)({
|
|
185
185
|
level: remainingDegraded.length > 0 ? "warn" : "info",
|
|
186
186
|
component: "daemon",
|
|
@@ -2700,7 +2700,9 @@ async function runOuroCli(args, deps = (0, cli_defaults_1.createDefaultOuroCliDe
|
|
|
2700
2700
|
const repairedAgents = daemonResult.stability.degraded
|
|
2701
2701
|
.filter(interactive_repair_1.hasRunnableInteractiveRepair)
|
|
2702
2702
|
.map((entry) => entry.agent);
|
|
2703
|
-
|
|
2703
|
+
progress.startPhase("post-repair check");
|
|
2704
|
+
await reportPostRepairProviderHealth(deps, repairedAgents, (msg) => progress.updateDetail(msg));
|
|
2705
|
+
progress.completePhase("post-repair check", providerRepairCountSummary(repairedAgents.length));
|
|
2704
2706
|
}
|
|
2705
2707
|
}
|
|
2706
2708
|
}
|