@ouro.bot/cli 0.1.0-alpha.77 → 0.1.0-alpha.770

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.
Files changed (608) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +154 -23
  3. package/RepairGuide.ouro/agent.json +5 -0
  4. package/RepairGuide.ouro/psyche/IDENTITY.md +19 -0
  5. package/RepairGuide.ouro/psyche/SOUL.md +55 -0
  6. package/RepairGuide.ouro/skills/diagnose-broken-remote.md +63 -0
  7. package/RepairGuide.ouro/skills/diagnose-stacked-typed-issues.md +35 -0
  8. package/RepairGuide.ouro/skills/diagnose-sync-blocked.md +54 -0
  9. package/RepairGuide.ouro/skills/diagnose-vault-expired.md +60 -0
  10. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/agent.json +4 -2
  11. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/SOUL.md +2 -2
  12. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-serpent.md +1 -1
  13. package/assets/bluebubbles-host +264 -0
  14. package/changelog.json +4930 -16
  15. package/deploy/unraid/Dockerfile +48 -0
  16. package/deploy/unraid/README.txt +2483 -0
  17. package/deploy/unraid/audit-container-spec.sh +4 -0
  18. package/deploy/unraid/container-runtime.json +1 -0
  19. package/deploy/unraid/migrate-sanctuary-bundle.mjs +21 -0
  20. package/deploy/unraid/ouro-events/bootstrap-spool.sh +92 -0
  21. package/deploy/unraid/ouro-events/emit-event.mjs +310 -0
  22. package/deploy/unraid/ouro-events/emit-usenet-event.sh +54 -0
  23. package/deploy/unraid/ouro-events/install-usenet-guard.sh +435 -0
  24. package/deploy/unraid/ouro-events/usenet-health.sh +176 -0
  25. package/deploy/unraid/sanctuary-acceptance-adapter.sh +37 -0
  26. package/deploy/unraid/sanctuary-acceptance-contract.json +201 -0
  27. package/deploy/unraid/sanctuary-acceptance-harness.sh +23 -0
  28. package/deploy/unraid/sanctuary-deployment-target.mjs +709 -0
  29. package/deploy/unraid/sanctuary-safe-rename.py +24 -0
  30. package/deploy/unraid/sanctuary-unit16-host-broker.mjs +1804 -0
  31. package/deploy/unraid/sanctuary-unit16-run.sh +544 -0
  32. package/deploy/unraid/sanctuary-unit18-target-audit.sh +27 -0
  33. package/deploy/unraid/sanctuary.ouro/agent.json +24 -0
  34. package/deploy/unraid/sanctuary.ouro/arc/README.md +3 -0
  35. package/deploy/unraid/sanctuary.ouro/bundle-meta.json +5 -0
  36. package/deploy/unraid/sanctuary.ouro/habits/sanctuary-health.md +8 -0
  37. package/deploy/unraid/sanctuary.ouro/provider-readiness.json +11 -0
  38. package/deploy/unraid/sanctuary.ouro/psyche/ASPIRATIONS.md +5 -0
  39. package/deploy/unraid/sanctuary.ouro/psyche/IDENTITY.md +5 -0
  40. package/deploy/unraid/sanctuary.ouro/psyche/LORE.md +9 -0
  41. package/deploy/unraid/sanctuary.ouro/psyche/SOUL.md +9 -0
  42. package/deploy/unraid/sanctuary.ouro/psyche/TACIT.md +10 -0
  43. package/deploy/unraid/sanctuary.ouro/state/policy/steward.json +7 -0
  44. package/deploy/unraid/sanctuary.ouro/tool-profiles.json +23 -0
  45. package/deploy/unraid/sanctuary.xml +27 -0
  46. package/dist/a2a/card.js +57 -0
  47. package/dist/a2a/client.js +180 -0
  48. package/dist/a2a/config.js +50 -0
  49. package/dist/a2a/delegation-stores.js +56 -0
  50. package/dist/a2a/did-resolution.js +93 -0
  51. package/dist/a2a/identity.js +170 -0
  52. package/dist/a2a/inbound-share.js +107 -0
  53. package/dist/a2a/mission-result-wire.js +196 -0
  54. package/dist/a2a/onboarding.js +115 -0
  55. package/dist/a2a/pin-store.js +132 -0
  56. package/dist/a2a/seen-ledger.js +120 -0
  57. package/dist/a2a/server.js +604 -0
  58. package/dist/a2a/task-store.js +69 -0
  59. package/dist/a2a/transport.js +45 -0
  60. package/dist/a2a/types.js +3 -0
  61. package/dist/arc/attention-types.js +8 -0
  62. package/dist/arc/cares.js +360 -0
  63. package/dist/arc/episodes.js +118 -0
  64. package/dist/arc/evolution.js +490 -0
  65. package/dist/arc/flight-recorder.js +1034 -0
  66. package/dist/arc/intentions.js +134 -0
  67. package/dist/arc/json-store.js +117 -0
  68. package/dist/arc/obligations.js +386 -0
  69. package/dist/arc/packets.js +336 -0
  70. package/dist/arc/presence.js +185 -0
  71. package/dist/arc/task-lifecycle.js +57 -0
  72. package/dist/commerce/store.js +755 -0
  73. package/dist/commerce/types.js +3 -0
  74. package/dist/heart/active-work.js +820 -29
  75. package/dist/heart/agent-entry.js +190 -3
  76. package/dist/heart/approval-files.js +113 -0
  77. package/dist/heart/approval-store.js +950 -0
  78. package/dist/heart/attachments/image-normalize.js +194 -0
  79. package/dist/heart/attachments/materialize.js +97 -0
  80. package/dist/heart/attachments/originals.js +88 -0
  81. package/dist/heart/attachments/render.js +29 -0
  82. package/dist/heart/attachments/sources/bluebubbles.js +156 -0
  83. package/dist/heart/attachments/sources/cli-local-file.js +78 -0
  84. package/dist/heart/attachments/sources/index.js +18 -0
  85. package/dist/heart/attachments/sources/telegram.js +71 -0
  86. package/dist/heart/attachments/store.js +132 -0
  87. package/dist/heart/attachments/types.js +93 -0
  88. package/dist/heart/auth/auth-flow.js +495 -0
  89. package/dist/heart/autonomy-budget.js +478 -0
  90. package/dist/heart/awaiting/await-alert.js +148 -0
  91. package/dist/heart/awaiting/await-expiry.js +143 -0
  92. package/dist/heart/awaiting/await-loader.js +91 -0
  93. package/dist/heart/awaiting/await-parser.js +149 -0
  94. package/dist/heart/awaiting/await-runtime-state.js +100 -0
  95. package/dist/heart/awaiting/await-scheduler.js +382 -0
  96. package/dist/heart/background-operations.js +281 -0
  97. package/dist/heart/bridges/manager.js +137 -17
  98. package/dist/heart/bridges/store.js +14 -2
  99. package/dist/heart/bundle-state.js +168 -0
  100. package/dist/heart/commitments.js +64 -18
  101. package/dist/heart/config-registry.js +331 -0
  102. package/dist/heart/config.js +128 -129
  103. package/dist/heart/context-loss-gauntlet.js +383 -0
  104. package/dist/heart/context-loss-sentinel.js +1157 -0
  105. package/dist/heart/core.js +2014 -469
  106. package/dist/heart/cross-chat-delivery.js +9 -22
  107. package/dist/heart/daemon/agent-config-check.js +451 -0
  108. package/dist/heart/daemon/agent-discovery.js +185 -3
  109. package/dist/heart/daemon/agent-service.js +542 -0
  110. package/dist/heart/daemon/agentic-repair.js +547 -0
  111. package/dist/heart/daemon/await-private-wake.js +59 -0
  112. package/dist/heart/daemon/bluebubbles-cli-integration.js +71 -0
  113. package/dist/heart/daemon/bluebubbles-health-diagnostics.js +122 -0
  114. package/dist/heart/daemon/bluebubbles-host-protocol.js +433 -0
  115. package/dist/heart/daemon/bluebubbles-host.js +273 -0
  116. package/dist/heart/daemon/boot-sync-probe.js +197 -0
  117. package/dist/heart/daemon/cadence.js +180 -0
  118. package/dist/heart/daemon/cli-defaults.js +832 -0
  119. package/dist/heart/daemon/cli-desk.js +322 -0
  120. package/dist/heart/daemon/cli-exec.js +8692 -0
  121. package/dist/heart/daemon/cli-help.js +710 -0
  122. package/dist/heart/daemon/cli-parse.js +2714 -0
  123. package/dist/heart/daemon/cli-render-doctor.js +57 -0
  124. package/dist/heart/daemon/cli-render.js +777 -0
  125. package/dist/heart/daemon/cli-types.js +8 -0
  126. package/dist/heart/daemon/connect-bay.js +323 -0
  127. package/dist/heart/daemon/container-credential-bootstrap.js +273 -0
  128. package/dist/heart/daemon/container-healthcheck.js +96 -0
  129. package/dist/heart/daemon/container-runtime.js +97 -0
  130. package/dist/heart/daemon/container-spec-auditor-main.js +160 -0
  131. package/dist/heart/daemon/container-spec-auditor.js +176 -0
  132. package/dist/heart/daemon/daemon-bootstrap-startup.js +41 -0
  133. package/dist/heart/daemon/daemon-cli.js +29 -2181
  134. package/dist/heart/daemon/daemon-entry.js +944 -10
  135. package/dist/heart/daemon/daemon-health.js +186 -0
  136. package/dist/heart/daemon/daemon-rollup.js +57 -0
  137. package/dist/heart/daemon/daemon-runtime-sync.js +88 -13
  138. package/dist/heart/daemon/daemon-tombstone.js +236 -0
  139. package/dist/heart/daemon/daemon.js +1877 -88
  140. package/dist/heart/daemon/dns-workflow.js +394 -0
  141. package/dist/heart/daemon/doctor-types.js +8 -0
  142. package/dist/heart/daemon/doctor.js +1755 -0
  143. package/dist/heart/daemon/freshness.js +345 -0
  144. package/dist/heart/daemon/habit-private-wake.js +61 -0
  145. package/dist/heart/daemon/health-monitor.js +142 -11
  146. package/dist/heart/daemon/hooks/agent-config-v2.js +33 -0
  147. package/dist/heart/daemon/hooks/bundle-meta.js +135 -1
  148. package/dist/heart/daemon/http-health-probe.js +80 -0
  149. package/dist/heart/daemon/human-command-screens.js +234 -0
  150. package/dist/heart/daemon/human-readiness.js +114 -0
  151. package/dist/heart/daemon/inner-status.js +78 -0
  152. package/dist/heart/daemon/interactive-repair.js +394 -0
  153. package/dist/heart/daemon/launchd.js +37 -8
  154. package/dist/heart/daemon/log-tailer.js +79 -10
  155. package/dist/heart/daemon/logs-prune.js +132 -0
  156. package/dist/heart/daemon/mcp-canary.js +524 -0
  157. package/dist/heart/daemon/message-router.js +45 -5
  158. package/dist/heart/daemon/migrate-to-desk.js +848 -0
  159. package/dist/heart/daemon/os-cron-deps.js +135 -0
  160. package/dist/heart/daemon/os-cron.js +22 -14
  161. package/dist/heart/daemon/ouro-bot-entry.js +4 -2
  162. package/dist/heart/daemon/ouro-entry.js +3 -1
  163. package/dist/heart/daemon/plugin-cli.js +432 -0
  164. package/dist/heart/daemon/process-manager.js +624 -61
  165. package/dist/heart/daemon/provider-discovery.js +137 -0
  166. package/dist/heart/daemon/provider-ping-progress.js +83 -0
  167. package/dist/heart/daemon/prunable-bundle.js +144 -0
  168. package/dist/heart/daemon/pulse.js +511 -0
  169. package/dist/heart/daemon/readiness-repair.js +365 -0
  170. package/dist/heart/daemon/run-hooks.js +2 -0
  171. package/dist/heart/daemon/runtime-logging.js +47 -14
  172. package/dist/heart/daemon/runtime-metadata.js +2 -30
  173. package/dist/heart/daemon/runtime-mode.js +13 -2
  174. package/dist/heart/daemon/safe-mode.js +161 -0
  175. package/dist/heart/daemon/sanctuary-acceptance-adapter.js +2468 -0
  176. package/dist/heart/daemon/sanctuary-acceptance-harness.js +1624 -0
  177. package/dist/heart/daemon/sanctuary-acceptance-marker.js +267 -0
  178. package/dist/heart/daemon/sanctuary-acceptance-scenarios.js +976 -0
  179. package/dist/heart/daemon/sanctuary-bundle-migration.js +398 -0
  180. package/dist/heart/daemon/sanctuary-scheduler-liveness.js +227 -0
  181. package/dist/heart/daemon/sanctuary-scheduler-origin.js +132 -0
  182. package/dist/heart/daemon/sense-manager.js +689 -48
  183. package/dist/heart/daemon/session-id-resolver.js +131 -0
  184. package/dist/heart/daemon/skill-management-installer.js +1 -1
  185. package/dist/heart/daemon/socket-client.js +180 -12
  186. package/dist/heart/daemon/stale-bundle-prune.js +113 -0
  187. package/dist/heart/daemon/startup-tui.js +338 -0
  188. package/dist/heart/daemon/supercronic-supervisor.js +282 -0
  189. package/dist/heart/daemon/task-scheduler.js +117 -39
  190. package/dist/heart/daemon/terminal-ui.js +499 -0
  191. package/dist/heart/daemon/thoughts.js +138 -54
  192. package/dist/heart/daemon/up-progress.js +366 -0
  193. package/dist/heart/daemon/vault-items.js +56 -0
  194. package/dist/heart/delegation.js +1 -4
  195. package/dist/heart/external-events/router.js +1187 -0
  196. package/dist/heart/habits/habit-cancel.js +810 -0
  197. package/dist/heart/habits/habit-lifecycle.js +1327 -0
  198. package/dist/heart/habits/habit-migration.js +194 -0
  199. package/dist/heart/habits/habit-parser.js +278 -0
  200. package/dist/heart/habits/habit-runtime-state.js +93 -0
  201. package/dist/heart/habits/habit-scheduler.js +653 -0
  202. package/dist/heart/habits/habit-session-summary.js +318 -0
  203. package/dist/heart/habits/habit-session.js +636 -0
  204. package/dist/heart/{daemon → hatch}/hatch-flow.js +55 -62
  205. package/dist/heart/{daemon → hatch}/hatch-specialist.js +6 -8
  206. package/dist/heart/{daemon → hatch}/specialist-prompt.js +12 -9
  207. package/dist/heart/{daemon → hatch}/specialist-tools.js +53 -18
  208. package/dist/heart/identity.js +184 -59
  209. package/dist/heart/kept-notes.js +289 -0
  210. package/dist/heart/kicks.js +1 -1
  211. package/dist/heart/machine-identity.js +161 -0
  212. package/dist/heart/mail-import-discovery.js +353 -0
  213. package/dist/heart/mailbox/mailbox-http-hooks.js +98 -0
  214. package/dist/heart/mailbox/mailbox-http-response.js +7 -0
  215. package/dist/heart/mailbox/mailbox-http-routes.js +398 -0
  216. package/dist/heart/mailbox/mailbox-http-static.js +103 -0
  217. package/dist/heart/mailbox/mailbox-http-transport.js +116 -0
  218. package/dist/heart/mailbox/mailbox-http.js +99 -0
  219. package/dist/heart/mailbox/mailbox-read.js +39 -0
  220. package/dist/heart/mailbox/mailbox-types.js +27 -0
  221. package/dist/heart/mailbox/mailbox-view.js +197 -0
  222. package/dist/heart/mailbox/readers/agent-machine.js +428 -0
  223. package/dist/heart/mailbox/readers/continuity-readers.js +329 -0
  224. package/dist/heart/mailbox/readers/mail.js +375 -0
  225. package/dist/heart/mailbox/readers/runtime-readers.js +823 -0
  226. package/dist/heart/mailbox/readers/sessions.js +232 -0
  227. package/dist/heart/mailbox/readers/shared.js +111 -0
  228. package/dist/heart/mcp/mcp-server.js +696 -0
  229. package/dist/heart/migrate-config.js +100 -0
  230. package/dist/heart/model-capabilities.js +11 -0
  231. package/dist/heart/orientation-frame.js +345 -0
  232. package/dist/heart/platform.js +81 -0
  233. package/dist/heart/primitives.js +1 -1
  234. package/dist/heart/private-runtime/decision-renderer.js +158 -0
  235. package/dist/heart/private-runtime/index.js +18 -0
  236. package/dist/heart/private-runtime/ledger.js +221 -0
  237. package/dist/heart/private-runtime/policy.js +228 -0
  238. package/dist/heart/private-runtime/types.js +2 -0
  239. package/dist/heart/progress-story.js +1 -1
  240. package/dist/heart/provider-attempt.js +137 -0
  241. package/dist/heart/provider-binding-resolver.js +273 -0
  242. package/dist/heart/provider-credentials.js +449 -0
  243. package/dist/heart/provider-failover.js +311 -0
  244. package/dist/heart/provider-models.js +96 -0
  245. package/dist/heart/provider-ping.js +265 -0
  246. package/dist/heart/provider-readiness-cache.js +119 -0
  247. package/dist/heart/provider-visibility.js +188 -0
  248. package/dist/heart/providers/anthropic-token.js +131 -0
  249. package/dist/heart/providers/anthropic.js +173 -60
  250. package/dist/heart/providers/azure.js +23 -11
  251. package/dist/heart/providers/error-classification.js +127 -0
  252. package/dist/heart/providers/github-copilot.js +34 -38
  253. package/dist/heart/providers/minimax-vlm.js +189 -0
  254. package/dist/heart/providers/minimax.js +26 -8
  255. package/dist/heart/providers/openai-codex-token.js +349 -0
  256. package/dist/heart/providers/openai-codex.js +55 -40
  257. package/dist/heart/providers/openai-compatible.js +177 -0
  258. package/dist/heart/run-ledger.js +247 -0
  259. package/dist/heart/runtime-capability-check.js +170 -0
  260. package/dist/heart/runtime-credentials.js +607 -0
  261. package/dist/heart/runtime-cwd.js +87 -0
  262. package/dist/heart/sense-truth.js +22 -4
  263. package/dist/heart/session-activity.js +90 -24
  264. package/dist/heart/session-events.js +1318 -0
  265. package/dist/heart/session-playback-cli-main.js +5 -0
  266. package/dist/heart/session-playback-cli.js +36 -0
  267. package/dist/heart/session-playback.js +231 -0
  268. package/dist/heart/session-stats-cli-main.js +5 -0
  269. package/dist/heart/session-stats.js +182 -0
  270. package/dist/heart/session-transcript.js +133 -0
  271. package/dist/heart/start-of-turn-packet.js +372 -0
  272. package/dist/heart/steward-policy.js +302 -0
  273. package/dist/heart/streaming.js +604 -207
  274. package/dist/heart/structured-output.js +196 -0
  275. package/dist/heart/sync-classification.js +176 -0
  276. package/dist/heart/sync.js +449 -0
  277. package/dist/heart/target-resolution.js +11 -7
  278. package/dist/heart/tempo.js +93 -0
  279. package/dist/heart/temporal-view.js +41 -0
  280. package/dist/heart/timeouts.js +101 -0
  281. package/dist/heart/tool-activity-callbacks.js +59 -0
  282. package/dist/heart/tool-approval.js +342 -0
  283. package/dist/heart/tool-description.js +155 -0
  284. package/dist/heart/tool-friction.js +55 -0
  285. package/dist/heart/tool-loop.js +200 -0
  286. package/dist/heart/turn-context.js +481 -0
  287. package/dist/heart/{daemon → versioning}/ouro-bot-global-installer.js +6 -5
  288. package/dist/heart/{daemon → versioning}/ouro-bot-wrapper.js +1 -1
  289. package/dist/heart/versioning/ouro-path-installer.js +432 -0
  290. package/dist/heart/versioning/ouro-recovery-launcher.js +76 -0
  291. package/dist/heart/versioning/ouro-version-manager.js +409 -0
  292. package/dist/heart/{daemon → versioning}/staged-restart.js +40 -8
  293. package/dist/heart/{daemon → versioning}/update-checker.js +6 -1
  294. package/dist/heart/versioning/update-hooks.js +154 -0
  295. package/dist/heart/versioning/version-intent.js +114 -0
  296. package/dist/heart/work-card.js +380 -0
  297. package/dist/mailbox-ui/assets/index-Du_9G9WO.css +1 -0
  298. package/dist/mailbox-ui/assets/index-J8zDwHmE.js +1 -0
  299. package/dist/mailbox-ui/assets/vendor-CcN1XpQ9.js +61 -0
  300. package/dist/mailbox-ui/index.html +16 -0
  301. package/dist/mailroom/attention.js +167 -0
  302. package/dist/mailroom/autonomy.js +209 -0
  303. package/dist/mailroom/blob-store.js +889 -0
  304. package/dist/mailroom/body-cache.js +61 -0
  305. package/dist/mailroom/cache-sync-cli.js +58 -0
  306. package/dist/mailroom/core.js +803 -0
  307. package/dist/mailroom/entry.js +160 -0
  308. package/dist/mailroom/file-store.js +568 -0
  309. package/dist/mailroom/hosted-cache-sync.js +384 -0
  310. package/dist/mailroom/mbox-import.js +393 -0
  311. package/dist/mailroom/migration.js +164 -0
  312. package/dist/mailroom/outbound.js +380 -0
  313. package/dist/mailroom/policy.js +263 -0
  314. package/dist/mailroom/reader.js +292 -0
  315. package/dist/mailroom/search-cache.js +513 -0
  316. package/dist/mailroom/search-relevance.js +319 -0
  317. package/dist/mailroom/smtp-ingress.js +176 -0
  318. package/dist/mailroom/source-state.js +176 -0
  319. package/dist/mailroom/thread.js +109 -0
  320. package/dist/mailroom/travel-extract.js +89 -0
  321. package/dist/mind/bundle-manifest.js +24 -2
  322. package/dist/mind/context.js +278 -111
  323. package/dist/mind/desk-section.js +362 -0
  324. package/dist/mind/diary-integrity.js +60 -0
  325. package/dist/mind/{memory.js → diary.js} +68 -77
  326. package/dist/mind/embedding-provider.js +60 -0
  327. package/dist/mind/file-state.js +179 -0
  328. package/dist/mind/{associative-recall.js → note-search.js} +47 -58
  329. package/dist/mind/obligation-steering.js +227 -0
  330. package/dist/mind/pending.js +34 -8
  331. package/dist/mind/prompt-budget.js +479 -0
  332. package/dist/mind/prompt-refresh.js +3 -2
  333. package/dist/mind/prompt.js +1058 -187
  334. package/dist/mind/provenance-trust.js +26 -0
  335. package/dist/mind/record-paths.js +312 -0
  336. package/dist/mind/scrutiny.js +173 -0
  337. package/dist/mind/session-transaction.js +415 -0
  338. package/dist/nerves/cli-logging.js +7 -1
  339. package/dist/nerves/coverage/audit-rules.js +15 -6
  340. package/dist/nerves/coverage/audit.js +28 -2
  341. package/dist/nerves/coverage/cli.js +1 -1
  342. package/dist/nerves/coverage/contract.js +5 -5
  343. package/dist/nerves/coverage/file-completeness.js +139 -5
  344. package/dist/nerves/coverage/run-artifacts.js +55 -35
  345. package/dist/nerves/coverage/source-scanner.js +4 -4
  346. package/dist/nerves/event-buffer.js +111 -0
  347. package/dist/nerves/index.js +293 -9
  348. package/dist/nerves/observation.js +20 -0
  349. package/dist/nerves/redact.js +79 -0
  350. package/dist/nerves/review/cli-main.js +5 -0
  351. package/dist/nerves/review/cli.js +156 -0
  352. package/dist/nerves/review/core.js +159 -0
  353. package/dist/nerves/runtime.js +17 -1
  354. package/dist/repertoire/ado-client.js +15 -56
  355. package/dist/repertoire/ado-semantic.js +16 -10
  356. package/dist/repertoire/api-client.js +97 -0
  357. package/dist/repertoire/bitwarden-store.js +1045 -0
  358. package/dist/repertoire/bundle-templates.js +71 -0
  359. package/dist/repertoire/bw-installer.js +180 -0
  360. package/dist/repertoire/coding/codex-jsonl.js +64 -0
  361. package/dist/repertoire/coding/context-pack.js +331 -0
  362. package/dist/repertoire/coding/feedback.js +218 -30
  363. package/dist/repertoire/coding/index.js +15 -3
  364. package/dist/repertoire/coding/manager.js +166 -10
  365. package/dist/repertoire/coding/spawner.js +58 -11
  366. package/dist/repertoire/coding/tools.js +242 -14
  367. package/dist/repertoire/coding/workbench-client.js +272 -0
  368. package/dist/repertoire/coding/workbench-manager.js +346 -0
  369. package/dist/repertoire/commerce-errors.js +109 -0
  370. package/dist/repertoire/commerce-self-test.js +156 -0
  371. package/dist/repertoire/credential-access.js +178 -0
  372. package/dist/repertoire/desk/classifier.js +362 -0
  373. package/dist/repertoire/duffel-client.js +185 -0
  374. package/dist/repertoire/github-client.js +14 -55
  375. package/dist/repertoire/graph-client.js +11 -52
  376. package/dist/repertoire/guardrails.js +813 -18
  377. package/dist/repertoire/mcp-client.js +44 -3
  378. package/dist/repertoire/mcp-manager.js +259 -20
  379. package/dist/repertoire/mcp-tools.js +83 -0
  380. package/dist/repertoire/plugin-mcp.js +175 -0
  381. package/dist/repertoire/plugins.js +253 -0
  382. package/dist/repertoire/relationship-authorization.js +194 -0
  383. package/dist/repertoire/shell-sessions.js +133 -0
  384. package/dist/repertoire/skills.js +48 -4
  385. package/dist/repertoire/stripe-client.js +131 -0
  386. package/dist/repertoire/tool-arguments.js +143 -0
  387. package/dist/repertoire/tool-results.js +29 -0
  388. package/dist/repertoire/tools-a2a.js +699 -0
  389. package/dist/repertoire/tools-attachments.js +322 -0
  390. package/dist/repertoire/tools-awaiting.js +575 -0
  391. package/dist/repertoire/tools-base.js +82 -1139
  392. package/dist/repertoire/tools-bluebubbles.js +2 -0
  393. package/dist/repertoire/tools-bridge.js +144 -0
  394. package/dist/repertoire/tools-bundle.js +993 -0
  395. package/dist/repertoire/tools-commerce.js +253 -0
  396. package/dist/repertoire/tools-config.js +186 -0
  397. package/dist/repertoire/tools-continuity.js +521 -0
  398. package/dist/repertoire/tools-credential.js +383 -0
  399. package/dist/repertoire/tools-evolution.js +527 -0
  400. package/dist/repertoire/tools-files.js +344 -0
  401. package/dist/repertoire/tools-flight.js +290 -0
  402. package/dist/repertoire/tools-flow.js +119 -0
  403. package/dist/repertoire/tools-github.js +3 -8
  404. package/dist/repertoire/tools-habits.js +103 -0
  405. package/dist/repertoire/tools-mail.js +1828 -0
  406. package/dist/repertoire/tools-notes.js +485 -0
  407. package/dist/repertoire/tools-obligations.js +182 -0
  408. package/dist/repertoire/tools-orientation.js +31 -0
  409. package/dist/repertoire/tools-record.js +482 -0
  410. package/dist/repertoire/tools-rsvp.js +139 -0
  411. package/dist/repertoire/tools-runtime.js +150 -0
  412. package/dist/repertoire/tools-session.js +1096 -0
  413. package/dist/repertoire/tools-shell.js +133 -0
  414. package/dist/repertoire/tools-steward-policy.js +95 -0
  415. package/dist/repertoire/tools-stripe.js +224 -0
  416. package/dist/repertoire/tools-surface.js +355 -0
  417. package/dist/repertoire/tools-teams.js +12 -39
  418. package/dist/repertoire/tools-telegram-contacts.js +37 -0
  419. package/dist/repertoire/tools-travel.js +125 -0
  420. package/dist/repertoire/tools-trip.js +982 -0
  421. package/dist/repertoire/tools-unraid.js +459 -0
  422. package/dist/repertoire/tools-user-profile.js +146 -0
  423. package/dist/repertoire/tools-vault.js +40 -0
  424. package/dist/repertoire/tools-voice.js +145 -0
  425. package/dist/repertoire/tools.js +377 -80
  426. package/dist/repertoire/travel-api-client.js +360 -0
  427. package/dist/repertoire/unraid-client.js +155 -0
  428. package/dist/repertoire/unraid-restart.js +212 -0
  429. package/dist/repertoire/user-profile.js +131 -0
  430. package/dist/repertoire/vault-setup.js +246 -0
  431. package/dist/repertoire/vault-unlock.js +628 -0
  432. package/dist/rsvp/aisleplanner-client.js +354 -0
  433. package/dist/rsvp/cli.js +926 -0
  434. package/dist/rsvp/config.js +327 -0
  435. package/dist/rsvp/cutover.js +433 -0
  436. package/dist/rsvp/diagnostics.js +232 -0
  437. package/dist/rsvp/diff-renderer.js +176 -0
  438. package/dist/rsvp/habit-policy.js +110 -0
  439. package/dist/rsvp/habit-stage.js +123 -0
  440. package/dist/rsvp/incident-bundle.js +97 -0
  441. package/dist/rsvp/migration.js +204 -0
  442. package/dist/rsvp/native-habit-runner.js +630 -0
  443. package/dist/rsvp/outbound-state.js +628 -0
  444. package/dist/rsvp/query.js +118 -0
  445. package/dist/rsvp/replay.js +233 -0
  446. package/dist/rsvp/snapshot.js +232 -0
  447. package/dist/rsvp/spend-ledger.js +175 -0
  448. package/dist/scripts/claude-code-hook.js +41 -0
  449. package/dist/scripts/claude-code-stop-hook.js +47 -0
  450. package/dist/senses/a2a-entry.js +115 -0
  451. package/dist/senses/attention-queue.js +186 -0
  452. package/dist/senses/await-turn-message.js +58 -0
  453. package/dist/senses/bluebubbles/active-turns.js +216 -0
  454. package/dist/senses/bluebubbles/attachment-cache.js +53 -0
  455. package/dist/senses/bluebubbles/attachment-download.js +137 -0
  456. package/dist/senses/{bluebubbles-client.js → bluebubbles/client.js} +355 -40
  457. package/dist/senses/bluebubbles/context-packet.js +207 -0
  458. package/dist/senses/bluebubbles/context-smoke.js +144 -0
  459. package/dist/senses/bluebubbles/entry.js +90 -0
  460. package/dist/senses/{bluebubbles-inbound-log.js → bluebubbles/inbound-log.js} +21 -3
  461. package/dist/senses/bluebubbles/index.js +3839 -0
  462. package/dist/senses/bluebubbles/latest-turn.js +311 -0
  463. package/dist/senses/{bluebubbles-media.js → bluebubbles/media.js} +121 -71
  464. package/dist/senses/{bluebubbles-model.js → bluebubbles/model.js} +159 -28
  465. package/dist/senses/{bluebubbles-mutation-log.js → bluebubbles/mutation-log.js} +24 -13
  466. package/dist/senses/bluebubbles/outbound-state.js +308 -0
  467. package/dist/senses/bluebubbles/processed-log.js +133 -0
  468. package/dist/senses/bluebubbles/reaction-policy.js +47 -0
  469. package/dist/senses/bluebubbles/replay.js +284 -0
  470. package/dist/senses/{bluebubbles-runtime-state.js → bluebubbles/runtime-state.js} +30 -2
  471. package/dist/senses/bluebubbles/semantic-receipts.js +1986 -0
  472. package/dist/senses/{bluebubbles-session-cleanup.js → bluebubbles/session-cleanup.js} +1 -1
  473. package/dist/senses/bluebubbles/webhook-registration.js +228 -0
  474. package/dist/senses/bluebubbles-meta-guard.js +39 -0
  475. package/dist/senses/cli/bracketed-paste.js +82 -0
  476. package/dist/senses/cli/image-paste.js +287 -0
  477. package/dist/senses/cli/image-ref-navigation.js +75 -0
  478. package/dist/senses/cli/ink-app.js +156 -0
  479. package/dist/senses/cli/inline-diff.js +64 -0
  480. package/dist/senses/cli/input-keys.js +174 -0
  481. package/dist/senses/cli/kill-ring.js +86 -0
  482. package/dist/senses/cli/message-list.js +51 -0
  483. package/dist/senses/cli/ouro-tui.js +607 -0
  484. package/dist/senses/cli/spinner-imperative.js +135 -0
  485. package/dist/senses/cli/spinner.js +101 -0
  486. package/dist/senses/cli/status-line.js +60 -0
  487. package/dist/senses/cli/streaming-markdown.js +526 -0
  488. package/dist/senses/cli/tool-display.js +85 -0
  489. package/dist/senses/cli/tool-render.js +85 -0
  490. package/dist/senses/cli/tui-store.js +241 -0
  491. package/dist/senses/cli/virtual-list.js +35 -0
  492. package/dist/senses/cli-entry.js +60 -8
  493. package/dist/senses/cli.js +600 -317
  494. package/dist/senses/commands.js +66 -3
  495. package/dist/senses/context-packet-ledger.js +371 -0
  496. package/dist/senses/context-packets.js +154 -0
  497. package/dist/senses/habit-lifecycle-guard.js +24 -0
  498. package/dist/senses/habit-turn-message.js +160 -0
  499. package/dist/senses/ingress-evidence.js +2 -0
  500. package/dist/senses/mail-entry.js +66 -0
  501. package/dist/senses/mail.js +524 -0
  502. package/dist/senses/pipeline.js +1081 -204
  503. package/dist/senses/private-runtime-worker.js +780 -0
  504. package/dist/senses/private-runtime.js +1491 -0
  505. package/dist/senses/proactive-content-guard.js +51 -0
  506. package/dist/senses/sanctuary-download-credit-presentation.js +31 -0
  507. package/dist/senses/sanctuary-full-visibility-contract.js +302 -0
  508. package/dist/senses/sanctuary-grounding.js +118 -0
  509. package/dist/senses/sanctuary-health-acceptance-probe-entry.js +12 -0
  510. package/dist/senses/sanctuary-health-acceptance-probe.js +774 -0
  511. package/dist/senses/sanctuary-health-runner.js +101 -0
  512. package/dist/senses/sanctuary-health.js +408 -0
  513. package/dist/senses/sanctuary-interactive-control.js +306 -0
  514. package/dist/senses/sanctuary-media-optimization.js +436 -0
  515. package/dist/senses/sanctuary-runtime.js +287 -0
  516. package/dist/senses/sanctuary-sab.js +85 -0
  517. package/dist/senses/sanctuary-storage-optimization-contract.js +32 -0
  518. package/dist/senses/shared-turn.js +488 -0
  519. package/dist/senses/surface-tool.js +109 -0
  520. package/dist/senses/teams-entry.js +60 -8
  521. package/dist/senses/teams.js +515 -217
  522. package/dist/senses/telegram-admission.js +711 -0
  523. package/dist/senses/telegram-approval-runtime.js +566 -0
  524. package/dist/senses/telegram-attachments.js +182 -0
  525. package/dist/senses/telegram-audit-ledger.js +220 -0
  526. package/dist/senses/telegram-client.js +1676 -0
  527. package/dist/senses/telegram-effect-adapter.js +796 -0
  528. package/dist/senses/telegram-entry.js +83 -0
  529. package/dist/senses/telegram.js +2018 -0
  530. package/dist/senses/trust-gate.js +104 -9
  531. package/dist/senses/voice/audio-playback.js +237 -0
  532. package/dist/senses/voice/audio-routing.js +119 -0
  533. package/dist/senses/voice/elevenlabs.js +202 -0
  534. package/dist/senses/voice/floor-control.js +431 -0
  535. package/dist/senses/voice/floor-controller.js +115 -0
  536. package/dist/senses/voice/golden-path.js +116 -0
  537. package/dist/senses/voice/index.js +29 -0
  538. package/dist/senses/voice/meeting.js +113 -0
  539. package/dist/senses/voice/outbound.js +190 -0
  540. package/dist/senses/voice/phone.js +33 -0
  541. package/dist/senses/voice/playback.js +139 -0
  542. package/dist/senses/voice/realtime-eval.js +496 -0
  543. package/dist/senses/voice/realtime-trace.js +531 -0
  544. package/dist/senses/voice/transcript.js +70 -0
  545. package/dist/senses/voice/turn.js +191 -0
  546. package/dist/senses/voice/twilio-phone-runtime.js +807 -0
  547. package/dist/senses/voice/twilio-phone.js +5081 -0
  548. package/dist/senses/voice/types.js +2 -0
  549. package/dist/senses/voice/whisper.js +161 -0
  550. package/dist/senses/voice-entry.js +81 -0
  551. package/dist/senses/voice-realtime-eval-command.js +99 -0
  552. package/dist/senses/voice-realtime-eval-entry.js +21 -0
  553. package/dist/senses/voice-twilio-entry.js +87 -0
  554. package/dist/trips/core.js +138 -0
  555. package/dist/trips/store.js +265 -0
  556. package/dist/util/frontmatter.js +69 -0
  557. package/npm-shrinkwrap.json +8129 -0
  558. package/package.json +71 -12
  559. package/skills/agent-commerce.md +113 -0
  560. package/skills/browser-navigation.md +117 -0
  561. package/skills/commerce-setup-guide.md +116 -0
  562. package/skills/commerce-setup.md +84 -0
  563. package/skills/configure-dev-tools.md +99 -0
  564. package/skills/travel-planning.md +138 -0
  565. package/dist/heart/daemon/auth-flow.js +0 -430
  566. package/dist/heart/daemon/ouro-path-installer.js +0 -178
  567. package/dist/heart/daemon/update-hooks.js +0 -138
  568. package/dist/heart/obligations.js +0 -141
  569. package/dist/heart/safe-workspace.js +0 -228
  570. package/dist/heart/session-recall.js +0 -116
  571. package/dist/mind/friends/channel.js +0 -84
  572. package/dist/mind/friends/group-context.js +0 -144
  573. package/dist/mind/friends/resolver.js +0 -84
  574. package/dist/mind/friends/store-file.js +0 -190
  575. package/dist/mind/friends/store.js +0 -4
  576. package/dist/mind/friends/tokens.js +0 -26
  577. package/dist/mind/friends/trust-explanation.js +0 -74
  578. package/dist/mind/friends/types.js +0 -29
  579. package/dist/repertoire/tasks/board.js +0 -134
  580. package/dist/repertoire/tasks/index.js +0 -224
  581. package/dist/repertoire/tasks/lifecycle.js +0 -80
  582. package/dist/repertoire/tasks/middleware.js +0 -65
  583. package/dist/repertoire/tasks/parser.js +0 -173
  584. package/dist/repertoire/tasks/scanner.js +0 -132
  585. package/dist/repertoire/tasks/transitions.js +0 -144
  586. package/dist/senses/bluebubbles-entry.js +0 -13
  587. package/dist/senses/bluebubbles.js +0 -1180
  588. package/dist/senses/debug-activity.js +0 -148
  589. package/dist/senses/inner-dialog-worker.js +0 -90
  590. package/dist/senses/inner-dialog.js +0 -525
  591. package/subagents/README.md +0 -7
  592. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/basilisk.md +0 -0
  593. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jafar.md +0 -0
  594. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jormungandr.md +0 -0
  595. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/kaa.md +0 -0
  596. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/medusa.md +0 -0
  597. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/monty.md +0 -0
  598. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/nagini.md +0 -0
  599. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/ouroboros.md +0 -0
  600. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/python.md +0 -0
  601. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/quetzalcoatl.md +0 -0
  602. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/sir-hiss.md +0 -0
  603. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-snake.md +0 -0
  604. /package/dist/{repertoire/tasks/types.js → heart/attachments/sources/adapter.js} +0 -0
  605. /package/dist/heart/{daemon → hatch}/hatch-animation.js +0 -0
  606. /package/dist/heart/{daemon → hatch}/specialist-orchestrator.js +0 -0
  607. /package/dist/heart/{daemon → versioning}/ouro-uti.js +0 -0
  608. /package/dist/heart/{daemon → versioning}/wrapper-publish-guard.js +0 -0
