@ouro.bot/cli 0.1.0-alpha.402 → 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,20 @@
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
+ },
11
+ {
12
+ "version": "0.1.0-alpha.403",
13
+ "changes": [
14
+ "Vault recovery help and parser usage now render repeatable `--from <json>` imports explicitly as `--from <json> [--from <json> ...]`, so the rescue command reads like a repeatable flag instead of a duplicated typo.",
15
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the vault recovery help clarity release."
16
+ ]
17
+ },
4
18
  {
5
19
  "version": "0.1.0-alpha.402",
6
20
  "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)
@@ -282,7 +282,7 @@ const SUBCOMMAND_HELP = {
282
282
  },
283
283
  "vault recover": {
284
284
  description: "Create an agent vault at the stable agent email and import local JSON credential exports",
285
- usage: "ouro vault recover --agent <name> --from <json> [--from <json>] [--email <email>] [--server <url>] [--store <store>]",
285
+ usage: "ouro vault recover --agent <name> --from <json> [--from <json> ...] [--email <email>] [--server <url>] [--store <store>]",
286
286
  example: "ouro vault recover --agent ouroboros --from ./credentials.json",
287
287
  },
288
288
  "vault unlock": {
@@ -486,7 +486,7 @@ function parseVaultCommand(args) {
486
486
  }
487
487
  const value = rest[i + 1];
488
488
  if (!value)
489
- throw new Error("Usage: ouro vault recover --agent <name> --from <json> [--from <json>]");
489
+ throw new Error("Usage: ouro vault recover --agent <name> --from <json> [--from <json> ...]");
490
490
  sources.push(value);
491
491
  i += 1;
492
492
  continue;
@@ -522,7 +522,7 @@ function parseVaultCommand(args) {
522
522
  }
523
523
  if (sub === "recover") {
524
524
  if (sources.length === 0) {
525
- throw new Error("Usage: ouro vault recover --agent <name> --from <json> [--from <json>]");
525
+ throw new Error("Usage: ouro vault recover --agent <name> --from <json> [--from <json> ...]");
526
526
  }
527
527
  return {
528
528
  kind: "vault.recover",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.402",
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",