@ouro.bot/cli 0.1.0-alpha.380 → 0.1.0-alpha.381
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.381",
|
|
6
|
+
"changes": [
|
|
7
|
+
"`ouro status` provider rows now suppress old readiness error details whenever credentials are currently missing or the agent vault is unavailable, keeping the table focused on the active blocker.",
|
|
8
|
+
"Provider visibility tests now cover both missing credentials and unavailable vault credentials so stale ping failures do not reappear in status rows.",
|
|
9
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the provider status polish release."
|
|
10
|
+
]
|
|
11
|
+
},
|
|
4
12
|
{
|
|
5
13
|
"version": "0.1.0-alpha.380",
|
|
6
14
|
"changes": [
|
|
@@ -101,6 +101,11 @@ function readinessLabel(readiness) {
|
|
|
101
101
|
}
|
|
102
102
|
return readiness.status;
|
|
103
103
|
}
|
|
104
|
+
function providerStatusDetail(lane) {
|
|
105
|
+
if (lane.credential.status !== "present")
|
|
106
|
+
return undefined;
|
|
107
|
+
return lane.readiness.error;
|
|
108
|
+
}
|
|
104
109
|
function formatProviderVisibilityLine(lane) {
|
|
105
110
|
if (lane.status === "unconfigured") {
|
|
106
111
|
return `${lane.lane}: unconfigured (${lane.reason}); repair: ${lane.repairCommand}`;
|
|
@@ -150,6 +155,7 @@ function providerVisibilityStatusRows(visibility) {
|
|
|
150
155
|
credential: "missing",
|
|
151
156
|
};
|
|
152
157
|
}
|
|
158
|
+
const detail = providerStatusDetail(lane);
|
|
153
159
|
return {
|
|
154
160
|
agent: visibility.agentName,
|
|
155
161
|
lane: lane.lane,
|
|
@@ -157,7 +163,7 @@ function providerVisibilityStatusRows(visibility) {
|
|
|
157
163
|
model: lane.model,
|
|
158
164
|
source: lane.source,
|
|
159
165
|
readiness: lane.readiness.status,
|
|
160
|
-
...(
|
|
166
|
+
...(detail ? { detail } : {}),
|
|
161
167
|
credential: credentialLabel(lane.credential),
|
|
162
168
|
};
|
|
163
169
|
});
|