@ouro.bot/cli 0.1.0-alpha.380 → 0.1.0-alpha.382
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,23 @@
|
|
|
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.382",
|
|
6
|
+
"changes": [
|
|
7
|
+
"The packaged travel-planning skill now describes travel/tool credentials as agent Bitwarden/Vaultwarden vault items instead of using retired bundle-vault wording.",
|
|
8
|
+
"Documentation contracts now block packaged skills from reintroducing legacy local credential paths, vault-key wording, or obsolete Bitwarden Agent Access CLI guidance.",
|
|
9
|
+
"The coverage workflow now treats `skills/` changes as package-shipping changes that require a fresh unpublished CLI version before merge.",
|
|
10
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the packaged skill credential-guidance release."
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"version": "0.1.0-alpha.381",
|
|
15
|
+
"changes": [
|
|
16
|
+
"`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.",
|
|
17
|
+
"Provider visibility tests now cover both missing credentials and unavailable vault credentials so stale ping failures do not reappear in status rows.",
|
|
18
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the provider status polish release."
|
|
19
|
+
]
|
|
20
|
+
},
|
|
4
21
|
{
|
|
5
22
|
"version": "0.1.0-alpha.380",
|
|
6
23
|
"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
|
});
|
package/package.json
CHANGED
|
@@ -73,8 +73,8 @@ Present top 3-5 options comparing:
|
|
|
73
73
|
### Credential Handling
|
|
74
74
|
|
|
75
75
|
Credentials are managed through the credential access layer, which stores
|
|
76
|
-
agent-owned secrets
|
|
77
|
-
enter model context.
|
|
76
|
+
agent-owned secrets in the agent's Bitwarden/Vaultwarden credential vault.
|
|
77
|
+
Raw passwords never enter model context.
|
|
78
78
|
|
|
79
79
|
- Use `credential_get` to check what credentials exist for a domain (metadata only, never passwords)
|
|
80
80
|
- Use `credential_store` to save credentials the agent acquired (e.g., during sign-up for a service)
|