@ouro.bot/cli 0.1.0-alpha.652 → 0.1.0-alpha.653

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,12 @@
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.653",
6
+ "changes": [
7
+ "`ouro up` now waits long enough for a full daemon health-monitor cycle during final handoff, preventing false install failures when enabled senses become healthy shortly after the previous 20s cutoff."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.652",
6
12
  "changes": [
@@ -499,7 +499,7 @@ function writeSyncProbeSummary(deps, findings) {
499
499
  function bootPhasePlan(_daemonAlive) {
500
500
  return ["update check", "system setup", "sync probe", "starting daemon", "provider checks", "final daemon check"];
501
501
  }
502
- const FINAL_DAEMON_HEALTH_SETTLE_TIMEOUT_MS = 20_000;
502
+ const FINAL_DAEMON_HEALTH_SETTLE_TIMEOUT_MS = 90_000;
503
503
  const FINAL_DAEMON_HEALTH_SETTLE_POLL_INTERVAL_MS = 500;
504
504
  /**
505
505
  * Layer 2: brief, scannable summary of a boot-sync-probe finding for the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.652",
3
+ "version": "0.1.0-alpha.653",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",