@ouro.bot/cli 0.1.0-alpha.83 → 0.1.0-alpha.831
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/LICENSE +21 -0
- package/README.md +154 -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/assets/bluebubbles-host +264 -0
- package/assets/sanctuary-host-launcher.sh +16 -0
- package/changelog.json +5308 -16
- package/deploy/unraid/Dockerfile +54 -0
- package/deploy/unraid/README.txt +2983 -0
- package/deploy/unraid/audit-container-spec.sh +4 -0
- package/deploy/unraid/container-runtime.json +1 -0
- package/deploy/unraid/docker-man-template-transaction.mjs +711 -0
- package/deploy/unraid/docker-man-template-xml.cjs +105 -0
- package/deploy/unraid/migrate-sanctuary-bundle.mjs +60 -0
- package/deploy/unraid/ouro-events/bootstrap-spool.sh +92 -0
- package/deploy/unraid/ouro-events/emit-event.mjs +310 -0
- package/deploy/unraid/ouro-events/emit-usenet-event.sh +54 -0
- package/deploy/unraid/ouro-events/install-usenet-guard.sh +435 -0
- package/deploy/unraid/ouro-events/usenet-health.sh +176 -0
- package/deploy/unraid/sanctuary-acceptance-adapter.sh +43 -0
- package/deploy/unraid/sanctuary-acceptance-contract.json +198 -0
- package/deploy/unraid/sanctuary-acceptance-harness.sh +23 -0
- package/deploy/unraid/sanctuary-authority-installation.json +36 -0
- package/deploy/unraid/sanctuary-authority-service.sh +30 -0
- package/deploy/unraid/sanctuary-deployment-target.mjs +710 -0
- package/deploy/unraid/sanctuary-safe-rename.py +24 -0
- package/deploy/unraid/sanctuary-unit16-host-broker.mjs +2084 -0
- package/deploy/unraid/sanctuary-unit16-run.sh +560 -0
- package/deploy/unraid/sanctuary-unit18-target-audit.sh +27 -0
- package/deploy/unraid/sanctuary.ouro/agent.json +66 -0
- package/deploy/unraid/sanctuary.ouro/arc/README.md +3 -0
- package/deploy/unraid/sanctuary.ouro/bundle-meta.json +5 -0
- package/deploy/unraid/sanctuary.ouro/habits/sanctuary-health.md +8 -0
- package/deploy/unraid/sanctuary.ouro/mcp/media-mcp.mjs +795 -0
- package/deploy/unraid/sanctuary.ouro/provider-readiness.json +11 -0
- package/deploy/unraid/sanctuary.ouro/psyche/ASPIRATIONS.md +5 -0
- package/deploy/unraid/sanctuary.ouro/psyche/IDENTITY.md +5 -0
- package/deploy/unraid/sanctuary.ouro/psyche/LORE.md +15 -0
- package/deploy/unraid/sanctuary.ouro/psyche/SOUL.md +25 -0
- package/deploy/unraid/sanctuary.ouro/psyche/TACIT.md +15 -0
- package/deploy/unraid/sanctuary.ouro/state/policy/steward.json +7 -0
- package/deploy/unraid/sanctuary.ouro/tool-profiles.json +135 -0
- package/deploy/unraid/sanctuary.xml +28 -0
- package/dist/a2a/card.js +57 -0
- package/dist/a2a/client.js +180 -0
- package/dist/a2a/config.js +50 -0
- package/dist/a2a/delegation-stores.js +56 -0
- package/dist/a2a/did-resolution.js +93 -0
- package/dist/a2a/identity.js +170 -0
- package/dist/a2a/inbound-share.js +107 -0
- package/dist/a2a/mission-result-wire.js +196 -0
- package/dist/a2a/onboarding.js +115 -0
- package/dist/a2a/pin-store.js +132 -0
- package/dist/a2a/seen-ledger.js +120 -0
- package/dist/a2a/server.js +604 -0
- package/dist/a2a/task-store.js +69 -0
- package/dist/a2a/transport.js +45 -0
- package/dist/a2a/types.js +3 -0
- package/dist/arc/attention-types.js +8 -0
- package/dist/arc/cares.js +360 -0
- package/dist/arc/episodes.js +118 -0
- package/dist/arc/evolution.js +490 -0
- package/dist/arc/flight-recorder.js +1034 -0
- package/dist/arc/intentions.js +134 -0
- package/dist/arc/json-store.js +117 -0
- package/dist/arc/obligations.js +386 -0
- package/dist/arc/packets.js +336 -0
- package/dist/arc/presence.js +185 -0
- package/dist/arc/task-lifecycle.js +57 -0
- package/dist/commerce/store.js +755 -0
- package/dist/commerce/types.js +3 -0
- package/dist/heart/active-work.js +798 -40
- package/dist/heart/agent-entry.js +252 -3
- package/dist/heart/approval-files.js +113 -0
- package/dist/heart/approval-store.js +960 -0
- 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 +18 -0
- package/dist/heart/attachments/sources/telegram.js +71 -0
- package/dist/heart/attachments/store.js +132 -0
- package/dist/heart/attachments/types.js +93 -0
- package/dist/heart/auth/auth-flow.js +495 -0
- package/dist/heart/autonomy-budget.js +478 -0
- package/dist/heart/awaiting/await-alert.js +148 -0
- package/dist/heart/awaiting/await-expiry.js +143 -0
- package/dist/heart/awaiting/await-loader.js +91 -0
- package/dist/heart/awaiting/await-parser.js +149 -0
- package/dist/heart/awaiting/await-runtime-state.js +111 -0
- package/dist/heart/awaiting/await-scheduler.js +382 -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 +44 -18
- package/dist/heart/config-registry.js +331 -0
- package/dist/heart/config.js +174 -131
- package/dist/heart/context-loss-gauntlet.js +387 -0
- package/dist/heart/context-loss-sentinel.js +1157 -0
- package/dist/heart/core.js +2169 -581
- package/dist/heart/cross-chat-delivery.js +9 -22
- package/dist/heart/daemon/agent-config-check.js +451 -0
- package/dist/heart/daemon/agent-discovery.js +185 -3
- package/dist/heart/daemon/agent-service.js +542 -0
- package/dist/heart/daemon/agentic-repair.js +547 -0
- package/dist/heart/daemon/await-private-wake.js +59 -0
- package/dist/heart/daemon/bluebubbles-cli-integration.js +71 -0
- package/dist/heart/daemon/bluebubbles-health-diagnostics.js +122 -0
- package/dist/heart/daemon/bluebubbles-host-protocol.js +433 -0
- package/dist/heart/daemon/bluebubbles-host.js +273 -0
- package/dist/heart/daemon/boot-sync-probe.js +197 -0
- package/dist/heart/daemon/cadence.js +180 -0
- package/dist/heart/daemon/cli-defaults.js +854 -0
- package/dist/heart/daemon/cli-desk.js +322 -0
- package/dist/heart/daemon/cli-exec.js +8822 -0
- package/dist/heart/daemon/cli-help.js +716 -0
- package/dist/heart/daemon/cli-parse.js +2771 -0
- package/dist/heart/daemon/cli-render-doctor.js +57 -0
- package/dist/heart/daemon/cli-render.js +777 -0
- package/dist/heart/daemon/cli-types.js +8 -0
- package/dist/heart/daemon/connect-bay.js +323 -0
- package/dist/heart/daemon/container-credential-bootstrap.js +273 -0
- package/dist/heart/daemon/container-healthcheck.js +112 -0
- package/dist/heart/daemon/container-runtime.js +97 -0
- package/dist/heart/daemon/container-spec-auditor-main.js +171 -0
- package/dist/heart/daemon/container-spec-auditor.js +229 -0
- package/dist/heart/daemon/daemon-bootstrap-startup.js +115 -0
- package/dist/heart/daemon/daemon-cli.js +29 -2349
- package/dist/heart/daemon/daemon-entry.js +930 -11
- package/dist/heart/daemon/daemon-health.js +186 -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 +2084 -105
- package/dist/heart/daemon/dns-workflow.js +394 -0
- package/dist/heart/daemon/doctor-types.js +8 -0
- package/dist/heart/daemon/doctor.js +1755 -0
- package/dist/heart/daemon/freshness.js +345 -0
- package/dist/heart/daemon/habit-private-wake.js +61 -0
- package/dist/heart/daemon/health-monitor.js +142 -11
- package/dist/heart/daemon/hooks/agent-config-v2.js +33 -0
- package/dist/heart/daemon/hooks/bundle-meta.js +135 -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 +78 -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 +132 -0
- package/dist/heart/daemon/mcp-canary.js +524 -0
- package/dist/heart/daemon/message-router.js +65 -5
- 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 +22 -14
- 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 +733 -61
- package/dist/heart/daemon/provider-discovery.js +137 -0
- package/dist/heart/daemon/provider-ping-progress.js +83 -0
- package/dist/heart/daemon/prunable-bundle.js +144 -0
- package/dist/heart/daemon/pulse.js +511 -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 +47 -14
- package/dist/heart/daemon/runtime-metadata.js +2 -30
- package/dist/heart/daemon/runtime-mode.js +13 -2
- package/dist/heart/daemon/safe-mode.js +161 -0
- package/dist/heart/daemon/sanctuary-acceptance-adapter.js +2654 -0
- package/dist/heart/daemon/sanctuary-acceptance-harness.js +1830 -0
- package/dist/heart/daemon/sanctuary-acceptance-marker.js +267 -0
- package/dist/heart/daemon/sanctuary-acceptance-scenarios.js +955 -0
- package/dist/heart/daemon/sanctuary-authority-codec.js +86 -0
- package/dist/heart/daemon/sanctuary-authority-epoch.js +256 -0
- package/dist/heart/daemon/sanctuary-authority-installation.js +140 -0
- package/dist/heart/daemon/sanctuary-authority-ledger.js +241 -0
- package/dist/heart/daemon/sanctuary-authority-root-lifecycle.js +819 -0
- package/dist/heart/daemon/sanctuary-authority-vault-migration.js +79 -0
- package/dist/heart/daemon/sanctuary-bundle-migration.js +729 -0
- package/dist/heart/daemon/sanctuary-host-authority.js +1008 -0
- package/dist/heart/daemon/sanctuary-host-detached-supervisor.js +494 -0
- package/dist/heart/daemon/sanctuary-host-executor.js +670 -0
- package/dist/heart/daemon/sanctuary-host-linux-kernel.js +334 -0
- package/dist/heart/daemon/sanctuary-host-supervisor-entry.js +207 -0
- package/dist/heart/daemon/sanctuary-host-supervisor.js +95 -0
- package/dist/heart/daemon/sanctuary-package-management.js +103 -0
- package/dist/heart/daemon/sanctuary-scheduler-liveness.js +227 -0
- package/dist/heart/daemon/sanctuary-scheduler-origin.js +132 -0
- package/dist/heart/daemon/sanctuary-telegram-authority-entry.js +445 -0
- package/dist/heart/daemon/sanctuary-telegram-authority-gateway.js +585 -0
- package/dist/heart/daemon/sanctuary-telegram-authority-service.js +630 -0
- package/dist/heart/daemon/sense-manager.js +699 -48
- package/dist/heart/daemon/session-id-resolver.js +131 -0
- package/dist/heart/daemon/skill-management-installer.js +1 -1
- package/dist/heart/daemon/socket-client.js +180 -12
- package/dist/heart/daemon/stale-bundle-prune.js +113 -0
- package/dist/heart/daemon/startup-tui.js +339 -0
- package/dist/heart/daemon/supercronic-supervisor.js +282 -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 +138 -54
- 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/external-events/router.js +1430 -0
- package/dist/heart/frontend-approval-runtime.js +506 -0
- package/dist/heart/frontend-journal.js +215 -0
- package/dist/heart/frontend-session-service.js +237 -0
- package/dist/heart/frontend-socket-client.js +164 -0
- package/dist/heart/frontend-socket.js +400 -0
- package/dist/heart/habits/habit-cancel.js +810 -0
- package/dist/heart/habits/habit-lifecycle.js +1327 -0
- package/dist/heart/habits/habit-migration.js +194 -0
- package/dist/heart/habits/habit-parser.js +278 -0
- package/dist/heart/habits/habit-runtime-state.js +93 -0
- package/dist/heart/habits/habit-scheduler.js +653 -0
- package/dist/heart/habits/habit-session-summary.js +318 -0
- package/dist/heart/habits/habit-session.js +636 -0
- package/dist/heart/{daemon → hatch}/hatch-flow.js +55 -62
- 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 +53 -18
- package/dist/heart/identity.js +196 -59
- package/dist/heart/kept-notes.js +289 -0
- package/dist/heart/kicks.js +1 -1
- package/dist/heart/machine-identity.js +161 -0
- package/dist/heart/mail-import-discovery.js +356 -0
- package/dist/heart/mailbox/mailbox-http-hooks.js +98 -0
- package/dist/heart/mailbox/mailbox-http-response.js +7 -0
- package/dist/heart/mailbox/mailbox-http-routes.js +398 -0
- package/dist/heart/mailbox/mailbox-http-static.js +103 -0
- package/dist/heart/mailbox/mailbox-http-transport.js +129 -0
- package/dist/heart/mailbox/mailbox-http.js +99 -0
- package/dist/heart/mailbox/mailbox-read.js +39 -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 +428 -0
- package/dist/heart/mailbox/readers/continuity-readers.js +329 -0
- package/dist/heart/mailbox/readers/mail.js +375 -0
- package/dist/heart/mailbox/readers/runtime-readers.js +823 -0
- package/dist/heart/mailbox/readers/sessions.js +231 -0
- package/dist/heart/mailbox/readers/shared.js +111 -0
- package/dist/heart/mcp/mcp-server.js +696 -0
- package/dist/heart/migrate-config.js +100 -0
- package/dist/heart/model-capabilities.js +11 -0
- package/dist/heart/orientation-frame.js +345 -0
- package/dist/heart/platform.js +81 -0
- package/dist/heart/primitives.js +1 -1
- package/dist/heart/private-runtime/decision-renderer.js +158 -0
- package/dist/heart/private-runtime/index.js +18 -0
- package/dist/heart/private-runtime/ledger.js +221 -0
- package/dist/heart/private-runtime/policy.js +252 -0
- package/dist/heart/private-runtime/types.js +2 -0
- package/dist/heart/progress-story.js +1 -1
- package/dist/heart/provider-attempt.js +137 -0
- package/dist/heart/provider-binding-resolver.js +273 -0
- package/dist/heart/provider-credentials.js +449 -0
- package/dist/heart/provider-failover.js +311 -0
- package/dist/heart/provider-models.js +96 -0
- package/dist/heart/provider-ping.js +265 -0
- package/dist/heart/provider-readiness-cache.js +119 -0
- package/dist/heart/provider-visibility.js +188 -0
- package/dist/heart/providers/anthropic-token.js +131 -0
- package/dist/heart/providers/anthropic.js +173 -60
- package/dist/heart/providers/azure.js +23 -11
- package/dist/heart/providers/error-classification.js +127 -0
- package/dist/heart/providers/github-copilot.js +34 -38
- package/dist/heart/providers/minimax-vlm.js +189 -0
- package/dist/heart/providers/minimax.js +26 -8
- package/dist/heart/providers/openai-codex-token.js +349 -0
- package/dist/heart/providers/openai-codex.js +55 -40
- package/dist/heart/providers/openai-compatible.js +177 -0
- package/dist/heart/run-ledger.js +247 -0
- package/dist/heart/runtime-capability-check.js +170 -0
- package/dist/heart/runtime-credentials.js +607 -0
- package/dist/heart/runtime-cwd.js +87 -0
- package/dist/heart/sense-truth.js +22 -4
- package/dist/heart/session-activity.js +92 -24
- package/dist/heart/session-events.js +1504 -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-redaction-repair-cli-main.js +31 -0
- package/dist/heart/session-redaction-repair.js +552 -0
- package/dist/heart/session-stats-cli-main.js +5 -0
- package/dist/heart/session-stats.js +183 -0
- package/dist/heart/session-transcript.js +133 -0
- package/dist/heart/start-of-turn-packet.js +372 -0
- package/dist/heart/steward-policy.js +618 -0
- package/dist/heart/streaming.js +604 -207
- 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 +11 -7
- 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-approval.js +382 -0
- package/dist/heart/tool-description.js +155 -0
- package/dist/heart/tool-friction.js +55 -0
- package/dist/heart/tool-loop.js +200 -0
- package/dist/heart/turn-context.js +482 -0
- package/dist/heart/turn-execution-lease.js +30 -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 +432 -0
- package/dist/heart/versioning/ouro-recovery-launcher.js +76 -0
- package/dist/heart/versioning/ouro-version-manager.js +409 -0
- package/dist/heart/{daemon → versioning}/staged-restart.js +40 -8
- package/dist/heart/{daemon → versioning}/update-checker.js +6 -1
- package/dist/heart/versioning/update-hooks.js +154 -0
- package/dist/heart/versioning/version-intent.js +114 -0
- package/dist/heart/work-card.js +380 -0
- package/dist/mailbox-ui/assets/index-Cyv4mw3Y.js +1 -0
- package/dist/mailbox-ui/assets/index-Du_9G9WO.css +1 -0
- package/dist/mailbox-ui/assets/vendor-CcN1XpQ9.js +61 -0
- package/dist/mailbox-ui/index.html +16 -0
- package/dist/mailroom/attention.js +167 -0
- package/dist/mailroom/autonomy.js +209 -0
- package/dist/mailroom/blob-store.js +889 -0
- package/dist/mailroom/body-cache.js +61 -0
- package/dist/mailroom/cache-sync-cli.js +58 -0
- package/dist/mailroom/core.js +803 -0
- package/dist/mailroom/entry.js +160 -0
- package/dist/mailroom/file-store.js +568 -0
- package/dist/mailroom/hosted-cache-sync.js +384 -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 +292 -0
- package/dist/mailroom/search-cache.js +513 -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 +24 -2
- package/dist/mind/context.js +309 -111
- package/dist/mind/desk-section.js +362 -0
- package/dist/mind/diary-integrity.js +60 -0
- package/dist/mind/{memory.js → diary.js} +68 -77
- package/dist/mind/embedding-provider.js +60 -0
- package/dist/mind/file-state.js +179 -0
- package/dist/mind/{associative-recall.js → note-search.js} +47 -58
- package/dist/mind/obligation-steering.js +199 -3
- package/dist/mind/pending.js +36 -10
- package/dist/mind/prompt-budget.js +479 -0
- package/dist/mind/prompt-refresh.js +3 -2
- package/dist/mind/prompt.js +1050 -189
- package/dist/mind/provenance-trust.js +26 -0
- package/dist/mind/record-paths.js +312 -0
- package/dist/mind/scrutiny.js +173 -0
- package/dist/mind/session-transaction.js +564 -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/coverage/run-artifacts.js +55 -35
- package/dist/nerves/coverage/source-scanner.js +4 -4
- package/dist/nerves/event-buffer.js +111 -0
- package/dist/nerves/index.js +293 -9
- 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 +159 -0
- package/dist/nerves/runtime.js +17 -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 +1045 -0
- package/dist/repertoire/bundle-templates.js +71 -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 +174 -32
- package/dist/repertoire/coding/index.js +15 -3
- package/dist/repertoire/coding/manager.js +159 -10
- package/dist/repertoire/coding/spawner.js +58 -11
- package/dist/repertoire/coding/tools.js +221 -15
- package/dist/repertoire/coding/workbench-client.js +272 -0
- package/dist/repertoire/coding/workbench-manager.js +346 -0
- 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 +811 -18
- package/dist/repertoire/mcp-client.js +44 -3
- package/dist/repertoire/mcp-manager.js +427 -139
- package/dist/repertoire/mcp-tools.js +124 -0
- package/dist/repertoire/plugin-mcp.js +175 -0
- package/dist/repertoire/plugins.js +253 -0
- package/dist/repertoire/relationship-authorization.js +322 -0
- package/dist/repertoire/shell-sessions.js +134 -0
- package/dist/repertoire/skills.js +48 -4
- package/dist/repertoire/stripe-client.js +131 -0
- package/dist/repertoire/tool-arguments.js +170 -0
- package/dist/repertoire/tool-results.js +29 -0
- package/dist/repertoire/tools-a2a.js +699 -0
- package/dist/repertoire/tools-attachments.js +322 -0
- package/dist/repertoire/tools-awaiting.js +575 -0
- package/dist/repertoire/tools-base.js +77 -1138
- 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-commerce.js +253 -0
- package/dist/repertoire/tools-config.js +186 -0
- package/dist/repertoire/tools-continuity.js +575 -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 +290 -0
- package/dist/repertoire/tools-flow.js +119 -0
- package/dist/repertoire/tools-github.js +3 -8
- package/dist/repertoire/tools-habits.js +103 -0
- package/dist/repertoire/tools-mail.js +1828 -0
- package/dist/repertoire/tools-notes.js +485 -0
- package/dist/repertoire/tools-obligations.js +182 -0
- package/dist/repertoire/tools-orientation.js +31 -0
- package/dist/repertoire/tools-record.js +482 -0
- package/dist/repertoire/tools-rsvp.js +139 -0
- package/dist/repertoire/tools-runtime.js +150 -0
- package/dist/repertoire/tools-sanctuary-host.js +202 -0
- package/dist/repertoire/tools-session.js +1133 -0
- package/dist/repertoire/tools-shell.js +149 -0
- package/dist/repertoire/tools-steward-policy.js +119 -0
- package/dist/repertoire/tools-stripe.js +224 -0
- package/dist/repertoire/tools-surface.js +369 -0
- package/dist/repertoire/tools-teams.js +12 -39
- package/dist/repertoire/tools-telegram-contacts.js +37 -0
- package/dist/repertoire/tools-travel.js +125 -0
- package/dist/repertoire/tools-trip.js +982 -0
- package/dist/repertoire/tools-unraid.js +531 -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 +494 -148
- package/dist/repertoire/travel-api-client.js +360 -0
- package/dist/repertoire/unraid-client.js +155 -0
- package/dist/repertoire/unraid-restart.js +339 -0
- package/dist/repertoire/user-profile.js +131 -0
- package/dist/repertoire/vault-setup.js +246 -0
- package/dist/repertoire/vault-unlock.js +628 -0
- package/dist/rsvp/aisleplanner-client.js +354 -0
- package/dist/rsvp/cli.js +926 -0
- package/dist/rsvp/config.js +327 -0
- package/dist/rsvp/cutover.js +433 -0
- package/dist/rsvp/diagnostics.js +232 -0
- package/dist/rsvp/diff-renderer.js +176 -0
- package/dist/rsvp/habit-policy.js +110 -0
- package/dist/rsvp/habit-stage.js +123 -0
- package/dist/rsvp/incident-bundle.js +97 -0
- package/dist/rsvp/migration.js +204 -0
- package/dist/rsvp/native-habit-runner.js +630 -0
- package/dist/rsvp/outbound-state.js +628 -0
- package/dist/rsvp/query.js +118 -0
- package/dist/rsvp/replay.js +233 -0
- package/dist/rsvp/snapshot.js +232 -0
- package/dist/rsvp/spend-ledger.js +175 -0
- package/dist/scripts/claude-code-hook.js +41 -0
- package/dist/scripts/claude-code-stop-hook.js +47 -0
- package/dist/senses/a2a-entry.js +115 -0
- package/dist/senses/acp-server.js +386 -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} +355 -40
- package/dist/senses/bluebubbles/context-packet.js +207 -0
- package/dist/senses/bluebubbles/context-smoke.js +144 -0
- package/dist/senses/bluebubbles/entry.js +90 -0
- package/dist/senses/{bluebubbles-inbound-log.js → bluebubbles/inbound-log.js} +21 -3
- package/dist/senses/bluebubbles/index.js +3841 -0
- package/dist/senses/bluebubbles/latest-turn.js +311 -0
- package/dist/senses/{bluebubbles-media.js → bluebubbles/media.js} +121 -71
- package/dist/senses/{bluebubbles-model.js → bluebubbles/model.js} +159 -28
- package/dist/senses/{bluebubbles-mutation-log.js → bluebubbles/mutation-log.js} +24 -13
- package/dist/senses/bluebubbles/outbound-state.js +308 -0
- package/dist/senses/bluebubbles/processed-log.js +133 -0
- package/dist/senses/bluebubbles/reaction-policy.js +47 -0
- package/dist/senses/bluebubbles/replay.js +284 -0
- package/dist/senses/{bluebubbles-runtime-state.js → bluebubbles/runtime-state.js} +30 -2
- package/dist/senses/bluebubbles/semantic-receipts.js +1986 -0
- package/dist/senses/{bluebubbles-session-cleanup.js → bluebubbles/session-cleanup.js} +1 -1
- package/dist/senses/bluebubbles/webhook-registration.js +228 -0
- package/dist/senses/bluebubbles-meta-guard.js +39 -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 +241 -0
- package/dist/senses/cli/virtual-list.js +35 -0
- package/dist/senses/cli-entry.js +60 -8
- package/dist/senses/cli.js +604 -320
- package/dist/senses/commands.js +66 -3
- package/dist/senses/context-packet-ledger.js +371 -0
- package/dist/senses/context-packets.js +154 -0
- package/dist/senses/habit-lifecycle-guard.js +24 -0
- package/dist/senses/habit-turn-message.js +160 -0
- package/dist/senses/ingress-evidence.js +2 -0
- package/dist/senses/mail-entry.js +66 -0
- package/dist/senses/mail.js +524 -0
- package/dist/senses/pipeline.js +1115 -204
- package/dist/senses/private-runtime-worker.js +859 -0
- package/dist/senses/private-runtime.js +1517 -0
- package/dist/senses/proactive-content-guard.js +51 -0
- package/dist/senses/root-host-approval-port.js +345 -0
- package/dist/senses/root-host-approval-runtime.js +393 -0
- package/dist/senses/sanctuary-authority-resident.js +102 -0
- package/dist/senses/sanctuary-download-credit-presentation.js +31 -0
- package/dist/senses/sanctuary-full-visibility-contract.js +302 -0
- package/dist/senses/sanctuary-grounding.js +118 -0
- package/dist/senses/sanctuary-health-acceptance-probe-entry.js +12 -0
- package/dist/senses/sanctuary-health-acceptance-probe.js +774 -0
- package/dist/senses/sanctuary-health-runner.js +100 -0
- package/dist/senses/sanctuary-health.js +408 -0
- package/dist/senses/sanctuary-install-state-contract.js +126 -0
- package/dist/senses/sanctuary-interactive-control.js +410 -0
- package/dist/senses/sanctuary-media-catalog-contract.js +297 -0
- package/dist/senses/sanctuary-media-optimization.js +514 -0
- package/dist/senses/sanctuary-runtime.js +340 -0
- package/dist/senses/sanctuary-sab.js +85 -0
- package/dist/senses/sanctuary-storage-optimization-contract.js +32 -0
- package/dist/senses/shared-turn.js +772 -0
- package/dist/senses/surface-tool.js +109 -0
- package/dist/senses/teams-entry.js +60 -8
- package/dist/senses/teams.js +519 -218
- package/dist/senses/telegram-admission.js +718 -0
- package/dist/senses/telegram-approval-runtime.js +793 -0
- package/dist/senses/telegram-attachments.js +186 -0
- package/dist/senses/telegram-audit-ledger.js +220 -0
- package/dist/senses/telegram-authority-transport.js +231 -0
- package/dist/senses/telegram-client.js +1749 -0
- package/dist/senses/telegram-effect-adapter.js +896 -0
- package/dist/senses/telegram-entry.js +83 -0
- package/dist/senses/telegram.js +2324 -0
- package/dist/senses/trust-gate.js +104 -9
- 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 +5031 -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 +69 -0
- package/npm-shrinkwrap.json +8138 -0
- package/package.json +72 -13
- package/skills/agent-commerce.md +113 -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 -430
- package/dist/heart/daemon/ouro-path-installer.js +0 -260
- package/dist/heart/daemon/ouro-version-manager.js +0 -171
- package/dist/heart/daemon/update-hooks.js +0 -138
- package/dist/heart/obligations.js +0 -191
- package/dist/heart/safe-workspace.js +0 -228
- package/dist/heart/session-recall.js +0 -116
- package/dist/mind/friends/channel.js +0 -84
- package/dist/mind/friends/group-context.js +0 -144
- package/dist/mind/friends/resolver.js +0 -84
- package/dist/mind/friends/store-file.js +0 -190
- package/dist/mind/friends/store.js +0 -4
- package/dist/mind/friends/tokens.js +0 -26
- package/dist/mind/friends/trust-explanation.js +0 -74
- package/dist/mind/friends/types.js +0 -29
- 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 -1181
- package/dist/senses/debug-activity.js +0 -154
- package/dist/senses/inner-dialog-worker.js +0 -90
- package/dist/senses/inner-dialog.js +0 -525
- 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
|
@@ -38,19 +38,30 @@ const fs = __importStar(require("fs"));
|
|
|
38
38
|
const os = __importStar(require("os"));
|
|
39
39
|
const path = __importStar(require("path"));
|
|
40
40
|
const runtime_1 = require("../../nerves/runtime");
|
|
41
|
-
const bluebubbles_runtime_state_1 = require("../../senses/bluebubbles-runtime-state");
|
|
42
41
|
const identity_1 = require("../identity");
|
|
42
|
+
const runtime_credentials_1 = require("../runtime-credentials");
|
|
43
|
+
const provider_credentials_1 = require("../provider-credentials");
|
|
43
44
|
const sense_truth_1 = require("../sense-truth");
|
|
45
|
+
const machine_identity_1 = require("../machine-identity");
|
|
44
46
|
const process_manager_1 = require("./process-manager");
|
|
47
|
+
const config_1 = require("../../a2a/config");
|
|
45
48
|
const DEFAULT_TEAMS_PORT = 3978;
|
|
46
49
|
const DEFAULT_BLUEBUBBLES_PORT = 18790;
|
|
47
50
|
const DEFAULT_BLUEBUBBLES_WEBHOOK_PATH = "/bluebubbles-webhook";
|
|
48
51
|
const BLUEBUBBLES_RUNTIME_FRESHNESS_WINDOW_MS = 90_000;
|
|
52
|
+
const SENSE_CONFIG_RETRY_DELAYS_MS = [1_000, 2_000, 5_000, 10_000, 30_000, 60_000];
|
|
53
|
+
const WORKBENCH_RUNTIME_INJECTION_DETAIL = "runtime-injected by Workbench app; no agent.json entry required";
|
|
54
|
+
const WORKBENCH_STALE_BUNDLE_DETAIL = "stale agent.json Workbench entry; run 'ouro connect workbench' to clean it and use runtime injection";
|
|
49
55
|
function defaultSenses() {
|
|
50
56
|
return {
|
|
51
57
|
cli: { ...identity_1.DEFAULT_AGENT_SENSES.cli },
|
|
52
58
|
teams: { ...identity_1.DEFAULT_AGENT_SENSES.teams },
|
|
53
59
|
bluebubbles: { ...identity_1.DEFAULT_AGENT_SENSES.bluebubbles },
|
|
60
|
+
mail: { ...identity_1.DEFAULT_AGENT_SENSES.mail },
|
|
61
|
+
voice: { ...identity_1.DEFAULT_AGENT_SENSES.voice },
|
|
62
|
+
a2a: { ...identity_1.DEFAULT_AGENT_SENSES.a2a },
|
|
63
|
+
telegram: { ...identity_1.DEFAULT_AGENT_SENSES.telegram },
|
|
64
|
+
workbench: { ...identity_1.DEFAULT_AGENT_SENSES.workbench },
|
|
54
65
|
};
|
|
55
66
|
}
|
|
56
67
|
function readAgentSenses(agentJsonPath) {
|
|
@@ -70,13 +81,27 @@ function readAgentSenses(agentJsonPath) {
|
|
|
70
81
|
reason: error instanceof Error ? error.message : String(error),
|
|
71
82
|
},
|
|
72
83
|
});
|
|
73
|
-
return defaults;
|
|
84
|
+
return { senses: defaults, workbenchHasStaleBundleEntry: false };
|
|
74
85
|
}
|
|
75
86
|
const rawSenses = parsed.senses;
|
|
76
87
|
if (!rawSenses || typeof rawSenses !== "object" || Array.isArray(rawSenses)) {
|
|
77
|
-
|
|
88
|
+
const rawMcpServers = parsed.mcpServers;
|
|
89
|
+
const workbenchHasStaleBundleEntry = !!rawMcpServers
|
|
90
|
+
&& typeof rawMcpServers === "object"
|
|
91
|
+
&& !Array.isArray(rawMcpServers)
|
|
92
|
+
&& Object.prototype.hasOwnProperty.call(rawMcpServers, "ouro_workbench");
|
|
93
|
+
if (workbenchHasStaleBundleEntry)
|
|
94
|
+
defaults.workbench = { enabled: true };
|
|
95
|
+
return { senses: defaults, workbenchHasStaleBundleEntry };
|
|
78
96
|
}
|
|
79
|
-
|
|
97
|
+
const workbenchSensePresent = Object.prototype.hasOwnProperty.call(rawSenses, "workbench");
|
|
98
|
+
const rawMcpServers = parsed.mcpServers;
|
|
99
|
+
const workbenchMcpPresent = !!rawMcpServers
|
|
100
|
+
&& typeof rawMcpServers === "object"
|
|
101
|
+
&& !Array.isArray(rawMcpServers)
|
|
102
|
+
&& Object.prototype.hasOwnProperty.call(rawMcpServers, "ouro_workbench");
|
|
103
|
+
const workbenchHasStaleBundleEntry = workbenchSensePresent || workbenchMcpPresent;
|
|
104
|
+
for (const sense of ["cli", "teams", "bluebubbles", "mail", "voice", "a2a", "telegram", "workbench"]) {
|
|
80
105
|
const rawSense = rawSenses[sense];
|
|
81
106
|
if (!rawSense || typeof rawSense !== "object" || Array.isArray(rawSense)) {
|
|
82
107
|
continue;
|
|
@@ -86,43 +111,95 @@ function readAgentSenses(agentJsonPath) {
|
|
|
86
111
|
defaults[sense] = { enabled };
|
|
87
112
|
}
|
|
88
113
|
}
|
|
89
|
-
|
|
90
|
-
}
|
|
91
|
-
function readSecretsPayload(secretsPath) {
|
|
92
|
-
try {
|
|
93
|
-
const raw = fs.readFileSync(secretsPath, "utf-8");
|
|
94
|
-
const parsed = JSON.parse(raw);
|
|
95
|
-
if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
|
|
96
|
-
return { payload: {}, error: "invalid secrets.json object" };
|
|
97
|
-
}
|
|
98
|
-
return { payload: parsed, error: null };
|
|
99
|
-
}
|
|
100
|
-
catch (error) {
|
|
101
|
-
return {
|
|
102
|
-
payload: {},
|
|
103
|
-
error: error instanceof Error ? error.message : String(error),
|
|
104
|
-
};
|
|
114
|
+
if (workbenchHasStaleBundleEntry) {
|
|
115
|
+
defaults.workbench = { enabled: true };
|
|
105
116
|
}
|
|
117
|
+
return { senses: defaults, workbenchHasStaleBundleEntry };
|
|
106
118
|
}
|
|
107
119
|
function textField(record, key) {
|
|
108
120
|
const value = record?.[key];
|
|
109
121
|
return typeof value === "string" ? value.trim() : "";
|
|
110
122
|
}
|
|
123
|
+
function booleanField(record, key) {
|
|
124
|
+
return record?.[key] === true;
|
|
125
|
+
}
|
|
111
126
|
function numberField(record, key, fallback) {
|
|
112
127
|
const value = record?.[key];
|
|
113
128
|
return typeof value === "number" && Number.isFinite(value) ? value : fallback;
|
|
114
129
|
}
|
|
115
|
-
function
|
|
130
|
+
function a2aMachineRuntimeConfig(agent) {
|
|
131
|
+
const runtimeConfig = (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent);
|
|
132
|
+
const payload = runtimeConfig.ok ? runtimeConfig.config : {};
|
|
133
|
+
const a2a = payload.a2a;
|
|
134
|
+
return a2a && typeof a2a === "object" && !Array.isArray(a2a) ? a2a : undefined;
|
|
135
|
+
}
|
|
136
|
+
function managedA2AArgs(agent) {
|
|
137
|
+
const a2a = a2aMachineRuntimeConfig(agent);
|
|
138
|
+
const args = ["--port", String(numberField(a2a, "port", (0, config_1.defaultA2APort)(agent)))];
|
|
139
|
+
const host = textField(a2a, "host");
|
|
140
|
+
const endpointPath = (0, config_1.normalizeA2APath)(textField(a2a, "path") || config_1.A2A_DEFAULT_PATH);
|
|
141
|
+
const publicUrl = textField(a2a, "publicUrl");
|
|
142
|
+
if (host)
|
|
143
|
+
args.push("--host", host);
|
|
144
|
+
args.push("--path", endpointPath);
|
|
145
|
+
if (publicUrl)
|
|
146
|
+
args.push("--base-url", publicUrl);
|
|
147
|
+
return args;
|
|
148
|
+
}
|
|
149
|
+
function compactRuntimeConfigError(agent, error) {
|
|
150
|
+
const compact = error.replace(/\s+/g, " ").trim();
|
|
151
|
+
if (/credential vault is locked|vault locked|vault is locked/i.test(compact)) {
|
|
152
|
+
return `vault locked; run 'ouro vault unlock --agent ${agent}' if you have the saved secret, or 'ouro vault replace --agent ${agent}' if none was saved`;
|
|
153
|
+
}
|
|
154
|
+
return compact || "unavailable";
|
|
155
|
+
}
|
|
156
|
+
function runtimeConfigUnavailableDetail(agent, runtimeConfig) {
|
|
157
|
+
if (runtimeConfig.ok)
|
|
158
|
+
return "";
|
|
159
|
+
const itemName = /^vault:[^:]+:(.+)$/.exec(runtimeConfig.itemPath)?.[1] ?? "runtime/config";
|
|
160
|
+
if (runtimeConfig.reason === "missing")
|
|
161
|
+
return `missing vault ${itemName} (${agent})`;
|
|
162
|
+
return `vault ${itemName} unavailable (${compactRuntimeConfigError(agent, runtimeConfig.error)})`;
|
|
163
|
+
}
|
|
164
|
+
function needsMachineRuntimeConfig(agent, sense) {
|
|
165
|
+
return sense === "bluebubbles" || sense === "voice" || sense === "a2a" || (agent === "sanctuary" && sense === "telegram");
|
|
166
|
+
}
|
|
167
|
+
function senseFactsFromRuntimeConfig(agent, senses, runtimeConfig, machineRuntimeConfig = (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent), workbenchHasStaleBundleEntry = false) {
|
|
116
168
|
const base = {
|
|
117
169
|
cli: { configured: true, detail: "local interactive terminal" },
|
|
118
170
|
teams: { configured: false, detail: "not enabled in agent.json" },
|
|
119
171
|
bluebubbles: { configured: false, detail: "not enabled in agent.json" },
|
|
172
|
+
mail: { configured: false, detail: "not enabled in agent.json" },
|
|
173
|
+
voice: { configured: false, detail: "not enabled in agent.json" },
|
|
174
|
+
a2a: { configured: false, detail: "not enabled in agent.json" },
|
|
175
|
+
telegram: { configured: false, detail: "not enabled in agent.json" },
|
|
176
|
+
workbench: { configured: false, detail: "not enabled in agent.json" },
|
|
120
177
|
};
|
|
121
|
-
const
|
|
178
|
+
const payload = runtimeConfig.ok ? runtimeConfig.config : {};
|
|
179
|
+
const unavailableDetail = runtimeConfigUnavailableDetail(agent, runtimeConfig);
|
|
122
180
|
const teams = payload.teams;
|
|
123
181
|
const teamsChannel = payload.teamsChannel;
|
|
124
|
-
const
|
|
125
|
-
const
|
|
182
|
+
const machinePayload = machineRuntimeConfig.ok ? machineRuntimeConfig.config : {};
|
|
183
|
+
const bluebubbles = machinePayload.bluebubbles;
|
|
184
|
+
const bluebubblesChannel = machinePayload.bluebubblesChannel;
|
|
185
|
+
const mailroom = payload.mailroom;
|
|
186
|
+
const integrations = payload.integrations;
|
|
187
|
+
const voice = machinePayload.voice;
|
|
188
|
+
const a2a = machinePayload.a2a;
|
|
189
|
+
if (senses.telegram.enabled && agent === "sanctuary") {
|
|
190
|
+
const ready = runtimeConfig.ok && machineRuntimeConfig.ok
|
|
191
|
+
&& !Object.hasOwn(payload, "telegramBotToken") && !Object.hasOwn(machinePayload, "telegramBotToken");
|
|
192
|
+
base.telegram = ready
|
|
193
|
+
? { configured: true, detail: "root authority transport; gateway validated at process startup" }
|
|
194
|
+
: { configured: false, detail: "root authority migration requires available tokenless credential inventories" };
|
|
195
|
+
}
|
|
196
|
+
else if (senses.telegram.enabled) {
|
|
197
|
+
const missing = ["telegramBotToken", "telegramAuthorizedUserId", "telegramAuthorizedChatId"]
|
|
198
|
+
.filter((field) => !textField(payload, field));
|
|
199
|
+
base.telegram = missing.length === 0
|
|
200
|
+
? { configured: true, detail: "private long poll" }
|
|
201
|
+
: { configured: false, detail: `missing runtime/config: ${missing.join(", ")}` };
|
|
202
|
+
}
|
|
126
203
|
if (senses.teams.enabled) {
|
|
127
204
|
const missing = [];
|
|
128
205
|
if (!textField(teams, "clientId"))
|
|
@@ -138,9 +215,9 @@ function senseFactsFromSecrets(agent, senses, secretsPath) {
|
|
|
138
215
|
}
|
|
139
216
|
: {
|
|
140
217
|
configured: false,
|
|
141
|
-
detail:
|
|
142
|
-
? `missing
|
|
143
|
-
:
|
|
218
|
+
detail: runtimeConfig.ok
|
|
219
|
+
? `missing ${missing.join("/")}`
|
|
220
|
+
: unavailableDetail,
|
|
144
221
|
};
|
|
145
222
|
}
|
|
146
223
|
if (senses.bluebubbles.enabled) {
|
|
@@ -156,19 +233,157 @@ function senseFactsFromSecrets(agent, senses, secretsPath) {
|
|
|
156
233
|
}
|
|
157
234
|
: {
|
|
158
235
|
configured: false,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
236
|
+
optional: !machineRuntimeConfig.ok && machineRuntimeConfig.reason === "missing",
|
|
237
|
+
detail: !machineRuntimeConfig.ok && machineRuntimeConfig.reason === "missing"
|
|
238
|
+
? "not attached on this machine"
|
|
239
|
+
: machineRuntimeConfig.ok
|
|
240
|
+
? `missing ${missing.join("/")}`
|
|
241
|
+
: runtimeConfigUnavailableDetail(agent, machineRuntimeConfig),
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
if (senses.mail.enabled) {
|
|
245
|
+
const privateKeys = mailroom?.privateKeys;
|
|
246
|
+
const hasPrivateKeys = !!privateKeys && typeof privateKeys === "object" && !Array.isArray(privateKeys) && Object.values(privateKeys).some((value) => typeof value === "string" && value.trim().length > 0);
|
|
247
|
+
const mailboxAddress = textField(mailroom, "mailboxAddress");
|
|
248
|
+
const missing = [];
|
|
249
|
+
if (!mailboxAddress)
|
|
250
|
+
missing.push("mailroom.mailboxAddress");
|
|
251
|
+
if (!hasPrivateKeys)
|
|
252
|
+
missing.push("mailroom.privateKeys");
|
|
253
|
+
base.mail = missing.length === 0
|
|
254
|
+
? { configured: true, detail: mailboxAddress }
|
|
255
|
+
: {
|
|
256
|
+
configured: false,
|
|
257
|
+
detail: runtimeConfig.ok
|
|
258
|
+
? `missing ${missing.join("/")}`
|
|
259
|
+
: unavailableDetail,
|
|
260
|
+
};
|
|
261
|
+
}
|
|
262
|
+
if (senses.voice.enabled) {
|
|
263
|
+
const portableVoice = payload.voice;
|
|
264
|
+
const conversationEngine = (textField(voice, "twilioConversationEngine")
|
|
265
|
+
|| textField(voice, "conversationEngine")
|
|
266
|
+
|| textField(portableVoice, "twilioConversationEngine")
|
|
267
|
+
|| textField(portableVoice, "conversationEngine")
|
|
268
|
+
|| "cascade").toLowerCase();
|
|
269
|
+
const twilioTransportMode = (textField(voice, "twilioTransportMode") || "record-play").toLowerCase();
|
|
270
|
+
const twilioPublicUrl = textField(voice, "twilioPublicUrl");
|
|
271
|
+
const hasOpenAIRealtimeKey = !!(textField(portableVoice, "openaiRealtimeApiKey")
|
|
272
|
+
|| textField(integrations, "openaiApiKey")
|
|
273
|
+
|| textField(integrations, "openaiEmbeddingsApiKey"));
|
|
274
|
+
const missing = [];
|
|
275
|
+
/* v8 ignore start -- voice setup missing-field matrix is enforced by the voice runtime resolver; sense-manager only renders human-readable readiness facts @preserve */
|
|
276
|
+
if (conversationEngine === "openai-realtime" || conversationEngine === "openai-sip") {
|
|
277
|
+
if (conversationEngine === "openai-realtime" && twilioTransportMode !== "media-stream") {
|
|
278
|
+
missing.push("voice.twilioTransportMode=media-stream");
|
|
279
|
+
}
|
|
280
|
+
if (!hasOpenAIRealtimeKey) {
|
|
281
|
+
missing.push("voice.openaiRealtimeApiKey");
|
|
282
|
+
}
|
|
283
|
+
if (conversationEngine === "openai-sip") {
|
|
284
|
+
if (!textField(portableVoice, "openaiSipProjectId") && !textField(voice, "openaiSipProjectId")) {
|
|
285
|
+
missing.push("voice.openaiSipProjectId");
|
|
286
|
+
}
|
|
287
|
+
const allowUnsignedWebhooks = booleanField(portableVoice, "openaiSipAllowUnsignedWebhooks")
|
|
288
|
+
|| booleanField(voice, "openaiSipAllowUnsignedWebhooks");
|
|
289
|
+
if (!allowUnsignedWebhooks && !textField(portableVoice, "openaiSipWebhookSecret") && !textField(voice, "openaiSipWebhookSecret")) {
|
|
290
|
+
missing.push("voice.openaiSipWebhookSecret");
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
else {
|
|
295
|
+
if (!textField(integrations, "elevenLabsApiKey"))
|
|
296
|
+
missing.push("integrations.elevenLabsApiKey");
|
|
297
|
+
if (!textField(integrations, "elevenLabsVoiceId") && !textField(portableVoice, "elevenLabsVoiceId")) {
|
|
298
|
+
missing.push("integrations.elevenLabsVoiceId");
|
|
299
|
+
}
|
|
300
|
+
if (!textField(voice, "whisperCliPath"))
|
|
301
|
+
missing.push("voice.whisperCliPath");
|
|
302
|
+
if (!textField(voice, "whisperModelPath"))
|
|
303
|
+
missing.push("voice.whisperModelPath");
|
|
304
|
+
}
|
|
305
|
+
/* v8 ignore stop */
|
|
306
|
+
base.voice = missing.length === 0
|
|
307
|
+
? {
|
|
308
|
+
configured: true,
|
|
309
|
+
/* v8 ignore start -- voice detail copy mirrors runtime resolver modes; resolver tests own the matrix @preserve */
|
|
310
|
+
detail: conversationEngine === "openai-sip"
|
|
311
|
+
? twilioPublicUrl
|
|
312
|
+
? "OpenAI Realtime SIP speech-to-speech; Twilio phone transport attached"
|
|
313
|
+
: "OpenAI Realtime SIP speech-to-speech"
|
|
314
|
+
: conversationEngine === "openai-realtime"
|
|
315
|
+
? twilioPublicUrl
|
|
316
|
+
? "OpenAI Realtime speech-to-speech; Twilio phone transport attached"
|
|
317
|
+
: "OpenAI Realtime speech-to-speech"
|
|
318
|
+
: twilioPublicUrl
|
|
319
|
+
? "local Whisper.cpp STT + ElevenLabs TTS; Twilio phone transport attached"
|
|
320
|
+
: "local Whisper.cpp STT + ElevenLabs TTS",
|
|
321
|
+
/* v8 ignore stop */
|
|
322
|
+
}
|
|
323
|
+
: {
|
|
324
|
+
configured: false,
|
|
325
|
+
optional: !machineRuntimeConfig.ok && machineRuntimeConfig.reason === "missing",
|
|
326
|
+
detail: !machineRuntimeConfig.ok && machineRuntimeConfig.reason === "missing"
|
|
327
|
+
? "not attached on this machine"
|
|
328
|
+
: runtimeConfig.ok && machineRuntimeConfig.ok
|
|
329
|
+
? `missing ${missing.join("/")}`
|
|
330
|
+
: !runtimeConfig.ok
|
|
331
|
+
? unavailableDetail
|
|
332
|
+
: runtimeConfigUnavailableDetail(agent, machineRuntimeConfig),
|
|
162
333
|
};
|
|
163
334
|
}
|
|
335
|
+
if (senses.a2a.enabled) {
|
|
336
|
+
const port = numberField(a2a, "port", (0, config_1.defaultA2APort)(agent));
|
|
337
|
+
const endpointPath = (0, config_1.normalizeA2APath)(textField(a2a, "path") || config_1.A2A_DEFAULT_PATH);
|
|
338
|
+
const publicUrl = textField(a2a, "publicUrl");
|
|
339
|
+
base.a2a = {
|
|
340
|
+
configured: true,
|
|
341
|
+
/* v8 ignore next -- listSenseRows tests cover the public URL; daemon defaults cover the local port in live startup smoke @preserve */
|
|
342
|
+
detail: publicUrl ? `${publicUrl}${endpointPath}` : `:${port} ${endpointPath}`,
|
|
343
|
+
};
|
|
344
|
+
}
|
|
345
|
+
if (workbenchHasStaleBundleEntry || senses.workbench.enabled) {
|
|
346
|
+
base.workbench = {
|
|
347
|
+
configured: false,
|
|
348
|
+
detail: WORKBENCH_STALE_BUNDLE_DETAIL,
|
|
349
|
+
};
|
|
350
|
+
}
|
|
164
351
|
return base;
|
|
165
352
|
}
|
|
353
|
+
function senseRepairHint(agent, sense) {
|
|
354
|
+
if (sense === "teams") {
|
|
355
|
+
return `Run 'ouro vault config set --agent ${agent} --key teams.clientId', teams.clientSecret, and teams.tenantId; then run 'ouro up' again.`;
|
|
356
|
+
}
|
|
357
|
+
if (sense === "mail") {
|
|
358
|
+
return `Agent-runnable: provision Mailroom access with 'ouro connect mail --agent ${agent}', then restart with 'ouro up'.`;
|
|
359
|
+
}
|
|
360
|
+
if (sense === "voice") {
|
|
361
|
+
return `Agent-runnable: run 'ouro connect voice --agent ${agent}' for config guidance; use voice.twilioConversationEngine=openai-sip with voice.openaiRealtimeApiKey, voice.openaiSipProjectId, and voice.openaiSipWebhookSecret for preferred SIP phone voice; use openai-realtime for Media Streams fallback, or save ElevenLabs and local Whisper.cpp settings for cascade fallback; then run 'ouro up' again.`;
|
|
362
|
+
}
|
|
363
|
+
/* v8 ignore next -- A2A currently has no credential-gated not-configured state; kept for future repair copy symmetry @preserve */
|
|
364
|
+
if (sense === "a2a") {
|
|
365
|
+
return `Agent-runnable: run 'ouro connect a2a --agent ${agent}', then restart with 'ouro up'.`;
|
|
366
|
+
}
|
|
367
|
+
if (sense === "telegram") {
|
|
368
|
+
return agent === "sanctuary"
|
|
369
|
+
? "Agent-runnable: complete or recover the root authority migration; do not restore a resident Telegram token."
|
|
370
|
+
: `Agent-runnable: store Telegram bot/user/chat coordinates with 'ouro connect telegram --agent ${agent}', then restart with 'ouro up'.`;
|
|
371
|
+
}
|
|
372
|
+
/* v8 ignore next -- Workbench is deliberately not daemon-managed, so getSenseInventory never asks the daemon manager for a repair hint @preserve */
|
|
373
|
+
if (sense === "workbench") {
|
|
374
|
+
return `Agent-runnable: install Ouro Workbench.app, then launch the boss through Workbench or run 'ouro acp-serve --agent ${agent} --workbench-mcp'; 'ouro connect workbench --agent ${agent}' only cleans stale bundle entries.`;
|
|
375
|
+
}
|
|
376
|
+
return `Run 'ouro connect bluebubbles --agent ${agent}' to attach BlueBubbles on this machine; then run 'ouro up' again.`;
|
|
377
|
+
}
|
|
378
|
+
function currentMachineId() {
|
|
379
|
+
return (0, machine_identity_1.loadOrCreateMachineIdentity)({ homeDir: os.homedir() }).machineId;
|
|
380
|
+
}
|
|
166
381
|
function parseSenseSnapshotName(name) {
|
|
167
382
|
const parts = name.split(":");
|
|
168
383
|
if (parts.length !== 2)
|
|
169
384
|
return null;
|
|
170
385
|
const [agent, sense] = parts;
|
|
171
|
-
if (sense !== "teams" && sense !== "bluebubbles")
|
|
386
|
+
if (sense !== "teams" && sense !== "bluebubbles" && sense !== "mail" && sense !== "voice" && sense !== "a2a" && sense !== "telegram")
|
|
172
387
|
return null;
|
|
173
388
|
return { agent, sense };
|
|
174
389
|
}
|
|
@@ -177,6 +392,39 @@ function runtimeInfoFor(status) {
|
|
|
177
392
|
return { runtime: "running" };
|
|
178
393
|
return { runtime: "error" };
|
|
179
394
|
}
|
|
395
|
+
function managedSenseEntry(sense) {
|
|
396
|
+
if (sense === "teams")
|
|
397
|
+
return "senses/teams-entry.js";
|
|
398
|
+
if (sense === "bluebubbles")
|
|
399
|
+
return "senses/bluebubbles/entry.js";
|
|
400
|
+
if (sense === "voice")
|
|
401
|
+
return "senses/voice-entry.js";
|
|
402
|
+
if (sense === "a2a")
|
|
403
|
+
return "senses/a2a-entry.js";
|
|
404
|
+
if (sense === "telegram")
|
|
405
|
+
return "senses/telegram-entry.js";
|
|
406
|
+
return "senses/mail-entry.js";
|
|
407
|
+
}
|
|
408
|
+
function runtimeCredentialBootstrapFor(agent, sense) {
|
|
409
|
+
const runtime = (0, runtime_credentials_1.readRuntimeCredentialConfig)(agent);
|
|
410
|
+
const usesMachineConfig = sense === "bluebubbles" || sense === "voice" || sense === "a2a" || sense === "telegram";
|
|
411
|
+
const machineId = usesMachineConfig ? currentMachineId() : undefined;
|
|
412
|
+
const machine = usesMachineConfig ? (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent) : null;
|
|
413
|
+
const providerPool = (0, provider_credentials_1.readProviderCredentialPool)(agent);
|
|
414
|
+
const providerCredentialRecords = providerPool.ok
|
|
415
|
+
? Object.values(providerPool.pool.providers).filter((record) => !!record)
|
|
416
|
+
: [];
|
|
417
|
+
const bootstrap = {
|
|
418
|
+
agentName: agent,
|
|
419
|
+
runtimeConfig: runtime.ok ? runtime.config : undefined,
|
|
420
|
+
machineRuntimeConfig: machine?.ok ? machine.config : undefined,
|
|
421
|
+
machineId,
|
|
422
|
+
providerCredentialRecords: providerCredentialRecords.length > 0 ? providerCredentialRecords : undefined,
|
|
423
|
+
};
|
|
424
|
+
if (!bootstrap.runtimeConfig && !bootstrap.machineRuntimeConfig && !bootstrap.providerCredentialRecords)
|
|
425
|
+
return null;
|
|
426
|
+
return bootstrap;
|
|
427
|
+
}
|
|
180
428
|
function blueBubblesRuntimeStateIsFresh(lastCheckedAt, now = Date.now()) {
|
|
181
429
|
if (!lastCheckedAt) {
|
|
182
430
|
return false;
|
|
@@ -187,53 +435,189 @@ function blueBubblesRuntimeStateIsFresh(lastCheckedAt, now = Date.now()) {
|
|
|
187
435
|
}
|
|
188
436
|
return checkedAt >= now - BLUEBUBBLES_RUNTIME_FRESHNESS_WINDOW_MS;
|
|
189
437
|
}
|
|
438
|
+
function readBlueBubblesRuntimeJson(runtimePath) {
|
|
439
|
+
try {
|
|
440
|
+
const raw = fs.readFileSync(runtimePath, "utf-8");
|
|
441
|
+
const parsed = JSON.parse(raw);
|
|
442
|
+
/* v8 ignore start -- branches: ternary fallbacks for missing/malformed BB runtime fields @preserve */
|
|
443
|
+
return {
|
|
444
|
+
upstreamStatus: parsed.upstreamStatus === "ok" || parsed.upstreamStatus === "error"
|
|
445
|
+
? parsed.upstreamStatus
|
|
446
|
+
: "unknown",
|
|
447
|
+
detail: typeof parsed.detail === "string" && parsed.detail.trim()
|
|
448
|
+
? parsed.detail
|
|
449
|
+
: "startup health probe pending",
|
|
450
|
+
lastCheckedAt: typeof parsed.lastCheckedAt === "string" ? parsed.lastCheckedAt : undefined,
|
|
451
|
+
proofMethod: typeof parsed.proofMethod === "string" && parsed.proofMethod.trim()
|
|
452
|
+
? parsed.proofMethod
|
|
453
|
+
: undefined,
|
|
454
|
+
pendingRecoveryCount: typeof parsed.pendingRecoveryCount === "number" && Number.isFinite(parsed.pendingRecoveryCount)
|
|
455
|
+
? parsed.pendingRecoveryCount
|
|
456
|
+
: 0,
|
|
457
|
+
failedRecoveryCount: typeof parsed.failedRecoveryCount === "number" && Number.isFinite(parsed.failedRecoveryCount)
|
|
458
|
+
? parsed.failedRecoveryCount
|
|
459
|
+
: 0,
|
|
460
|
+
oldestPendingRecoveryAt: typeof parsed.oldestPendingRecoveryAt === "string" ? parsed.oldestPendingRecoveryAt : undefined,
|
|
461
|
+
oldestPendingRecoveryAgeMs: typeof parsed.oldestPendingRecoveryAgeMs === "number" && Number.isFinite(parsed.oldestPendingRecoveryAgeMs)
|
|
462
|
+
? parsed.oldestPendingRecoveryAgeMs
|
|
463
|
+
: undefined,
|
|
464
|
+
activeTurnCount: typeof parsed.activeTurnCount === "number" && Number.isFinite(parsed.activeTurnCount)
|
|
465
|
+
? parsed.activeTurnCount
|
|
466
|
+
: undefined,
|
|
467
|
+
stalledTurnCount: typeof parsed.stalledTurnCount === "number" && Number.isFinite(parsed.stalledTurnCount)
|
|
468
|
+
? parsed.stalledTurnCount
|
|
469
|
+
: undefined,
|
|
470
|
+
oldestActiveTurnStartedAt: typeof parsed.oldestActiveTurnStartedAt === "string" ? parsed.oldestActiveTurnStartedAt : undefined,
|
|
471
|
+
oldestActiveTurnAgeMs: typeof parsed.oldestActiveTurnAgeMs === "number" && Number.isFinite(parsed.oldestActiveTurnAgeMs)
|
|
472
|
+
? parsed.oldestActiveTurnAgeMs
|
|
473
|
+
: undefined,
|
|
474
|
+
};
|
|
475
|
+
/* v8 ignore stop */
|
|
476
|
+
/* v8 ignore start -- defensive: catch for missing/corrupt BB runtime state file @preserve */
|
|
477
|
+
}
|
|
478
|
+
catch {
|
|
479
|
+
return { upstreamStatus: "unknown", detail: "startup health probe pending", pendingRecoveryCount: 0, failedRecoveryCount: 0 };
|
|
480
|
+
}
|
|
481
|
+
/* v8 ignore stop */
|
|
482
|
+
}
|
|
190
483
|
function readBlueBubblesRuntimeFacts(agent, bundlesRoot, snapshot) {
|
|
191
484
|
const agentRoot = path.join(bundlesRoot, `${agent}.ouro`);
|
|
192
485
|
const runtimePath = path.join(agentRoot, "state", "senses", "bluebubbles", "runtime.json");
|
|
193
486
|
if (!fs.existsSync(runtimePath)) {
|
|
194
487
|
return { runtime: snapshot?.runtime };
|
|
195
488
|
}
|
|
196
|
-
const state = (
|
|
489
|
+
const state = readBlueBubblesRuntimeJson(runtimePath);
|
|
490
|
+
const checkedAtMs = state.lastCheckedAt ? Date.parse(state.lastCheckedAt) : Number.NaN;
|
|
491
|
+
const proofFacts = {
|
|
492
|
+
proofMethod: state.proofMethod ?? "bluebubbles.checkHealth",
|
|
493
|
+
lastProofAt: state.lastCheckedAt,
|
|
494
|
+
proofAgeMs: Number.isFinite(checkedAtMs) ? Math.max(0, Date.now() - checkedAtMs) : undefined,
|
|
495
|
+
pendingRecoveryCount: state.pendingRecoveryCount,
|
|
496
|
+
failedRecoveryCount: state.failedRecoveryCount,
|
|
497
|
+
oldestPendingRecoveryAt: state.oldestPendingRecoveryAt,
|
|
498
|
+
oldestPendingRecoveryAgeMs: state.oldestPendingRecoveryAgeMs,
|
|
499
|
+
activeTurnCount: state.activeTurnCount,
|
|
500
|
+
stalledTurnCount: state.stalledTurnCount,
|
|
501
|
+
oldestActiveTurnStartedAt: state.oldestActiveTurnStartedAt,
|
|
502
|
+
oldestActiveTurnAgeMs: state.oldestActiveTurnAgeMs,
|
|
503
|
+
};
|
|
197
504
|
if (!blueBubblesRuntimeStateIsFresh(state.lastCheckedAt)) {
|
|
198
|
-
return {
|
|
505
|
+
return {
|
|
506
|
+
runtime: snapshot?.runtime,
|
|
507
|
+
lastFailure: state.lastCheckedAt ? "BlueBubbles proof is stale" : undefined,
|
|
508
|
+
failureLayer: state.lastCheckedAt ? "proof_freshness" : undefined,
|
|
509
|
+
};
|
|
510
|
+
}
|
|
511
|
+
if (snapshot?.runtime !== "running") {
|
|
512
|
+
return {
|
|
513
|
+
runtime: "error",
|
|
514
|
+
detail: "BlueBubbles listener is not running",
|
|
515
|
+
...proofFacts,
|
|
516
|
+
lastFailure: "listener process is not running",
|
|
517
|
+
failureLayer: "listener",
|
|
518
|
+
recoveryAction: "daemon process manager will restart the BlueBubbles listener after an unsolicited exit",
|
|
519
|
+
};
|
|
199
520
|
}
|
|
200
521
|
if (state.upstreamStatus === "error") {
|
|
201
522
|
return {
|
|
202
523
|
runtime: "error",
|
|
203
524
|
detail: state.detail,
|
|
525
|
+
...proofFacts,
|
|
526
|
+
lastFailure: state.detail,
|
|
527
|
+
failureLayer: "upstream",
|
|
528
|
+
recoveryAction: "verify BlueBubbles server/app auth and local machine attachment, then retry the listener",
|
|
529
|
+
};
|
|
530
|
+
}
|
|
531
|
+
if (state.pendingRecoveryCount > 0) {
|
|
532
|
+
return {
|
|
533
|
+
runtime: "error",
|
|
534
|
+
detail: state.detail,
|
|
535
|
+
...proofFacts,
|
|
536
|
+
lastFailure: state.detail,
|
|
537
|
+
failureLayer: "recovery_queue",
|
|
538
|
+
recoveryAction: "queued recovery will retry; inspect BlueBubbles inbound/recovery sidecar logs if age keeps growing",
|
|
539
|
+
};
|
|
540
|
+
}
|
|
541
|
+
if ((state.stalledTurnCount ?? 0) > 0) {
|
|
542
|
+
return {
|
|
543
|
+
runtime: "error",
|
|
544
|
+
detail: state.detail,
|
|
545
|
+
...proofFacts,
|
|
546
|
+
lastFailure: state.detail,
|
|
547
|
+
failureLayer: "live_turn_stall",
|
|
548
|
+
recoveryAction: "live iMessage turn timeout/watchdog will release the lane and recovery will retry captured messages",
|
|
204
549
|
};
|
|
205
550
|
}
|
|
206
551
|
if (state.upstreamStatus === "ok") {
|
|
207
|
-
return {
|
|
552
|
+
return {
|
|
553
|
+
runtime: "running",
|
|
554
|
+
...proofFacts,
|
|
555
|
+
...(state.failedRecoveryCount > 0 ? { detail: state.detail } : {}),
|
|
556
|
+
...(state.failedRecoveryCount > 0 ? {
|
|
557
|
+
lastFailure: state.detail,
|
|
558
|
+
failureLayer: "recovery_quarantine",
|
|
559
|
+
recoveryAction: "inspect quarantined BlueBubbles recovery failures; live transport remains reachable",
|
|
560
|
+
} : {}),
|
|
561
|
+
};
|
|
208
562
|
}
|
|
209
|
-
return { runtime: snapshot?.runtime };
|
|
563
|
+
return { runtime: snapshot?.runtime, ...proofFacts };
|
|
210
564
|
}
|
|
211
565
|
class DaemonSenseManager {
|
|
212
566
|
processManager;
|
|
213
567
|
contexts;
|
|
568
|
+
pendingConfigRefreshes = new Set();
|
|
569
|
+
configRefreshRetryTimers = new Map();
|
|
570
|
+
configRefreshRetryAttempts = new Map();
|
|
214
571
|
bundlesRoot;
|
|
215
572
|
constructor(options) {
|
|
216
573
|
const bundlesRoot = options.bundlesRoot ?? path.join(os.homedir(), "AgentBundles");
|
|
217
|
-
const secretsRoot = options.secretsRoot ?? path.join(os.homedir(), ".agentsecrets");
|
|
218
574
|
this.bundlesRoot = bundlesRoot;
|
|
219
575
|
this.contexts = new Map(options.agents.map((agent) => {
|
|
220
|
-
const senses = readAgentSenses(path.join(bundlesRoot, `${agent}.ouro`, "agent.json"));
|
|
221
|
-
const facts =
|
|
222
|
-
return [agent, { senses, facts }];
|
|
576
|
+
const { senses, workbenchHasStaleBundleEntry } = readAgentSenses(path.join(bundlesRoot, `${agent}.ouro`, "agent.json"));
|
|
577
|
+
const facts = senseFactsFromRuntimeConfig(agent, senses, (0, runtime_credentials_1.readRuntimeCredentialConfig)(agent), (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent), workbenchHasStaleBundleEntry);
|
|
578
|
+
return [agent, { senses, workbenchHasStaleBundleEntry, facts }];
|
|
223
579
|
}));
|
|
224
580
|
const managedSenseAgents = [...this.contexts.entries()].flatMap(([agent, context]) => {
|
|
225
|
-
return ["teams", "bluebubbles"]
|
|
226
|
-
.filter((sense) => context.senses[sense].enabled
|
|
581
|
+
return ["teams", "bluebubbles", "mail", "voice", "a2a", "telegram"]
|
|
582
|
+
.filter((sense) => context.senses[sense].enabled)
|
|
227
583
|
.map((sense) => ({
|
|
228
584
|
name: `${agent}:${sense}`,
|
|
229
585
|
agentArg: agent,
|
|
230
|
-
entry: sense
|
|
586
|
+
entry: managedSenseEntry(sense),
|
|
231
587
|
channel: sense,
|
|
232
588
|
autoStart: true,
|
|
589
|
+
...(sense === "a2a" ? { args: managedA2AArgs(agent), getArgs: () => managedA2AArgs(agent) } : {}),
|
|
590
|
+
getRuntimeCredentialBootstrap: () => runtimeCredentialBootstrapFor(agent, sense),
|
|
233
591
|
}));
|
|
234
592
|
});
|
|
235
593
|
this.processManager = options.processManager ?? new process_manager_1.DaemonProcessManager({
|
|
236
594
|
agents: managedSenseAgents,
|
|
595
|
+
configCheck: async (name) => {
|
|
596
|
+
const parsed = parseSenseSnapshotName(name);
|
|
597
|
+
if (!parsed)
|
|
598
|
+
return { ok: true };
|
|
599
|
+
const context = this.contexts.get(parsed.agent);
|
|
600
|
+
if (!context)
|
|
601
|
+
return { ok: true };
|
|
602
|
+
context.facts = senseFactsFromRuntimeConfig(parsed.agent, context.senses, (0, runtime_credentials_1.readRuntimeCredentialConfig)(parsed.agent), (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(parsed.agent), context.workbenchHasStaleBundleEntry);
|
|
603
|
+
const fact = context.facts[parsed.sense];
|
|
604
|
+
if (fact.configured)
|
|
605
|
+
return { ok: true };
|
|
606
|
+
this.scheduleSenseConfigRefresh(name, parsed);
|
|
607
|
+
if (fact.optional) {
|
|
608
|
+
return {
|
|
609
|
+
ok: false,
|
|
610
|
+
skip: true,
|
|
611
|
+
error: `${parsed.sense} is enabled for ${parsed.agent} but not attached on this machine`,
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
return {
|
|
615
|
+
ok: false,
|
|
616
|
+
skip: true,
|
|
617
|
+
error: `${parsed.sense} is enabled for ${parsed.agent} but runtime credentials are not ready: ${fact.detail}`,
|
|
618
|
+
fix: senseRepairHint(parsed.agent, parsed.sense),
|
|
619
|
+
};
|
|
620
|
+
},
|
|
237
621
|
});
|
|
238
622
|
(0, runtime_1.emitNervesEvent)({
|
|
239
623
|
component: "channels",
|
|
@@ -245,12 +629,231 @@ class DaemonSenseManager {
|
|
|
245
629
|
},
|
|
246
630
|
});
|
|
247
631
|
}
|
|
632
|
+
scheduleSenseConfigRefresh(name, parsed, delayMs = 0) {
|
|
633
|
+
if (this.pendingConfigRefreshes.has(name) || this.configRefreshRetryTimers.has(name))
|
|
634
|
+
return;
|
|
635
|
+
if (delayMs > 0) {
|
|
636
|
+
const timer = setTimeout(() => {
|
|
637
|
+
this.configRefreshRetryTimers.delete(name);
|
|
638
|
+
this.pendingConfigRefreshes.add(name);
|
|
639
|
+
void this.refreshSenseConfigAndRetry(name, parsed);
|
|
640
|
+
}, delayMs);
|
|
641
|
+
this.configRefreshRetryTimers.set(name, timer);
|
|
642
|
+
(0, runtime_1.emitNervesEvent)({
|
|
643
|
+
level: "warn",
|
|
644
|
+
component: "channels",
|
|
645
|
+
event: "channel.daemon_sense_config_retry_scheduled",
|
|
646
|
+
message: "scheduled managed sense config retry",
|
|
647
|
+
meta: {
|
|
648
|
+
agent: parsed.agent,
|
|
649
|
+
sense: parsed.sense,
|
|
650
|
+
managedName: name,
|
|
651
|
+
delayMs,
|
|
652
|
+
attempt: this.configRefreshRetryAttempts.get(name),
|
|
653
|
+
},
|
|
654
|
+
});
|
|
655
|
+
return;
|
|
656
|
+
}
|
|
657
|
+
this.pendingConfigRefreshes.add(name);
|
|
658
|
+
void this.refreshSenseConfigAndRetry(name, parsed);
|
|
659
|
+
}
|
|
660
|
+
nextConfigRetryDelayMs(name) {
|
|
661
|
+
const attempt = (this.configRefreshRetryAttempts.get(name) ?? 0) + 1;
|
|
662
|
+
this.configRefreshRetryAttempts.set(name, attempt);
|
|
663
|
+
return SENSE_CONFIG_RETRY_DELAYS_MS[Math.min(attempt - 1, SENSE_CONFIG_RETRY_DELAYS_MS.length - 1)];
|
|
664
|
+
}
|
|
665
|
+
clearConfigRetryState(name) {
|
|
666
|
+
clearTimeout(this.configRefreshRetryTimers.get(name));
|
|
667
|
+
this.configRefreshRetryTimers.delete(name);
|
|
668
|
+
this.configRefreshRetryAttempts.delete(name);
|
|
669
|
+
}
|
|
670
|
+
shouldRetryConfigRefresh(agent, sense, runtimeConfig, machineRuntimeConfig) {
|
|
671
|
+
if (!runtimeConfig.ok && runtimeConfig.reason === "unavailable")
|
|
672
|
+
return true;
|
|
673
|
+
if (needsMachineRuntimeConfig(agent, sense) &&
|
|
674
|
+
!machineRuntimeConfig.ok &&
|
|
675
|
+
machineRuntimeConfig.reason === "unavailable")
|
|
676
|
+
return true;
|
|
677
|
+
return false;
|
|
678
|
+
}
|
|
679
|
+
async refreshSenseConfigAndRetry(name, parsed) {
|
|
680
|
+
let retryAfterMs = null;
|
|
681
|
+
try {
|
|
682
|
+
const refreshed = await (0, runtime_credentials_1.refreshRuntimeCredentialConfig)(parsed.agent, { preserveCachedOnFailure: true });
|
|
683
|
+
const machineRefreshed = needsMachineRuntimeConfig(parsed.agent, parsed.sense)
|
|
684
|
+
? await (0, runtime_credentials_1.refreshMachineRuntimeCredentialConfig)(parsed.agent, currentMachineId(), { preserveCachedOnFailure: true })
|
|
685
|
+
: (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(parsed.agent);
|
|
686
|
+
const context = this.contexts.get(parsed.agent);
|
|
687
|
+
/* v8 ignore next -- defensive: config refreshes are only scheduled for known agent contexts @preserve */
|
|
688
|
+
if (!context)
|
|
689
|
+
return;
|
|
690
|
+
context.facts = senseFactsFromRuntimeConfig(parsed.agent, context.senses, refreshed, machineRefreshed, context.workbenchHasStaleBundleEntry);
|
|
691
|
+
if (!context.facts[parsed.sense].configured) {
|
|
692
|
+
if (this.shouldRetryConfigRefresh(parsed.agent, parsed.sense, refreshed, machineRefreshed)) {
|
|
693
|
+
retryAfterMs = this.nextConfigRetryDelayMs(name);
|
|
694
|
+
}
|
|
695
|
+
else {
|
|
696
|
+
this.clearConfigRetryState(name);
|
|
697
|
+
}
|
|
698
|
+
return;
|
|
699
|
+
}
|
|
700
|
+
this.clearConfigRetryState(name);
|
|
701
|
+
setTimeout(() => {
|
|
702
|
+
void this.processManager.startAgent?.(name).catch((error) => {
|
|
703
|
+
(0, runtime_1.emitNervesEvent)({
|
|
704
|
+
level: "error",
|
|
705
|
+
component: "channels",
|
|
706
|
+
event: "channel.daemon_sense_autostart_error",
|
|
707
|
+
message: "sense autostart failed",
|
|
708
|
+
/* v8 ignore next -- defensive: process manager rejects with Error instances in normal use @preserve */
|
|
709
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
710
|
+
});
|
|
711
|
+
});
|
|
712
|
+
}, 0);
|
|
713
|
+
}
|
|
714
|
+
catch (error) {
|
|
715
|
+
(0, runtime_1.emitNervesEvent)({
|
|
716
|
+
level: "error",
|
|
717
|
+
component: "channels",
|
|
718
|
+
event: "channel.daemon_sense_autostart_error",
|
|
719
|
+
message: "sense config refresh failed",
|
|
720
|
+
/* v8 ignore next -- defensive: runtime credential refresh rejects with Error instances in normal use @preserve */
|
|
721
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
722
|
+
});
|
|
723
|
+
}
|
|
724
|
+
finally {
|
|
725
|
+
this.pendingConfigRefreshes.delete(name);
|
|
726
|
+
if (retryAfterMs !== null) {
|
|
727
|
+
this.scheduleSenseConfigRefresh(name, parsed, retryAfterMs);
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
async refreshEnabledSenseConfigs() {
|
|
732
|
+
const refreshes = [...this.contexts.entries()].map(async ([agent, context]) => {
|
|
733
|
+
const enabledManagedSenses = ["teams", "bluebubbles", "mail", "voice", "a2a", "telegram"]
|
|
734
|
+
.filter((sense) => context.senses[sense].enabled);
|
|
735
|
+
/* v8 ignore next -- periodic refresh work only exists when a managed background sense is enabled @preserve */
|
|
736
|
+
if (enabledManagedSenses.length === 0)
|
|
737
|
+
return;
|
|
738
|
+
const runtimeConfig = await (0, runtime_credentials_1.refreshRuntimeCredentialConfig)(agent, { preserveCachedOnFailure: true });
|
|
739
|
+
const needsMachineConfig = enabledManagedSenses.some((sense) => needsMachineRuntimeConfig(agent, sense));
|
|
740
|
+
const machineRuntimeConfig = needsMachineConfig
|
|
741
|
+
? await (0, runtime_credentials_1.refreshMachineRuntimeCredentialConfig)(agent, currentMachineId(), { preserveCachedOnFailure: true })
|
|
742
|
+
: (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent);
|
|
743
|
+
context.facts = senseFactsFromRuntimeConfig(agent, context.senses, runtimeConfig, machineRuntimeConfig, context.workbenchHasStaleBundleEntry);
|
|
744
|
+
});
|
|
745
|
+
await Promise.all(refreshes);
|
|
746
|
+
}
|
|
248
747
|
async startAutoStartSenses() {
|
|
748
|
+
await this.refreshEnabledSenseConfigs();
|
|
249
749
|
await this.processManager.startAutoStartAgents();
|
|
250
750
|
}
|
|
751
|
+
triggerAutoStartSenses() {
|
|
752
|
+
void this.refreshEnabledSenseConfigs()
|
|
753
|
+
.catch((error) => {
|
|
754
|
+
(0, runtime_1.emitNervesEvent)({
|
|
755
|
+
level: "error",
|
|
756
|
+
component: "channels",
|
|
757
|
+
event: "channel.daemon_sense_autostart_error",
|
|
758
|
+
message: "sense config refresh failed",
|
|
759
|
+
meta: { error: error instanceof Error ? error.message : /* v8 ignore next -- defensive non-Error refresh rejection @preserve */ String(error) },
|
|
760
|
+
});
|
|
761
|
+
})
|
|
762
|
+
.then(() => {
|
|
763
|
+
if (this.processManager.triggerAutoStartAgents) {
|
|
764
|
+
this.processManager.triggerAutoStartAgents();
|
|
765
|
+
return;
|
|
766
|
+
}
|
|
767
|
+
void this.processManager.startAutoStartAgents().catch((error) => {
|
|
768
|
+
(0, runtime_1.emitNervesEvent)({
|
|
769
|
+
level: "error",
|
|
770
|
+
component: "channels",
|
|
771
|
+
event: "channel.daemon_sense_autostart_error",
|
|
772
|
+
message: "sense autostart failed",
|
|
773
|
+
meta: { error: error instanceof Error ? error.message : String(error) },
|
|
774
|
+
});
|
|
775
|
+
});
|
|
776
|
+
});
|
|
777
|
+
}
|
|
251
778
|
async stopAll() {
|
|
779
|
+
for (const timer of this.configRefreshRetryTimers.values()) {
|
|
780
|
+
clearTimeout(timer);
|
|
781
|
+
}
|
|
782
|
+
this.configRefreshRetryTimers.clear();
|
|
783
|
+
this.configRefreshRetryAttempts.clear();
|
|
252
784
|
await this.processManager.stopAll();
|
|
253
785
|
}
|
|
786
|
+
/* v8 ignore start -- pid collection for orphan cleanup pidfile @preserve */
|
|
787
|
+
listManagedPids() {
|
|
788
|
+
return this.processManager.listAgentSnapshots()
|
|
789
|
+
.map((s) => s.pid)
|
|
790
|
+
.filter((pid) => pid !== null && pid !== undefined);
|
|
791
|
+
}
|
|
792
|
+
/* v8 ignore stop */
|
|
793
|
+
listHealthProbes() {
|
|
794
|
+
const probes = [];
|
|
795
|
+
for (const [agent, context] of this.contexts.entries()) {
|
|
796
|
+
const runtimeConfig = (0, runtime_credentials_1.readRuntimeCredentialConfig)(agent);
|
|
797
|
+
const machineRuntimeConfig = (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent);
|
|
798
|
+
context.facts = senseFactsFromRuntimeConfig(agent, context.senses, runtimeConfig, machineRuntimeConfig, context.workbenchHasStaleBundleEntry);
|
|
799
|
+
if (!context.senses.bluebubbles.enabled || !context.facts.bluebubbles.configured || !machineRuntimeConfig.ok) {
|
|
800
|
+
continue;
|
|
801
|
+
}
|
|
802
|
+
// DELIBERATELY no HTTP health probe for BlueBubbles.
|
|
803
|
+
//
|
|
804
|
+
// We used to register `createHttpHealthProbe(...)` here, which GETs the
|
|
805
|
+
// sense's /health endpoint every ~60s with a 5s timeout. On 2026-05-11
|
|
806
|
+
// that caused a death spiral:
|
|
807
|
+
// 1. Sense gets busy with real work (e.g. VLM image describe → 20+s)
|
|
808
|
+
// 2. /health probe times out at 5s
|
|
809
|
+
// 3. Daemon declares the sense "critical" → SIGTERMs it mid-work
|
|
810
|
+
// 4. Sense respawns, recovery loop replays the same inbound message
|
|
811
|
+
// into the agent's BB session (visible side-effect — an affected
|
|
812
|
+
// agent saw the same user text injected 76 times)
|
|
813
|
+
// 5. New sense hits the same VLM call, gets killed at 5s, repeat
|
|
814
|
+
//
|
|
815
|
+
// The probe was redundant supervision: dead processes are already
|
|
816
|
+
// recaptured by `processManager`'s child-process exit handler. The
|
|
817
|
+
// probe specifically caught "alive but hung" cases — but the cost
|
|
818
|
+
// (killing genuinely-busy processes and replaying messages) far
|
|
819
|
+
// outweighed the benefit. For "alive but hung" detection we now
|
|
820
|
+
// rely on the agent's own awareness: BB sense's runtime.json carries
|
|
821
|
+
// pendingRecoveryCount + lastRecoveredAt, surfaced in the agent
|
|
822
|
+
// prompt. If recovery has been wedged for too long, the agent can
|
|
823
|
+
// call `restart_runtime` itself (see alpha.598 / PR #723).
|
|
824
|
+
//
|
|
825
|
+
// The respawn-loop guard in processManager is the backstop: even if
|
|
826
|
+
// something else triggers a tight respawn cycle for any reason, the
|
|
827
|
+
// guard fires and refuses further restarts after N attempts in M
|
|
828
|
+
// minutes, so we can never re-enter the 2026-05-11 spiral.
|
|
829
|
+
}
|
|
830
|
+
return probes;
|
|
831
|
+
}
|
|
832
|
+
async restartSense(managedName) {
|
|
833
|
+
if (this.processManager.restartAgent) {
|
|
834
|
+
await this.processManager.restartAgent(managedName);
|
|
835
|
+
return;
|
|
836
|
+
}
|
|
837
|
+
await this.processManager.startAgent?.(managedName);
|
|
838
|
+
}
|
|
839
|
+
async reviveSense(agent, sense) {
|
|
840
|
+
const parsed = parseSenseSnapshotName(`${agent}:${sense}`);
|
|
841
|
+
if (!parsed)
|
|
842
|
+
return null;
|
|
843
|
+
const context = this.contexts.get(parsed.agent);
|
|
844
|
+
if (!context || !context.senses[parsed.sense].enabled)
|
|
845
|
+
return null;
|
|
846
|
+
const managedName = `${parsed.agent}:${parsed.sense}`;
|
|
847
|
+
const runtimeConfig = await (0, runtime_credentials_1.refreshRuntimeCredentialConfig)(parsed.agent, { preserveCachedOnFailure: true });
|
|
848
|
+
const needsMachineConfig = needsMachineRuntimeConfig(parsed.agent, parsed.sense);
|
|
849
|
+
const machineRuntimeConfig = needsMachineConfig
|
|
850
|
+
? await (0, runtime_credentials_1.refreshMachineRuntimeCredentialConfig)(parsed.agent, currentMachineId(), { preserveCachedOnFailure: true })
|
|
851
|
+
: (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(parsed.agent);
|
|
852
|
+
context.facts = senseFactsFromRuntimeConfig(parsed.agent, context.senses, runtimeConfig, machineRuntimeConfig, context.workbenchHasStaleBundleEntry);
|
|
853
|
+
this.processManager.resetAgentFailureState?.(managedName);
|
|
854
|
+
await this.processManager.startAgent?.(managedName);
|
|
855
|
+
return this.listSenseRows().find((row) => row.agent === parsed.agent && row.sense === parsed.sense) ?? null;
|
|
856
|
+
}
|
|
254
857
|
listSenseRows() {
|
|
255
858
|
const runtime = new Map();
|
|
256
859
|
for (const snapshot of this.processManager.listAgentSnapshots()) {
|
|
@@ -262,16 +865,44 @@ class DaemonSenseManager {
|
|
|
262
865
|
runtime.set(parsed.agent, current);
|
|
263
866
|
}
|
|
264
867
|
const rows = [...this.contexts.entries()].flatMap(([agent, context]) => {
|
|
868
|
+
context.facts = senseFactsFromRuntimeConfig(agent, context.senses, (0, runtime_credentials_1.readRuntimeCredentialConfig)(agent), (0, runtime_credentials_1.readMachineRuntimeCredentialConfig)(agent), context.workbenchHasStaleBundleEntry);
|
|
265
869
|
const blueBubblesRuntimeFacts = readBlueBubblesRuntimeFacts(agent, this.bundlesRoot, runtime.get(agent)?.bluebubbles);
|
|
870
|
+
const blueBubblesConfigured = context.facts.bluebubbles.configured;
|
|
266
871
|
const runtimeInfo = {
|
|
267
872
|
cli: { configured: true },
|
|
268
873
|
teams: {
|
|
269
874
|
configured: context.facts.teams.configured,
|
|
270
875
|
...(runtime.get(agent)?.teams ?? {}),
|
|
271
876
|
},
|
|
272
|
-
bluebubbles:
|
|
273
|
-
|
|
274
|
-
|
|
877
|
+
bluebubbles: blueBubblesConfigured
|
|
878
|
+
? {
|
|
879
|
+
configured: true,
|
|
880
|
+
optional: context.facts.bluebubbles.optional,
|
|
881
|
+
...blueBubblesRuntimeFacts,
|
|
882
|
+
}
|
|
883
|
+
: {
|
|
884
|
+
configured: false,
|
|
885
|
+
optional: context.facts.bluebubbles.optional,
|
|
886
|
+
},
|
|
887
|
+
mail: {
|
|
888
|
+
configured: context.facts.mail.configured,
|
|
889
|
+
...(runtime.get(agent)?.mail ?? {}),
|
|
890
|
+
},
|
|
891
|
+
voice: {
|
|
892
|
+
configured: context.facts.voice.configured,
|
|
893
|
+
optional: context.facts.voice.optional,
|
|
894
|
+
...(runtime.get(agent)?.voice ?? {}),
|
|
895
|
+
},
|
|
896
|
+
a2a: {
|
|
897
|
+
configured: context.facts.a2a.configured,
|
|
898
|
+
...(runtime.get(agent)?.a2a ?? {}),
|
|
899
|
+
},
|
|
900
|
+
telegram: {
|
|
901
|
+
configured: context.facts.telegram.configured,
|
|
902
|
+
...(runtime.get(agent)?.telegram ?? {}),
|
|
903
|
+
},
|
|
904
|
+
workbench: {
|
|
905
|
+
configured: context.facts.workbench.configured,
|
|
275
906
|
},
|
|
276
907
|
};
|
|
277
908
|
const inventory = (0, sense_truth_1.getSenseInventory)({ senses: context.senses }, runtimeInfo);
|
|
@@ -283,10 +914,30 @@ class DaemonSenseManager {
|
|
|
283
914
|
status: entry.status,
|
|
284
915
|
detail: entry.enabled
|
|
285
916
|
? entry.sense === "bluebubbles"
|
|
286
|
-
?
|
|
287
|
-
|
|
917
|
+
? blueBubblesConfigured
|
|
918
|
+
? blueBubblesRuntimeFacts.detail
|
|
919
|
+
?? context.facts[entry.sense].detail
|
|
920
|
+
: context.facts[entry.sense].detail
|
|
288
921
|
: context.facts[entry.sense].detail
|
|
289
|
-
:
|
|
922
|
+
: entry.sense === "workbench"
|
|
923
|
+
? WORKBENCH_RUNTIME_INJECTION_DETAIL
|
|
924
|
+
: "not enabled in agent.json",
|
|
925
|
+
...(entry.sense === "bluebubbles" && blueBubblesConfigured ? {
|
|
926
|
+
proofMethod: blueBubblesRuntimeFacts.proofMethod,
|
|
927
|
+
lastProofAt: blueBubblesRuntimeFacts.lastProofAt,
|
|
928
|
+
proofAgeMs: blueBubblesRuntimeFacts.proofAgeMs,
|
|
929
|
+
lastFailure: blueBubblesRuntimeFacts.lastFailure,
|
|
930
|
+
failureLayer: blueBubblesRuntimeFacts.failureLayer,
|
|
931
|
+
recoveryAction: blueBubblesRuntimeFacts.recoveryAction,
|
|
932
|
+
pendingRecoveryCount: blueBubblesRuntimeFacts.pendingRecoveryCount,
|
|
933
|
+
failedRecoveryCount: blueBubblesRuntimeFacts.failedRecoveryCount,
|
|
934
|
+
oldestPendingRecoveryAt: blueBubblesRuntimeFacts.oldestPendingRecoveryAt,
|
|
935
|
+
oldestPendingRecoveryAgeMs: blueBubblesRuntimeFacts.oldestPendingRecoveryAgeMs,
|
|
936
|
+
activeTurnCount: blueBubblesRuntimeFacts.activeTurnCount,
|
|
937
|
+
stalledTurnCount: blueBubblesRuntimeFacts.stalledTurnCount,
|
|
938
|
+
oldestActiveTurnStartedAt: blueBubblesRuntimeFacts.oldestActiveTurnStartedAt,
|
|
939
|
+
oldestActiveTurnAgeMs: blueBubblesRuntimeFacts.oldestActiveTurnAgeMs,
|
|
940
|
+
} : {}),
|
|
290
941
|
}));
|
|
291
942
|
});
|
|
292
943
|
(0, runtime_1.emitNervesEvent)({
|