@ouro.bot/cli 0.1.0-alpha.374 → 0.1.0-alpha.375

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.375",
6
+ "changes": [
7
+ "`ouro up` interactive repair now prints the exact `ouro auth` or `ouro vault unlock` command to run later when the human declines a repair prompt.",
8
+ "Declined repair prompts now share one later-command writer across provider auth and vault unlock flows, keeping skipped setup paths copy-pasteable.",
9
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the repair decline recap release."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.374",
6
14
  "changes": [
@@ -61,6 +61,9 @@ function vaultUnlockCommandFor(degraded) {
61
61
  function isAffirmativeAnswer(answer) {
62
62
  return /^(y|yes)$/i.test(answer.trim());
63
63
  }
64
+ function writeDeclinedRepair(degraded, command, deps) {
65
+ deps.writeStdout(`repair skipped for ${degraded.agent}; run \`${command}\` later.`);
66
+ }
64
67
  async function runInteractiveRepair(degraded, deps) {
65
68
  (0, runtime_1.emitNervesEvent)({
66
69
  level: "info",
@@ -100,6 +103,9 @@ async function runInteractiveRepair(degraded, deps) {
100
103
  });
101
104
  }
102
105
  }
106
+ else {
107
+ writeDeclinedRepair(entry, unlockCommand, deps);
108
+ }
103
109
  }
104
110
  else if (isCredentialIssue(entry)) {
105
111
  const provider = extractProviderFromFixHint(entry.fixHint);
@@ -128,6 +134,9 @@ async function runInteractiveRepair(degraded, deps) {
128
134
  });
129
135
  }
130
136
  }
137
+ else {
138
+ writeDeclinedRepair(entry, authCommand, deps);
139
+ }
131
140
  }
132
141
  else if (isConfigError(entry)) {
133
142
  deps.writeStdout(`fix hint for ${entry.agent}: ${entry.fixHint}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.374",
3
+ "version": "0.1.0-alpha.375",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",