@ouro.bot/cli 0.1.0-alpha.62 → 0.1.0-alpha.637
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +127 -23
- package/RepairGuide.ouro/agent.json +5 -0
- package/RepairGuide.ouro/psyche/IDENTITY.md +19 -0
- package/RepairGuide.ouro/psyche/SOUL.md +55 -0
- package/RepairGuide.ouro/skills/diagnose-broken-remote.md +63 -0
- package/RepairGuide.ouro/skills/diagnose-stacked-typed-issues.md +35 -0
- package/RepairGuide.ouro/skills/diagnose-sync-blocked.md +54 -0
- package/RepairGuide.ouro/skills/diagnose-vault-expired.md +60 -0
- package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/agent.json +4 -2
- package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/SOUL.md +2 -2
- package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-serpent.md +1 -1
- package/changelog.json +4087 -13
- package/dist/arc/attention-types.js +8 -0
- package/dist/arc/cares.js +144 -0
- package/dist/arc/episodes.js +118 -0
- package/dist/arc/evolution.js +487 -0
- package/dist/arc/intentions.js +134 -0
- package/dist/arc/json-store.js +117 -0
- package/dist/arc/obligations.js +270 -0
- package/dist/arc/packets.js +288 -0
- package/dist/arc/presence.js +185 -0
- package/dist/arc/task-lifecycle.js +57 -0
- package/dist/heart/active-work.js +860 -43
- package/dist/heart/agent-entry.js +69 -3
- package/dist/heart/attachments/image-normalize.js +194 -0
- package/dist/heart/attachments/materialize.js +97 -0
- package/dist/heart/attachments/originals.js +88 -0
- package/dist/heart/attachments/render.js +29 -0
- package/dist/heart/attachments/sources/bluebubbles.js +156 -0
- package/dist/heart/attachments/sources/cli-local-file.js +78 -0
- package/dist/heart/attachments/sources/index.js +16 -0
- package/dist/heart/attachments/store.js +103 -0
- package/dist/heart/attachments/types.js +93 -0
- package/dist/heart/auth/auth-flow.js +479 -0
- package/dist/heart/awaiting/await-alert.js +146 -0
- package/dist/heart/awaiting/await-expiry.js +108 -0
- package/dist/heart/awaiting/await-loader.js +91 -0
- package/dist/heart/awaiting/await-parser.js +141 -0
- package/dist/heart/awaiting/await-runtime-state.js +100 -0
- package/dist/heart/awaiting/await-scheduler.js +377 -0
- package/dist/heart/background-operations.js +281 -0
- package/dist/heart/bridges/manager.js +137 -17
- package/dist/heart/bridges/store.js +14 -2
- package/dist/heart/bundle-state.js +168 -0
- package/dist/heart/commitments.js +135 -0
- package/dist/heart/config-registry.js +322 -0
- package/dist/heart/config.js +114 -119
- package/dist/heart/core.js +1028 -248
- package/dist/heart/cross-chat-delivery.js +3 -18
- package/dist/heart/daemon/agent-config-check.js +419 -0
- package/dist/heart/daemon/agent-discovery.js +102 -3
- package/dist/heart/daemon/agent-service.js +522 -0
- package/dist/heart/daemon/agentic-repair.js +547 -0
- package/dist/heart/daemon/bluebubbles-health-diagnostics.js +122 -0
- package/dist/heart/daemon/boot-sync-probe.js +197 -0
- package/dist/heart/daemon/cadence.js +70 -0
- package/dist/heart/daemon/cli-defaults.js +776 -0
- package/dist/heart/daemon/cli-desk.js +322 -0
- package/dist/heart/daemon/cli-exec.js +7468 -0
- package/dist/heart/daemon/cli-help.js +505 -0
- package/dist/heart/daemon/cli-parse.js +1554 -0
- package/dist/heart/daemon/cli-render-doctor.js +57 -0
- package/dist/heart/daemon/cli-render.js +763 -0
- package/dist/heart/daemon/cli-types.js +8 -0
- package/dist/heart/daemon/connect-bay.js +323 -0
- package/dist/heart/daemon/daemon-cli.js +29 -1700
- package/dist/heart/daemon/daemon-entry.js +485 -2
- package/dist/heart/daemon/daemon-health.js +176 -0
- package/dist/heart/daemon/daemon-rollup.js +57 -0
- package/dist/heart/daemon/daemon-runtime-sync.js +88 -13
- package/dist/heart/daemon/daemon-tombstone.js +236 -0
- package/dist/heart/daemon/daemon.js +906 -71
- package/dist/heart/daemon/dns-workflow.js +394 -0
- package/dist/heart/daemon/doctor-types.js +8 -0
- package/dist/heart/daemon/doctor.js +873 -0
- package/dist/heart/daemon/health-monitor.js +122 -1
- package/dist/heart/daemon/hooks/agent-config-v2.js +33 -0
- package/dist/heart/daemon/hooks/bundle-meta.js +115 -1
- package/dist/heart/daemon/http-health-probe.js +80 -0
- package/dist/heart/daemon/human-command-screens.js +234 -0
- package/dist/heart/daemon/human-readiness.js +114 -0
- package/dist/heart/daemon/inner-status.js +89 -0
- package/dist/heart/daemon/interactive-repair.js +394 -0
- package/dist/heart/daemon/launchd.js +37 -8
- package/dist/heart/daemon/log-tailer.js +79 -10
- package/dist/heart/daemon/logs-prune.js +110 -0
- package/dist/heart/daemon/mcp-canary.js +297 -0
- package/dist/heart/daemon/migrate-to-desk.js +848 -0
- package/dist/heart/daemon/os-cron-deps.js +135 -0
- package/dist/heart/daemon/os-cron.js +14 -12
- package/dist/heart/daemon/ouro-bot-entry.js +4 -2
- package/dist/heart/daemon/ouro-entry.js +3 -1
- package/dist/heart/daemon/plugin-cli.js +432 -0
- package/dist/heart/daemon/process-manager.js +501 -35
- package/dist/heart/daemon/provider-discovery.js +137 -0
- package/dist/heart/daemon/provider-ping-progress.js +83 -0
- package/dist/heart/daemon/pulse.js +475 -0
- package/dist/heart/daemon/readiness-repair.js +365 -0
- package/dist/heart/daemon/run-hooks.js +2 -0
- package/dist/heart/daemon/runtime-logging.js +11 -3
- package/dist/heart/daemon/runtime-metadata.js +2 -30
- package/dist/heart/daemon/safe-mode.js +161 -0
- package/dist/heart/daemon/sense-manager.js +493 -38
- package/dist/heart/daemon/session-id-resolver.js +131 -0
- package/dist/heart/daemon/skill-management-installer.js +22 -9
- package/dist/heart/daemon/socket-client.js +158 -11
- package/dist/heart/daemon/stale-bundle-prune.js +96 -0
- package/dist/heart/daemon/startup-tui.js +330 -0
- package/dist/heart/daemon/task-scheduler.js +117 -39
- package/dist/heart/daemon/terminal-ui.js +499 -0
- package/dist/heart/daemon/thoughts.js +229 -17
- package/dist/heart/daemon/up-progress.js +366 -0
- package/dist/heart/daemon/vault-items.js +56 -0
- package/dist/heart/delegation.js +1 -4
- package/dist/heart/habits/habit-migration.js +189 -0
- package/dist/heart/habits/habit-parser.js +140 -0
- package/dist/heart/habits/habit-runtime-state.js +100 -0
- package/dist/heart/habits/habit-scheduler.js +372 -0
- package/dist/heart/{daemon → hatch}/hatch-flow.js +32 -56
- package/dist/heart/{daemon → hatch}/hatch-specialist.js +6 -8
- package/dist/heart/{daemon → hatch}/specialist-prompt.js +12 -9
- package/dist/heart/{daemon → hatch}/specialist-tools.js +37 -14
- package/dist/heart/identity.js +168 -57
- package/dist/heart/kept-notes.js +357 -0
- package/dist/heart/kicks.js +1 -1
- package/dist/heart/machine-identity.js +161 -0
- package/dist/heart/mail-import-discovery.js +353 -0
- package/dist/heart/mailbox/mailbox-http-hooks.js +66 -0
- package/dist/heart/mailbox/mailbox-http-response.js +7 -0
- package/dist/heart/mailbox/mailbox-http-routes.js +246 -0
- package/dist/heart/mailbox/mailbox-http-static.js +103 -0
- package/dist/heart/mailbox/mailbox-http-transport.js +116 -0
- package/dist/heart/mailbox/mailbox-http.js +99 -0
- package/dist/heart/mailbox/mailbox-read.js +31 -0
- package/dist/heart/mailbox/mailbox-types.js +27 -0
- package/dist/heart/mailbox/mailbox-view.js +197 -0
- package/dist/heart/mailbox/readers/agent-machine.js +418 -0
- package/dist/heart/mailbox/readers/continuity-readers.js +319 -0
- package/dist/heart/mailbox/readers/mail.js +375 -0
- package/dist/heart/mailbox/readers/runtime-readers.js +756 -0
- package/dist/heart/mailbox/readers/sessions.js +232 -0
- package/dist/heart/mailbox/readers/shared.js +111 -0
- package/dist/heart/mcp/mcp-server.js +692 -0
- package/dist/heart/migrate-config.js +100 -0
- package/dist/heart/model-capabilities.js +19 -0
- package/dist/heart/orientation-frame.js +217 -0
- package/dist/heart/platform.js +81 -0
- package/dist/heart/provider-attempt.js +134 -0
- package/dist/heart/provider-binding-resolver.js +272 -0
- package/dist/heart/provider-credentials.js +425 -0
- package/dist/heart/provider-failover.js +301 -0
- package/dist/heart/provider-models.js +81 -0
- package/dist/heart/provider-ping.js +262 -0
- package/dist/heart/provider-readiness-cache.js +40 -0
- package/dist/heart/provider-visibility.js +188 -0
- package/dist/heart/providers/anthropic-token.js +131 -0
- package/dist/heart/providers/anthropic.js +139 -52
- package/dist/heart/providers/azure.js +23 -11
- package/dist/heart/providers/error-classification.js +127 -0
- package/dist/heart/providers/github-copilot.js +145 -0
- package/dist/heart/providers/minimax-vlm.js +189 -0
- package/dist/heart/providers/minimax.js +26 -8
- package/dist/heart/providers/openai-codex.js +55 -40
- package/dist/heart/runtime-capability-check.js +170 -0
- package/dist/heart/runtime-credentials.js +367 -0
- package/dist/heart/runtime-cwd.js +87 -0
- package/dist/heart/sense-truth.js +13 -4
- package/dist/heart/session-activity.js +48 -24
- package/dist/heart/session-events.js +1163 -0
- package/dist/heart/session-playback-cli-main.js +5 -0
- package/dist/heart/session-playback-cli.js +36 -0
- package/dist/heart/session-playback.js +231 -0
- package/dist/heart/session-stats-cli-main.js +5 -0
- package/dist/heart/session-stats.js +182 -0
- package/dist/heart/session-transcript.js +133 -0
- package/dist/heart/start-of-turn-packet.js +345 -0
- package/dist/heart/streaming.js +44 -27
- package/dist/heart/structured-output.js +196 -0
- package/dist/heart/sync-classification.js +176 -0
- package/dist/heart/sync.js +449 -0
- package/dist/heart/target-resolution.js +9 -5
- package/dist/heart/tempo.js +93 -0
- package/dist/heart/temporal-view.js +41 -0
- package/dist/heart/timeouts.js +101 -0
- package/dist/heart/tool-activity-callbacks.js +59 -0
- package/dist/heart/tool-description.js +143 -0
- package/dist/heart/tool-friction.js +55 -0
- package/dist/heart/tool-loop.js +200 -0
- package/dist/heart/turn-context.js +389 -0
- package/dist/heart/{daemon → versioning}/ouro-bot-global-installer.js +6 -5
- package/dist/heart/{daemon → versioning}/ouro-bot-wrapper.js +1 -1
- package/dist/heart/versioning/ouro-path-installer.js +426 -0
- package/dist/heart/versioning/ouro-version-manager.js +295 -0
- package/dist/heart/{daemon → versioning}/staged-restart.js +40 -8
- package/dist/heart/{daemon → versioning}/update-checker.js +6 -1
- package/dist/heart/{daemon → versioning}/update-hooks.js +63 -59
- package/dist/mailbox-ui/assets/index-9-AxCxuB.js +61 -0
- package/dist/mailbox-ui/assets/index-CWzt267f.css +1 -0
- package/dist/mailbox-ui/index.html +15 -0
- package/dist/mailroom/attention.js +167 -0
- package/dist/mailroom/autonomy.js +209 -0
- package/dist/mailroom/blob-store.js +715 -0
- package/dist/mailroom/body-cache.js +61 -0
- package/dist/mailroom/core.js +788 -0
- package/dist/mailroom/entry.js +160 -0
- package/dist/mailroom/file-store.js +568 -0
- package/dist/mailroom/mbox-import.js +393 -0
- package/dist/mailroom/migration.js +164 -0
- package/dist/mailroom/outbound.js +380 -0
- package/dist/mailroom/policy.js +263 -0
- package/dist/mailroom/reader.js +233 -0
- package/dist/mailroom/search-cache.js +334 -0
- package/dist/mailroom/search-relevance.js +319 -0
- package/dist/mailroom/smtp-ingress.js +176 -0
- package/dist/mailroom/source-state.js +176 -0
- package/dist/mailroom/thread.js +109 -0
- package/dist/mailroom/travel-extract.js +89 -0
- package/dist/mind/bundle-manifest.js +14 -1
- package/dist/mind/context.js +251 -101
- package/dist/mind/desk-section.js +310 -0
- package/dist/mind/diary-integrity.js +60 -0
- package/dist/mind/{memory.js → diary.js} +68 -76
- package/dist/mind/embedding-provider.js +60 -0
- package/dist/mind/file-state.js +179 -0
- package/dist/mind/friends/channel.js +39 -0
- package/dist/mind/friends/resolver.js +54 -2
- package/dist/mind/friends/store-file.js +48 -4
- package/dist/mind/friends/types.js +2 -2
- package/dist/mind/journal-index.js +162 -0
- package/dist/mind/note-search.js +268 -0
- package/dist/mind/obligation-steering.js +221 -0
- package/dist/mind/pending.js +6 -1
- package/dist/mind/prompt-refresh.js +3 -2
- package/dist/mind/prompt.js +1075 -146
- package/dist/mind/provenance-trust.js +26 -0
- package/dist/mind/scrutiny.js +173 -0
- package/dist/nerves/cli-logging.js +7 -1
- package/dist/nerves/coverage/audit-rules.js +15 -6
- package/dist/nerves/coverage/audit.js +28 -2
- package/dist/nerves/coverage/cli.js +1 -1
- package/dist/nerves/coverage/contract.js +5 -5
- package/dist/nerves/coverage/file-completeness.js +139 -5
- package/dist/nerves/event-buffer.js +111 -0
- package/dist/nerves/index.js +224 -4
- package/dist/nerves/observation.js +20 -0
- package/dist/nerves/redact.js +79 -0
- package/dist/nerves/review/cli-main.js +5 -0
- package/dist/nerves/review/cli.js +156 -0
- package/dist/nerves/review/core.js +152 -0
- package/dist/nerves/runtime.js +5 -1
- package/dist/repertoire/ado-client.js +15 -56
- package/dist/repertoire/ado-semantic.js +16 -10
- package/dist/repertoire/api-client.js +97 -0
- package/dist/repertoire/bitwarden-store.js +1040 -0
- package/dist/repertoire/bundle-templates.js +72 -0
- package/dist/repertoire/bw-installer.js +180 -0
- package/dist/repertoire/coding/codex-jsonl.js +64 -0
- package/dist/repertoire/coding/context-pack.js +331 -0
- package/dist/repertoire/coding/feedback.js +197 -30
- package/dist/repertoire/coding/manager.js +166 -10
- package/dist/repertoire/coding/spawner.js +55 -9
- package/dist/repertoire/coding/tools.js +219 -7
- package/dist/repertoire/commerce-errors.js +109 -0
- package/dist/repertoire/commerce-self-test.js +156 -0
- package/dist/repertoire/credential-access.js +178 -0
- package/dist/repertoire/desk/classifier.js +362 -0
- package/dist/repertoire/duffel-client.js +185 -0
- package/dist/repertoire/github-client.js +14 -55
- package/dist/repertoire/graph-client.js +11 -52
- package/dist/repertoire/guardrails.js +385 -0
- package/dist/repertoire/mcp-client.js +295 -0
- package/dist/repertoire/mcp-manager.js +403 -0
- package/dist/repertoire/mcp-tools.js +83 -0
- package/dist/repertoire/plugin-mcp.js +175 -0
- package/dist/repertoire/plugins.js +253 -0
- package/dist/repertoire/shell-sessions.js +133 -0
- package/dist/repertoire/skills.js +48 -4
- package/dist/repertoire/stripe-client.js +131 -0
- package/dist/repertoire/tool-results.js +29 -0
- package/dist/repertoire/tools-attachments.js +317 -0
- package/dist/repertoire/tools-awaiting.js +372 -0
- package/dist/repertoire/tools-base.js +59 -1082
- package/dist/repertoire/tools-bluebubbles.js +2 -0
- package/dist/repertoire/tools-bridge.js +144 -0
- package/dist/repertoire/tools-bundle.js +993 -0
- package/dist/repertoire/tools-config.js +186 -0
- package/dist/repertoire/tools-continuity.js +252 -0
- package/dist/repertoire/tools-credential.js +383 -0
- package/dist/repertoire/tools-evolution.js +527 -0
- package/dist/repertoire/tools-files.js +344 -0
- package/dist/repertoire/tools-flight.js +227 -0
- package/dist/repertoire/tools-flow.js +119 -0
- package/dist/repertoire/tools-github.js +3 -8
- package/dist/repertoire/tools-mail.js +1975 -0
- package/dist/repertoire/tools-notes.js +438 -0
- package/dist/repertoire/tools-obligations.js +143 -0
- package/dist/repertoire/tools-orientation.js +31 -0
- package/dist/repertoire/tools-record.js +464 -0
- package/dist/repertoire/tools-runtime.js +150 -0
- package/dist/repertoire/tools-session.js +766 -0
- package/dist/repertoire/tools-shell.js +120 -0
- package/dist/repertoire/tools-stripe.js +182 -0
- package/dist/repertoire/tools-surface.js +344 -0
- package/dist/repertoire/tools-teams.js +12 -39
- package/dist/repertoire/tools-travel.js +125 -0
- package/dist/repertoire/tools-trip.js +982 -0
- package/dist/repertoire/tools-user-profile.js +146 -0
- package/dist/repertoire/tools-vault.js +40 -0
- package/dist/repertoire/tools-voice.js +145 -0
- package/dist/repertoire/tools.js +215 -103
- package/dist/repertoire/travel-api-client.js +360 -0
- package/dist/repertoire/user-profile.js +131 -0
- package/dist/repertoire/vault-setup.js +246 -0
- package/dist/repertoire/vault-unlock.js +594 -0
- package/dist/scripts/claude-code-hook.js +41 -0
- package/dist/scripts/claude-code-stop-hook.js +47 -0
- package/dist/senses/attention-queue.js +186 -0
- package/dist/senses/await-turn-message.js +58 -0
- package/dist/senses/bluebubbles/active-turns.js +216 -0
- package/dist/senses/bluebubbles/attachment-cache.js +53 -0
- package/dist/senses/bluebubbles/attachment-download.js +137 -0
- package/dist/senses/{bluebubbles-client.js → bluebubbles/client.js} +219 -18
- package/dist/senses/bluebubbles/entry.js +77 -0
- package/dist/senses/{bluebubbles-inbound-log.js → bluebubbles/inbound-log.js} +20 -3
- package/dist/senses/bluebubbles/index.js +2737 -0
- package/dist/senses/{bluebubbles-media.js → bluebubbles/media.js} +121 -71
- package/dist/senses/{bluebubbles-model.js → bluebubbles/model.js} +33 -12
- package/dist/senses/{bluebubbles-mutation-log.js → bluebubbles/mutation-log.js} +3 -3
- package/dist/senses/bluebubbles/processed-log.js +133 -0
- package/dist/senses/bluebubbles/replay.js +137 -0
- package/dist/senses/{bluebubbles-runtime-state.js → bluebubbles/runtime-state.js} +30 -2
- package/dist/senses/{bluebubbles-session-cleanup.js → bluebubbles/session-cleanup.js} +1 -1
- package/dist/senses/bluebubbles-meta-guard.js +40 -0
- package/dist/senses/cli/bracketed-paste.js +82 -0
- package/dist/senses/cli/image-paste.js +287 -0
- package/dist/senses/cli/image-ref-navigation.js +75 -0
- package/dist/senses/cli/ink-app.js +156 -0
- package/dist/senses/cli/inline-diff.js +64 -0
- package/dist/senses/cli/input-keys.js +174 -0
- package/dist/senses/cli/kill-ring.js +86 -0
- package/dist/senses/cli/message-list.js +51 -0
- package/dist/senses/cli/ouro-tui.js +607 -0
- package/dist/senses/cli/spinner-imperative.js +135 -0
- package/dist/senses/cli/spinner.js +101 -0
- package/dist/senses/cli/status-line.js +60 -0
- package/dist/senses/cli/streaming-markdown.js +526 -0
- package/dist/senses/cli/tool-display.js +85 -0
- package/dist/senses/cli/tool-render.js +85 -0
- package/dist/senses/cli/tui-store.js +240 -0
- package/dist/senses/cli/virtual-list.js +35 -0
- package/dist/senses/cli-entry.js +60 -8
- package/dist/senses/cli-layout.js +100 -0
- package/dist/senses/cli.js +517 -204
- package/dist/senses/commands.js +66 -3
- package/dist/senses/habit-turn-message.js +108 -0
- package/dist/senses/inner-dialog-worker.js +254 -22
- package/dist/senses/inner-dialog.js +505 -40
- package/dist/senses/mail-entry.js +66 -0
- package/dist/senses/mail.js +379 -0
- package/dist/senses/pipeline.js +666 -181
- package/dist/senses/proactive-content-guard.js +51 -0
- package/dist/senses/shared-turn.js +393 -0
- package/dist/senses/surface-tool.js +108 -0
- package/dist/senses/teams-entry.js +60 -8
- package/dist/senses/teams.js +388 -98
- package/dist/senses/trust-gate.js +100 -5
- package/dist/senses/voice/audio-playback.js +237 -0
- package/dist/senses/voice/audio-routing.js +119 -0
- package/dist/senses/voice/elevenlabs.js +202 -0
- package/dist/senses/voice/floor-control.js +431 -0
- package/dist/senses/voice/floor-controller.js +115 -0
- package/dist/senses/voice/golden-path.js +116 -0
- package/dist/senses/voice/index.js +29 -0
- package/dist/senses/voice/meeting.js +113 -0
- package/dist/senses/voice/outbound.js +190 -0
- package/dist/senses/voice/phone.js +33 -0
- package/dist/senses/voice/playback.js +139 -0
- package/dist/senses/voice/realtime-eval.js +496 -0
- package/dist/senses/voice/realtime-trace.js +531 -0
- package/dist/senses/voice/transcript.js +70 -0
- package/dist/senses/voice/turn.js +191 -0
- package/dist/senses/voice/twilio-phone-runtime.js +807 -0
- package/dist/senses/voice/twilio-phone.js +5079 -0
- package/dist/senses/voice/types.js +2 -0
- package/dist/senses/voice/whisper.js +161 -0
- package/dist/senses/voice-entry.js +81 -0
- package/dist/senses/voice-realtime-eval-command.js +99 -0
- package/dist/senses/voice-realtime-eval-entry.js +21 -0
- package/dist/senses/voice-twilio-entry.js +87 -0
- package/dist/trips/core.js +138 -0
- package/dist/trips/store.js +265 -0
- package/dist/util/frontmatter.js +53 -0
- package/package.json +48 -8
- package/skills/agent-commerce.md +106 -0
- package/skills/browser-navigation.md +117 -0
- package/skills/commerce-setup-guide.md +116 -0
- package/skills/commerce-setup.md +84 -0
- package/skills/configure-dev-tools.md +99 -0
- package/skills/travel-planning.md +138 -0
- package/dist/heart/daemon/auth-flow.js +0 -351
- package/dist/heart/daemon/ouro-path-installer.js +0 -178
- package/dist/heart/safe-workspace.js +0 -228
- package/dist/heart/session-recall.js +0 -116
- package/dist/mind/associative-recall.js +0 -209
- package/dist/repertoire/tasks/board.js +0 -134
- package/dist/repertoire/tasks/index.js +0 -224
- package/dist/repertoire/tasks/lifecycle.js +0 -80
- package/dist/repertoire/tasks/middleware.js +0 -65
- package/dist/repertoire/tasks/parser.js +0 -173
- package/dist/repertoire/tasks/scanner.js +0 -132
- package/dist/repertoire/tasks/transitions.js +0 -144
- package/dist/senses/bluebubbles-entry.js +0 -13
- package/dist/senses/bluebubbles.js +0 -1177
- package/dist/senses/debug-activity.js +0 -148
- package/subagents/README.md +0 -7
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/basilisk.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jafar.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jormungandr.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/kaa.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/medusa.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/monty.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/nagini.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/ouroboros.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/python.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/quetzalcoatl.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/sir-hiss.md +0 -0
- /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-snake.md +0 -0
- /package/dist/{repertoire/tasks/types.js → heart/attachments/sources/adapter.js} +0 -0
- /package/dist/heart/{daemon → hatch}/hatch-animation.js +0 -0
- /package/dist/heart/{daemon → hatch}/specialist-orchestrator.js +0 -0
- /package/dist/heart/{daemon → versioning}/ouro-uti.js +0 -0
- /package/dist/heart/{daemon → versioning}/wrapper-publish-guard.js +0 -0
|
@@ -34,21 +34,340 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.OuroDaemon = void 0;
|
|
37
|
+
exports.parseOrphanPidsFromPs = parseOrphanPidsFromPs;
|
|
38
|
+
exports.filterPidfilePidsToActualOrphans = filterPidfilePidsToActualOrphans;
|
|
39
|
+
exports.mergeUniqueOrphanPids = mergeUniqueOrphanPids;
|
|
40
|
+
exports.waitForOrphanProcessesToSettle = waitForOrphanProcessesToSettle;
|
|
41
|
+
exports.killOrphanProcesses = killOrphanProcesses;
|
|
42
|
+
exports.writePidfile = writePidfile;
|
|
43
|
+
exports.handleAgentSenseTurn = handleAgentSenseTurn;
|
|
44
|
+
exports.handleAgentAskTurn = handleAgentAskTurn;
|
|
37
45
|
const fs = __importStar(require("fs"));
|
|
38
46
|
const net = __importStar(require("net"));
|
|
47
|
+
const os = __importStar(require("os"));
|
|
39
48
|
const path = __importStar(require("path"));
|
|
40
49
|
const identity_1 = require("../identity");
|
|
50
|
+
const agent_discovery_1 = require("./agent-discovery");
|
|
41
51
|
const runtime_1 = require("../../nerves/runtime");
|
|
42
52
|
const runtime_metadata_1 = require("./runtime-metadata");
|
|
43
53
|
const runtime_mode_1 = require("./runtime-mode");
|
|
44
|
-
const update_hooks_1 = require("
|
|
54
|
+
const update_hooks_1 = require("../versioning/update-hooks");
|
|
45
55
|
const bundle_meta_1 = require("./hooks/bundle-meta");
|
|
56
|
+
const agent_config_v2_1 = require("./hooks/agent-config-v2");
|
|
46
57
|
const bundle_manifest_1 = require("../../mind/bundle-manifest");
|
|
47
|
-
const update_checker_1 = require("
|
|
48
|
-
const staged_restart_1 = require("./staged-restart");
|
|
58
|
+
const update_checker_1 = require("../versioning/update-checker");
|
|
49
59
|
const child_process_1 = require("child_process");
|
|
50
60
|
const pending_1 = require("../../mind/pending");
|
|
61
|
+
const agent_service_1 = require("./agent-service");
|
|
51
62
|
const channel_1 = require("../../mind/friends/channel");
|
|
63
|
+
const mcp_manager_1 = require("../../repertoire/mcp-manager");
|
|
64
|
+
const mailbox_http_1 = require("../mailbox/mailbox-http");
|
|
65
|
+
const mailbox_types_1 = require("../mailbox/mailbox-types");
|
|
66
|
+
const mailbox_read_1 = require("../mailbox/mailbox-read");
|
|
67
|
+
const mailbox_view_1 = require("../mailbox/mailbox-view");
|
|
68
|
+
const provider_visibility_1 = require("../provider-visibility");
|
|
69
|
+
const socket_client_1 = require("./socket-client");
|
|
70
|
+
const PIDFILE_PATH = path.join(os.homedir(), ".ouro-cli", "daemon.pids");
|
|
71
|
+
/**
|
|
72
|
+
* Defense-in-depth: detect if we're running under vitest. The pidfile lives
|
|
73
|
+
* at a hardcoded path under the user's real ~/.ouro-cli/ — there's no DI
|
|
74
|
+
* seam to redirect it. So when a test creates a real OuroDaemon and calls
|
|
75
|
+
* start(), the daemon's killOrphanProcesses() reads the REAL pidfile,
|
|
76
|
+
* ps-verifies the PIDs, and SIGTERMs the production daemon. We saw this
|
|
77
|
+
* cause an outage on 2026-04-08 (alpha.265 daemon killed 93s after startup
|
|
78
|
+
* by a vitest test that called daemon.start()).
|
|
79
|
+
*
|
|
80
|
+
* Both killOrphanProcesses() and writePidfile() short-circuit under vitest
|
|
81
|
+
* to make the production pidfile sacred. Tests that need to verify these
|
|
82
|
+
* functions' behavior should use the extracted pure helpers
|
|
83
|
+
* (parseOrphanPidsFromPs, filterPidfilePidsToActualOrphans).
|
|
84
|
+
*/
|
|
85
|
+
function isVitestProcess() {
|
|
86
|
+
/* v8 ignore next -- defensive: process and process.argv always exist in node @preserve */
|
|
87
|
+
if (typeof process === "undefined" || !Array.isArray(process.argv))
|
|
88
|
+
return false;
|
|
89
|
+
return process.argv.some((arg) => typeof arg === "string" && arg.includes("vitest"));
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Scan `ps -eo pid,ppid,command` output for daemon-owned entry points whose
|
|
93
|
+
* parent has died (PPID reparented to init/PID 1). Returns the list of PIDs
|
|
94
|
+
* that are safe to SIGTERM — true orphans, not children of live sibling
|
|
95
|
+
* daemons running from worktrees, test suites, or other users of the harness.
|
|
96
|
+
*
|
|
97
|
+
* Exported so unit tests can exercise the filter without shelling out.
|
|
98
|
+
*/
|
|
99
|
+
function parseOrphanPidsFromPs(psOutput, selfPid) {
|
|
100
|
+
const orphans = [];
|
|
101
|
+
for (const line of psOutput.split("\n")) {
|
|
102
|
+
// Explicitly exclude MCP server processes — they share a harness entry
|
|
103
|
+
// point but are not daemon children and must never be killed.
|
|
104
|
+
if (line.includes("mcp-serve") || line.includes("mcp serve"))
|
|
105
|
+
continue;
|
|
106
|
+
// Match only daemon-owned JS entry points.
|
|
107
|
+
if (!line.includes("agent-entry.js")
|
|
108
|
+
&& !line.includes("daemon-entry.js")
|
|
109
|
+
&& !line.includes("bluebubbles/entry.js")
|
|
110
|
+
&& !line.includes("mail-entry.js")
|
|
111
|
+
&& !line.includes("teams-entry.js"))
|
|
112
|
+
continue;
|
|
113
|
+
// Parse `<pid> <ppid> <command...>`. ps pads these with leading spaces.
|
|
114
|
+
// Regex guarantees both groups are \d+ so parseInt can't produce NaN.
|
|
115
|
+
const match = line.trim().match(/^(\d+)\s+(\d+)\s/);
|
|
116
|
+
if (!match)
|
|
117
|
+
continue;
|
|
118
|
+
const pid = parseInt(match[1], 10);
|
|
119
|
+
const ppid = parseInt(match[2], 10);
|
|
120
|
+
if (pid === selfPid)
|
|
121
|
+
continue;
|
|
122
|
+
// CRITICAL: only kill processes whose parent is init (PID 1). A live
|
|
123
|
+
// PPID means the process belongs to another daemon instance (parallel
|
|
124
|
+
// test run, sibling worktree, another user of /tmp/ouroboros-daemon.sock).
|
|
125
|
+
// Killing those will crash unrelated harnesses — we saw this in B6
|
|
126
|
+
// when a vitest worker's daemon killed a production agent's children.
|
|
127
|
+
if (ppid !== 1)
|
|
128
|
+
continue;
|
|
129
|
+
orphans.push(pid);
|
|
130
|
+
}
|
|
131
|
+
return orphans;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Given a list of PIDs from the pidfile, return only those that are actual
|
|
135
|
+
* orphans (PPID reparented to init/PID 1). Protects against a polluted
|
|
136
|
+
* pidfile killing a PID that the OS has reassigned to an unrelated process.
|
|
137
|
+
*
|
|
138
|
+
* Implementation: shells out to `ps -p <csv> -o pid,ppid` for a batch lookup.
|
|
139
|
+
* Returns the empty list if ps fails — safer to skip cleanup than to
|
|
140
|
+
* wildcard-kill on a bad read.
|
|
141
|
+
*
|
|
142
|
+
* Exported for direct unit coverage.
|
|
143
|
+
*/
|
|
144
|
+
function filterPidfilePidsToActualOrphans(candidatePids, psRunner = runPsCheck) {
|
|
145
|
+
if (candidatePids.length === 0)
|
|
146
|
+
return [];
|
|
147
|
+
const psOutput = psRunner(candidatePids);
|
|
148
|
+
if (psOutput === null)
|
|
149
|
+
return [];
|
|
150
|
+
const survivingOrphans = [];
|
|
151
|
+
// `ps -p x,y,z -o pid,ppid` emits a header line then one row per found PID.
|
|
152
|
+
// PIDs not found (already exited) are silently omitted — which is the
|
|
153
|
+
// correct behavior for us: we only want to kill live orphans.
|
|
154
|
+
for (const line of psOutput.split("\n")) {
|
|
155
|
+
const match = line.trim().match(/^(\d+)\s+(\d+)$/);
|
|
156
|
+
if (!match)
|
|
157
|
+
continue;
|
|
158
|
+
const pid = parseInt(match[1], 10);
|
|
159
|
+
const ppid = parseInt(match[2], 10);
|
|
160
|
+
if (ppid !== 1)
|
|
161
|
+
continue;
|
|
162
|
+
if (!candidatePids.includes(pid))
|
|
163
|
+
continue;
|
|
164
|
+
survivingOrphans.push(pid);
|
|
165
|
+
}
|
|
166
|
+
return survivingOrphans;
|
|
167
|
+
}
|
|
168
|
+
function mergeUniqueOrphanPids(...sources) {
|
|
169
|
+
const merged = [];
|
|
170
|
+
const seen = new Set();
|
|
171
|
+
for (const source of sources) {
|
|
172
|
+
for (const pid of source) {
|
|
173
|
+
if (seen.has(pid))
|
|
174
|
+
continue;
|
|
175
|
+
seen.add(pid);
|
|
176
|
+
merged.push(pid);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
return merged;
|
|
180
|
+
}
|
|
181
|
+
const ORPHAN_CLEANUP_SETTLE_TIMEOUT_MS = 5_000;
|
|
182
|
+
const ORPHAN_CLEANUP_SETTLE_POLL_INTERVAL_MS = 50;
|
|
183
|
+
/* v8 ignore start -- process liveness probe; pure wait behavior covered via injected deps @preserve */
|
|
184
|
+
function defaultIsPidAlive(pid) {
|
|
185
|
+
try {
|
|
186
|
+
process.kill(pid, 0);
|
|
187
|
+
return true;
|
|
188
|
+
}
|
|
189
|
+
catch (error) {
|
|
190
|
+
return error.code === "EPERM";
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
/* v8 ignore stop */
|
|
194
|
+
/* v8 ignore start -- real timer wiring; wait behavior covered via injected sleep @preserve */
|
|
195
|
+
async function defaultSettleSleep(ms) {
|
|
196
|
+
await new Promise((resolve) => setTimeout(resolve, ms));
|
|
197
|
+
}
|
|
198
|
+
/* v8 ignore stop */
|
|
199
|
+
async function waitForOrphanProcessesToSettle(pids, deps = {}) {
|
|
200
|
+
if (pids.length === 0)
|
|
201
|
+
return [];
|
|
202
|
+
const isPidAlive = deps.isPidAlive ?? defaultIsPidAlive;
|
|
203
|
+
const now = deps.now ?? Date.now;
|
|
204
|
+
const sleep = deps.sleep ?? defaultSettleSleep;
|
|
205
|
+
const timeoutMs = deps.timeoutMs ?? ORPHAN_CLEANUP_SETTLE_TIMEOUT_MS;
|
|
206
|
+
const pollIntervalMs = deps.pollIntervalMs ?? ORPHAN_CLEANUP_SETTLE_POLL_INTERVAL_MS;
|
|
207
|
+
const deadline = now() + timeoutMs;
|
|
208
|
+
let survivors = pids.filter(isPidAlive);
|
|
209
|
+
while (survivors.length > 0 && now() < deadline) {
|
|
210
|
+
await sleep(pollIntervalMs);
|
|
211
|
+
survivors = pids.filter(isPidAlive);
|
|
212
|
+
}
|
|
213
|
+
return survivors;
|
|
214
|
+
}
|
|
215
|
+
/* v8 ignore start -- shells out to ps; covered by filterPidfilePidsToActualOrphans unit tests via injected runner @preserve */
|
|
216
|
+
function runPsCheck(pids) {
|
|
217
|
+
try {
|
|
218
|
+
const csv = pids.join(",");
|
|
219
|
+
return (0, child_process_1.execSync)(`ps -p ${csv} -o pid=,ppid=`, { encoding: "utf-8", timeout: 5000 });
|
|
220
|
+
}
|
|
221
|
+
catch {
|
|
222
|
+
// ps returns non-zero when none of the requested PIDs exist. Treat as
|
|
223
|
+
// "no survivors" rather than an error.
|
|
224
|
+
return "";
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
/* v8 ignore stop */
|
|
228
|
+
/**
|
|
229
|
+
* Kill all ouro processes from the previous daemon instance using the pidfile.
|
|
230
|
+
* On startup, reads PIDs from ~/.ouro-cli/daemon.pids, kills them all, then
|
|
231
|
+
* deletes the file. The new daemon writes its own PIDs after spawning.
|
|
232
|
+
*
|
|
233
|
+
* Safety: pidfile contents are verified before being killed — each PID must
|
|
234
|
+
* be an actual orphan (PPID reparented to init/PID 1) via
|
|
235
|
+
* `filterPidfilePidsToActualOrphans`. Otherwise a polluted pidfile (written
|
|
236
|
+
* by a test, or a crashed daemon whose PIDs have since been reused by the
|
|
237
|
+
* OS) could SIGTERM unrelated processes.
|
|
238
|
+
*
|
|
239
|
+
* Falls back to ps-based scanning scoped to true orphans (PPID=1) if the
|
|
240
|
+
* pidfile doesn't exist (first run, previous daemon crashed before writing,
|
|
241
|
+
* manual cleanup). The scope is narrow on purpose — see parseOrphanPidsFromPs.
|
|
242
|
+
*/
|
|
243
|
+
/* v8 ignore start -- process lifecycle: uses kill/ps, tested via deployment @preserve */
|
|
244
|
+
function isProductionDaemonSocketPath(socketPath) {
|
|
245
|
+
return socketPath === socket_client_1.DEFAULT_DAEMON_SOCKET_PATH;
|
|
246
|
+
}
|
|
247
|
+
function killOrphanProcesses(socketPath = socket_client_1.DEFAULT_DAEMON_SOCKET_PATH) {
|
|
248
|
+
if (!isProductionDaemonSocketPath(socketPath)) {
|
|
249
|
+
(0, runtime_1.emitNervesEvent)({
|
|
250
|
+
level: "warn",
|
|
251
|
+
component: "daemon",
|
|
252
|
+
event: "daemon.orphan_cleanup_nonproduction_blocked",
|
|
253
|
+
message: "blocked orphan cleanup for non-production daemon socket",
|
|
254
|
+
meta: { socketPath, pidfilePath: PIDFILE_PATH },
|
|
255
|
+
});
|
|
256
|
+
return [];
|
|
257
|
+
}
|
|
258
|
+
if (isVitestProcess()) {
|
|
259
|
+
(0, runtime_1.emitNervesEvent)({
|
|
260
|
+
level: "warn",
|
|
261
|
+
component: "daemon",
|
|
262
|
+
event: "daemon.orphan_cleanup_test_blocked",
|
|
263
|
+
message: "blocked killOrphanProcesses from touching real pidfile under vitest",
|
|
264
|
+
meta: { pidfilePath: PIDFILE_PATH },
|
|
265
|
+
});
|
|
266
|
+
return [];
|
|
267
|
+
}
|
|
268
|
+
try {
|
|
269
|
+
let pidfileOrphans = [];
|
|
270
|
+
let scanOrphans = [];
|
|
271
|
+
// Primary: read pidfile from previous daemon
|
|
272
|
+
try {
|
|
273
|
+
const raw = fs.readFileSync(PIDFILE_PATH, "utf-8");
|
|
274
|
+
const candidates = raw.split("\n")
|
|
275
|
+
.map((s) => parseInt(s.trim(), 10))
|
|
276
|
+
.filter((n) => !isNaN(n) && n !== process.pid);
|
|
277
|
+
// Verify each candidate is an actual live orphan before killing. See
|
|
278
|
+
// docstring above for why this matters.
|
|
279
|
+
pidfileOrphans = filterPidfilePidsToActualOrphans(candidates);
|
|
280
|
+
fs.unlinkSync(PIDFILE_PATH);
|
|
281
|
+
}
|
|
282
|
+
catch {
|
|
283
|
+
// No pidfile — the ps scan below still covers true orphans.
|
|
284
|
+
}
|
|
285
|
+
// Always supplement the pidfile with the scoped ps scan. A stale or
|
|
286
|
+
// partial pidfile can otherwise kill one old daemon while leaving a
|
|
287
|
+
// sibling PPID=1 daemon alive without a socket.
|
|
288
|
+
try {
|
|
289
|
+
const result = (0, child_process_1.execSync)("ps -eo pid,ppid,command", { encoding: "utf-8", timeout: 5000 });
|
|
290
|
+
scanOrphans = parseOrphanPidsFromPs(result, process.pid);
|
|
291
|
+
}
|
|
292
|
+
catch { /* ps failed — best effort */ }
|
|
293
|
+
const pidsToKill = mergeUniqueOrphanPids(pidfileOrphans, scanOrphans);
|
|
294
|
+
if (pidsToKill.length > 0) {
|
|
295
|
+
for (const pid of pidsToKill) {
|
|
296
|
+
try {
|
|
297
|
+
process.kill(pid, "SIGTERM");
|
|
298
|
+
}
|
|
299
|
+
catch { /* already exited */ }
|
|
300
|
+
}
|
|
301
|
+
(0, runtime_1.emitNervesEvent)({
|
|
302
|
+
component: "daemon",
|
|
303
|
+
event: "daemon.orphan_cleanup",
|
|
304
|
+
message: `killed ${pidsToKill.length} orphaned ouro processes`,
|
|
305
|
+
meta: { pids: pidsToKill },
|
|
306
|
+
});
|
|
307
|
+
}
|
|
308
|
+
return pidsToKill;
|
|
309
|
+
}
|
|
310
|
+
catch (error) {
|
|
311
|
+
(0, runtime_1.emitNervesEvent)({
|
|
312
|
+
level: "warn",
|
|
313
|
+
component: "daemon",
|
|
314
|
+
event: "daemon.orphan_cleanup_error",
|
|
315
|
+
message: "failed to clean up orphaned ouro processes",
|
|
316
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
317
|
+
});
|
|
318
|
+
return [];
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Write all managed PIDs (daemon + children) to the pidfile.
|
|
323
|
+
* Called after all agents and senses are spawned.
|
|
324
|
+
*/
|
|
325
|
+
function writePidfile(extraPids = [], socketPath = socket_client_1.DEFAULT_DAEMON_SOCKET_PATH) {
|
|
326
|
+
if (!isProductionDaemonSocketPath(socketPath)) {
|
|
327
|
+
(0, runtime_1.emitNervesEvent)({
|
|
328
|
+
level: "warn",
|
|
329
|
+
component: "daemon",
|
|
330
|
+
event: "daemon.write_pidfile_nonproduction_blocked",
|
|
331
|
+
message: "blocked production pidfile write for non-production daemon socket",
|
|
332
|
+
meta: { socketPath, pidfilePath: PIDFILE_PATH, attemptedPids: extraPids.length },
|
|
333
|
+
});
|
|
334
|
+
return;
|
|
335
|
+
}
|
|
336
|
+
if (isVitestProcess()) {
|
|
337
|
+
(0, runtime_1.emitNervesEvent)({
|
|
338
|
+
level: "warn",
|
|
339
|
+
component: "daemon",
|
|
340
|
+
event: "daemon.write_pidfile_test_blocked",
|
|
341
|
+
message: "blocked writePidfile from clobbering real pidfile under vitest",
|
|
342
|
+
meta: { pidfilePath: PIDFILE_PATH, attemptedPids: extraPids.length },
|
|
343
|
+
});
|
|
344
|
+
return;
|
|
345
|
+
}
|
|
346
|
+
try {
|
|
347
|
+
const pids = [process.pid, ...extraPids].filter(Boolean);
|
|
348
|
+
fs.mkdirSync(path.dirname(PIDFILE_PATH), { recursive: true });
|
|
349
|
+
fs.writeFileSync(PIDFILE_PATH, pids.join("\n") + "\n", "utf-8");
|
|
350
|
+
}
|
|
351
|
+
catch { /* best effort */ }
|
|
352
|
+
}
|
|
353
|
+
function readSocketIdentity(socketPath) {
|
|
354
|
+
try {
|
|
355
|
+
const stats = fs.lstatSync(socketPath);
|
|
356
|
+
return {
|
|
357
|
+
dev: stats.dev,
|
|
358
|
+
ino: stats.ino,
|
|
359
|
+
ctimeMs: stats.ctimeMs,
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
catch {
|
|
363
|
+
return null;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
function sameSocketIdentity(left, right) {
|
|
367
|
+
if (!left || !right)
|
|
368
|
+
return false;
|
|
369
|
+
return left.dev === right.dev && left.ino === right.ino && left.ctimeMs === right.ctimeMs;
|
|
370
|
+
}
|
|
52
371
|
function buildWorkerRows(snapshots) {
|
|
53
372
|
return snapshots.map((snapshot) => ({
|
|
54
373
|
agent: snapshot.name,
|
|
@@ -57,19 +376,60 @@ function buildWorkerRows(snapshots) {
|
|
|
57
376
|
pid: snapshot.pid,
|
|
58
377
|
restartCount: snapshot.restartCount,
|
|
59
378
|
startedAt: snapshot.startedAt,
|
|
379
|
+
lastExitCode: snapshot.lastExitCode ?? null,
|
|
380
|
+
lastSignal: snapshot.lastSignal ?? null,
|
|
381
|
+
errorReason: snapshot.errorReason ?? null,
|
|
382
|
+
fixHint: snapshot.fixHint ?? null,
|
|
60
383
|
}));
|
|
61
384
|
}
|
|
385
|
+
function unhealthySenseRows(senses) {
|
|
386
|
+
return senses.filter((row) => {
|
|
387
|
+
if (!row.enabled)
|
|
388
|
+
return false;
|
|
389
|
+
if (row.status === "disabled" || row.status === "not_attached")
|
|
390
|
+
return false;
|
|
391
|
+
if (row.status === "interactive" || row.status === "running")
|
|
392
|
+
return false;
|
|
393
|
+
return true;
|
|
394
|
+
});
|
|
395
|
+
}
|
|
396
|
+
function unhealthyHealthChecks(healthChecks) {
|
|
397
|
+
return healthChecks.filter((row) => row.status !== "ok");
|
|
398
|
+
}
|
|
399
|
+
function overviewHealth(workers, senses, healthChecks = []) {
|
|
400
|
+
if (!workers.every((worker) => worker.status === "running"))
|
|
401
|
+
return "warn";
|
|
402
|
+
if (unhealthySenseRows(senses).length > 0)
|
|
403
|
+
return "warn";
|
|
404
|
+
if (unhealthyHealthChecks(healthChecks).length > 0)
|
|
405
|
+
return "warn";
|
|
406
|
+
return "ok";
|
|
407
|
+
}
|
|
62
408
|
function formatStatusSummary(payload) {
|
|
63
|
-
if (payload.overview.workerCount === 0 && payload.overview.senseCount === 0) {
|
|
409
|
+
if (payload.overview.workerCount === 0 && payload.overview.senseCount === 0 && (payload.healthChecks ?? []).length === 0) {
|
|
64
410
|
return "no managed agents";
|
|
65
411
|
}
|
|
66
|
-
const
|
|
67
|
-
...payload.workers
|
|
68
|
-
|
|
69
|
-
.
|
|
70
|
-
|
|
412
|
+
const degraded = [
|
|
413
|
+
...payload.workers
|
|
414
|
+
.filter((row) => row.status !== "running")
|
|
415
|
+
.map((row) => `worker:${row.agent}/${row.worker}:${row.status}`),
|
|
416
|
+
...unhealthySenseRows(payload.senses)
|
|
417
|
+
.map((row) => `sense:${row.agent}/${row.sense}:${row.status}`),
|
|
418
|
+
...(payload.healthChecks ?? [])
|
|
419
|
+
.filter((row) => row.status !== "ok")
|
|
420
|
+
.map((row) => `health-check:${row.name}:${row.status}`),
|
|
71
421
|
];
|
|
72
|
-
const detail =
|
|
422
|
+
const detail = degraded.length > 0 ? `\tdegraded=${degraded.join(",")}` : "";
|
|
423
|
+
if (!detail) {
|
|
424
|
+
const rows = [
|
|
425
|
+
...payload.workers.map((row) => `${row.agent}/${row.worker}:${row.status}`),
|
|
426
|
+
...payload.senses
|
|
427
|
+
.filter((row) => row.enabled)
|
|
428
|
+
.map((row) => `${row.agent}/${row.sense}:${row.status}`),
|
|
429
|
+
];
|
|
430
|
+
const items = rows.length > 0 ? `\titems=${rows.join(",")}` : "";
|
|
431
|
+
return `daemon=${payload.overview.daemon}\tworkers=${payload.overview.workerCount}\tsenses=${payload.overview.senseCount}\thealth=${payload.overview.health}${items}`;
|
|
432
|
+
}
|
|
73
433
|
return `daemon=${payload.overview.daemon}\tworkers=${payload.overview.workerCount}\tsenses=${payload.overview.senseCount}\thealth=${payload.overview.health}${detail}`;
|
|
74
434
|
}
|
|
75
435
|
function parseIncomingCommand(raw) {
|
|
@@ -89,6 +449,60 @@ function parseIncomingCommand(raw) {
|
|
|
89
449
|
}
|
|
90
450
|
return parsed;
|
|
91
451
|
}
|
|
452
|
+
function isValidSenseReviveCommand(command) {
|
|
453
|
+
return typeof command.agent === "string"
|
|
454
|
+
&& typeof command.sense === "string"
|
|
455
|
+
&& typeof command.reason === "string";
|
|
456
|
+
}
|
|
457
|
+
/**
|
|
458
|
+
* Handle agent.senseTurn command: runs a full agent turn via the daemon process.
|
|
459
|
+
* Dynamic import lazy-loads shared-turn. Hot-reload works because ouro dev
|
|
460
|
+
* restarts the daemon process (fresh module cache).
|
|
461
|
+
*/
|
|
462
|
+
async function handleAgentSenseTurn(command, runtime) {
|
|
463
|
+
try {
|
|
464
|
+
const { setAgentName } = await Promise.resolve().then(() => __importStar(require("../identity")));
|
|
465
|
+
setAgentName(command.agent);
|
|
466
|
+
const { runSenseTurn } = await Promise.resolve().then(() => __importStar(require("../../senses/shared-turn")));
|
|
467
|
+
const result = await runSenseTurn({
|
|
468
|
+
agentName: command.agent,
|
|
469
|
+
channel: command.channel,
|
|
470
|
+
sessionKey: command.sessionKey,
|
|
471
|
+
friendId: command.friendId,
|
|
472
|
+
userMessage: command.message,
|
|
473
|
+
...(runtime?.socketPath ? { toolContext: { daemonSocketPath: runtime.socketPath } } : {}),
|
|
474
|
+
});
|
|
475
|
+
return {
|
|
476
|
+
ok: true,
|
|
477
|
+
message: result.response,
|
|
478
|
+
data: { ponderDeferred: result.ponderDeferred },
|
|
479
|
+
};
|
|
480
|
+
}
|
|
481
|
+
catch (error) {
|
|
482
|
+
/* v8 ignore next -- branch: String(error) fallback only for non-Error throws @preserve */
|
|
483
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
484
|
+
return { ok: false, error: `sense turn failed: ${errorMessage}` };
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
async function handleAgentAskTurn(command, runtime) {
|
|
488
|
+
/* v8 ignore start -- ask command parameter defaults are legacy MCP compatibility; send_message shares the primary path @preserve */
|
|
489
|
+
const question = typeof command.question === "string" ? command.question : "";
|
|
490
|
+
if (!question.trim())
|
|
491
|
+
return { ok: false, error: "Missing required parameter: question" };
|
|
492
|
+
const channel = typeof command.channel === "string" && command.channel.trim() ? command.channel.trim() : "mcp";
|
|
493
|
+
const sessionKey = typeof command.sessionKey === "string" && command.sessionKey.trim()
|
|
494
|
+
? command.sessionKey.trim()
|
|
495
|
+
: `agent-ask:${command.friendId}`;
|
|
496
|
+
/* v8 ignore stop */
|
|
497
|
+
return handleAgentSenseTurn({
|
|
498
|
+
kind: "agent.senseTurn",
|
|
499
|
+
agent: command.agent,
|
|
500
|
+
friendId: command.friendId,
|
|
501
|
+
channel,
|
|
502
|
+
sessionKey,
|
|
503
|
+
message: question,
|
|
504
|
+
}, runtime);
|
|
505
|
+
}
|
|
92
506
|
class OuroDaemon {
|
|
93
507
|
socketPath;
|
|
94
508
|
processManager;
|
|
@@ -97,7 +511,13 @@ class OuroDaemon {
|
|
|
97
511
|
router;
|
|
98
512
|
senseManager;
|
|
99
513
|
bundlesRoot;
|
|
514
|
+
mode;
|
|
100
515
|
server = null;
|
|
516
|
+
mailboxServer = null;
|
|
517
|
+
socketIdentity = null;
|
|
518
|
+
senseAutostartTimer = null;
|
|
519
|
+
mailboxServerFactory;
|
|
520
|
+
onStopCommandComplete;
|
|
101
521
|
constructor(options) {
|
|
102
522
|
this.socketPath = options.socketPath;
|
|
103
523
|
this.processManager = options.processManager;
|
|
@@ -106,6 +526,77 @@ class OuroDaemon {
|
|
|
106
526
|
this.router = options.router;
|
|
107
527
|
this.senseManager = options.senseManager ?? null;
|
|
108
528
|
this.bundlesRoot = options.bundlesRoot ?? (0, identity_1.getAgentBundlesRoot)();
|
|
529
|
+
this.mode = options.mode ?? "production";
|
|
530
|
+
this.mailboxServerFactory = options.mailboxServerFactory ?? this.createDefaultMailboxServer.bind(this);
|
|
531
|
+
this.onStopCommandComplete = options.onStopCommandComplete ?? null;
|
|
532
|
+
}
|
|
533
|
+
/* 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 */
|
|
534
|
+
createDefaultMailboxServer() {
|
|
535
|
+
return (0, mailbox_http_1.startMailboxHttpServer)({
|
|
536
|
+
host: "127.0.0.1",
|
|
537
|
+
port: mailbox_types_1.MAILBOX_DEFAULT_PORT,
|
|
538
|
+
bundlesRoot: this.bundlesRoot,
|
|
539
|
+
readMachineState: () => (0, mailbox_read_1.readMailboxMachineState)({ bundlesRoot: this.bundlesRoot }),
|
|
540
|
+
readMachineView: ({ machine }) => {
|
|
541
|
+
const overview = this.buildStatusPayload().overview;
|
|
542
|
+
return (0, mailbox_view_1.buildMailboxMachineView)({
|
|
543
|
+
machine,
|
|
544
|
+
daemon: {
|
|
545
|
+
status: overview.daemon,
|
|
546
|
+
health: overview.health,
|
|
547
|
+
mode: overview.mode,
|
|
548
|
+
socketPath: overview.socketPath,
|
|
549
|
+
mailboxUrl: overview.mailboxUrl,
|
|
550
|
+
entryPath: overview.entryPath,
|
|
551
|
+
workerCount: overview.workerCount,
|
|
552
|
+
senseCount: overview.senseCount,
|
|
553
|
+
},
|
|
554
|
+
});
|
|
555
|
+
},
|
|
556
|
+
readAgentState: (agentName) => (0, mailbox_read_1.readMailboxAgentState)(agentName, { bundlesRoot: this.bundlesRoot }),
|
|
557
|
+
readAgentView: (agentName) => {
|
|
558
|
+
const agent = (0, mailbox_read_1.readMailboxAgentState)(agentName, { bundlesRoot: this.bundlesRoot });
|
|
559
|
+
return (0, mailbox_view_1.buildMailboxAgentView)({
|
|
560
|
+
agent,
|
|
561
|
+
viewer: { kind: "human" },
|
|
562
|
+
});
|
|
563
|
+
},
|
|
564
|
+
});
|
|
565
|
+
}
|
|
566
|
+
/* v8 ignore stop */
|
|
567
|
+
buildStatusPayload() {
|
|
568
|
+
const snapshots = this.processManager.listAgentSnapshots();
|
|
569
|
+
const workers = buildWorkerRows(snapshots);
|
|
570
|
+
const senses = this.senseManager?.listSenseRows() ?? [];
|
|
571
|
+
const healthChecks = this.healthMonitor.getLastResults?.() ?? [];
|
|
572
|
+
const repoRoot = (0, identity_1.getRepoRoot)();
|
|
573
|
+
const sync = (0, agent_discovery_1.listBundleSyncRows)({ bundlesRoot: this.bundlesRoot });
|
|
574
|
+
const agents = (0, agent_discovery_1.listAllBundleAgents)({ bundlesRoot: this.bundlesRoot });
|
|
575
|
+
const providers = agents.flatMap((agent) => (0, provider_visibility_1.providerVisibilityStatusRows)((0, provider_visibility_1.buildAgentProviderVisibility)({
|
|
576
|
+
agentName: agent.name,
|
|
577
|
+
agentRoot: path.join(this.bundlesRoot, `${agent.name}.ouro`),
|
|
578
|
+
})));
|
|
579
|
+
const mailboxUrl = this.mailboxServer?.origin ?? "http://127.0.0.1:0";
|
|
580
|
+
return {
|
|
581
|
+
overview: {
|
|
582
|
+
daemon: "running",
|
|
583
|
+
health: overviewHealth(workers, senses, healthChecks),
|
|
584
|
+
socketPath: this.socketPath,
|
|
585
|
+
mailboxUrl,
|
|
586
|
+
outlookUrl: mailboxUrl,
|
|
587
|
+
...(0, runtime_metadata_1.getRuntimeMetadata)(),
|
|
588
|
+
workerCount: workers.length,
|
|
589
|
+
senseCount: senses.length,
|
|
590
|
+
entryPath: path.join(repoRoot, "dist", "heart", "daemon", "daemon-entry.js"),
|
|
591
|
+
mode: (0, runtime_mode_1.detectRuntimeMode)(repoRoot),
|
|
592
|
+
},
|
|
593
|
+
workers,
|
|
594
|
+
senses,
|
|
595
|
+
...(healthChecks.length > 0 ? { healthChecks } : {}),
|
|
596
|
+
sync,
|
|
597
|
+
agents,
|
|
598
|
+
...(providers.length > 0 ? { providers } : {}),
|
|
599
|
+
};
|
|
109
600
|
}
|
|
110
601
|
async start() {
|
|
111
602
|
if (this.server)
|
|
@@ -116,62 +607,180 @@ class OuroDaemon {
|
|
|
116
607
|
message: "starting daemon server",
|
|
117
608
|
meta: { socketPath: this.socketPath },
|
|
118
609
|
});
|
|
610
|
+
try {
|
|
611
|
+
await this.startInner();
|
|
612
|
+
}
|
|
613
|
+
catch (err) {
|
|
614
|
+
// Emit a paired terminating event (`_error`) so the nerves audit's
|
|
615
|
+
// start_end_pairing rule is satisfied when startup throws mid-sequence
|
|
616
|
+
// and `stop()` (which emits `server_end`) is never called.
|
|
617
|
+
(0, runtime_1.emitNervesEvent)({
|
|
618
|
+
level: "error",
|
|
619
|
+
component: "daemon",
|
|
620
|
+
event: "daemon.server_error",
|
|
621
|
+
message: "daemon start failed",
|
|
622
|
+
meta: {
|
|
623
|
+
error: err instanceof Error ? err.message : /* v8 ignore next -- defensive: non-Error catch branch @preserve */ String(err),
|
|
624
|
+
},
|
|
625
|
+
});
|
|
626
|
+
throw err;
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
async startInner() {
|
|
119
630
|
// Register update hooks and apply pending updates before starting agents
|
|
120
631
|
(0, update_hooks_1.registerUpdateHook)(bundle_meta_1.bundleMetaHook);
|
|
632
|
+
(0, update_hooks_1.registerUpdateHook)(agent_config_v2_1.agentConfigV2Hook);
|
|
121
633
|
const currentVersion = (0, bundle_manifest_1.getPackageVersion)();
|
|
122
634
|
await (0, update_hooks_1.applyPendingUpdates)(this.bundlesRoot, currentVersion);
|
|
123
635
|
// Start periodic update checker (polls npm registry every 30 minutes)
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
resolveNewCodePath: (_version) => {
|
|
142
|
-
try {
|
|
143
|
-
const resolved = (0, child_process_1.execSync)(`node -e "console.log(require.resolve('@ouro.bot/cli/package.json'))"`, { encoding: "utf-8" }).trim();
|
|
144
|
-
return resolved ? path.dirname(resolved) : null;
|
|
145
|
-
}
|
|
146
|
-
catch {
|
|
147
|
-
return null;
|
|
148
|
-
}
|
|
636
|
+
// Skip in dev mode — dev builds should not auto-update from npm
|
|
637
|
+
if (this.mode === "dev") {
|
|
638
|
+
(0, runtime_1.emitNervesEvent)({
|
|
639
|
+
component: "daemon",
|
|
640
|
+
event: "daemon.update_checker_skip",
|
|
641
|
+
message: "skipping update checker in dev mode",
|
|
642
|
+
meta: { reason: "dev mode" },
|
|
643
|
+
});
|
|
644
|
+
}
|
|
645
|
+
else {
|
|
646
|
+
(0, update_checker_1.startUpdateChecker)({
|
|
647
|
+
currentVersion,
|
|
648
|
+
deps: {
|
|
649
|
+
distTag: update_checker_1.CLI_UPDATE_DIST_TAG,
|
|
650
|
+
fetchRegistryJson: /* v8 ignore next -- integration: real HTTP fetch @preserve */ async () => {
|
|
651
|
+
const res = await fetch("https://registry.npmjs.org/@ouro.bot/cli");
|
|
652
|
+
return res.json();
|
|
149
653
|
},
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
await
|
|
158
|
-
|
|
654
|
+
},
|
|
655
|
+
});
|
|
656
|
+
}
|
|
657
|
+
// MCP connections are lazily initialized per-agent during senseTurn
|
|
658
|
+
// (daemon manages multiple agents; agent identity must be set before loading MCP config)
|
|
659
|
+
/* v8 ignore start -- orphan cleanup + pidfile: calls process management functions @preserve */
|
|
660
|
+
const killedOrphanPids = killOrphanProcesses(this.socketPath);
|
|
661
|
+
await waitForOrphanProcessesToSettle(killedOrphanPids);
|
|
662
|
+
/* v8 ignore stop */
|
|
663
|
+
await this.openCommandSocket();
|
|
664
|
+
this.triggerAutoStartAgents();
|
|
665
|
+
this.triggerAutoStartSensesWhenAgentsSettled();
|
|
666
|
+
// Write all managed PIDs to disk so the next daemon can clean up
|
|
667
|
+
/* v8 ignore start -- pidfile write: collects PIDs from process managers @preserve */
|
|
668
|
+
const agentPids = this.processManager.listAgentSnapshots().map((s) => s.pid).filter((p) => p !== null);
|
|
669
|
+
const sensePids = this.senseManager?.listManagedPids?.() ?? [];
|
|
670
|
+
writePidfile([...agentPids, ...sensePids], this.socketPath);
|
|
671
|
+
/* v8 ignore stop */
|
|
159
672
|
this.scheduler.start?.();
|
|
160
673
|
await this.scheduler.reconcile?.();
|
|
161
674
|
await this.drainPendingBundleMessages();
|
|
162
675
|
await this.drainPendingSenseMessages();
|
|
676
|
+
// startInner is only reachable when this.server is null (guarded in
|
|
677
|
+
// start()), and stop() nulls out this.mailboxServer alongside this.server,
|
|
678
|
+
// so mailboxServer is guaranteed unset here — no need for a guard.
|
|
679
|
+
try {
|
|
680
|
+
this.mailboxServer = await this.mailboxServerFactory();
|
|
681
|
+
}
|
|
682
|
+
catch (error) {
|
|
683
|
+
(0, runtime_1.emitNervesEvent)({
|
|
684
|
+
level: "warn",
|
|
685
|
+
component: "daemon",
|
|
686
|
+
event: "daemon.mailbox_start_failed",
|
|
687
|
+
message: `Mailbox server failed to start: ${String(error)}`,
|
|
688
|
+
meta: { port: mailbox_types_1.MAILBOX_DEFAULT_PORT },
|
|
689
|
+
});
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
triggerAutoStartAgents() {
|
|
693
|
+
if (this.processManager.triggerAutoStartAgents) {
|
|
694
|
+
this.processManager.triggerAutoStartAgents();
|
|
695
|
+
return;
|
|
696
|
+
}
|
|
697
|
+
void this.processManager.startAutoStartAgents().catch((error) => {
|
|
698
|
+
(0, runtime_1.emitNervesEvent)({
|
|
699
|
+
level: "error",
|
|
700
|
+
component: "daemon",
|
|
701
|
+
event: "daemon.agent_autostart_error",
|
|
702
|
+
message: "agent autostart failed after daemon socket opened",
|
|
703
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
704
|
+
});
|
|
705
|
+
});
|
|
706
|
+
}
|
|
707
|
+
triggerAutoStartSenses() {
|
|
708
|
+
/* v8 ignore next -- defensive: callers already check senseManager before delegating here @preserve */
|
|
709
|
+
if (!this.senseManager)
|
|
710
|
+
return;
|
|
711
|
+
if (this.senseManager.triggerAutoStartSenses) {
|
|
712
|
+
this.senseManager.triggerAutoStartSenses();
|
|
713
|
+
return;
|
|
714
|
+
}
|
|
715
|
+
void this.senseManager.startAutoStartSenses().catch((error) => {
|
|
716
|
+
(0, runtime_1.emitNervesEvent)({
|
|
717
|
+
level: "error",
|
|
718
|
+
component: "daemon",
|
|
719
|
+
event: "daemon.sense_autostart_error",
|
|
720
|
+
message: "sense autostart failed after daemon socket opened",
|
|
721
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
722
|
+
});
|
|
723
|
+
});
|
|
724
|
+
}
|
|
725
|
+
triggerAutoStartSensesWhenAgentsSettled() {
|
|
726
|
+
if (!this.senseManager)
|
|
727
|
+
return;
|
|
728
|
+
const waitingOnAgents = this.processManager.listAgentSnapshots()
|
|
729
|
+
.some((snapshot) => snapshot.status === "starting");
|
|
730
|
+
if (!waitingOnAgents) {
|
|
731
|
+
this.triggerAutoStartSenses();
|
|
732
|
+
return;
|
|
733
|
+
}
|
|
734
|
+
this.senseAutostartTimer = setTimeout(() => {
|
|
735
|
+
this.senseAutostartTimer = null;
|
|
736
|
+
this.triggerAutoStartSensesWhenAgentsSettled();
|
|
737
|
+
}, 250);
|
|
738
|
+
}
|
|
739
|
+
async openCommandSocket() {
|
|
163
740
|
if (fs.existsSync(this.socketPath)) {
|
|
164
741
|
fs.unlinkSync(this.socketPath);
|
|
165
742
|
}
|
|
166
|
-
|
|
743
|
+
// allowHalfOpen: true lets the server keep its writable side open after
|
|
744
|
+
// the client sends FIN. Without this, when a client calls `client.end()`
|
|
745
|
+
// after writing a command, node closes the server's writable side
|
|
746
|
+
// automatically — so a long-running response (like an agent.senseTurn
|
|
747
|
+
// LLM turn that takes 5+ seconds) never reaches the client. The
|
|
748
|
+
// socket-client fix in #303/#334 also removed client.end() on the
|
|
749
|
+
// sending side, but this option is defense in depth: even if a future
|
|
750
|
+
// caller half-closes, the server still writes its response correctly.
|
|
751
|
+
this.server = net.createServer({ allowHalfOpen: true }, (connection) => {
|
|
167
752
|
let raw = "";
|
|
168
753
|
let responded = false;
|
|
754
|
+
/* v8 ignore start — connection error handler requires real socket error @preserve */
|
|
755
|
+
connection.on("error", (err) => {
|
|
756
|
+
(0, runtime_1.emitNervesEvent)({
|
|
757
|
+
level: "warn",
|
|
758
|
+
component: "daemon",
|
|
759
|
+
event: "daemon.connection_error",
|
|
760
|
+
message: "socket connection error",
|
|
761
|
+
meta: { error: err.message, code: err.code ?? null },
|
|
762
|
+
});
|
|
763
|
+
});
|
|
764
|
+
/* v8 ignore stop */
|
|
169
765
|
const flushResponse = async () => {
|
|
170
766
|
if (responded)
|
|
171
767
|
return;
|
|
172
768
|
responded = true;
|
|
173
769
|
const response = await this.handleRawPayload(raw);
|
|
174
|
-
|
|
770
|
+
try {
|
|
771
|
+
connection.end(response);
|
|
772
|
+
/* v8 ignore start — EPIPE catch requires real socket disconnect @preserve */
|
|
773
|
+
}
|
|
774
|
+
catch (err) {
|
|
775
|
+
(0, runtime_1.emitNervesEvent)({
|
|
776
|
+
level: "warn",
|
|
777
|
+
component: "daemon",
|
|
778
|
+
event: "daemon.connection_end_error",
|
|
779
|
+
message: "failed to send response to client (EPIPE)",
|
|
780
|
+
meta: { error: err instanceof Error ? err.message : String(err) },
|
|
781
|
+
});
|
|
782
|
+
}
|
|
783
|
+
/* v8 ignore stop */
|
|
175
784
|
};
|
|
176
785
|
connection.on("data", (chunk) => {
|
|
177
786
|
raw += chunk.toString("utf-8");
|
|
@@ -184,7 +793,23 @@ class OuroDaemon {
|
|
|
184
793
|
const server = this.server;
|
|
185
794
|
await new Promise((resolve, reject) => {
|
|
186
795
|
server.once("error", reject);
|
|
187
|
-
server.listen(this.socketPath, () =>
|
|
796
|
+
server.listen(this.socketPath, () => {
|
|
797
|
+
// Replace the one-time error listener with a persistent one after successful listen
|
|
798
|
+
server.removeAllListeners("error");
|
|
799
|
+
this.socketIdentity = readSocketIdentity(this.socketPath);
|
|
800
|
+
/* v8 ignore start — server error after listen requires real socket race condition @preserve */
|
|
801
|
+
server.on("error", (err) => {
|
|
802
|
+
(0, runtime_1.emitNervesEvent)({
|
|
803
|
+
level: "error",
|
|
804
|
+
component: "daemon",
|
|
805
|
+
event: "daemon.server_error",
|
|
806
|
+
message: "daemon server error after listen",
|
|
807
|
+
meta: { error: err.message, code: err.code ?? null },
|
|
808
|
+
});
|
|
809
|
+
});
|
|
810
|
+
/* v8 ignore stop */
|
|
811
|
+
resolve();
|
|
812
|
+
});
|
|
188
813
|
});
|
|
189
814
|
}
|
|
190
815
|
async drainPendingBundleMessages() {
|
|
@@ -323,25 +948,87 @@ class OuroDaemon {
|
|
|
323
948
|
}
|
|
324
949
|
}
|
|
325
950
|
async stop() {
|
|
951
|
+
// Must be named `_end` (not `_stop`) to satisfy the nerves audit's
|
|
952
|
+
// start/end pairing rule — see src/nerves/coverage/audit-rules.ts.
|
|
953
|
+
// This is the counterpart to `daemon.server_start` emitted at line 480.
|
|
326
954
|
(0, runtime_1.emitNervesEvent)({
|
|
327
955
|
component: "daemon",
|
|
328
|
-
event: "daemon.
|
|
956
|
+
event: "daemon.server_end",
|
|
329
957
|
message: "stopping daemon server",
|
|
330
958
|
meta: { socketPath: this.socketPath },
|
|
331
959
|
});
|
|
332
960
|
(0, update_checker_1.stopUpdateChecker)();
|
|
961
|
+
(0, mcp_manager_1.shutdownSharedMcpManager)();
|
|
333
962
|
this.scheduler.stop?.();
|
|
963
|
+
this.healthMonitor.stopPeriodicChecks?.();
|
|
964
|
+
if (this.senseAutostartTimer) {
|
|
965
|
+
clearTimeout(this.senseAutostartTimer);
|
|
966
|
+
this.senseAutostartTimer = null;
|
|
967
|
+
}
|
|
334
968
|
await this.processManager.stopAll();
|
|
335
969
|
await this.senseManager?.stopAll();
|
|
336
970
|
if (this.server) {
|
|
337
|
-
await
|
|
338
|
-
|
|
339
|
-
|
|
971
|
+
// DO NOT `await` server.close() here. server.close() resolves only
|
|
972
|
+
// after every open connection has closed. When stop() is invoked
|
|
973
|
+
// from the daemon.stop command handler, the calling client's
|
|
974
|
+
// connection is STILL open — its flushResponse() is currently
|
|
975
|
+
// awaiting THIS function. Awaiting close() creates a deadlock:
|
|
976
|
+
//
|
|
977
|
+
// client → flushResponse → handleRawPayload → daemon.stop case
|
|
978
|
+
// → stop() → await server.close() (waits for client's connection)
|
|
979
|
+
// → client's connection waits for flushResponse to call
|
|
980
|
+
// connection.end() → DEADLOCK
|
|
981
|
+
//
|
|
982
|
+
// Both processes sit in kevent forever. Verified live on
|
|
983
|
+
// 2026-04-08: alpha.268 daemon hung at `daemon.server_end` log
|
|
984
|
+
// line for 5+ minutes after a client sent daemon.stop, while the
|
|
985
|
+
// client (alpha.270 ouro up) hung waiting for the response.
|
|
986
|
+
//
|
|
987
|
+
// This regressed when #303/#334/#339 stopped half-closing the
|
|
988
|
+
// client socket and switched the server to allowHalfOpen: true.
|
|
989
|
+
// Previously, the client called .end() after writing its command,
|
|
990
|
+
// which (with allowHalfOpen: false) caused node to auto-tear-down
|
|
991
|
+
// the server's writable side — incidentally unblocking
|
|
992
|
+
// server.close() before the response was sent. The half-close
|
|
993
|
+
// breakage masked this deadlock; the fix exposed it.
|
|
994
|
+
//
|
|
995
|
+
// Solution: fire close() and let it complete asynchronously. Once
|
|
996
|
+
// stop() returns, the daemon.stop case returns its response,
|
|
997
|
+
// flushResponse() calls connection.end(response), the connection
|
|
998
|
+
// closes, and server.close()'s pending callback fires. The event
|
|
999
|
+
// loop drains and the daemon exits cleanly.
|
|
1000
|
+
this.server.close();
|
|
340
1001
|
this.server = null;
|
|
341
1002
|
}
|
|
342
|
-
if (
|
|
1003
|
+
if (this.mailboxServer) {
|
|
1004
|
+
await this.mailboxServer.stop();
|
|
1005
|
+
this.mailboxServer = null;
|
|
1006
|
+
}
|
|
1007
|
+
const socketPathExists = fs.existsSync(this.socketPath);
|
|
1008
|
+
const currentSocketIdentity = socketPathExists ? readSocketIdentity(this.socketPath) : null;
|
|
1009
|
+
if (sameSocketIdentity(this.socketIdentity, currentSocketIdentity)) {
|
|
343
1010
|
fs.unlinkSync(this.socketPath);
|
|
344
1011
|
}
|
|
1012
|
+
else if (socketPathExists) {
|
|
1013
|
+
const expectedSocketIdentity = { dev: null, ino: null, ctimeMs: null, ...this.socketIdentity };
|
|
1014
|
+
const actualSocketIdentity = { dev: null, ino: null, ctimeMs: null, ...currentSocketIdentity };
|
|
1015
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1016
|
+
level: "warn",
|
|
1017
|
+
component: "daemon",
|
|
1018
|
+
event: "daemon.socket_cleanup_skipped",
|
|
1019
|
+
message: "skipped daemon socket cleanup because the socket path no longer belongs to this daemon",
|
|
1020
|
+
meta: {
|
|
1021
|
+
socketPath: this.socketPath,
|
|
1022
|
+
expectedDev: expectedSocketIdentity.dev,
|
|
1023
|
+
expectedIno: expectedSocketIdentity.ino,
|
|
1024
|
+
expectedCtimeMs: expectedSocketIdentity.ctimeMs,
|
|
1025
|
+
actualDev: actualSocketIdentity.dev,
|
|
1026
|
+
actualIno: actualSocketIdentity.ino,
|
|
1027
|
+
actualCtimeMs: actualSocketIdentity.ctimeMs,
|
|
1028
|
+
},
|
|
1029
|
+
});
|
|
1030
|
+
}
|
|
1031
|
+
this.socketIdentity = null;
|
|
345
1032
|
}
|
|
346
1033
|
async handleRawPayload(raw) {
|
|
347
1034
|
try {
|
|
@@ -363,32 +1050,58 @@ class OuroDaemon {
|
|
|
363
1050
|
message: "handling daemon command",
|
|
364
1051
|
meta: { kind: command.kind },
|
|
365
1052
|
});
|
|
1053
|
+
try {
|
|
1054
|
+
return await this.handleCommandInner(command);
|
|
1055
|
+
/* v8 ignore start — command error catch tested in daemon-command-error.test; instanceof branches defensive @preserve */
|
|
1056
|
+
}
|
|
1057
|
+
catch (error) {
|
|
1058
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1059
|
+
level: "error",
|
|
1060
|
+
component: "daemon",
|
|
1061
|
+
event: "daemon.command_error",
|
|
1062
|
+
message: "unexpected error handling daemon command",
|
|
1063
|
+
meta: {
|
|
1064
|
+
kind: command.kind,
|
|
1065
|
+
error: error instanceof Error ? error.message : String(error),
|
|
1066
|
+
stack: error instanceof Error ? error.stack ?? null : null,
|
|
1067
|
+
},
|
|
1068
|
+
});
|
|
1069
|
+
throw error;
|
|
1070
|
+
}
|
|
1071
|
+
/* v8 ignore stop */
|
|
1072
|
+
}
|
|
1073
|
+
async handleCommandInner(command) {
|
|
366
1074
|
switch (command.kind) {
|
|
367
1075
|
case "daemon.start":
|
|
368
1076
|
await this.start();
|
|
369
1077
|
return { ok: true, message: "daemon started" };
|
|
370
1078
|
case "daemon.stop":
|
|
371
1079
|
await this.stop();
|
|
1080
|
+
this.onStopCommandComplete?.();
|
|
372
1081
|
return { ok: true, message: "daemon stopped" };
|
|
373
|
-
case "daemon.
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
senseCount: senses.length,
|
|
386
|
-
entryPath: path.join(repoRoot, "dist", "heart", "daemon", "daemon-entry.js"),
|
|
387
|
-
mode: (0, runtime_mode_1.detectRuntimeMode)(repoRoot),
|
|
1082
|
+
case "daemon.restart": {
|
|
1083
|
+
// Restart is "stop + let launchctl respawn." Under launchctl's KeepAlive
|
|
1084
|
+
// policy the process is auto-restarted on exit, so daemon.restart and
|
|
1085
|
+
// daemon.stop differ only in intent + audit trail. In dev (no launchctl),
|
|
1086
|
+
// the process simply exits — same observable behavior as daemon.stop.
|
|
1087
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1088
|
+
component: "daemon",
|
|
1089
|
+
event: "daemon.restart_requested",
|
|
1090
|
+
message: "daemon restart requested",
|
|
1091
|
+
meta: {
|
|
1092
|
+
reason: command.reason ?? null,
|
|
1093
|
+
requestedBy: command.requestedBy ?? null,
|
|
388
1094
|
},
|
|
389
|
-
|
|
390
|
-
|
|
1095
|
+
});
|
|
1096
|
+
await this.stop();
|
|
1097
|
+
this.onStopCommandComplete?.();
|
|
1098
|
+
return {
|
|
1099
|
+
ok: true,
|
|
1100
|
+
message: "daemon restarting — launchctl will respawn",
|
|
391
1101
|
};
|
|
1102
|
+
}
|
|
1103
|
+
case "daemon.status": {
|
|
1104
|
+
const data = this.buildStatusPayload();
|
|
392
1105
|
return {
|
|
393
1106
|
ok: true,
|
|
394
1107
|
summary: formatStatusSummary(data),
|
|
@@ -407,6 +1120,48 @@ class OuroDaemon {
|
|
|
407
1120
|
message: "log streaming available via ouro logs",
|
|
408
1121
|
data: { logDir: "~/AgentBundles/<agent>.ouro/state/daemon/logs" },
|
|
409
1122
|
};
|
|
1123
|
+
case "daemon.sense_revive": {
|
|
1124
|
+
if (!isValidSenseReviveCommand(command)) {
|
|
1125
|
+
return {
|
|
1126
|
+
ok: false,
|
|
1127
|
+
error: "Invalid daemon.sense_revive payload: expected string fields 'agent', 'sense', and 'reason'.",
|
|
1128
|
+
};
|
|
1129
|
+
}
|
|
1130
|
+
const revivedSenseRow = await this.senseManager?.reviveSense?.(command.agent, command.sense);
|
|
1131
|
+
if (revivedSenseRow) {
|
|
1132
|
+
return {
|
|
1133
|
+
ok: true,
|
|
1134
|
+
message: `revived ${command.agent}/${command.sense}`,
|
|
1135
|
+
data: revivedSenseRow,
|
|
1136
|
+
};
|
|
1137
|
+
}
|
|
1138
|
+
const managedSenseSnapshots = this.processManager.listAgentSnapshots()
|
|
1139
|
+
.filter((snapshot) => snapshot.name.startsWith(`${command.agent}:`));
|
|
1140
|
+
if (managedSenseSnapshots.length === 0) {
|
|
1141
|
+
return {
|
|
1142
|
+
ok: false,
|
|
1143
|
+
error: `No managed agent '${command.agent}' is registered with daemon-managed senses.`,
|
|
1144
|
+
};
|
|
1145
|
+
}
|
|
1146
|
+
const exactTargetName = `${command.agent}:${command.sense}`;
|
|
1147
|
+
const target = managedSenseSnapshots.find((snapshot) => snapshot.name === exactTargetName)
|
|
1148
|
+
?? managedSenseSnapshots.find((snapshot) => snapshot.channel === command.sense);
|
|
1149
|
+
if (!target) {
|
|
1150
|
+
return {
|
|
1151
|
+
ok: false,
|
|
1152
|
+
error: `No managed sense '${command.sense}' is registered for agent '${command.agent}'.`,
|
|
1153
|
+
};
|
|
1154
|
+
}
|
|
1155
|
+
this.processManager.resetAgentFailureState(target.name);
|
|
1156
|
+
await this.processManager.startAgent(target.name);
|
|
1157
|
+
const freshSnapshot = this.processManager.listAgentSnapshots()
|
|
1158
|
+
.find((snapshot) => snapshot.name === target.name) ?? target;
|
|
1159
|
+
return {
|
|
1160
|
+
ok: true,
|
|
1161
|
+
message: `revived ${command.agent}/${command.sense}`,
|
|
1162
|
+
data: freshSnapshot,
|
|
1163
|
+
};
|
|
1164
|
+
}
|
|
410
1165
|
case "agent.start":
|
|
411
1166
|
await this.processManager.startAgent(command.agent);
|
|
412
1167
|
return { ok: true, message: `started ${command.agent}` };
|
|
@@ -416,6 +1171,35 @@ class OuroDaemon {
|
|
|
416
1171
|
case "agent.restart":
|
|
417
1172
|
await this.processManager.restartAgent?.(command.agent);
|
|
418
1173
|
return { ok: true, message: `restarted ${command.agent}` };
|
|
1174
|
+
case "agent.ask":
|
|
1175
|
+
return handleAgentAskTurn(command, { socketPath: this.socketPath });
|
|
1176
|
+
case "agent.status":
|
|
1177
|
+
return (0, agent_service_1.handleAgentStatus)(command);
|
|
1178
|
+
case "agent.catchup":
|
|
1179
|
+
return (0, agent_service_1.handleAgentCatchup)(command);
|
|
1180
|
+
case "agent.delegate":
|
|
1181
|
+
return (0, agent_service_1.handleAgentDelegate)(command);
|
|
1182
|
+
case "agent.getContext":
|
|
1183
|
+
return (0, agent_service_1.handleAgentGetContext)(command);
|
|
1184
|
+
case "agent.searchNotes":
|
|
1185
|
+
return (0, agent_service_1.handleAgentSearchNotes)(command);
|
|
1186
|
+
case "agent.getTask":
|
|
1187
|
+
return (0, agent_service_1.handleAgentGetTask)(command);
|
|
1188
|
+
case "agent.checkScope":
|
|
1189
|
+
return (0, agent_service_1.handleAgentCheckScope)(command);
|
|
1190
|
+
case "agent.requestDecision":
|
|
1191
|
+
return (0, agent_service_1.handleAgentRequestDecision)(command);
|
|
1192
|
+
case "agent.checkGuidance":
|
|
1193
|
+
return (0, agent_service_1.handleAgentCheckGuidance)(command);
|
|
1194
|
+
case "agent.reportProgress":
|
|
1195
|
+
return (0, agent_service_1.handleAgentReportProgress)(command);
|
|
1196
|
+
case "agent.reportBlocker":
|
|
1197
|
+
return (0, agent_service_1.handleAgentReportBlocker)(command);
|
|
1198
|
+
case "agent.reportComplete":
|
|
1199
|
+
return (0, agent_service_1.handleAgentReportComplete)(command);
|
|
1200
|
+
case "agent.senseTurn":
|
|
1201
|
+
return handleAgentSenseTurn(command, { socketPath: this.socketPath });
|
|
1202
|
+
/* v8 ignore stop */
|
|
419
1203
|
case "cron.list": {
|
|
420
1204
|
const jobs = this.scheduler.listJobs();
|
|
421
1205
|
const summary = jobs.length === 0
|
|
@@ -428,6 +1212,20 @@ class OuroDaemon {
|
|
|
428
1212
|
return { ok: result.ok, message: result.message };
|
|
429
1213
|
}
|
|
430
1214
|
case "message.send": {
|
|
1215
|
+
// Pure queue-only delivery. We DO NOT wake the recipient — that was
|
|
1216
|
+
// the 2026-05-11 $50 bleed. The Claude Code post-tool-use hook
|
|
1217
|
+
// (cli-exec.ts) intentionally sends only message.send for tool-use
|
|
1218
|
+
// events to avoid waking the agent on every tool call. The hook's
|
|
1219
|
+
// intent was completely defeated by this handler calling
|
|
1220
|
+
// `sendToAgent({type: "message"})`, which woke the inner-dialog
|
|
1221
|
+
// worker on EVERY message.send anyway. ~30 message.send/min × the
|
|
1222
|
+
// 3-turn instinct-loop cap = ~90 turns/min sustained for hours.
|
|
1223
|
+
//
|
|
1224
|
+
// Callers that want immediate processing must send `inner.wake`
|
|
1225
|
+
// explicitly after message.send. The CLI `ouro msg` does so
|
|
1226
|
+
// (lifecycle-boundary delivery should wake); the hook does so
|
|
1227
|
+
// only on session-start / stop, not per tool-use; the API does
|
|
1228
|
+
// not (notifications go to the queue).
|
|
431
1229
|
const receipt = await this.router.send({
|
|
432
1230
|
from: command.from,
|
|
433
1231
|
to: command.to,
|
|
@@ -436,7 +1234,6 @@ class OuroDaemon {
|
|
|
436
1234
|
sessionId: command.sessionId,
|
|
437
1235
|
taskRef: command.taskRef,
|
|
438
1236
|
});
|
|
439
|
-
this.processManager.sendToAgent?.(command.to, { type: "message" });
|
|
440
1237
|
return { ok: true, message: `queued message ${receipt.id}`, data: receipt };
|
|
441
1238
|
}
|
|
442
1239
|
case "message.poll": {
|
|
@@ -476,10 +1273,48 @@ class OuroDaemon {
|
|
|
476
1273
|
data: receipt,
|
|
477
1274
|
};
|
|
478
1275
|
}
|
|
1276
|
+
case "habit.poke": {
|
|
1277
|
+
this.processManager.sendToAgent?.(command.agent, { type: "habit", habitName: command.habitName });
|
|
1278
|
+
return {
|
|
1279
|
+
ok: true,
|
|
1280
|
+
message: `poked habit ${command.habitName} for ${command.agent}`,
|
|
1281
|
+
};
|
|
1282
|
+
}
|
|
1283
|
+
case "await.poke": {
|
|
1284
|
+
this.processManager.sendToAgent?.(command.agent, { type: "await", awaitName: command.awaitName });
|
|
1285
|
+
return {
|
|
1286
|
+
ok: true,
|
|
1287
|
+
message: `poked await ${command.awaitName} for ${command.agent}`,
|
|
1288
|
+
};
|
|
1289
|
+
}
|
|
1290
|
+
case "mcp.list": {
|
|
1291
|
+
(0, identity_1.setAgentName)(command.agent ?? "default");
|
|
1292
|
+
const mcpManager = await (0, mcp_manager_1.getSharedMcpManager)();
|
|
1293
|
+
if (!mcpManager) {
|
|
1294
|
+
return { ok: true, data: [], message: "no MCP servers configured" };
|
|
1295
|
+
}
|
|
1296
|
+
return { ok: true, data: mcpManager.listAllTools() };
|
|
1297
|
+
}
|
|
1298
|
+
case "mcp.call": {
|
|
1299
|
+
(0, identity_1.setAgentName)(command.agent ?? "default");
|
|
1300
|
+
const mcpCallManager = await (0, mcp_manager_1.getSharedMcpManager)();
|
|
1301
|
+
if (!mcpCallManager) {
|
|
1302
|
+
return { ok: false, error: "no MCP servers configured" };
|
|
1303
|
+
}
|
|
1304
|
+
try {
|
|
1305
|
+
const parsedArgs = command.args ? JSON.parse(command.args) : {};
|
|
1306
|
+
const result = await mcpCallManager.callTool(command.server, command.tool, parsedArgs);
|
|
1307
|
+
return { ok: true, data: result };
|
|
1308
|
+
}
|
|
1309
|
+
catch (error) {
|
|
1310
|
+
/* v8 ignore next -- defensive: callTool errors are always Error instances @preserve */
|
|
1311
|
+
return { ok: false, error: error instanceof Error ? error.message : String(error) };
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
479
1314
|
case "hatch.start":
|
|
480
1315
|
return {
|
|
481
1316
|
ok: true,
|
|
482
|
-
message: "hatch flow is stubbed
|
|
1317
|
+
message: "hatch flow is stubbed; the interactive implementation lands in a later milestone",
|
|
483
1318
|
};
|
|
484
1319
|
default:
|
|
485
1320
|
return {
|