@@ -34,43 +34,470 @@ var __importStar = (this && this.__importStar) || (function () {
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.OuroDaemon = void 0;
37
+ exports.messageFromHabitPokeError = messageFromHabitPokeError;
38
+ exports.parseOrphanPidsFromPs = parseOrphanPidsFromPs;
39
+ exports.filterPidfilePidsToActualOrphans = filterPidfilePidsToActualOrphans;
40
+ exports.mergeUniqueOrphanPids = mergeUniqueOrphanPids;
41
+ exports.waitForOrphanProcessesToSettle = waitForOrphanProcessesToSettle;
42
+ exports.assertOrphanCleanupComplete = assertOrphanCleanupComplete;
43
+ exports.drainOrphanProcessesBeforeStartup = drainOrphanProcessesBeforeStartup;
44
+ exports.killOrphanProcesses = killOrphanProcesses;
45
+ exports.writePidfile = writePidfile;
46
+ exports.handleAgentSenseTurn = handleAgentSenseTurn;
47
+ exports.handleAgentAskTurn = handleAgentAskTurn;
37
48
  const fs = __importStar(require("fs"));
38
49
  const net = __importStar(require("net"));
50
+ const os = __importStar(require("os"));
39
51
  const path = __importStar(require("path"));
52
+ const node_crypto_1 = require("node:crypto");
40
53
  const identity_1 = require("../identity");
54
+ const agent_discovery_1 = require("./agent-discovery");
41
55
  const runtime_1 = require("../../nerves/runtime");
42
56
  const runtime_metadata_1 = require("./runtime-metadata");
43
57
  const runtime_mode_1 = require("./runtime-mode");
44
- const update_hooks_1 = require("./update-hooks");
58
+ const update_hooks_1 = require("../versioning/update-hooks");
45
59
  const bundle_meta_1 = require("./hooks/bundle-meta");
60
+ const agent_config_v2_1 = require("./hooks/agent-config-v2");
46
61
  const bundle_manifest_1 = require("../../mind/bundle-manifest");
47
- const update_checker_1 = require("./update-checker");
48
- const staged_restart_1 = require("./staged-restart");
62
+ const update_checker_1 = require("../versioning/update-checker");
49
63
  const child_process_1 = require("child_process");
50
64
  const pending_1 = require("../../mind/pending");
51
- const channel_1 = require("../../mind/friends/channel");
65
+ const agent_service_1 = require("./agent-service");
66
+ const friends_1 = require("@ouro.bot/friends");
52
67
  const mcp_manager_1 = require("../../repertoire/mcp-manager");
68
+ const mailbox_http_1 = require("../mailbox/mailbox-http");
69
+ const mailbox_types_1 = require("../mailbox/mailbox-types");
70
+ const mailbox_read_1 = require("../mailbox/mailbox-read");
71
+ const mailbox_view_1 = require("../mailbox/mailbox-view");
72
+ const provider_visibility_1 = require("../provider-visibility");
73
+ const provider_binding_resolver_1 = require("../provider-binding-resolver");
74
+ const private_runtime_1 = require("../private-runtime");
75
+ const socket_client_1 = require("./socket-client");
76
+ const flight_recorder_1 = require("../../arc/flight-recorder");
77
+ const await_private_wake_1 = require("./await-private-wake");
78
+ const habit_private_wake_1 = require("./habit-private-wake");
79
+ const habit_parser_1 = require("../habits/habit-parser");
80
+ const habit_runtime_state_1 = require("../habits/habit-runtime-state");
81
+ const router_1 = require("../external-events/router");
82
+ const habit_policy_1 = require("../../rsvp/habit-policy");
83
+ const container_runtime_1 = require("./container-runtime");
84
+ const habit_session_1 = require("../habits/habit-session");
85
+ const PIDFILE_PATH = path.join(os.homedir(), ".ouro-cli", "daemon.pids");
86
+ /**
87
+ * Defense-in-depth: detect if we're running under vitest. The pidfile lives
88
+ * at a hardcoded path under the user's real ~/.ouro-cli/ — there's no DI
89
+ * seam to redirect it. So when a test creates a real OuroDaemon and calls
90
+ * start(), the daemon's killOrphanProcesses() reads the REAL pidfile,
91
+ * ps-verifies the PIDs, and SIGTERMs the production daemon. We saw this
92
+ * cause an outage on 2026-04-08 (alpha.265 daemon killed 93s after startup
93
+ * by a vitest test that called daemon.start()).
94
+ *
95
+ * Both killOrphanProcesses() and writePidfile() short-circuit under vitest
96
+ * to make the production pidfile sacred. Tests that need to verify these
97
+ * functions' behavior should use the extracted pure helpers
98
+ * (parseOrphanPidsFromPs, filterPidfilePidsToActualOrphans).
99
+ */
100
+ function isVitestProcess() {
101
+ /* v8 ignore next -- defensive: process and process.argv always exist in node @preserve */
102
+ if (typeof process === "undefined" || !Array.isArray(process.argv))
103
+ return false;
104
+ return process.argv.some((arg) => typeof arg === "string" && arg.includes("vitest"));
105
+ }
106
+ function messageFromHabitPokeError(error) {
107
+ if (error instanceof Error)
108
+ return error.message;
109
+ /* v8 ignore next -- defensive fallback for hostile/non-Error throws from filesystem or parsers @preserve */
110
+ return String(error);
111
+ }
112
+ /**
113
+ * Scan `ps -eo pid,ppid,command` output for daemon-owned entry points whose
114
+ * parent has died (PPID reparented to init/PID 1). Returns the list of PIDs
115
+ * that are safe to SIGTERM — true orphans, not children of live sibling
116
+ * daemons running from worktrees, test suites, or other users of the harness.
117
+ *
118
+ * Exported so unit tests can exercise the filter without shelling out.
119
+ */
120
+ function parseOrphanPidsFromPs(psOutput, selfPid) {
121
+ const orphans = [];
122
+ for (const line of psOutput.split("\n")) {
123
+ // Explicitly exclude MCP server processes — they share a harness entry
124
+ // point but are not daemon children and must never be killed.
125
+ if (line.includes("mcp-serve") || line.includes("mcp serve"))
126
+ continue;
127
+ // Match only daemon-owned JS entry points.
128
+ if (!line.includes("agent-entry.js")
129
+ && !line.includes("daemon-entry.js")
130
+ && !line.includes("bluebubbles/entry.js")
131
+ && !line.includes("mail-entry.js")
132
+ && !line.includes("teams-entry.js")
133
+ && !line.includes("a2a-entry.js")
134
+ && !line.includes("telegram-entry.js")
135
+ && !line.includes("voice-entry.js"))
136
+ continue;
137
+ // Parse `<pid> <ppid> <command...>`. ps pads these with leading spaces.
138
+ // Regex guarantees both groups are \d+ so parseInt can't produce NaN.
139
+ const match = line.trim().match(/^(\d+)\s+(\d+)\s/);
140
+ if (!match)
141
+ continue;
142
+ const pid = parseInt(match[1], 10);
143
+ const ppid = parseInt(match[2], 10);
144
+ if (pid === selfPid)
145
+ continue;
146
+ // CRITICAL: only kill processes whose parent is init (PID 1). A live
147
+ // PPID means the process belongs to another daemon instance (parallel
148
+ // test run, sibling worktree, another user of /tmp/ouroboros-daemon.sock).
149
+ // Killing those will crash unrelated harnesses — we saw this in B6
150
+ // when a vitest worker's daemon killed a production agent's children.
151
+ if (ppid !== 1)
152
+ continue;
153
+ orphans.push(pid);
154
+ }
155
+ return orphans;
156
+ }
157
+ /**
158
+ * Given a list of PIDs from the pidfile, return only those that are actual
159
+ * orphans (PPID reparented to init/PID 1). Protects against a polluted
160
+ * pidfile killing a PID that the OS has reassigned to an unrelated process.
161
+ *
162
+ * Implementation: shells out to `ps -p <csv> -o pid,ppid` for a batch lookup.
163
+ * Returns the empty list if ps fails — safer to skip cleanup than to
164
+ * wildcard-kill on a bad read.
165
+ *
166
+ * Exported for direct unit coverage.
167
+ */
168
+ function filterPidfilePidsToActualOrphans(candidatePids, psRunner = runPsCheck) {
169
+ if (candidatePids.length === 0)
170
+ return [];
171
+ const psOutput = psRunner(candidatePids);
172
+ if (psOutput === null)
173
+ return [];
174
+ const survivingOrphans = [];
175
+ // `ps -p x,y,z -o pid,ppid` emits a header line then one row per found PID.
176
+ // PIDs not found (already exited) are silently omitted — which is the
177
+ // correct behavior for us: we only want to kill live orphans.
178
+ for (const line of psOutput.split("\n")) {
179
+ const match = line.trim().match(/^(\d+)\s+(\d+)$/);
180
+ if (!match)
181
+ continue;
182
+ const pid = parseInt(match[1], 10);
183
+ const ppid = parseInt(match[2], 10);
184
+ if (ppid !== 1)
185
+ continue;
186
+ if (!candidatePids.includes(pid))
187
+ continue;
188
+ survivingOrphans.push(pid);
189
+ }
190
+ return survivingOrphans;
191
+ }
192
+ function mergeUniqueOrphanPids(...sources) {
193
+ const merged = [];
194
+ const seen = new Set();
195
+ for (const source of sources) {
196
+ for (const pid of source) {
197
+ if (seen.has(pid))
198
+ continue;
199
+ seen.add(pid);
200
+ merged.push(pid);
201
+ }
202
+ }
203
+ return merged;
204
+ }
205
+ const ORPHAN_CLEANUP_SETTLE_TIMEOUT_MS = 5_000;
206
+ const ORPHAN_CLEANUP_SETTLE_POLL_INTERVAL_MS = 50;
207
+ /* v8 ignore start -- process liveness probe; pure wait behavior covered via injected deps @preserve */
208
+ function defaultIsPidAlive(pid) {
209
+ try {
210
+ process.kill(pid, 0);
211
+ return true;
212
+ }
213
+ catch (error) {
214
+ return error.code === "EPERM";
215
+ }
216
+ }
217
+ /* v8 ignore stop */
218
+ /* v8 ignore start -- real timer wiring; wait behavior covered via injected sleep @preserve */
219
+ async function defaultSettleSleep(ms) {
220
+ await new Promise((resolve) => setTimeout(resolve, ms));
221
+ }
222
+ /* v8 ignore stop */
223
+ async function waitForOrphanProcessesToSettle(pids, deps = {}) {
224
+ if (pids.length === 0)
225
+ return [];
226
+ const isPidAlive = deps.isPidAlive ?? defaultIsPidAlive;
227
+ const now = deps.now ?? Date.now;
228
+ const sleep = deps.sleep ?? defaultSettleSleep;
229
+ const timeoutMs = deps.timeoutMs ?? ORPHAN_CLEANUP_SETTLE_TIMEOUT_MS;
230
+ const pollIntervalMs = deps.pollIntervalMs ?? ORPHAN_CLEANUP_SETTLE_POLL_INTERVAL_MS;
231
+ const deadline = now() + timeoutMs;
232
+ let survivors = pids.filter(isPidAlive);
233
+ while (survivors.length > 0 && now() < deadline) {
234
+ await sleep(pollIntervalMs);
235
+ survivors = pids.filter(isPidAlive);
236
+ }
237
+ return survivors;
238
+ }
239
+ function assertOrphanCleanupComplete(survivingPids) {
240
+ if (survivingPids.length === 0)
241
+ return;
242
+ const errorReason = `refusing startup while ${survivingPids.length} orphaned Ouro processes remain: ${survivingPids.join(", ")}`;
243
+ (0, runtime_1.emitNervesEvent)({
244
+ level: "error",
245
+ component: "daemon",
246
+ event: "daemon.orphan_cleanup_incomplete",
247
+ message: errorReason,
248
+ meta: { survivingPids },
249
+ });
250
+ throw new Error(errorReason);
251
+ }
252
+ const ORPHAN_CLEANUP_MAX_SIGNAL_PASSES = 8;
253
+ async function drainOrphanProcessesBeforeStartup(socketPath = socket_client_1.DEFAULT_DAEMON_SOCKET_PATH, deps = {}) {
254
+ const signalOrphans = deps.signalOrphans ?? killOrphanProcesses;
255
+ const settleOrphans = deps.settleOrphans ?? waitForOrphanProcessesToSettle;
256
+ const maxSignalPasses = deps.maxSignalPasses ?? ORPHAN_CLEANUP_MAX_SIGNAL_PASSES;
257
+ for (let pass = 0; pass < maxSignalPasses; pass += 1) {
258
+ const signaledPids = signalOrphans(socketPath);
259
+ if (signaledPids.length === 0)
260
+ return;
261
+ const survivingPids = await settleOrphans(signaledPids);
262
+ assertOrphanCleanupComplete(survivingPids);
263
+ }
264
+ const errorReason = `orphan cleanup did not reach a fixed point after ${maxSignalPasses} signaling round(s)`;
265
+ (0, runtime_1.emitNervesEvent)({
266
+ level: "error",
267
+ component: "daemon",
268
+ event: "daemon.orphan_cleanup_not_converged",
269
+ message: errorReason,
270
+ meta: { maxSignalPasses },
271
+ });
272
+ throw new Error(errorReason);
273
+ }
274
+ /* v8 ignore start -- shells out to ps; covered by filterPidfilePidsToActualOrphans unit tests via injected runner @preserve */
275
+ function runPsCheck(pids) {
276
+ try {
277
+ const csv = pids.join(",");
278
+ return (0, child_process_1.execSync)(`ps -p ${csv} -o pid=,ppid=`, { encoding: "utf-8", timeout: 5000 });
279
+ }
280
+ catch {
281
+ // ps returns non-zero when none of the requested PIDs exist. Treat as
282
+ // "no survivors" rather than an error.
283
+ return "";
284
+ }
285
+ }
286
+ /* v8 ignore stop */
287
+ /**
288
+ * Kill all ouro processes from the previous daemon instance using the pidfile.
289
+ * On startup, reads PIDs from ~/.ouro-cli/daemon.pids, kills them all, then
290
+ * deletes the file. The new daemon writes its own PIDs after spawning.
291
+ *
292
+ * Safety: pidfile contents are verified before being killed — each PID must
293
+ * be an actual orphan (PPID reparented to init/PID 1) via
294
+ * `filterPidfilePidsToActualOrphans`. Otherwise a polluted pidfile (written
295
+ * by a test, or a crashed daemon whose PIDs have since been reused by the
296
+ * OS) could SIGTERM unrelated processes.
297
+ *
298
+ * Falls back to ps-based scanning scoped to true orphans (PPID=1) if the
299
+ * pidfile doesn't exist (first run, previous daemon crashed before writing,
300
+ * manual cleanup). The scope is narrow on purpose — see parseOrphanPidsFromPs.
301
+ */
302
+ /* v8 ignore start -- process lifecycle: uses kill/ps, tested via deployment @preserve */
303
+ function isProductionDaemonSocketPath(socketPath) {
304
+ return socketPath === socket_client_1.DEFAULT_DAEMON_SOCKET_PATH;
305
+ }
306
+ function killOrphanProcesses(socketPath = socket_client_1.DEFAULT_DAEMON_SOCKET_PATH) {
307
+ if (!isProductionDaemonSocketPath(socketPath)) {
308
+ (0, runtime_1.emitNervesEvent)({
309
+ level: "warn",
310
+ component: "daemon",
311
+ event: "daemon.orphan_cleanup_nonproduction_blocked",
312
+ message: "blocked orphan cleanup for non-production daemon socket",
313
+ meta: { socketPath, pidfilePath: PIDFILE_PATH },
314
+ });
315
+ return [];
316
+ }
317
+ if (isVitestProcess()) {
318
+ (0, runtime_1.emitNervesEvent)({
319
+ level: "warn",
320
+ component: "daemon",
321
+ event: "daemon.orphan_cleanup_test_blocked",
322
+ message: "blocked killOrphanProcesses from touching real pidfile under vitest",
323
+ meta: { pidfilePath: PIDFILE_PATH },
324
+ });
325
+ return [];
326
+ }
327
+ try {
328
+ let pidfileOrphans = [];
329
+ let scanOrphans = [];
330
+ // Primary: read pidfile from previous daemon
331
+ try {
332
+ const raw = fs.readFileSync(PIDFILE_PATH, "utf-8");
333
+ const candidates = raw.split("\n")
334
+ .map((s) => parseInt(s.trim(), 10))
335
+ .filter((n) => !isNaN(n) && n !== process.pid);
336
+ // Verify each candidate is an actual live orphan before killing. See
337
+ // docstring above for why this matters.
338
+ pidfileOrphans = filterPidfilePidsToActualOrphans(candidates);
339
+ fs.unlinkSync(PIDFILE_PATH);
340
+ }
341
+ catch {
342
+ // No pidfile — the ps scan below still covers true orphans.
343
+ }
344
+ // Always supplement the pidfile with the scoped ps scan. A stale or
345
+ // partial pidfile can otherwise kill one old daemon while leaving a
346
+ // sibling PPID=1 daemon alive without a socket.
347
+ try {
348
+ const result = (0, child_process_1.execSync)("ps -eo pid,ppid,command", { encoding: "utf-8", timeout: 5000 });
349
+ scanOrphans = parseOrphanPidsFromPs(result, process.pid);
350
+ }
351
+ catch (error) {
352
+ const detail = error instanceof Error ? error.message : String(error);
353
+ throw new Error(`could not discover orphaned Ouro processes: ${detail}`);
354
+ }
355
+ const pidsToKill = mergeUniqueOrphanPids(pidfileOrphans, scanOrphans);
356
+ if (pidsToKill.length > 0) {
357
+ for (const pid of pidsToKill) {
358
+ try {
359
+ process.kill(pid, "SIGTERM");
360
+ }
361
+ catch { /* already exited */ }
362
+ }
363
+ (0, runtime_1.emitNervesEvent)({
364
+ component: "daemon",
365
+ event: "daemon.orphan_cleanup",
366
+ message: `killed ${pidsToKill.length} orphaned ouro processes`,
367
+ meta: { pids: pidsToKill },
368
+ });
369
+ }
370
+ return pidsToKill;
371
+ }
372
+ catch (error) {
373
+ (0, runtime_1.emitNervesEvent)({
374
+ level: "error",
375
+ component: "daemon",
376
+ event: "daemon.orphan_cleanup_error",
377
+ message: "failed to clean up orphaned ouro processes",
378
+ meta: { error: error instanceof Error ? error.message : String(error) },
379
+ });
380
+ throw error instanceof Error ? error : new Error(String(error));
381
+ }
382
+ }
383
+ /**
384
+ * Write all managed PIDs (daemon + children) to the pidfile.
385
+ * Called after all agents and senses are spawned.
386
+ */
387
+ function writePidfile(extraPids = [], socketPath = socket_client_1.DEFAULT_DAEMON_SOCKET_PATH) {
388
+ if (!isProductionDaemonSocketPath(socketPath)) {
389
+ (0, runtime_1.emitNervesEvent)({
390
+ level: "warn",
391
+ component: "daemon",
392
+ event: "daemon.write_pidfile_nonproduction_blocked",
393
+ message: "blocked production pidfile write for non-production daemon socket",
394
+ meta: { socketPath, pidfilePath: PIDFILE_PATH, attemptedPids: extraPids.length },
395
+ });
396
+ return;
397
+ }
398
+ if (isVitestProcess()) {
399
+ (0, runtime_1.emitNervesEvent)({
400
+ level: "warn",
401
+ component: "daemon",
402
+ event: "daemon.write_pidfile_test_blocked",
403
+ message: "blocked writePidfile from clobbering real pidfile under vitest",
404
+ meta: { pidfilePath: PIDFILE_PATH, attemptedPids: extraPids.length },
405
+ });
406
+ return;
407
+ }
408
+ try {
409
+ const pids = [process.pid, ...extraPids].filter(Boolean);
410
+ fs.mkdirSync(path.dirname(PIDFILE_PATH), { recursive: true });
411
+ fs.writeFileSync(PIDFILE_PATH, pids.join("\n") + "\n", "utf-8");
412
+ }
413
+ catch { /* best effort */ }
414
+ }
415
+ function readSocketIdentity(socketPath) {
416
+ try {
417
+ const stats = fs.lstatSync(socketPath);
418
+ return {
419
+ dev: stats.dev,
420
+ ino: stats.ino,
421
+ ctimeMs: stats.ctimeMs,
422
+ };
423
+ }
424
+ catch {
425
+ return null;
426
+ }
427
+ }
428
+ function sameSocketIdentity(left, right) {
429
+ if (!left || !right)
430
+ return false;
431
+ return left.dev === right.dev && left.ino === right.ino && left.ctimeMs === right.ctimeMs;
432
+ }
53
433
  function buildWorkerRows(snapshots) {
54
434
  return snapshots.map((snapshot) => ({
55
435
  agent: snapshot.name,
56
436
  worker: snapshot.channel,
437
+ autoStart: snapshot.autoStart ?? true,
57
438
  status: snapshot.status,
58
439
  pid: snapshot.pid,
59
440
  restartCount: snapshot.restartCount,
60
441
  startedAt: snapshot.startedAt,
442
+ lastExitCode: snapshot.lastExitCode ?? null,
443
+ lastSignal: snapshot.lastSignal ?? null,
444
+ errorReason: snapshot.errorReason ?? null,
445
+ fixHint: snapshot.fixHint ?? null,
61
446
  }));
62
447
  }
448
+ function unhealthySenseRows(senses) {
449
+ return senses.filter((row) => {
450
+ if (!row.enabled)
451
+ return false;
452
+ if (row.status === "disabled" || row.status === "not_attached")
453
+ return false;
454
+ if (row.status === "interactive" || row.status === "running")
455
+ return false;
456
+ return true;
457
+ });
458
+ }
459
+ function isParkedWorker(row) {
460
+ return row.autoStart === false && row.status === "stopped";
461
+ }
462
+ function unhealthyWorkerRows(workers) {
463
+ return workers.filter((row) => !isParkedWorker(row) && row.status !== "running");
464
+ }
465
+ function unhealthyHealthChecks(healthChecks) {
466
+ return healthChecks.filter((row) => row.status !== "ok");
467
+ }
468
+ function overviewHealth(workers, senses, healthChecks = []) {
469
+ if (unhealthyWorkerRows(workers).length > 0)
470
+ return "warn";
471
+ if (unhealthySenseRows(senses).length > 0)
472
+ return "warn";
473
+ if (unhealthyHealthChecks(healthChecks).length > 0)
474
+ return "warn";
475
+ return "ok";
476
+ }
63
477
  function formatStatusSummary(payload) {
64
- if (payload.overview.workerCount === 0 && payload.overview.senseCount === 0) {
478
+ if (payload.overview.workerCount === 0 && payload.overview.senseCount === 0 && (payload.healthChecks ?? []).length === 0) {
65
479
  return "no managed agents";
66
480
  }
67
- const rows = [
68
- ...payload.workers.map((row) => `${row.agent}/${row.worker}:${row.status}`),
69
- ...payload.senses
70
- .filter((row) => row.enabled)
71
- .map((row) => `${row.agent}/${row.sense}:${row.status}`),
481
+ const degraded = [
482
+ ...unhealthyWorkerRows(payload.workers)
483
+ .map((row) => `worker:${row.agent}/${row.worker}:${row.status}`),
484
+ ...unhealthySenseRows(payload.senses)
485
+ .map((row) => `sense:${row.agent}/${row.sense}:${row.status}`),
486
+ ...(payload.healthChecks ?? [])
487
+ .filter((row) => row.status !== "ok")
488
+ .map((row) => `health-check:${row.name}:${row.status}`),
72
489
  ];
73
- const detail = rows.length > 0 ? `\titems=${rows.join(",")}` : "";
490
+ const detail = degraded.length > 0 ? `\tdegraded=${degraded.join(",")}` : "";
491
+ if (!detail) {
492
+ const rows = [
493
+ ...payload.workers.map((row) => `${row.agent}/${row.worker}:${row.status}`),
494
+ ...payload.senses
495
+ .filter((row) => row.enabled)
496
+ .map((row) => `${row.agent}/${row.sense}:${row.status}`),
497
+ ];
498
+ const items = rows.length > 0 ? `\titems=${rows.join(",")}` : "";
499
+ return `daemon=${payload.overview.daemon}\tworkers=${payload.overview.workerCount}\tsenses=${payload.overview.senseCount}\thealth=${payload.overview.health}${items}`;
500
+ }
74
501
  return `daemon=${payload.overview.daemon}\tworkers=${payload.overview.workerCount}\tsenses=${payload.overview.senseCount}\thealth=${payload.overview.health}${detail}`;
75
502
  }
76
503
  function parseIncomingCommand(raw) {
@@ -90,6 +517,92 @@ function parseIncomingCommand(raw) {
90
517
  }
91
518
  return parsed;
92
519
  }
520
+ function isValidSenseReviveCommand(command) {
521
+ return typeof command.agent === "string"
522
+ && typeof command.sense === "string"
523
+ && typeof command.reason === "string";
524
+ }
525
+ function isValidTaskPokeCommand(command) {
526
+ return typeof command.agent === "string"
527
+ && command.agent.trim().length > 0
528
+ && typeof command.taskId === "string"
529
+ && command.taskId.trim().length > 0;
530
+ }
531
+ function isValidHabitPokeCommand(command) {
532
+ return typeof command.agent === "string"
533
+ && command.agent.trim().length > 0
534
+ && typeof command.habitName === "string"
535
+ && command.habitName.trim().length > 0;
536
+ }
537
+ function isValidHabitProbeCommand(command) {
538
+ return typeof command.agent === "string"
539
+ && command.agent.trim().length > 0
540
+ && typeof command.habitName === "string"
541
+ && command.habitName.trim().length > 0
542
+ && (command.noSend === undefined || command.noSend === true);
543
+ }
544
+ function taskIdFromTaskPokePrivateWakeCommand(command) {
545
+ if (command.kind !== "private.wake" || command.triggerSource !== "task-poke")
546
+ return null;
547
+ const taskRef = command.originRefs?.find((ref) => ref.kind === "task" && typeof ref.id === "string");
548
+ if (!taskRef || typeof taskRef.id !== "string")
549
+ return null;
550
+ const trimmed = taskRef.id.trim();
551
+ return trimmed.length > 0 ? trimmed : null;
552
+ }
553
+ /**
554
+ * Handle agent.senseTurn command: runs a full agent turn via the daemon process.
555
+ * Dynamic import lazy-loads shared-turn. Hot-reload works because ouro dev
556
+ * restarts the daemon process (fresh module cache).
557
+ */
558
+ async function handleAgentSenseTurn(command, runtime) {
559
+ try {
560
+ const { setAgentName } = await Promise.resolve().then(() => __importStar(require("../identity")));
561
+ setAgentName(command.agent);
562
+ const { runSenseTurn } = await Promise.resolve().then(() => __importStar(require("../../senses/shared-turn")));
563
+ const result = await runSenseTurn({
564
+ agentName: command.agent,
565
+ channel: command.channel,
566
+ sessionKey: command.sessionKey,
567
+ friendId: command.friendId,
568
+ userMessage: command.message,
569
+ ...(runtime?.socketPath ? { toolContext: { daemonSocketPath: runtime.socketPath } } : {}),
570
+ // Per-turn, per-agent runtime MCP injection (e.g. Workbench's ouro_workbench).
571
+ // Scoped to THIS turn only — never stored as module state, so a concurrent
572
+ // turn for a different agent cannot inherit these servers.
573
+ ...(command.runtimeMcp ? { runtimeMcpServers: command.runtimeMcp } : {}),
574
+ });
575
+ return {
576
+ ok: true,
577
+ message: result.response,
578
+ data: { ponderDeferred: result.ponderDeferred },
579
+ };
580
+ }
581
+ catch (error) {
582
+ /* v8 ignore next -- branch: String(error) fallback only for non-Error throws @preserve */
583
+ const errorMessage = error instanceof Error ? error.message : String(error);
584
+ return { ok: false, error: `sense turn failed: ${errorMessage}` };
585
+ }
586
+ }
587
+ async function handleAgentAskTurn(command, runtime) {
588
+ /* v8 ignore start -- ask command parameter defaults are legacy MCP compatibility; send_message shares the primary path @preserve */
589
+ const question = typeof command.question === "string" ? command.question : "";
590
+ if (!question.trim())
591
+ return { ok: false, error: "Missing required parameter: question" };
592
+ const channel = typeof command.channel === "string" && command.channel.trim() ? command.channel.trim() : "mcp";
593
+ const sessionKey = typeof command.sessionKey === "string" && command.sessionKey.trim()
594
+ ? command.sessionKey.trim()
595
+ : `agent-ask:${command.friendId}`;
596
+ /* v8 ignore stop */
597
+ return handleAgentSenseTurn({
598
+ kind: "agent.senseTurn",
599
+ agent: command.agent,
600
+ friendId: command.friendId,
601
+ channel,
602
+ sessionKey,
603
+ message: question,
604
+ }, runtime);
605
+ }
93
606
  class OuroDaemon {
94
607
  socketPath;
95
608
  processManager;
@@ -98,7 +611,27 @@ class OuroDaemon {
98
611
  router;
99
612
  senseManager;
100
613
  bundlesRoot;
614
+ mode;
101
615
  server = null;
616
+ mailboxServer = null;
617
+ socketIdentity = null;
618
+ senseAutostartTimer = null;
619
+ externalEventReconcileTimer = null;
620
+ externalEventReconcileRunning = false;
621
+ mailboxServerFactory;
622
+ privateRuntimePolicyDeps;
623
+ onStopCommandComplete;
624
+ externalEventRoot;
625
+ privilegedEventSpoolRoot;
626
+ privilegedEventScanner;
627
+ rsvpHabitRunner;
628
+ nativeHabitRunner;
629
+ nativeHabitMatch;
630
+ nativeHabitClaims = new Set();
631
+ authenticatedSchedulerPokes = new WeakMap();
632
+ schedulerFireVerifier;
633
+ schedulerFireConsumer;
634
+ orphanStartupDrain;
102
635
  constructor(options) {
103
636
  this.socketPath = options.socketPath;
104
637
  this.processManager = options.processManager;
@@ -107,6 +640,111 @@ class OuroDaemon {
107
640
  this.router = options.router;
108
641
  this.senseManager = options.senseManager ?? null;
109
642
  this.bundlesRoot = options.bundlesRoot ?? (0, identity_1.getAgentBundlesRoot)();
643
+ this.mode = options.mode ?? "production";
644
+ this.mailboxServerFactory = options.mailboxServerFactory ?? this.createDefaultMailboxServer.bind(this);
645
+ this.privateRuntimePolicyDeps = options.privateRuntimePolicyDeps ?? {};
646
+ this.onStopCommandComplete = options.onStopCommandComplete ?? null;
647
+ this.externalEventRoot = options.externalEventRoot ?? null;
648
+ this.privilegedEventSpoolRoot = options.privilegedEventSpoolRoot ?? "/run/ouro-events";
649
+ this.privilegedEventScanner = options.privilegedEventScanner ?? router_1.scanPrivilegedEventSpool;
650
+ this.rsvpHabitRunner = options.rsvpHabitRunner;
651
+ this.nativeHabitRunner = options.nativeHabitRunner;
652
+ this.nativeHabitMatch = options.nativeHabitMatch;
653
+ this.schedulerFireVerifier = options.schedulerFireVerifier;
654
+ this.schedulerFireConsumer = options.schedulerFireConsumer;
655
+ this.orphanStartupDrain = options.orphanStartupDrain ?? drainOrphanProcessesBeforeStartup;
656
+ }
657
+ /* v8 ignore start -- default mailbox server wiring: production-only path, tests inject mailboxServerFactory stub instead. startMailboxHttpServer itself has full coverage in mailbox-http.test.ts @preserve */
658
+ createDefaultMailboxServer() {
659
+ return (0, mailbox_http_1.startMailboxHttpServer)({
660
+ host: "127.0.0.1",
661
+ port: mailbox_types_1.MAILBOX_DEFAULT_PORT,
662
+ bundlesRoot: this.bundlesRoot,
663
+ readMachineState: () => (0, mailbox_read_1.readMailboxMachineState)({ bundlesRoot: this.bundlesRoot }),
664
+ readMachineView: ({ machine }) => {
665
+ const overview = this.buildStatusPayload().overview;
666
+ return (0, mailbox_view_1.buildMailboxMachineView)({
667
+ machine,
668
+ daemon: {
669
+ status: overview.daemon,
670
+ health: overview.health,
671
+ mode: overview.mode,
672
+ socketPath: overview.socketPath,
673
+ mailboxUrl: overview.mailboxUrl,
674
+ entryPath: overview.entryPath,
675
+ workerCount: overview.workerCount,
676
+ senseCount: overview.senseCount,
677
+ },
678
+ });
679
+ },
680
+ readAgentState: (agentName) => (0, mailbox_read_1.readMailboxAgentState)(agentName, { bundlesRoot: this.bundlesRoot }),
681
+ readAgentView: (agentName) => {
682
+ const agent = (0, mailbox_read_1.readMailboxAgentState)(agentName, { bundlesRoot: this.bundlesRoot });
683
+ return (0, mailbox_view_1.buildMailboxAgentView)({
684
+ agent,
685
+ viewer: { kind: "human" },
686
+ });
687
+ },
688
+ });
689
+ }
690
+ /* v8 ignore stop */
691
+ buildStatusPayload() {
692
+ const snapshots = this.processManager.listAgentSnapshots();
693
+ const workers = buildWorkerRows(snapshots);
694
+ const senses = this.senseManager?.listSenseRows() ?? [];
695
+ const healthChecks = this.overlaySchedulerHealth(this.healthMonitor.getLastResults?.() ?? []);
696
+ const repoRoot = (0, identity_1.getRepoRoot)();
697
+ const sync = (0, agent_discovery_1.listBundleSyncRows)({ bundlesRoot: this.bundlesRoot });
698
+ const agents = (0, agent_discovery_1.listAllBundleAgents)({ bundlesRoot: this.bundlesRoot });
699
+ const providerAgents = (0, agent_discovery_1.listEnabledBundleAgents)({ bundlesRoot: this.bundlesRoot });
700
+ const providers = providerAgents.flatMap((agentName) => (0, provider_visibility_1.providerVisibilityStatusRows)((0, provider_visibility_1.buildAgentProviderVisibility)({
701
+ agentName,
702
+ agentRoot: path.join(this.bundlesRoot, `${agentName}.ouro`),
703
+ })));
704
+ const externalEvents = (0, router_1.listExternalEventStatus)(this.externalEventRoot ?? (0, router_1.getExternalEventRoot)());
705
+ const mailboxUrl = this.mailboxServer?.origin ?? "http://127.0.0.1:0";
706
+ return {
707
+ overview: {
708
+ daemon: "running",
709
+ health: overviewHealth(workers, senses, healthChecks),
710
+ socketPath: this.socketPath,
711
+ mailboxUrl,
712
+ outlookUrl: mailboxUrl,
713
+ ...(0, runtime_metadata_1.getRuntimeMetadata)(),
714
+ workerCount: workers.length,
715
+ senseCount: senses.length,
716
+ entryPath: path.join(repoRoot, "dist", "heart", "daemon", "daemon-entry.js"),
717
+ mode: (0, runtime_mode_1.detectRuntimeMode)(repoRoot),
718
+ },
719
+ workers,
720
+ senses,
721
+ ...(healthChecks.length > 0 ? { healthChecks } : {}),
722
+ sync,
723
+ agents,
724
+ ...(providers.length > 0 ? { providers } : {}),
725
+ ...(externalEvents.length > 0 ? { externalEvents } : {}),
726
+ };
727
+ }
728
+ overlaySchedulerHealth(healthChecks) {
729
+ const degradedJobs = this.scheduler.listDegradedJobs?.() ?? [];
730
+ if (degradedJobs.length === 0)
731
+ return healthChecks;
732
+ const cronHealth = {
733
+ name: "cron-health",
734
+ status: "warn",
735
+ message: `cron jobs degraded; timer fallback active: ${degradedJobs
736
+ .map((job) => `${job.id} (${job.reason})`)
737
+ .join(", ")}`,
738
+ };
739
+ const next = healthChecks.map((check) => ({ ...check }));
740
+ const existingIndex = next.findIndex((check) => check.name === "cron-health");
741
+ if (existingIndex === -1) {
742
+ next.push(cronHealth);
743
+ }
744
+ else {
745
+ next[existingIndex] = cronHealth;
746
+ }
747
+ return next;
110
748
  }
111
749
  async start() {
112
750
  if (this.server)
@@ -117,65 +755,186 @@ class OuroDaemon {
117
755
  message: "starting daemon server",
118
756
  meta: { socketPath: this.socketPath },
119
757
  });
758
+ try {
759
+ await this.startInner();
760
+ }
761
+ catch (err) {
762
+ // Emit a paired terminating event (`_error`) so the nerves audit's
763
+ // start_end_pairing rule is satisfied when startup throws mid-sequence
764
+ // and `stop()` (which emits `server_end`) is never called.
765
+ (0, runtime_1.emitNervesEvent)({
766
+ level: "error",
767
+ component: "daemon",
768
+ event: "daemon.server_error",
769
+ message: "daemon start failed",
770
+ meta: {
771
+ error: err instanceof Error ? err.message : /* v8 ignore next -- defensive: non-Error catch branch @preserve */ String(err),
772
+ },
773
+ });
774
+ throw err;
775
+ }
776
+ }
777
+ async startInner() {
778
+ const containerPolicy = (0, container_runtime_1.readContainerRuntimePolicy)();
120
779
  // Register update hooks and apply pending updates before starting agents
121
780
  (0, update_hooks_1.registerUpdateHook)(bundle_meta_1.bundleMetaHook);
781
+ (0, update_hooks_1.registerUpdateHook)(agent_config_v2_1.agentConfigV2Hook);
122
782
  const currentVersion = (0, bundle_manifest_1.getPackageVersion)();
123
- await (0, update_hooks_1.applyPendingUpdates)(this.bundlesRoot, currentVersion);
783
+ if (containerPolicy?.updates !== "disabled")
784
+ await (0, update_hooks_1.applyPendingUpdates)(this.bundlesRoot, currentVersion);
124
785
  // Start periodic update checker (polls npm registry every 30 minutes)
125
- const bundlesRoot = this.bundlesRoot;
126
- const daemon = this;
127
- (0, update_checker_1.startUpdateChecker)({
128
- currentVersion,
129
- deps: {
130
- distTag: "alpha",
131
- fetchRegistryJson: /* v8 ignore next -- integration: real HTTP fetch @preserve */ async () => {
132
- const res = await fetch("https://registry.npmjs.org/@ouro.bot/cli");
133
- return res.json();
134
- },
135
- },
136
- onUpdate: /* v8 ignore start -- integration: real npm install + process spawn @preserve */ async (result) => {
137
- if (!result.latestVersion)
138
- return;
139
- await (0, staged_restart_1.performStagedRestart)(result.latestVersion, {
140
- execSync: (cmd) => (0, child_process_1.execSync)(cmd, { stdio: "inherit" }),
141
- spawnSync: child_process_1.spawnSync,
142
- resolveNewCodePath: (_version) => {
143
- try {
144
- const resolved = (0, child_process_1.execSync)(`node -e "console.log(require.resolve('@ouro.bot/cli/package.json'))"`, { encoding: "utf-8" }).trim();
145
- return resolved ? path.dirname(resolved) : null;
146
- }
147
- catch {
148
- return null;
149
- }
786
+ // Skip in dev mode — dev builds should not auto-update from npm
787
+ if (this.mode === "dev" || containerPolicy?.updates === "disabled") {
788
+ (0, runtime_1.emitNervesEvent)({
789
+ component: "daemon",
790
+ event: "daemon.update_checker_skip",
791
+ message: "skipping update checker in dev mode",
792
+ meta: { reason: this.mode === "dev" ? "dev mode" : "container policy" },
793
+ });
794
+ }
795
+ else {
796
+ (0, update_checker_1.startUpdateChecker)({
797
+ currentVersion,
798
+ deps: {
799
+ distTag: update_checker_1.CLI_UPDATE_DIST_TAG,
800
+ /* v8 ignore start -- integration: real HTTP fetch @preserve */
801
+ fetchRegistryJson: async () => {
802
+ const res = await fetch("https://registry.npmjs.org/@ouro.bot/cli");
803
+ return res.json();
150
804
  },
151
- gracefulShutdown: () => daemon.stop(),
152
- nodePath: process.execPath,
153
- bundlesRoot,
154
- });
155
- },
156
- /* v8 ignore stop */
157
- });
158
- // Pre-initialize MCP connections so they're ready for the first command (non-blocking)
159
- /* v8 ignore next -- catch callback: getSharedMcpManager logs errors internally @preserve */
160
- (0, mcp_manager_1.getSharedMcpManager)().catch(() => { });
161
- await this.processManager.startAutoStartAgents();
162
- await this.senseManager?.startAutoStartSenses();
805
+ /* v8 ignore stop */
806
+ },
807
+ });
808
+ }
809
+ // MCP connections are lazily initialized per-agent during senseTurn
810
+ // (daemon manages multiple agents; agent identity must be set before loading MCP config)
811
+ await this.orphanStartupDrain(this.socketPath);
812
+ await this.openCommandSocket();
813
+ await this.reconcileExternalEvents();
814
+ this.externalEventReconcileTimer = setInterval(() => {
815
+ void this.reconcileExternalEvents();
816
+ }, 1_000);
817
+ this.externalEventReconcileTimer.unref?.();
818
+ this.triggerAutoStartAgents();
819
+ this.triggerAutoStartSensesWhenAgentsSettled();
820
+ // Write all managed PIDs to disk so the next daemon can clean up
821
+ /* v8 ignore start -- pidfile write: collects PIDs from process managers @preserve */
822
+ const agentPids = this.processManager.listAgentSnapshots().map((s) => s.pid).filter((p) => p !== null);
823
+ const sensePids = this.senseManager?.listManagedPids?.() ?? [];
824
+ writePidfile([...agentPids, ...sensePids], this.socketPath);
825
+ /* v8 ignore stop */
163
826
  this.scheduler.start?.();
164
827
  await this.scheduler.reconcile?.();
165
828
  await this.drainPendingBundleMessages();
166
829
  await this.drainPendingSenseMessages();
830
+ // startInner is only reachable when this.server is null (guarded in
831
+ // start()), and stop() nulls out this.mailboxServer alongside this.server,
832
+ // so mailboxServer is guaranteed unset here — no need for a guard.
833
+ try {
834
+ this.mailboxServer = await this.mailboxServerFactory();
835
+ }
836
+ catch (error) {
837
+ (0, runtime_1.emitNervesEvent)({
838
+ level: "warn",
839
+ component: "daemon",
840
+ event: "daemon.mailbox_start_failed",
841
+ message: `Mailbox server failed to start: ${String(error)}`,
842
+ meta: { port: mailbox_types_1.MAILBOX_DEFAULT_PORT },
843
+ });
844
+ }
845
+ }
846
+ triggerAutoStartAgents() {
847
+ if (this.processManager.triggerAutoStartAgents) {
848
+ this.processManager.triggerAutoStartAgents();
849
+ return;
850
+ }
851
+ void this.processManager.startAutoStartAgents().catch((error) => {
852
+ (0, runtime_1.emitNervesEvent)({
853
+ level: "error",
854
+ component: "daemon",
855
+ event: "daemon.agent_autostart_error",
856
+ message: "agent autostart failed after daemon socket opened",
857
+ meta: { error: error instanceof Error ? error.message : String(error) },
858
+ });
859
+ });
860
+ }
861
+ triggerAutoStartSenses() {
862
+ /* v8 ignore next -- defensive: callers already check senseManager before delegating here @preserve */
863
+ if (!this.senseManager)
864
+ return;
865
+ if (this.senseManager.triggerAutoStartSenses) {
866
+ this.senseManager.triggerAutoStartSenses();
867
+ return;
868
+ }
869
+ void this.senseManager.startAutoStartSenses().catch((error) => {
870
+ (0, runtime_1.emitNervesEvent)({
871
+ level: "error",
872
+ component: "daemon",
873
+ event: "daemon.sense_autostart_error",
874
+ message: "sense autostart failed after daemon socket opened",
875
+ meta: { error: error instanceof Error ? error.message : String(error) },
876
+ });
877
+ });
878
+ }
879
+ triggerAutoStartSensesWhenAgentsSettled() {
880
+ if (!this.senseManager)
881
+ return;
882
+ const waitingOnAgents = this.processManager.listAgentSnapshots()
883
+ .some((snapshot) => snapshot.status === "starting");
884
+ if (!waitingOnAgents) {
885
+ this.triggerAutoStartSenses();
886
+ return;
887
+ }
888
+ this.senseAutostartTimer = setTimeout(() => {
889
+ this.senseAutostartTimer = null;
890
+ this.triggerAutoStartSensesWhenAgentsSettled();
891
+ }, 250);
892
+ }
893
+ async openCommandSocket() {
167
894
  if (fs.existsSync(this.socketPath)) {
168
895
  fs.unlinkSync(this.socketPath);
169
896
  }
170
- this.server = net.createServer((connection) => {
897
+ // allowHalfOpen: true lets the server keep its writable side open after
898
+ // the client sends FIN. Without this, when a client calls `client.end()`
899
+ // after writing a command, node closes the server's writable side
900
+ // automatically — so a long-running response (like an agent.senseTurn
901
+ // LLM turn that takes 5+ seconds) never reaches the client. The
902
+ // socket-client fix in #303/#334 also removed client.end() on the
903
+ // sending side, but this option is defense in depth: even if a future
904
+ // caller half-closes, the server still writes its response correctly.
905
+ this.server = net.createServer({ allowHalfOpen: true }, (connection) => {
171
906
  let raw = "";
172
907
  let responded = false;
908
+ /* v8 ignore start — connection error handler requires real socket error @preserve */
909
+ connection.on("error", (err) => {
910
+ (0, runtime_1.emitNervesEvent)({
911
+ level: "warn",
912
+ component: "daemon",
913
+ event: "daemon.connection_error",
914
+ message: "socket connection error",
915
+ meta: { error: err.message, code: err.code ?? null },
916
+ });
917
+ });
918
+ /* v8 ignore stop */
173
919
  const flushResponse = async () => {
174
920
  if (responded)
175
921
  return;
176
922
  responded = true;
177
923
  const response = await this.handleRawPayload(raw);
178
- connection.end(response);
924
+ try {
925
+ connection.end(response);
926
+ /* v8 ignore start — EPIPE catch requires real socket disconnect @preserve */
927
+ }
928
+ catch (err) {
929
+ (0, runtime_1.emitNervesEvent)({
930
+ level: "warn",
931
+ component: "daemon",
932
+ event: "daemon.connection_end_error",
933
+ message: "failed to send response to client (EPIPE)",
934
+ meta: { error: err instanceof Error ? err.message : String(err) },
935
+ });
936
+ }
937
+ /* v8 ignore stop */
179
938
  };
180
939
  connection.on("data", (chunk) => {
181
940
  raw += chunk.toString("utf-8");
@@ -188,7 +947,23 @@ class OuroDaemon {
188
947
  const server = this.server;
189
948
  await new Promise((resolve, reject) => {
190
949
  server.once("error", reject);
191
- server.listen(this.socketPath, () => resolve());
950
+ server.listen(this.socketPath, () => {
951
+ // Replace the one-time error listener with a persistent one after successful listen
952
+ server.removeAllListeners("error");
953
+ this.socketIdentity = readSocketIdentity(this.socketPath);
954
+ /* v8 ignore start — server error after listen requires real socket race condition @preserve */
955
+ server.on("error", (err) => {
956
+ (0, runtime_1.emitNervesEvent)({
957
+ level: "error",
958
+ component: "daemon",
959
+ event: "daemon.server_error",
960
+ message: "daemon server error after listen",
961
+ meta: { error: err.message, code: err.code ?? null },
962
+ });
963
+ });
964
+ /* v8 ignore stop */
965
+ resolve();
966
+ });
192
967
  });
193
968
  }
194
969
  async drainPendingBundleMessages() {
@@ -240,7 +1015,7 @@ class OuroDaemon {
240
1015
  }
241
1016
  }
242
1017
  /** Drains per-sense pending dirs for always-on senses across all agents. */
243
- static ALWAYS_ON_SENSES = new Set((0, channel_1.getAlwaysOnSenseNames)());
1018
+ static ALWAYS_ON_SENSES = new Set((0, friends_1.getAlwaysOnSenseNames)());
244
1019
  async drainPendingSenseMessages() {
245
1020
  if (!fs.existsSync(this.bundlesRoot))
246
1021
  return;
@@ -327,26 +1102,108 @@ class OuroDaemon {
327
1102
  }
328
1103
  }
329
1104
  async stop() {
1105
+ // Must be named `_end` (not `_stop`) to satisfy the nerves audit's
1106
+ // start/end pairing rule — see src/nerves/coverage/audit-rules.ts.
1107
+ // This is the counterpart to `daemon.server_start` emitted at line 480.
330
1108
  (0, runtime_1.emitNervesEvent)({
331
1109
  component: "daemon",
332
- event: "daemon.server_stop",
1110
+ event: "daemon.server_end",
333
1111
  message: "stopping daemon server",
334
1112
  meta: { socketPath: this.socketPath },
335
1113
  });
336
1114
  (0, update_checker_1.stopUpdateChecker)();
337
1115
  (0, mcp_manager_1.shutdownSharedMcpManager)();
338
1116
  this.scheduler.stop?.();
339
- await this.processManager.stopAll();
340
- await this.senseManager?.stopAll();
1117
+ this.healthMonitor.stopPeriodicChecks?.();
1118
+ if (this.senseAutostartTimer) {
1119
+ clearTimeout(this.senseAutostartTimer);
1120
+ this.senseAutostartTimer = null;
1121
+ }
1122
+ if (this.externalEventReconcileTimer) {
1123
+ clearInterval(this.externalEventReconcileTimer);
1124
+ this.externalEventReconcileTimer = null;
1125
+ }
1126
+ const workerStopTasks = [Promise.resolve().then(() => this.processManager.stopAll())];
1127
+ if (this.senseManager) {
1128
+ workerStopTasks.push(Promise.resolve().then(() => this.senseManager.stopAll()));
1129
+ }
1130
+ const workerStopResults = await Promise.allSettled(workerStopTasks);
1131
+ const workerStopFailures = workerStopResults.flatMap((result) => result.status === "rejected" ? [result.reason] : []);
341
1132
  if (this.server) {
342
- await new Promise((resolve) => {
343
- this.server?.close(() => resolve());
344
- });
1133
+ // DO NOT `await` server.close() here. server.close() resolves only
1134
+ // after every open connection has closed. When stop() is invoked
1135
+ // from the daemon.stop command handler, the calling client's
1136
+ // connection is STILL open — its flushResponse() is currently
1137
+ // awaiting THIS function. Awaiting close() creates a deadlock:
1138
+ //
1139
+ // client → flushResponse → handleRawPayload → daemon.stop case
1140
+ // → stop() → await server.close() (waits for client's connection)
1141
+ // → client's connection waits for flushResponse to call
1142
+ // connection.end() → DEADLOCK
1143
+ //
1144
+ // Both processes sit in kevent forever. Verified live on
1145
+ // 2026-04-08: alpha.268 daemon hung at `daemon.server_end` log
1146
+ // line for 5+ minutes after a client sent daemon.stop, while the
1147
+ // client (alpha.270 ouro up) hung waiting for the response.
1148
+ //
1149
+ // This regressed when #303/#334/#339 stopped half-closing the
1150
+ // client socket and switched the server to allowHalfOpen: true.
1151
+ // Previously, the client called .end() after writing its command,
1152
+ // which (with allowHalfOpen: false) caused node to auto-tear-down
1153
+ // the server's writable side — incidentally unblocking
1154
+ // server.close() before the response was sent. The half-close
1155
+ // breakage masked this deadlock; the fix exposed it.
1156
+ //
1157
+ // Solution: fire close() and let it complete asynchronously. Once
1158
+ // stop() returns, the daemon.stop case returns its response,
1159
+ // flushResponse() calls connection.end(response), the connection
1160
+ // closes, and server.close()'s pending callback fires. The event
1161
+ // loop drains and the daemon exits cleanly.
1162
+ this.server.close();
345
1163
  this.server = null;
346
1164
  }
347
- if (fs.existsSync(this.socketPath)) {
1165
+ if (this.mailboxServer) {
1166
+ await this.mailboxServer.stop();
1167
+ this.mailboxServer = null;
1168
+ }
1169
+ const socketPathExists = fs.existsSync(this.socketPath);
1170
+ const currentSocketIdentity = socketPathExists ? readSocketIdentity(this.socketPath) : null;
1171
+ if (sameSocketIdentity(this.socketIdentity, currentSocketIdentity)) {
348
1172
  fs.unlinkSync(this.socketPath);
349
1173
  }
1174
+ else if (socketPathExists) {
1175
+ const expectedSocketIdentity = { dev: null, ino: null, ctimeMs: null, ...this.socketIdentity };
1176
+ const actualSocketIdentity = { dev: null, ino: null, ctimeMs: null, ...currentSocketIdentity };
1177
+ (0, runtime_1.emitNervesEvent)({
1178
+ level: "warn",
1179
+ component: "daemon",
1180
+ event: "daemon.socket_cleanup_skipped",
1181
+ message: "skipped daemon socket cleanup because the socket path no longer belongs to this daemon",
1182
+ meta: {
1183
+ socketPath: this.socketPath,
1184
+ expectedDev: expectedSocketIdentity.dev,
1185
+ expectedIno: expectedSocketIdentity.ino,
1186
+ expectedCtimeMs: expectedSocketIdentity.ctimeMs,
1187
+ actualDev: actualSocketIdentity.dev,
1188
+ actualIno: actualSocketIdentity.ino,
1189
+ actualCtimeMs: actualSocketIdentity.ctimeMs,
1190
+ },
1191
+ });
1192
+ }
1193
+ this.socketIdentity = null;
1194
+ if (workerStopFailures.length > 0) {
1195
+ const errorReason = `daemon shutdown could not drain ${workerStopFailures.length} managed worker group(s)`;
1196
+ (0, runtime_1.emitNervesEvent)({
1197
+ level: "error",
1198
+ component: "daemon",
1199
+ event: "daemon.worker_shutdown_error",
1200
+ message: errorReason,
1201
+ meta: {
1202
+ failures: workerStopFailures.map((error) => error instanceof Error ? error.message : /* v8 ignore next -- defensive: non-Error rejection @preserve */ String(error)),
1203
+ },
1204
+ });
1205
+ throw new AggregateError(workerStopFailures, errorReason);
1206
+ }
350
1207
  }
351
1208
  async handleRawPayload(raw) {
352
1209
  try {
@@ -368,32 +1225,547 @@ class OuroDaemon {
368
1225
  message: "handling daemon command",
369
1226
  meta: { kind: command.kind },
370
1227
  });
1228
+ try {
1229
+ return await this.handleCommandInner(command);
1230
+ /* v8 ignore start — command error catch tested in daemon-command-error.test; instanceof branches defensive @preserve */
1231
+ }
1232
+ catch (error) {
1233
+ (0, runtime_1.emitNervesEvent)({
1234
+ level: "error",
1235
+ component: "daemon",
1236
+ event: "daemon.command_error",
1237
+ message: "unexpected error handling daemon command",
1238
+ meta: {
1239
+ kind: command.kind,
1240
+ error: error instanceof Error ? error.message : String(error),
1241
+ stack: error instanceof Error ? error.stack ?? null : null,
1242
+ },
1243
+ });
1244
+ throw error;
1245
+ }
1246
+ /* v8 ignore stop */
1247
+ }
1248
+ hasManagedPrivateRuntime(agent) {
1249
+ return this.processManager.listAgentSnapshots().some((snapshot) => snapshot.name === agent && snapshot.channel === "private-runtime");
1250
+ }
1251
+ buildPrivateRuntimeWakeRequest(command) {
1252
+ if (command.kind === "inner.wake") {
1253
+ return {
1254
+ agent: command.agent,
1255
+ origin: "daemon.private.wake",
1256
+ reason: "legacy inner.wake compatibility alias",
1257
+ providerLane: "inner",
1258
+ triggerSource: "legacy",
1259
+ budgetClass: "interactive",
1260
+ originRefs: [{ kind: "daemon-command", id: "inner.wake" }],
1261
+ };
1262
+ }
1263
+ const hasNoSendCapability = command.originRefs?.some((ref) => ref.kind === "capability" && ref.id === "no-send") ?? false;
1264
+ if ((command.noSend === true) !== hasNoSendCapability) {
1265
+ throw new Error("private-runtime no-send capability does not match its bound origin reference");
1266
+ }
1267
+ return {
1268
+ agent: command.agent,
1269
+ origin: "daemon.private.wake",
1270
+ reason: command.reason ?? "manual private-runtime wake",
1271
+ providerLane: "inner",
1272
+ triggerSource: command.triggerSource ?? "manual",
1273
+ budgetClass: command.budgetClass ?? "interactive",
1274
+ ...(command.idempotencyKey ? { idempotencyKey: command.idempotencyKey } : {}),
1275
+ originRefs: command.originRefs ?? [{ kind: "daemon-command", id: "private.wake" }],
1276
+ };
1277
+ }
1278
+ buildAwaitPrivateWakeCommand(command) {
1279
+ return (0, await_private_wake_1.buildAwaitPrivateWakeCommand)({
1280
+ agent: command.agent,
1281
+ awaitName: command.awaitName,
1282
+ triggerSource: "await-poke",
1283
+ });
1284
+ }
1285
+ buildTaskPokePrivateWakeCommand(command, receiptId) {
1286
+ return {
1287
+ kind: "private.wake",
1288
+ agent: command.agent,
1289
+ reason: `task poke ${command.taskId}`,
1290
+ triggerSource: "task-poke",
1291
+ budgetClass: "scheduled",
1292
+ idempotencyKey: `task-poke:${command.agent}:${command.taskId}:${receiptId}`,
1293
+ originRefs: [
1294
+ { kind: "task", id: command.taskId },
1295
+ { kind: "queue-receipt", id: receiptId },
1296
+ { kind: "daemon-command", id: "task.poke" },
1297
+ ],
1298
+ };
1299
+ }
1300
+ buildExternalEventPrivateWakeCommand(command, receiptId, generation, attemptCount) {
1301
+ return {
1302
+ kind: "private.wake",
1303
+ agent: command.agent,
1304
+ reason: `external event ${command.source}/${command.eventType}`,
1305
+ triggerSource: "external-event",
1306
+ budgetClass: "interactive",
1307
+ idempotencyKey: `external-event:${command.agent}:${command.source}:${command.eventId}:generation:${generation}:attempt:${attemptCount}`,
1308
+ originRefs: [
1309
+ { kind: "external-event", id: command.eventId, source: command.source, eventType: command.eventType },
1310
+ { kind: "queue-receipt", id: receiptId },
1311
+ { kind: "daemon-command", id: "external.event.submit" },
1312
+ ],
1313
+ };
1314
+ }
1315
+ resolveHabitDispatch(options) {
1316
+ const agentRoot = path.join(this.bundlesRoot, `${options.agent}.ouro`);
1317
+ const habitPath = path.join(agentRoot, "habits", `${options.habitName}.md`);
1318
+ const isRsvp = (0, habit_policy_1.isRsvpHabitName)(options.habitName);
1319
+ let readFailure = null;
1320
+ let habit;
1321
+ if (!fs.existsSync(habitPath)) {
1322
+ readFailure = "missing";
1323
+ habit = (0, habit_parser_1.createDegradedHabitFile)(habitPath, "read_error", "", "habit file not found");
1324
+ }
1325
+ else {
1326
+ try {
1327
+ habit = (0, habit_runtime_state_1.applyHabitRuntimeState)(agentRoot, (0, habit_parser_1.parseHabitFile)(fs.readFileSync(habitPath, "utf-8"), habitPath));
1328
+ }
1329
+ catch (error) {
1330
+ readFailure = "read";
1331
+ habit = (0, habit_parser_1.createDegradedHabitFile)(habitPath, "read_error", "", messageFromHabitPokeError(error));
1332
+ }
1333
+ }
1334
+ if (habit.status !== "active") {
1335
+ let skipReason = `habit status ${habit.status} is non-executable`;
1336
+ if (isRsvp && habit.status === "degraded") {
1337
+ if (readFailure === "missing") {
1338
+ skipReason = "RSVP habit file not found";
1339
+ }
1340
+ else {
1341
+ skipReason = `RSVP habit metadata invalid: ${habit.degradedDetail ?? habit.degradedReason}`;
1342
+ }
1343
+ }
1344
+ else if (readFailure === "missing"
1345
+ && options.source === "habit-poke"
1346
+ && options.trigger !== "manual"
1347
+ && options.trigger !== "poke") {
1348
+ skipReason = "habit file not found";
1349
+ }
1350
+ return { kind: "skipped", habit, skipReason };
1351
+ }
1352
+ if (isRsvp && !habit.rsvp) {
1353
+ return {
1354
+ kind: "skipped",
1355
+ habit,
1356
+ skipReason: "RSVP habit metadata is required before private runtime wake",
1357
+ };
1358
+ }
1359
+ if (options.trigger === "poke" || options.trigger === "manual") {
1360
+ return { kind: "ready", habit };
1361
+ }
1362
+ if (typeof options.occurrenceId === "string" && options.occurrenceId.trim().length > 0) {
1363
+ return { kind: "ready", habit, occurrenceId: options.occurrenceId.trim() };
1364
+ }
1365
+ if (habit.cadence === null) {
1366
+ return { kind: "skipped", habit, skipReason: "habit has no cadence" };
1367
+ }
1368
+ if (habit.lastRun === null) {
1369
+ return { kind: "ready", habit, occurrenceId: `${options.trigger}:first-run:${habit.cadence}` };
1370
+ }
1371
+ return {
1372
+ kind: "ready",
1373
+ habit,
1374
+ occurrenceId: `${options.trigger}:last-run:${habit.lastRun}:cadence:${habit.cadence}`,
1375
+ };
1376
+ }
1377
+ emitHabitDispatchSkipped(options) {
1378
+ (0, runtime_1.emitNervesEvent)({
1379
+ level: "warn",
1380
+ component: "daemon",
1381
+ event: "daemon.habit_dispatch_skipped",
1382
+ message: "habit dispatch rejected by current lifecycle state",
1383
+ meta: {
1384
+ agent: options.agent,
1385
+ habitName: options.habitName,
1386
+ trigger: options.trigger,
1387
+ status: options.resolution.habit.status,
1388
+ degradedReason: options.resolution.habit.status === "degraded"
1389
+ ? options.resolution.habit.degradedReason
1390
+ : null,
1391
+ detail: options.resolution.habit.status === "degraded"
1392
+ ? options.resolution.habit.degradedDetail
1393
+ : null,
1394
+ reason: options.resolution.skipReason,
1395
+ },
1396
+ });
1397
+ }
1398
+ emitHabitDispatchReady(options) {
1399
+ (0, runtime_1.emitNervesEvent)({
1400
+ component: "daemon",
1401
+ event: "daemon.habit_dispatch_ready",
1402
+ message: "habit dispatch accepted by current lifecycle state",
1403
+ meta: {
1404
+ agent: options.agent,
1405
+ habitName: options.habitName,
1406
+ trigger: options.trigger,
1407
+ status: options.resolution.habit.status,
1408
+ occurrenceId: options.resolution.occurrenceId ?? null,
1409
+ },
1410
+ });
1411
+ }
1412
+ skippedHabitDispatchResponse(options) {
1413
+ return {
1414
+ ok: true,
1415
+ message: `skipped scheduled habit ${options.habitName} for ${options.agent}: ${options.skipReason}`,
1416
+ };
1417
+ }
1418
+ async runNativeRsvpHabit(command, trigger, occurrenceId, noSend = false) {
1419
+ const runner = this.rsvpHabitRunner ?? (async (input) => {
1420
+ const { runNativeRsvpHabit } = await Promise.resolve().then(() => __importStar(require("../../rsvp/native-habit-runner")));
1421
+ return runNativeRsvpHabit(input);
1422
+ });
1423
+ const result = await runner({
1424
+ agent: command.agent,
1425
+ bundlesRoot: this.bundlesRoot,
1426
+ habitName: command.habitName,
1427
+ trigger,
1428
+ ...(occurrenceId ? { occurrenceId } : {}),
1429
+ ...(noSend ? { noSend: true } : {}),
1430
+ });
1431
+ if (noSend) {
1432
+ const payload = result.payload;
1433
+ const status = payload?.status;
1434
+ const transportInvocationCount = payload?.transportInvocationCount;
1435
+ const contractError = "native RSVP habit probe violated the immutable no-send result contract";
1436
+ if (!result.ok) {
1437
+ return {
1438
+ ok: false,
1439
+ error: result.message,
1440
+ data: {
1441
+ ok: false,
1442
+ noSend: true,
1443
+ status: typeof status === "string" ? status : "degraded",
1444
+ transportInvocationCount: null,
1445
+ error: result.message,
1446
+ },
1447
+ };
1448
+ }
1449
+ if (payload?.noSend !== true
1450
+ || typeof status !== "string"
1451
+ || typeof transportInvocationCount !== "number"
1452
+ || transportInvocationCount !== 0) {
1453
+ return {
1454
+ ok: false,
1455
+ error: contractError,
1456
+ data: {
1457
+ ok: false,
1458
+ noSend: true,
1459
+ status: typeof status === "string" ? status : "degraded",
1460
+ transportInvocationCount: null,
1461
+ error: contractError,
1462
+ },
1463
+ };
1464
+ }
1465
+ return {
1466
+ ok: true,
1467
+ message: result.message,
1468
+ data: { noSend: true, status, transportInvocationCount: 0 },
1469
+ };
1470
+ }
1471
+ return {
1472
+ ok: result.ok,
1473
+ message: result.message,
1474
+ data: result,
1475
+ };
1476
+ }
1477
+ buildPrivateRuntimeWorkerWakeMessage(command, decision, externalEvent) {
1478
+ const awaitName = (0, await_private_wake_1.awaitNameFromPrivateWakeCommand)(command);
1479
+ if (awaitName) {
1480
+ return {
1481
+ type: "await",
1482
+ awaitName,
1483
+ privateTurnDecision: decision,
1484
+ };
1485
+ }
1486
+ const taskId = taskIdFromTaskPokePrivateWakeCommand(command);
1487
+ if (taskId) {
1488
+ return {
1489
+ type: "poke",
1490
+ taskId,
1491
+ privateTurnDecision: decision,
1492
+ };
1493
+ }
1494
+ const habitMessage = (0, habit_private_wake_1.habitMessageFromPrivateWakeCommand)(command);
1495
+ if (habitMessage) {
1496
+ return {
1497
+ type: "habit",
1498
+ habitName: habitMessage.habitName,
1499
+ trigger: habitMessage.trigger,
1500
+ ...(habitMessage.noSend ? { noSend: true } : {}),
1501
+ privateTurnDecision: decision,
1502
+ };
1503
+ }
1504
+ return { type: "message", privateTurnDecision: decision, ...(externalEvent ? { externalEvent } : {}) };
1505
+ }
1506
+ queueExternalEventForPrivateRuntime(record) {
1507
+ const pendingDir = path.join(this.bundlesRoot, `${record.agent}.ouro`, "state", "pending", pending_1.PRIVATE_RUNTIME_PENDING.friendId, pending_1.PRIVATE_RUNTIME_PENDING.channel, pending_1.PRIVATE_RUNTIME_PENDING.key);
1508
+ const originKey = `${record.source}:${record.eventId}`;
1509
+ const parsedReceivedAt = Date.parse(record.receivedAt);
1510
+ (0, pending_1.queuePendingMessageOnce)(pendingDir, {
1511
+ from: "ouro-external-event",
1512
+ friendId: "ouro-external-event",
1513
+ channel: "external-event",
1514
+ key: originKey,
1515
+ content: (0, router_1.buildExternalEventMessage)(record),
1516
+ timestamp: Number.isFinite(parsedReceivedAt) ? parsedReceivedAt : Date.now(),
1517
+ delegatedFrom: {
1518
+ friendId: "ouro-external-event",
1519
+ channel: "external-event",
1520
+ key: originKey,
1521
+ },
1522
+ obligationStatus: "pending",
1523
+ mode: "relay",
1524
+ packetId: `external-event:${record.agent}:${record.source}:${record.eventId}:generation:${record.generation}:attempt:${record.attemptCount}`,
1525
+ });
1526
+ (0, runtime_1.emitNervesEvent)({
1527
+ component: "daemon",
1528
+ event: "daemon.external_event_private_runtime_queued",
1529
+ message: "queued external event for private-runtime attention",
1530
+ meta: {
1531
+ agent: record.agent,
1532
+ source: record.source,
1533
+ eventType: record.eventType,
1534
+ eventId: record.eventId,
1535
+ pendingDir,
1536
+ },
1537
+ });
1538
+ }
1539
+ externalEventRootPath() {
1540
+ return this.externalEventRoot ?? (0, router_1.getExternalEventRoot)();
1541
+ }
1542
+ externalEventLease(record) {
1543
+ /* v8 ignore next -- dispatcher calls this only with the record returned by claimExternalEvent @preserve */
1544
+ if (!record.claimOwner)
1545
+ throw new Error("External event dispatch requires a claimed receipt");
1546
+ return {
1547
+ schemaVersion: 1,
1548
+ recordPath: record.recordPath,
1549
+ agent: record.agent,
1550
+ source: record.source,
1551
+ eventId: record.eventId,
1552
+ generation: record.generation,
1553
+ observationRevision: record.observationRevision,
1554
+ claimOwner: record.claimOwner,
1555
+ };
1556
+ }
1557
+ async dispatchExternalEvents(records) {
1558
+ const claimed = [];
1559
+ let failureClass;
1560
+ try {
1561
+ for (const record of records) {
1562
+ const owner = `external-event:${record.agent}:${record.source}:${record.eventId}:generation:${record.generation}:attempt:${record.attemptCount + 1}`;
1563
+ claimed.push((0, router_1.claimExternalEvent)(record.recordPath, { owner, expectedVersion: record.version, expectedGeneration: record.generation }));
1564
+ }
1565
+ const primary = claimed[0];
1566
+ const [primaryLease, ...relatedEvents] = claimed.map((record) => this.externalEventLease(record));
1567
+ const lease = { ...primaryLease, ...(relatedEvents.length > 0 ? { relatedEvents } : {}) };
1568
+ const receipt = {
1569
+ id: `external-event:${primary.agent}:${primary.source}:${primary.eventId}:generation:${primary.generation}:attempt:${primary.attemptCount}`,
1570
+ queuedAt: primary.updatedAt,
1571
+ };
1572
+ const wake = await this.handlePrivateRuntimeWake(this.buildExternalEventPrivateWakeCommand({
1573
+ kind: "external.event.submit",
1574
+ agent: primary.agent,
1575
+ source: primary.source,
1576
+ eventType: primary.eventType,
1577
+ eventId: primary.eventId,
1578
+ }, receipt.id, primary.generation, primary.attemptCount), () => { for (const record of claimed)
1579
+ this.queueExternalEventForPrivateRuntime(record); }, lease);
1580
+ failureClass = wake.denialCode === "managed_runtime_unavailable"
1581
+ ? "managed_runtime_unavailable"
1582
+ : wake.data?.decision?.denialCode === "provider_lane_unavailable"
1583
+ ? "provider_lane_unavailable"
1584
+ : undefined;
1585
+ const denied = !wake.ok || wake.data?.decision?.executable === false;
1586
+ if (denied)
1587
+ throw new Error(wake.error ?? wake.message ?? /* v8 ignore next -- daemon wake responses always carry an error or message @preserve */ "external-event private turn was denied");
1588
+ return { events: claimed, event: primary, receipt, wake };
1589
+ }
1590
+ catch (error) {
1591
+ for (const record of claimed) {
1592
+ const latest = (0, router_1.readExternalEventRecord)(record.recordPath);
1593
+ if (latest.executionState === "running" && latest.claimOwner === record.claimOwner) {
1594
+ (0, router_1.failExternalEventAttempt)(latest.recordPath, {
1595
+ owner: record.claimOwner, expectedVersion: latest.version, expectedGeneration: latest.generation,
1596
+ error: error instanceof Error ? error.message : String(error),
1597
+ ...(failureClass ? { failureClass } : {}),
1598
+ });
1599
+ }
1600
+ }
1601
+ throw error;
1602
+ }
1603
+ }
1604
+ dispatchExternalEvent(record) {
1605
+ return this.dispatchExternalEvents([record]);
1606
+ }
1607
+ async reconcileExternalEvents() {
1608
+ /* v8 ignore next -- re-entrancy guard is exercised only by overlapping real timer callbacks @preserve */
1609
+ if (this.externalEventReconcileRunning)
1610
+ return;
1611
+ this.externalEventReconcileRunning = true;
1612
+ try {
1613
+ const now = new Date().toISOString();
1614
+ if (fs.existsSync(this.privilegedEventSpoolRoot)) {
1615
+ this.privilegedEventScanner({ spoolRoot: this.privilegedEventSpoolRoot, eventRoot: this.externalEventRootPath() });
1616
+ }
1617
+ const statuses = (0, router_1.listExternalEventStatus)(this.externalEventRootPath());
1618
+ const dueRecords = [];
1619
+ for (const status of statuses) {
1620
+ if (status.corrupt)
1621
+ continue;
1622
+ let record = (0, router_1.readExternalEventRecord)(status.recordPath);
1623
+ if (record.dispatchEnabled === false)
1624
+ continue;
1625
+ if (record.executionState === "dead_letter") {
1626
+ const failure = (0, router_1.externalEventRecoveryFailure)(record);
1627
+ if (!failure || record.recoveryGrant?.generation === record.generation)
1628
+ continue;
1629
+ let evidence = null;
1630
+ try {
1631
+ if (failure.class === "provider_lane_unavailable") {
1632
+ const binding = (0, provider_binding_resolver_1.resolveEffectiveProviderBinding)({
1633
+ agentName: record.agent,
1634
+ agentRoot: path.join(this.bundlesRoot, `${record.agent}.ouro`),
1635
+ lane: "inner",
1636
+ });
1637
+ if (binding.ok && binding.binding.credential.status === "present"
1638
+ && binding.binding.readiness.status === "ready" && binding.binding.readiness.checkedAt
1639
+ && Date.parse(binding.binding.readiness.checkedAt) > Date.parse(failure.failedAt)) {
1640
+ evidence = { class: failure.class, observedAt: binding.binding.readiness.checkedAt };
1641
+ }
1642
+ }
1643
+ else if (this.hasManagedPrivateRuntime(record.agent) && Date.parse(now) > Date.parse(failure.failedAt)) {
1644
+ evidence = { class: failure.class, observedAt: now };
1645
+ }
1646
+ if (!evidence)
1647
+ continue;
1648
+ const revival = (0, router_1.reviveExternalEventAfterRecovery)(record.recordPath, { expectedVersion: record.version, expectedGeneration: record.generation, evidence, now: () => now });
1649
+ record = revival.record;
1650
+ }
1651
+ catch (error) {
1652
+ (0, runtime_1.emitNervesEvent)({
1653
+ level: "warn",
1654
+ component: "daemon",
1655
+ event: "daemon.external_event_recovery_error",
1656
+ message: "external event dead-letter recovery check failed",
1657
+ meta: { agent: record.agent, source: record.source, eventId: record.eventId, generation: record.generation, error: error instanceof Error ? error.message : String(error) },
1658
+ });
1659
+ continue;
1660
+ }
1661
+ }
1662
+ if (record.executionState === "running" && record.claimExpiresAt && Date.parse(record.claimExpiresAt) <= Date.parse(now)) {
1663
+ record = (0, router_1.reconcileExternalEvent)(record.recordPath);
1664
+ }
1665
+ const due = record.executionState === "received"
1666
+ || record.executionState === "queued"
1667
+ || (record.executionState === "retry_wait" && record.nextAttemptAt !== null && Date.parse(record.nextAttemptAt) <= Date.parse(now));
1668
+ if (due)
1669
+ dueRecords.push(record);
1670
+ }
1671
+ const batches = new Map();
1672
+ for (const record of dueRecords) {
1673
+ const key = `${record.agent}\0${record.source}`;
1674
+ const batch = batches.get(key) ?? [];
1675
+ batch.push(record);
1676
+ batches.set(key, batch);
1677
+ }
1678
+ for (const records of batches.values()) {
1679
+ for (let offset = 0; offset < records.length; offset += 32) {
1680
+ const batch = records.slice(offset, offset + 32);
1681
+ try {
1682
+ await this.dispatchExternalEvents(batch);
1683
+ }
1684
+ catch (error) {
1685
+ (0, runtime_1.emitNervesEvent)({
1686
+ level: "warn",
1687
+ component: "daemon",
1688
+ event: "daemon.external_event_dispatch_error",
1689
+ message: "external event dispatch failed",
1690
+ meta: { recordPath: batch[0].recordPath, batchSize: batch.length, error: error instanceof Error ? error.message : /* v8 ignore next -- dispatch failures are Error objects @preserve */ String(error) },
1691
+ });
1692
+ }
1693
+ }
1694
+ }
1695
+ }
1696
+ finally {
1697
+ this.externalEventReconcileRunning = false;
1698
+ }
1699
+ }
1700
+ async handlePrivateRuntimeWake(command, beforeDispatch, externalEvent) {
1701
+ if (!this.hasManagedPrivateRuntime(command.agent)) {
1702
+ return {
1703
+ ok: false,
1704
+ error: `No managed agent '${command.agent}' is registered with daemon-managed private runtime.`,
1705
+ denialCode: "managed_runtime_unavailable",
1706
+ };
1707
+ }
1708
+ const decision = await (0, private_runtime_1.requestPrivateTurnDecision)(this.buildPrivateRuntimeWakeRequest(command), {
1709
+ bundlesRoot: this.bundlesRoot,
1710
+ ...this.privateRuntimePolicyDeps,
1711
+ });
1712
+ if (!decision.executable) {
1713
+ return {
1714
+ ok: true,
1715
+ message: `private-runtime wake denied for ${command.agent}: ${decision.deniedReason}`,
1716
+ ...(decision.denialCode ? { denialCode: decision.denialCode } : {}),
1717
+ data: { decision },
1718
+ };
1719
+ }
1720
+ await beforeDispatch?.(decision);
1721
+ await this.processManager.startAgent(command.agent);
1722
+ this.processManager.sendToAgent?.(command.agent, this.buildPrivateRuntimeWorkerWakeMessage(command, decision, externalEvent));
1723
+ return {
1724
+ ok: true,
1725
+ message: `woke private runtime for ${command.agent}`,
1726
+ data: { decision },
1727
+ };
1728
+ }
1729
+ async handleCommandInner(command) {
371
1730
  switch (command.kind) {
372
1731
  case "daemon.start":
373
1732
  await this.start();
374
1733
  return { ok: true, message: "daemon started" };
375
1734
  case "daemon.stop":
376
- await this.stop();
1735
+ try {
1736
+ await this.stop();
1737
+ }
1738
+ finally {
1739
+ await this.onStopCommandComplete?.();
1740
+ }
377
1741
  return { ok: true, message: "daemon stopped" };
378
- case "daemon.status": {
379
- const snapshots = this.processManager.listAgentSnapshots();
380
- const workers = buildWorkerRows(snapshots);
381
- const senses = this.senseManager?.listSenseRows() ?? [];
382
- const repoRoot = (0, identity_1.getRepoRoot)();
383
- const data = {
384
- overview: {
385
- daemon: "running",
386
- health: workers.every((worker) => worker.status === "running") ? "ok" : "warn",
387
- socketPath: this.socketPath,
388
- ...(0, runtime_metadata_1.getRuntimeMetadata)(),
389
- workerCount: workers.length,
390
- senseCount: senses.length,
391
- entryPath: path.join(repoRoot, "dist", "heart", "daemon", "daemon-entry.js"),
392
- mode: (0, runtime_mode_1.detectRuntimeMode)(repoRoot),
1742
+ case "daemon.restart": {
1743
+ // Restart is "stop + let launchctl respawn." Under launchctl's KeepAlive
1744
+ // policy the process is auto-restarted on exit, so daemon.restart and
1745
+ // daemon.stop differ only in intent + audit trail. In dev (no launchctl),
1746
+ // the process simply exits — same observable behavior as daemon.stop.
1747
+ (0, runtime_1.emitNervesEvent)({
1748
+ component: "daemon",
1749
+ event: "daemon.restart_requested",
1750
+ message: "daemon restart requested",
1751
+ meta: {
1752
+ reason: command.reason ?? null,
1753
+ requestedBy: command.requestedBy ?? null,
393
1754
  },
394
- workers,
395
- senses,
1755
+ });
1756
+ try {
1757
+ await this.stop();
1758
+ }
1759
+ finally {
1760
+ await this.onStopCommandComplete?.();
1761
+ }
1762
+ return {
1763
+ ok: true,
1764
+ message: "daemon restarting — launchctl will respawn",
396
1765
  };
1766
+ }
1767
+ case "daemon.status": {
1768
+ const data = this.buildStatusPayload();
397
1769
  return {
398
1770
  ok: true,
399
1771
  summary: formatStatusSummary(data),
@@ -412,15 +1784,112 @@ class OuroDaemon {
412
1784
  message: "log streaming available via ouro logs",
413
1785
  data: { logDir: "~/AgentBundles/<agent>.ouro/state/daemon/logs" },
414
1786
  };
1787
+ case "daemon.sense_revive": {
1788
+ if (!isValidSenseReviveCommand(command)) {
1789
+ return {
1790
+ ok: false,
1791
+ error: "Invalid daemon.sense_revive payload: expected string fields 'agent', 'sense', and 'reason'.",
1792
+ };
1793
+ }
1794
+ const revivedSenseRow = await this.senseManager?.reviveSense?.(command.agent, command.sense);
1795
+ if (revivedSenseRow) {
1796
+ return {
1797
+ ok: true,
1798
+ message: `revived ${command.agent}/${command.sense}`,
1799
+ data: revivedSenseRow,
1800
+ };
1801
+ }
1802
+ const managedSenseSnapshots = this.processManager.listAgentSnapshots()
1803
+ .filter((snapshot) => snapshot.name.startsWith(`${command.agent}:`));
1804
+ if (managedSenseSnapshots.length === 0) {
1805
+ return {
1806
+ ok: false,
1807
+ error: `No managed agent '${command.agent}' is registered with daemon-managed senses.`,
1808
+ };
1809
+ }
1810
+ const exactTargetName = `${command.agent}:${command.sense}`;
1811
+ const target = managedSenseSnapshots.find((snapshot) => snapshot.name === exactTargetName)
1812
+ ?? managedSenseSnapshots.find((snapshot) => snapshot.channel === command.sense);
1813
+ if (!target) {
1814
+ return {
1815
+ ok: false,
1816
+ error: `No managed sense '${command.sense}' is registered for agent '${command.agent}'.`,
1817
+ };
1818
+ }
1819
+ this.processManager.resetAgentFailureState(target.name);
1820
+ await this.processManager.startAgent(target.name);
1821
+ const freshSnapshot = this.processManager.listAgentSnapshots()
1822
+ .find((snapshot) => snapshot.name === target.name) ?? target;
1823
+ return {
1824
+ ok: true,
1825
+ message: `revived ${command.agent}/${command.sense}`,
1826
+ data: freshSnapshot,
1827
+ };
1828
+ }
415
1829
  case "agent.start":
416
1830
  await this.processManager.startAgent(command.agent);
417
1831
  return { ok: true, message: `started ${command.agent}` };
418
1832
  case "agent.stop":
419
1833
  await this.processManager.stopAgent?.(command.agent);
420
1834
  return { ok: true, message: `stopped ${command.agent}` };
421
- case "agent.restart":
422
- await this.processManager.restartAgent?.(command.agent);
423
- return { ok: true, message: `restarted ${command.agent}` };
1835
+ case "agent.restart": {
1836
+ if (!this.processManager.restartAgent) {
1837
+ return { ok: false, error: "Managed agent restart is not available." };
1838
+ }
1839
+ const managedSnapshot = this.processManager.listAgentSnapshots()
1840
+ .find((snapshot) => snapshot.name === command.agent);
1841
+ if (!managedSnapshot) {
1842
+ return { ok: false, error: `Unknown managed agent '${command.agent}'.` };
1843
+ }
1844
+ if (managedSnapshot.autoStart === false && managedSnapshot.status === "stopped") {
1845
+ return { ok: true, message: `restart skipped for parked non-autostart agent '${command.agent}'` };
1846
+ }
1847
+ const restartWork = command.skipConfigCheck === true
1848
+ ? this.processManager.restartAgent(command.agent, { skipConfigCheck: true })
1849
+ : this.processManager.restartAgent(command.agent);
1850
+ void restartWork.catch((error) => {
1851
+ (0, runtime_1.emitNervesEvent)({
1852
+ level: "error",
1853
+ component: "daemon",
1854
+ event: "daemon.agent_restart_request_error",
1855
+ message: "managed agent restart failed after request acknowledgement",
1856
+ meta: {
1857
+ agent: command.agent,
1858
+ error: error instanceof Error ? error.message : String(error),
1859
+ },
1860
+ });
1861
+ });
1862
+ return { ok: true, message: `restart requested for ${command.agent}` };
1863
+ }
1864
+ case "agent.ask":
1865
+ return handleAgentAskTurn(command, { socketPath: this.socketPath });
1866
+ case "agent.status":
1867
+ return (0, agent_service_1.handleAgentStatus)(command);
1868
+ case "agent.catchup":
1869
+ return (0, agent_service_1.handleAgentCatchup)(command);
1870
+ case "agent.delegate":
1871
+ return (0, agent_service_1.handleAgentDelegate)(command);
1872
+ case "agent.getContext":
1873
+ return (0, agent_service_1.handleAgentGetContext)(command);
1874
+ case "agent.searchFacts":
1875
+ return (0, agent_service_1.handleAgentSearchFacts)(command);
1876
+ case "agent.getTask":
1877
+ return (0, agent_service_1.handleAgentGetTask)(command);
1878
+ case "agent.checkScope":
1879
+ return (0, agent_service_1.handleAgentCheckScope)(command);
1880
+ case "agent.requestDecision":
1881
+ return (0, agent_service_1.handleAgentRequestDecision)(command);
1882
+ case "agent.checkGuidance":
1883
+ return (0, agent_service_1.handleAgentCheckGuidance)(command);
1884
+ case "agent.reportProgress":
1885
+ return (0, agent_service_1.handleAgentReportProgress)(command);
1886
+ case "agent.reportBlocker":
1887
+ return (0, agent_service_1.handleAgentReportBlocker)(command);
1888
+ case "agent.reportComplete":
1889
+ return (0, agent_service_1.handleAgentReportComplete)(command);
1890
+ case "agent.senseTurn":
1891
+ return handleAgentSenseTurn(command, { socketPath: this.socketPath });
1892
+ /* v8 ignore stop */
424
1893
  case "cron.list": {
425
1894
  const jobs = this.scheduler.listJobs();
426
1895
  const summary = jobs.length === 0
@@ -429,10 +1898,28 @@ class OuroDaemon {
429
1898
  return { ok: true, summary, data: jobs };
430
1899
  }
431
1900
  case "cron.trigger": {
1901
+ const habitResult = await this.scheduler.triggerHabitJob?.(command.jobId);
1902
+ if (habitResult?.ok) {
1903
+ return { ok: true, message: habitResult.message };
1904
+ }
432
1905
  const result = await this.scheduler.triggerJob(command.jobId);
433
1906
  return { ok: result.ok, message: result.message };
434
1907
  }
435
1908
  case "message.send": {
1909
+ // Pure queue-only delivery. We DO NOT wake the recipient — that was
1910
+ // the 2026-05-11 $50 bleed. The Claude Code post-tool-use hook
1911
+ // (cli-exec.ts) intentionally sends only message.send for tool-use
1912
+ // events to avoid waking the agent on every tool call. The hook's
1913
+ // intent was completely defeated by this handler calling
1914
+ // `sendToAgent({type: "message"})`, which woke the private runtime
1915
+ // worker on EVERY message.send anyway. ~30 message.send/min × the
1916
+ // 3-turn instinct-loop cap = ~90 turns/min sustained for hours.
1917
+ //
1918
+ // Callers that want immediate processing must send `private.wake`
1919
+ // explicitly after message.send. The CLI `ouro msg` does so
1920
+ // (lifecycle-boundary delivery should wake); the hook does so
1921
+ // only on session-start / stop, not per tool-use; the API does
1922
+ // not (notifications go to the queue).
436
1923
  const receipt = await this.router.send({
437
1924
  from: command.from,
438
1925
  to: command.to,
@@ -441,7 +1928,6 @@ class OuroDaemon {
441
1928
  sessionId: command.sessionId,
442
1929
  taskRef: command.taskRef,
443
1930
  });
444
- this.processManager.sendToAgent?.(command.to, { type: "message" });
445
1931
  return { ok: true, message: `queued message ${receipt.id}`, data: receipt };
446
1932
  }
447
1933
  case "message.poll": {
@@ -452,13 +1938,107 @@ class OuroDaemon {
452
1938
  data: messages,
453
1939
  };
454
1940
  }
455
- case "inner.wake":
456
- await this.processManager.startAgent(command.agent);
457
- this.processManager.sendToAgent?.(command.agent, { type: "message" });
1941
+ case "external.event.submit": {
1942
+ const record = (0, router_1.recordExternalEvent)({
1943
+ agent: command.agent,
1944
+ source: command.source,
1945
+ eventType: command.eventType,
1946
+ eventId: command.eventId,
1947
+ summary: command.summary,
1948
+ evidence: command.evidence,
1949
+ payloadPath: command.payloadPath,
1950
+ priority: command.priority,
1951
+ observationRevision: command.observationRevision,
1952
+ transition: command.transition,
1953
+ }, {
1954
+ ...(this.externalEventRoot ? { root: this.externalEventRoot } : {}),
1955
+ dispatchEnabled: command.wake !== false,
1956
+ });
1957
+ if (!record.shouldWake || command.wake === false) {
1958
+ return {
1959
+ ok: true,
1960
+ message: `updated external event ${record.source}/${record.eventId} without wake`,
1961
+ data: { event: record, receipt: null, wake: null },
1962
+ };
1963
+ }
1964
+ const dispatched = await this.dispatchExternalEvent(record);
1965
+ return {
1966
+ ok: true,
1967
+ message: `queued external event ${record.source}/${record.eventId} as ${dispatched.receipt.id}; ${dispatched.wake.message ?? "wake skipped"}`,
1968
+ data: dispatched,
1969
+ };
1970
+ }
1971
+ case "private.decisions": {
1972
+ const requestedLimit = Number.isInteger(command.limit) && command.limit && command.limit > 0 ? command.limit : 20;
1973
+ const limit = Math.min(requestedLimit, 1000);
1974
+ const ledgerPath = (0, private_runtime_1.privateTurnLedgerPath)(command.agent, { bundlesRoot: this.bundlesRoot });
1975
+ const ledgerExists = fs.existsSync(ledgerPath);
1976
+ let decisions;
1977
+ try {
1978
+ decisions = ledgerExists ? (0, private_runtime_1.readPrivateTurnLedger)(ledgerPath) : [];
1979
+ }
1980
+ catch {
1981
+ return {
1982
+ ok: false,
1983
+ error: `private-runtime decision ledger is malformed: ${ledgerPath}; repair or remove malformed JSONL rows before reading decisions`,
1984
+ };
1985
+ }
1986
+ const guidance = ledgerExists
1987
+ ? undefined
1988
+ : `No private-runtime decision ledger exists for ${command.agent}; run an explicit private-runtime trigger or check ${path.dirname(ledgerPath)}.`;
1989
+ const payload = (0, private_runtime_1.buildPrivateDecisionReadPayload)({
1990
+ agent: command.agent,
1991
+ ledgerPath,
1992
+ decisions,
1993
+ limit,
1994
+ ...(guidance ? { guidance } : {}),
1995
+ });
458
1996
  return {
459
1997
  ok: true,
460
- message: `woke inner dialog for ${command.agent}`,
1998
+ summary: (0, private_runtime_1.privateDecisionCountSummary)(payload.decisions.length),
1999
+ ...(guidance ? { message: guidance } : {}),
2000
+ data: payload,
461
2001
  };
2002
+ }
2003
+ case "inner.wake":
2004
+ return this.handlePrivateRuntimeWake(command);
2005
+ case "private.wake": {
2006
+ const scheduledHabit = (0, habit_private_wake_1.habitMessageFromPrivateWakeCommand)(command);
2007
+ if (!scheduledHabit || !this.hasManagedPrivateRuntime(command.agent)) {
2008
+ return this.handlePrivateRuntimeWake(command);
2009
+ }
2010
+ const occurrenceRef = command.originRefs?.find((ref) => ref.kind === "habit-occurrence");
2011
+ const occurrenceId = typeof occurrenceRef?.id === "string" && occurrenceRef.id.trim().length > 0
2012
+ ? occurrenceRef.id.trim()
2013
+ : undefined;
2014
+ const resolution = this.resolveHabitDispatch({
2015
+ agent: command.agent,
2016
+ habitName: scheduledHabit.habitName,
2017
+ trigger: scheduledHabit.trigger,
2018
+ source: "private-wake",
2019
+ ...(occurrenceId ? { occurrenceId } : {}),
2020
+ });
2021
+ if (resolution.kind === "skipped") {
2022
+ this.emitHabitDispatchSkipped({
2023
+ agent: command.agent,
2024
+ habitName: scheduledHabit.habitName,
2025
+ trigger: scheduledHabit.trigger,
2026
+ resolution,
2027
+ });
2028
+ return this.skippedHabitDispatchResponse({
2029
+ agent: command.agent,
2030
+ habitName: scheduledHabit.habitName,
2031
+ skipReason: resolution.skipReason,
2032
+ });
2033
+ }
2034
+ this.emitHabitDispatchReady({
2035
+ agent: command.agent,
2036
+ habitName: scheduledHabit.habitName,
2037
+ trigger: scheduledHabit.trigger,
2038
+ resolution,
2039
+ });
2040
+ return this.handlePrivateRuntimeWake(command);
2041
+ }
462
2042
  case "chat.connect":
463
2043
  await this.processManager.startAgent(command.agent);
464
2044
  return {
@@ -466,6 +2046,12 @@ class OuroDaemon {
466
2046
  message: `connected to ${command.agent}`,
467
2047
  };
468
2048
  case "task.poke": {
2049
+ if (!isValidTaskPokeCommand(command)) {
2050
+ return {
2051
+ ok: false,
2052
+ error: "Invalid task.poke payload: expected non-empty string fields 'agent' and 'taskId'.",
2053
+ };
2054
+ }
469
2055
  const receipt = await this.router.send({
470
2056
  from: "ouro-poke",
471
2057
  to: command.agent,
@@ -474,14 +2060,216 @@ class OuroDaemon {
474
2060
  taskRef: command.taskId,
475
2061
  });
476
2062
  await this.scheduler.recordTaskRun?.(command.agent, command.taskId);
477
- this.processManager.sendToAgent?.(command.agent, { type: "poke", taskId: command.taskId });
2063
+ await this.handlePrivateRuntimeWake(this.buildTaskPokePrivateWakeCommand(command, receipt.id));
478
2064
  return {
479
2065
  ok: true,
480
2066
  message: `queued poke ${receipt.id}`,
481
2067
  data: receipt,
482
2068
  };
483
2069
  }
2070
+ case "habit.scheduler-fire": {
2071
+ if (!this.schedulerFireVerifier || !this.schedulerFireConsumer)
2072
+ return { ok: false, error: "authenticated scheduler fire is unavailable" };
2073
+ let origin;
2074
+ try {
2075
+ origin = this.schedulerFireVerifier(command);
2076
+ this.schedulerFireConsumer(origin);
2077
+ }
2078
+ catch (error) {
2079
+ return { ok: false, error: error instanceof Error ? error.message : String(error) };
2080
+ }
2081
+ const poke = { kind: "habit.poke", agent: command.agent, habitName: command.habitName, trigger: "cron", occurrenceId: origin.occurrenceId };
2082
+ this.authenticatedSchedulerPokes.set(poke, origin);
2083
+ try {
2084
+ return await this.handleCommand(poke);
2085
+ }
2086
+ finally {
2087
+ this.authenticatedSchedulerPokes.delete(poke);
2088
+ }
2089
+ }
2090
+ case "habit.poke": {
2091
+ if (!isValidHabitPokeCommand(command)) {
2092
+ return {
2093
+ ok: false,
2094
+ error: "Invalid habit.poke payload: expected non-empty string fields 'agent' and 'habitName'.",
2095
+ };
2096
+ }
2097
+ const trigger = command.trigger ?? "poke";
2098
+ if (!(0, flight_recorder_1.isHabitRunTrigger)(trigger)) {
2099
+ return { ok: false, error: `invalid habit trigger: ${String(trigger)}` };
2100
+ }
2101
+ const schedulerOrigin = this.authenticatedSchedulerPokes.get(command);
2102
+ if (command.agent === "sanctuary" && command.habitName === "sanctuary-health" && trigger === "cron" && !schedulerOrigin) {
2103
+ return { ok: false, error: "Sanctuary cron habit requires authenticated Supercronic provenance" };
2104
+ }
2105
+ if (!(0, habit_policy_1.isRsvpHabitName)(command.habitName) && !this.hasManagedPrivateRuntime(command.agent)) {
2106
+ return {
2107
+ ok: false,
2108
+ error: `No managed agent '${command.agent}' is registered with daemon-managed private runtime.`,
2109
+ };
2110
+ }
2111
+ const resolution = this.resolveHabitDispatch({
2112
+ agent: command.agent,
2113
+ habitName: command.habitName,
2114
+ trigger,
2115
+ source: "habit-poke",
2116
+ ...(command.occurrenceId ? { occurrenceId: command.occurrenceId } : {}),
2117
+ });
2118
+ if (resolution.kind === "skipped") {
2119
+ this.emitHabitDispatchSkipped({
2120
+ agent: command.agent,
2121
+ habitName: command.habitName,
2122
+ trigger,
2123
+ resolution,
2124
+ });
2125
+ return this.skippedHabitDispatchResponse({
2126
+ agent: command.agent,
2127
+ habitName: command.habitName,
2128
+ skipReason: resolution.skipReason,
2129
+ });
2130
+ }
2131
+ this.emitHabitDispatchReady({
2132
+ agent: command.agent,
2133
+ habitName: command.habitName,
2134
+ trigger,
2135
+ resolution,
2136
+ });
2137
+ if (this.nativeHabitRunner && this.nativeHabitMatch?.(command.agent, command.habitName)) {
2138
+ const occurrenceId = resolution.occurrenceId ?? `${trigger}:${command.agent}:${command.habitName}`;
2139
+ const claimKey = `${command.agent}:${command.habitName}`;
2140
+ if (this.nativeHabitClaims.has(claimKey)) {
2141
+ return { ok: true, message: `skipped overlapping native habit occurrence ${occurrenceId}` };
2142
+ }
2143
+ this.nativeHabitClaims.add(claimKey);
2144
+ const startedAt = new Date().toISOString();
2145
+ const runnerId = (0, node_crypto_1.randomUUID)();
2146
+ let nativeResult;
2147
+ try {
2148
+ nativeResult = await this.nativeHabitRunner({
2149
+ agent: command.agent,
2150
+ habitName: command.habitName,
2151
+ trigger,
2152
+ occurrenceId,
2153
+ runnerId,
2154
+ ...(schedulerOrigin ? { schedulerOrigin } : {}),
2155
+ }) ?? { ok: false, error: "native habit runner declined a matched habit" };
2156
+ }
2157
+ catch (error) {
2158
+ nativeResult = { ok: false, error: error instanceof Error ? error.message : String(error) };
2159
+ }
2160
+ const endedAt = new Date().toISOString();
2161
+ let completion;
2162
+ try {
2163
+ completion = (0, habit_session_1.completeHabitRun)({
2164
+ agentRoot: path.join(this.bundlesRoot, `${command.agent}.ouro`),
2165
+ habit: resolution.habit,
2166
+ runId: runnerId,
2167
+ trigger,
2168
+ startedAt,
2169
+ endedAt,
2170
+ operationId: occurrenceId,
2171
+ permissionEnvelope: { schemaVersion: 1, canMessageOutward: true, returnRoutes: [], deniedTools: [], warnings: [] },
2172
+ toolPolicy: { requestedTools: null, grantedTools: [], deniedTools: [], outwardMessagingAllowed: true },
2173
+ ...(nativeResult.ok ? {} : { errors: [nativeResult.error ?? nativeResult.message ?? "native habit failed"] }),
2174
+ });
2175
+ }
2176
+ finally {
2177
+ this.nativeHabitClaims.delete(claimKey);
2178
+ }
2179
+ if (!completion.receiptWritten || !completion.runtimeStateRecorded) {
2180
+ return { ok: false, error: "native habit completed but its durable receipt or cursor could not be recorded", data: nativeResult };
2181
+ }
2182
+ return nativeResult;
2183
+ }
2184
+ if ((0, habit_policy_1.isRsvpHabitName)(command.habitName)) {
2185
+ return this.runNativeRsvpHabit(command, trigger, resolution.occurrenceId);
2186
+ }
2187
+ return this.handlePrivateRuntimeWake((0, habit_private_wake_1.buildHabitPrivateWakeCommand)({
2188
+ agent: command.agent,
2189
+ habitName: command.habitName,
2190
+ trigger,
2191
+ sourceRef: { kind: "daemon-command", id: "habit.poke" },
2192
+ occurrenceId: resolution.occurrenceId,
2193
+ }));
2194
+ }
2195
+ case "habit.probe": {
2196
+ if (!isValidHabitProbeCommand(command)) {
2197
+ return {
2198
+ ok: false,
2199
+ error: "Invalid habit.probe payload: expected non-empty agent/habitName and noSend=true.",
2200
+ };
2201
+ }
2202
+ const trigger = "manual";
2203
+ if (!(0, habit_policy_1.isRsvpHabitName)(command.habitName) && !this.hasManagedPrivateRuntime(command.agent)) {
2204
+ return {
2205
+ ok: false,
2206
+ error: `No managed agent '${command.agent}' is registered with daemon-managed private runtime.`,
2207
+ };
2208
+ }
2209
+ const resolution = this.resolveHabitDispatch({
2210
+ agent: command.agent,
2211
+ habitName: command.habitName,
2212
+ trigger,
2213
+ source: "habit-probe",
2214
+ });
2215
+ if (resolution.kind === "skipped") {
2216
+ this.emitHabitDispatchSkipped({
2217
+ agent: command.agent,
2218
+ habitName: command.habitName,
2219
+ trigger,
2220
+ resolution,
2221
+ });
2222
+ return {
2223
+ ok: true,
2224
+ message: `habit probe rejected by lifecycle: status=${resolution.habit.status}`,
2225
+ data: {
2226
+ noSend: true,
2227
+ status: resolution.habit.status,
2228
+ transportInvocationCount: 0,
2229
+ },
2230
+ };
2231
+ }
2232
+ this.emitHabitDispatchReady({
2233
+ agent: command.agent,
2234
+ habitName: command.habitName,
2235
+ trigger,
2236
+ resolution,
2237
+ });
2238
+ if ((0, habit_policy_1.isRsvpHabitName)(command.habitName)) {
2239
+ return this.runNativeRsvpHabit(command, trigger, resolution.occurrenceId, true);
2240
+ }
2241
+ const wake = await this.handlePrivateRuntimeWake((0, habit_private_wake_1.buildHabitPrivateWakeCommand)({
2242
+ agent: command.agent,
2243
+ habitName: command.habitName,
2244
+ trigger,
2245
+ sourceRef: { kind: "daemon-command", id: "habit.probe" },
2246
+ occurrenceId: resolution.occurrenceId,
2247
+ noSend: true,
2248
+ }));
2249
+ if (!wake.ok)
2250
+ return wake;
2251
+ const denied = wake.data
2252
+ ?.decision?.executable === false;
2253
+ const error = denied
2254
+ ? "non-RSVP habit probe was not executed because private-runtime policy denied execution"
2255
+ : "non-RSVP habit probe completion is asynchronous; zero-transport evidence is unverified";
2256
+ return {
2257
+ ok: false,
2258
+ error,
2259
+ data: {
2260
+ ok: false,
2261
+ noSend: true,
2262
+ status: resolution.habit.status,
2263
+ transportInvocationCount: null,
2264
+ error,
2265
+ },
2266
+ };
2267
+ }
2268
+ case "await.poke": {
2269
+ return this.handlePrivateRuntimeWake(this.buildAwaitPrivateWakeCommand(command));
2270
+ }
484
2271
  case "mcp.list": {
2272
+ (0, identity_1.setAgentName)(command.agent ?? "default");
485
2273
  const mcpManager = await (0, mcp_manager_1.getSharedMcpManager)();
486
2274
  if (!mcpManager) {
487
2275
  return { ok: true, data: [], message: "no MCP servers configured" };
@@ -489,6 +2277,7 @@ class OuroDaemon {
489
2277
  return { ok: true, data: mcpManager.listAllTools() };
490
2278
  }
491
2279
  case "mcp.call": {
2280
+ (0, identity_1.setAgentName)(command.agent ?? "default");
492
2281
  const mcpCallManager = await (0, mcp_manager_1.getSharedMcpManager)();
493
2282
  if (!mcpCallManager) {
494
2283
  return { ok: false, error: "no MCP servers configured" };
@@ -506,7 +2295,7 @@ class OuroDaemon {
506
2295
  case "hatch.start":
507
2296
  return {
508
2297
  ok: true,
509
- message: "hatch flow is stubbed in Gate 3 and completed in Gate 6",
2298
+ message: "hatch flow is stubbed; the interactive implementation lands in a later milestone",
510
2299
  };
511
2300
  default:
512
2301
  return {