@ouro.bot/cli 0.1.0-alpha.78 → 0.1.0-alpha.780
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/changelog.json +4994 -17
- package/deploy/unraid/Dockerfile +48 -0
- package/deploy/unraid/README.txt +2523 -0
- package/deploy/unraid/audit-container-spec.sh +4 -0
- package/deploy/unraid/container-runtime.json +1 -0
- package/deploy/unraid/migrate-sanctuary-bundle.mjs +21 -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-deployment-target.mjs +709 -0
- package/deploy/unraid/sanctuary-safe-rename.py +24 -0
- package/deploy/unraid/sanctuary-unit16-host-broker.mjs +2030 -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 +24 -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/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 +9 -0
- package/deploy/unraid/sanctuary.ouro/psyche/SOUL.md +9 -0
- package/deploy/unraid/sanctuary.ouro/psyche/TACIT.md +10 -0
- package/deploy/unraid/sanctuary.ouro/state/policy/steward.json +7 -0
- package/deploy/unraid/sanctuary.ouro/tool-profiles.json +23 -0
- package/deploy/unraid/sanctuary.xml +27 -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 +820 -29
- package/dist/heart/agent-entry.js +253 -3
- package/dist/heart/approval-files.js +113 -0
- package/dist/heart/approval-store.js +950 -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 +100 -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 +64 -18
- package/dist/heart/config-registry.js +331 -0
- package/dist/heart/config.js +128 -129
- package/dist/heart/context-loss-gauntlet.js +387 -0
- package/dist/heart/context-loss-sentinel.js +1157 -0
- package/dist/heart/core.js +2014 -469
- 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 +836 -0
- package/dist/heart/daemon/cli-desk.js +322 -0
- package/dist/heart/daemon/cli-exec.js +8730 -0
- package/dist/heart/daemon/cli-help.js +710 -0
- package/dist/heart/daemon/cli-parse.js +2719 -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 +96 -0
- package/dist/heart/daemon/container-runtime.js +97 -0
- package/dist/heart/daemon/container-spec-auditor-main.js +160 -0
- package/dist/heart/daemon/container-spec-auditor.js +176 -0
- package/dist/heart/daemon/daemon-bootstrap-startup.js +77 -0
- package/dist/heart/daemon/daemon-cli.js +29 -2181
- package/dist/heart/daemon/daemon-entry.js +907 -10
- 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 +1988 -88
- 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 +45 -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 +2609 -0
- package/dist/heart/daemon/sanctuary-acceptance-harness.js +1866 -0
- package/dist/heart/daemon/sanctuary-acceptance-marker.js +267 -0
- package/dist/heart/daemon/sanctuary-acceptance-scenarios.js +976 -0
- package/dist/heart/daemon/sanctuary-bundle-migration.js +398 -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/sense-manager.js +689 -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 +1414 -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 +184 -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 +353 -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 +116 -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 +232 -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 +228 -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 +90 -24
- package/dist/heart/session-events.js +1318 -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 +372 -0
- package/dist/heart/steward-policy.js +302 -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 +342 -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 +481 -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-Du_9G9WO.css +1 -0
- package/dist/mailbox-ui/assets/index-J8zDwHmE.js +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 +278 -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 +227 -0
- package/dist/mind/pending.js +34 -8
- package/dist/mind/prompt-budget.js +479 -0
- package/dist/mind/prompt-refresh.js +3 -2
- package/dist/mind/prompt.js +1058 -187
- 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 +415 -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 +218 -30
- package/dist/repertoire/coding/index.js +15 -3
- package/dist/repertoire/coding/manager.js +166 -10
- package/dist/repertoire/coding/spawner.js +58 -11
- package/dist/repertoire/coding/tools.js +242 -14
- 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 +813 -18
- package/dist/repertoire/mcp-client.js +44 -3
- package/dist/repertoire/mcp-manager.js +259 -20
- 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/relationship-authorization.js +194 -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-arguments.js +143 -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 +82 -1139
- 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 +574 -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-session.js +1096 -0
- package/dist/repertoire/tools-shell.js +133 -0
- package/dist/repertoire/tools-steward-policy.js +95 -0
- package/dist/repertoire/tools-stripe.js +224 -0
- package/dist/repertoire/tools-surface.js +355 -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 +459 -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 +377 -80
- package/dist/repertoire/travel-api-client.js +360 -0
- package/dist/repertoire/unraid-client.js +155 -0
- package/dist/repertoire/unraid-restart.js +212 -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/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 +3839 -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 +600 -317
- 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 +1081 -204
- package/dist/senses/private-runtime-worker.js +859 -0
- package/dist/senses/private-runtime.js +1496 -0
- package/dist/senses/proactive-content-guard.js +51 -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 +101 -0
- package/dist/senses/sanctuary-health.js +408 -0
- package/dist/senses/sanctuary-interactive-control.js +306 -0
- package/dist/senses/sanctuary-media-optimization.js +436 -0
- package/dist/senses/sanctuary-runtime.js +330 -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 +488 -0
- package/dist/senses/surface-tool.js +109 -0
- package/dist/senses/teams-entry.js +60 -8
- package/dist/senses/teams.js +515 -217
- package/dist/senses/telegram-admission.js +711 -0
- package/dist/senses/telegram-approval-runtime.js +566 -0
- package/dist/senses/telegram-attachments.js +182 -0
- package/dist/senses/telegram-audit-ledger.js +220 -0
- package/dist/senses/telegram-client.js +1676 -0
- package/dist/senses/telegram-effect-adapter.js +796 -0
- package/dist/senses/telegram-entry.js +83 -0
- package/dist/senses/telegram.js +2018 -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 +5081 -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 +8144 -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 -178
- package/dist/heart/daemon/update-hooks.js +0 -138
- package/dist/heart/obligations.js +0 -141
- 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
package/dist/heart/core.js
CHANGED
|
@@ -1,85 +1,150 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.MAX_PROVIDER_ITERATIONS = void 0;
|
|
4
|
+
exports.validateToolCallBatchAtProductionBoundary = validateToolCallBatchAtProductionBoundary;
|
|
4
5
|
exports.createProviderRegistry = createProviderRegistry;
|
|
5
6
|
exports.resetProviderRuntime = resetProviderRuntime;
|
|
6
7
|
exports.getModel = getModel;
|
|
7
8
|
exports.getProvider = getProvider;
|
|
8
9
|
exports.createSummarize = createSummarize;
|
|
9
10
|
exports.getProviderDisplayLabel = getProviderDisplayLabel;
|
|
10
|
-
exports.
|
|
11
|
+
exports.createHabitCallbackBuffer = createHabitCallbackBuffer;
|
|
12
|
+
exports.resumeApprovalContinuation = resumeApprovalContinuation;
|
|
13
|
+
exports.isChatStyleChannel = isChatStyleChannel;
|
|
14
|
+
exports.buildPonderResult = buildPonderResult;
|
|
15
|
+
exports.isExternalStateQuery = isExternalStateQuery;
|
|
16
|
+
exports.getSettleRetryError = getSettleRetryError;
|
|
11
17
|
exports.stripLastToolCalls = stripLastToolCalls;
|
|
12
18
|
exports.repairOrphanedToolCalls = repairOrphanedToolCalls;
|
|
13
|
-
exports.isTransientError = isTransientError;
|
|
14
|
-
exports.classifyTransientError = classifyTransientError;
|
|
15
19
|
exports.runAgent = runAgent;
|
|
16
20
|
const config_1 = require("./config");
|
|
17
21
|
const identity_1 = require("./identity");
|
|
18
22
|
const tools_1 = require("../repertoire/tools");
|
|
19
|
-
const
|
|
23
|
+
const tool_arguments_1 = require("../repertoire/tool-arguments");
|
|
24
|
+
const session_events_1 = require("./session-events");
|
|
25
|
+
const friends_1 = require("@ouro.bot/friends");
|
|
26
|
+
const tools_2 = require("../repertoire/tools");
|
|
27
|
+
const streaming_1 = require("./streaming");
|
|
20
28
|
const runtime_1 = require("../nerves/runtime");
|
|
29
|
+
function validateToolCallBatchAtProductionBoundary(calls, activeTools) {
|
|
30
|
+
const callIdCounts = new Map();
|
|
31
|
+
for (const call of calls)
|
|
32
|
+
callIdCounts.set(call.id, (callIdCounts.get(call.id) ?? 0) + 1);
|
|
33
|
+
return calls.map((call) => {
|
|
34
|
+
if (callIdCounts.get(call.id) !== 1)
|
|
35
|
+
return { call, error: "duplicate tool call id" };
|
|
36
|
+
const advertised = activeTools.find((tool) => tool.function.name === call.name);
|
|
37
|
+
if (!advertised || !advertised.function.parameters || typeof advertised.function.parameters !== "object")
|
|
38
|
+
return { call, error: "tool was not advertised with a valid argument schema" };
|
|
39
|
+
const validated = (0, tool_arguments_1.validateAdvertisedToolArguments)(call.arguments, advertised.function.parameters);
|
|
40
|
+
return validated.ok ? { call, advertised, validated: validated.value } : { call, error: validated.reason };
|
|
41
|
+
});
|
|
42
|
+
}
|
|
21
43
|
const context_1 = require("../mind/context");
|
|
44
|
+
const prompt_budget_1 = require("../mind/prompt-budget");
|
|
22
45
|
const prompt_1 = require("../mind/prompt");
|
|
23
|
-
const
|
|
46
|
+
const kept_notes_1 = require("./kept-notes");
|
|
47
|
+
const error_classification_1 = require("./providers/error-classification");
|
|
24
48
|
const anthropic_1 = require("./providers/anthropic");
|
|
25
49
|
const azure_1 = require("./providers/azure");
|
|
26
50
|
const minimax_1 = require("./providers/minimax");
|
|
27
51
|
const openai_codex_1 = require("./providers/openai-codex");
|
|
28
52
|
const github_copilot_1 = require("./providers/github-copilot");
|
|
29
|
-
const
|
|
53
|
+
const openai_compatible_1 = require("./providers/openai-compatible");
|
|
54
|
+
const orientation_frame_1 = require("./orientation-frame");
|
|
30
55
|
const identity_2 = require("./identity");
|
|
31
56
|
const socket_client_1 = require("./daemon/socket-client");
|
|
32
|
-
const obligations_1 = require("
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
const obligations_1 = require("../arc/obligations");
|
|
58
|
+
const tool_loop_1 = require("./tool-loop");
|
|
59
|
+
const packets_1 = require("../arc/packets");
|
|
60
|
+
const tool_friction_1 = require("./tool-friction");
|
|
61
|
+
const provider_models_1 = require("./provider-models");
|
|
62
|
+
const provider_credentials_1 = require("./provider-credentials");
|
|
63
|
+
const habit_session_1 = require("./habits/habit-session");
|
|
64
|
+
const provider_attempt_1 = require("./provider-attempt");
|
|
65
|
+
const openai_codex_token_1 = require("./providers/openai-codex-token");
|
|
66
|
+
// Cache only immutable provider construction inputs. ProviderRuntime owns
|
|
67
|
+
// mutable per-turn state (for example Responses nativeInput), so every caller
|
|
68
|
+
// must receive a fresh instance even when its binding fingerprint is unchanged.
|
|
69
|
+
const _providerRuntimeFactories = {
|
|
70
|
+
human: null,
|
|
71
|
+
agent: null,
|
|
72
|
+
};
|
|
73
|
+
function providerLaneForFacing(facing) {
|
|
74
|
+
return facing === "human" ? "outward" : "inner";
|
|
75
|
+
}
|
|
76
|
+
function resolveRuntimeProviderBinding(facing) {
|
|
77
|
+
const lane = providerLaneForFacing(facing);
|
|
78
|
+
const config = (0, identity_1.loadAgentConfig)();
|
|
79
|
+
const facingConfig = facing === "human" ? config.humanFacing : config.agentFacing;
|
|
80
|
+
return { lane, provider: facingConfig.provider, model: facingConfig.model };
|
|
81
|
+
}
|
|
82
|
+
async function getProviderRuntimeFingerprint(facing) {
|
|
83
|
+
const agentName = (0, identity_2.getAgentName)();
|
|
84
|
+
const binding = resolveRuntimeProviderBinding(facing);
|
|
85
|
+
const credential = await (0, provider_credentials_1.readProviderCredentialRecord)(agentName, binding.provider);
|
|
86
|
+
if (!credential.ok) {
|
|
87
|
+
throw new Error([
|
|
88
|
+
`${binding.lane} provider ${binding.provider} (${binding.model}) has no credentials for ${agentName}.`,
|
|
89
|
+
credential.error,
|
|
90
|
+
`Run \`ouro auth --agent ${agentName} --provider ${binding.provider}\`.`,
|
|
91
|
+
].join("\n"));
|
|
92
|
+
}
|
|
93
|
+
let record = credential.record;
|
|
94
|
+
if (binding.provider === "openai-codex") {
|
|
95
|
+
const refresh = await (0, openai_codex_token_1.refreshOpenAICodexProviderCredentials)(agentName, {
|
|
96
|
+
record,
|
|
97
|
+
reason: "runtime-init",
|
|
98
|
+
});
|
|
99
|
+
if (refresh.ok) {
|
|
100
|
+
record = refresh.record;
|
|
58
101
|
}
|
|
59
|
-
/* v8 ignore stop */
|
|
60
102
|
}
|
|
103
|
+
return {
|
|
104
|
+
binding,
|
|
105
|
+
fingerprint: JSON.stringify({
|
|
106
|
+
lane: binding.lane,
|
|
107
|
+
provider: binding.provider,
|
|
108
|
+
model: binding.model,
|
|
109
|
+
credentialRevision: record.revision,
|
|
110
|
+
}),
|
|
111
|
+
credential: record,
|
|
112
|
+
};
|
|
61
113
|
}
|
|
62
114
|
function createProviderRegistry() {
|
|
63
|
-
const factories = {
|
|
64
|
-
azure: azure_1.createAzureProviderRuntime,
|
|
65
|
-
anthropic: anthropic_1.createAnthropicProviderRuntime,
|
|
66
|
-
minimax: minimax_1.createMinimaxProviderRuntime,
|
|
67
|
-
"openai-codex": openai_codex_1.createOpenAICodexProviderRuntime,
|
|
68
|
-
"github-copilot": github_copilot_1.createGithubCopilotProviderRuntime,
|
|
69
|
-
};
|
|
70
115
|
return {
|
|
71
|
-
resolve() {
|
|
72
|
-
const
|
|
73
|
-
|
|
116
|
+
resolve(provider, model, credential) {
|
|
117
|
+
const providerConfig = { ...credential.config, ...credential.credentials };
|
|
118
|
+
switch (provider) {
|
|
119
|
+
case "azure":
|
|
120
|
+
return (0, azure_1.createAzureProviderRuntime)(model, providerConfig);
|
|
121
|
+
case "anthropic":
|
|
122
|
+
return (0, anthropic_1.createAnthropicProviderRuntime)(model, providerConfig);
|
|
123
|
+
case "minimax":
|
|
124
|
+
return (0, minimax_1.createMinimaxProviderRuntime)(model, providerConfig);
|
|
125
|
+
case "openai-codex":
|
|
126
|
+
return (0, openai_codex_1.createOpenAICodexProviderRuntime)(model, providerConfig);
|
|
127
|
+
case "github-copilot":
|
|
128
|
+
return (0, github_copilot_1.createGithubCopilotProviderRuntime)(model, providerConfig);
|
|
129
|
+
case "openai-compatible":
|
|
130
|
+
case "openai-compatible-gemini":
|
|
131
|
+
return (0, openai_compatible_1.createOpenAICompatibleProviderRuntime)(provider, model, providerConfig);
|
|
132
|
+
}
|
|
74
133
|
},
|
|
75
134
|
};
|
|
76
135
|
}
|
|
77
|
-
function getProviderRuntime() {
|
|
136
|
+
async function getProviderRuntime(facing = "human") {
|
|
137
|
+
let runtime = null;
|
|
78
138
|
try {
|
|
79
|
-
const fingerprint = getProviderRuntimeFingerprint();
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
139
|
+
const { binding, fingerprint, credential } = await getProviderRuntimeFingerprint(facing);
|
|
140
|
+
const cached = _providerRuntimeFactories[facing];
|
|
141
|
+
if (!cached || cached.fingerprint !== fingerprint) {
|
|
142
|
+
const create = () => createProviderRegistry().resolve(binding.provider, binding.model, credential);
|
|
143
|
+
runtime = create();
|
|
144
|
+
_providerRuntimeFactories[facing] = runtime ? { fingerprint, create } : null;
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
147
|
+
runtime = cached.create();
|
|
83
148
|
}
|
|
84
149
|
}
|
|
85
150
|
catch (error) {
|
|
@@ -89,43 +154,45 @@ function getProviderRuntime() {
|
|
|
89
154
|
event: "engine.provider_init_error",
|
|
90
155
|
component: "engine",
|
|
91
156
|
message: msg,
|
|
92
|
-
meta: {},
|
|
157
|
+
meta: { facing },
|
|
93
158
|
});
|
|
94
159
|
// eslint-disable-next-line no-console -- pre-boot guard: provider init failure
|
|
95
160
|
console.error(`\n[fatal] ${msg}\n`);
|
|
96
|
-
|
|
97
|
-
throw new Error("unreachable");
|
|
161
|
+
throw error instanceof Error ? error : new Error(msg);
|
|
98
162
|
}
|
|
99
|
-
if (!
|
|
163
|
+
if (!runtime) {
|
|
164
|
+
const msg = "provider runtime could not be initialized.";
|
|
100
165
|
(0, runtime_1.emitNervesEvent)({
|
|
101
166
|
level: "error",
|
|
102
167
|
event: "engine.provider_init_error",
|
|
103
168
|
component: "engine",
|
|
104
|
-
message:
|
|
105
|
-
meta: {},
|
|
169
|
+
message: msg,
|
|
170
|
+
meta: { facing },
|
|
106
171
|
});
|
|
107
|
-
|
|
108
|
-
|
|
172
|
+
// eslint-disable-next-line no-console -- pre-boot guard: provider init failure
|
|
173
|
+
console.error(`\n[fatal] ${msg}\n`);
|
|
174
|
+
throw new Error(msg);
|
|
109
175
|
}
|
|
110
|
-
return
|
|
176
|
+
return runtime;
|
|
111
177
|
}
|
|
112
178
|
/**
|
|
113
|
-
* Clear
|
|
114
|
-
* current config. Runtime
|
|
115
|
-
*
|
|
179
|
+
* Clear cached provider construction inputs so the next access re-reads them
|
|
180
|
+
* from current config. Runtime instances are always per-caller and are never
|
|
181
|
+
* shared across turns.
|
|
116
182
|
*/
|
|
117
183
|
function resetProviderRuntime() {
|
|
118
|
-
|
|
184
|
+
_providerRuntimeFactories.human = null;
|
|
185
|
+
_providerRuntimeFactories.agent = null;
|
|
119
186
|
}
|
|
120
|
-
function getModel() {
|
|
121
|
-
return
|
|
187
|
+
function getModel(facing = "human") {
|
|
188
|
+
return resolveRuntimeProviderBinding(facing).model;
|
|
122
189
|
}
|
|
123
|
-
function getProvider() {
|
|
124
|
-
return
|
|
190
|
+
function getProvider(facing = "human") {
|
|
191
|
+
return resolveRuntimeProviderBinding(facing).provider;
|
|
125
192
|
}
|
|
126
|
-
function createSummarize() {
|
|
193
|
+
function createSummarize(facing = "human") {
|
|
127
194
|
return async (transcript, instruction) => {
|
|
128
|
-
const runtime = getProviderRuntime();
|
|
195
|
+
const runtime = await getProviderRuntime(facing);
|
|
129
196
|
const client = runtime.client;
|
|
130
197
|
const response = await client.chat.completions.create({
|
|
131
198
|
model: runtime.model,
|
|
@@ -138,137 +205,590 @@ function createSummarize() {
|
|
|
138
205
|
return response.choices?.[0]?.message?.content ?? transcript;
|
|
139
206
|
};
|
|
140
207
|
}
|
|
141
|
-
function getProviderDisplayLabel() {
|
|
142
|
-
const
|
|
208
|
+
function getProviderDisplayLabel(facing = "human") {
|
|
209
|
+
const binding = resolveRuntimeProviderBinding(facing);
|
|
210
|
+
const provider = binding.provider;
|
|
211
|
+
const model = binding.model || "unknown";
|
|
143
212
|
const providerLabelBuilders = {
|
|
144
213
|
azure: () => {
|
|
145
|
-
|
|
146
|
-
return `azure openai (${config.deployment || "default"}, model: ${config.modelName || "unknown"})`;
|
|
214
|
+
return `azure openai (model: ${model})`;
|
|
147
215
|
},
|
|
148
|
-
anthropic: () => `anthropic (${
|
|
149
|
-
minimax: () => `minimax (${
|
|
150
|
-
"openai-codex": () => `openai codex (${
|
|
216
|
+
anthropic: () => `anthropic (${model})`,
|
|
217
|
+
minimax: () => `minimax (${model})`,
|
|
218
|
+
"openai-codex": () => `openai codex (${model})`,
|
|
151
219
|
/* v8 ignore next -- branch: tested via display label unit test @preserve */
|
|
152
|
-
"github-copilot": () => `github copilot (${
|
|
220
|
+
"github-copilot": () => `github copilot (${model})`,
|
|
221
|
+
"openai-compatible": () => `z.ai openai-compatible (${model})`,
|
|
222
|
+
"openai-compatible-gemini": () => `gemini openai-compatible (${model})`,
|
|
153
223
|
};
|
|
154
224
|
return providerLabelBuilders[provider]();
|
|
155
225
|
}
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
const
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
226
|
+
function createCallbackBuffer(callbacks, mode) {
|
|
227
|
+
const events = [];
|
|
228
|
+
const bufferedCallbacks = {
|
|
229
|
+
...callbacks,
|
|
230
|
+
onTextChunk: (text) => { events.push({ kind: "text", text }); },
|
|
231
|
+
onClearText: () => { events.push({ kind: "clear" }); },
|
|
232
|
+
flushNow: () => { events.push({ kind: "flush" }); },
|
|
233
|
+
};
|
|
234
|
+
if (mode === "all") {
|
|
235
|
+
bufferedCallbacks.onModelStreamStart = () => { events.push({ kind: "stream-start" }); };
|
|
236
|
+
bufferedCallbacks.onReasoningChunk = (text) => { events.push({ kind: "reasoning", text }); };
|
|
237
|
+
}
|
|
238
|
+
return {
|
|
239
|
+
callbacks: bufferedCallbacks,
|
|
240
|
+
async flush() {
|
|
241
|
+
for (const event of events.splice(0)) {
|
|
242
|
+
switch (event.kind) {
|
|
243
|
+
case "stream-start":
|
|
244
|
+
callbacks.onModelStreamStart();
|
|
245
|
+
break;
|
|
246
|
+
case "text":
|
|
247
|
+
callbacks.onTextChunk(event.text);
|
|
248
|
+
break;
|
|
249
|
+
case "reasoning":
|
|
250
|
+
callbacks.onReasoningChunk(event.text);
|
|
251
|
+
break;
|
|
252
|
+
case "clear":
|
|
253
|
+
callbacks.onClearText?.();
|
|
254
|
+
break;
|
|
255
|
+
case "flush":
|
|
256
|
+
await callbacks.flushNow?.();
|
|
257
|
+
break;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
discard() {
|
|
262
|
+
events.splice(0);
|
|
263
|
+
},
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
function createHabitCallbackBuffer(callbacks) {
|
|
267
|
+
return createCallbackBuffer(callbacks, "all");
|
|
268
|
+
}
|
|
269
|
+
function createFinalOnlyTextBuffer(callbacks) {
|
|
270
|
+
return createCallbackBuffer(callbacks, "text-only");
|
|
271
|
+
}
|
|
272
|
+
exports.MAX_PROVIDER_ITERATIONS = 8;
|
|
273
|
+
function continuationCallbacks(callbacks, text) {
|
|
274
|
+
const noop = () => undefined;
|
|
275
|
+
return {
|
|
276
|
+
onModelStart: callbacks.onModelStart ?? noop,
|
|
277
|
+
onModelStreamStart: callbacks.onModelStreamStart ?? noop,
|
|
278
|
+
onTextChunk: (chunk) => {
|
|
279
|
+
text.value += chunk;
|
|
280
|
+
callbacks.onTextChunk?.(chunk);
|
|
281
|
+
},
|
|
282
|
+
onReasoningChunk: callbacks.onReasoningChunk ?? noop,
|
|
283
|
+
onToolStart: callbacks.onToolStart ?? noop,
|
|
284
|
+
onToolEnd: callbacks.onToolEnd ?? noop,
|
|
285
|
+
onError: callbacks.onError ?? noop,
|
|
286
|
+
...(callbacks.onClearText ? { onClearText: callbacks.onClearText } : {}),
|
|
287
|
+
...(callbacks.flushNow ? { flushNow: callbacks.flushNow } : {}),
|
|
288
|
+
...(callbacks.settleOutputMode ? { settleOutputMode: callbacks.settleOutputMode } : {}),
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
async function resumeApprovalContinuation(options) {
|
|
292
|
+
const claim = options.claimContinuation();
|
|
293
|
+
if (!claim.claimed) {
|
|
294
|
+
if (claim.interruptedAfterAttempt) {
|
|
295
|
+
const notice = "the approval continuation was interrupted after provider work began; its outcome is indeterminate and it will not be retried automatically";
|
|
296
|
+
await options.deliver(notice);
|
|
297
|
+
(0, runtime_1.emitNervesEvent)({
|
|
298
|
+
level: "error",
|
|
299
|
+
component: "engine",
|
|
300
|
+
event: "engine.approval_continuation_indeterminate",
|
|
301
|
+
message: "approval continuation interrupted after provider attempt",
|
|
302
|
+
meta: { approvalId: options.record.approvalId, continuationState: claim.record.continuationState },
|
|
303
|
+
});
|
|
304
|
+
return { outcome: "terminal_notice", messages: structuredClone(options.sessionMessages) };
|
|
305
|
+
}
|
|
306
|
+
(0, runtime_1.emitNervesEvent)({
|
|
307
|
+
component: "engine",
|
|
308
|
+
event: "engine.approval_continuation_duplicate",
|
|
309
|
+
message: "approval continuation was already consumed",
|
|
310
|
+
meta: { approvalId: options.record.approvalId },
|
|
311
|
+
});
|
|
312
|
+
return { outcome: "already_continued", messages: structuredClone(options.sessionMessages) };
|
|
313
|
+
}
|
|
314
|
+
const materialized = (0, session_events_1.materializeApprovalTerminal)({
|
|
315
|
+
messages: options.sessionMessages,
|
|
316
|
+
checkpoint: options.checkpoint,
|
|
317
|
+
record: options.record,
|
|
318
|
+
currentSessionRevision: options.currentSessionRevision,
|
|
319
|
+
materializedApprovalIds: options.materializedApprovalIds,
|
|
320
|
+
});
|
|
321
|
+
const recoveredMaterialization = claim.record.continuationState === "materialized";
|
|
322
|
+
if (!recoveredMaterialization) {
|
|
323
|
+
await options.persist(materialized.messages);
|
|
324
|
+
await options.markContinuationMaterialized();
|
|
325
|
+
}
|
|
326
|
+
if (!materialized.resumeProvider) {
|
|
327
|
+
await options.deliver(materialized.directNotice);
|
|
328
|
+
await options.completeContinuation();
|
|
329
|
+
return { outcome: "terminal_notice", messages: materialized.messages };
|
|
330
|
+
}
|
|
331
|
+
const outward = { value: "" };
|
|
332
|
+
const callbacks = continuationCallbacks(options.callbacks, outward);
|
|
333
|
+
await options.markContinuationAttempted();
|
|
334
|
+
const result = await options.runAgent(materialized.messages, callbacks, options.channel, options.signal, options.runAgentOptions);
|
|
335
|
+
if (result.outcome === "suspended") {
|
|
336
|
+
await options.completeContinuation();
|
|
337
|
+
return { outcome: result.outcome, messages: materialized.messages, suspension: result.suspension };
|
|
338
|
+
}
|
|
339
|
+
await options.persist(materialized.messages, result);
|
|
340
|
+
if (outward.value)
|
|
341
|
+
await options.deliver(outward.value);
|
|
342
|
+
await options.completeContinuation();
|
|
343
|
+
(0, runtime_1.emitNervesEvent)({
|
|
344
|
+
component: "engine",
|
|
345
|
+
event: "engine.approval_continuation_completed",
|
|
346
|
+
message: "approval continuation completed through existing provider loop",
|
|
347
|
+
meta: { approvalId: options.record.approvalId, outcome: result.outcome },
|
|
348
|
+
});
|
|
349
|
+
return { outcome: result.outcome, messages: materialized.messages };
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* Strip <think>...</think> blocks for the violation-detection check at the
|
|
353
|
+
* end of a streaming turn. Used to tell legitimate text-only responses
|
|
354
|
+
* apart from the MiniMax-M2.7 "only thinking, no tool call" violation
|
|
355
|
+
* shape. Mirrors the more thorough stripThinkBlocks helper in
|
|
356
|
+
* senses/shared-turn.ts (which is for operator-facing output) — kept
|
|
357
|
+
* inline here to avoid pulling senses/ into the core module's import graph.
|
|
358
|
+
*/
|
|
359
|
+
function stripThinkBlocksForViolationCheck(input) {
|
|
360
|
+
let out = input;
|
|
361
|
+
for (;;) {
|
|
362
|
+
const open = out.indexOf("<think>");
|
|
363
|
+
if (open === -1)
|
|
364
|
+
break;
|
|
365
|
+
const close = out.indexOf("</think>", open + "<think>".length);
|
|
366
|
+
if (close === -1) {
|
|
367
|
+
out = out.slice(0, open);
|
|
368
|
+
break;
|
|
369
|
+
}
|
|
370
|
+
out = out.slice(0, open) + out.slice(close + "</think>".length);
|
|
371
|
+
}
|
|
372
|
+
return out.trim();
|
|
373
|
+
}
|
|
374
|
+
function hasFreshPendingWork(options) {
|
|
375
|
+
const pendingMessages = options?.pendingMessages;
|
|
376
|
+
if (!Array.isArray(pendingMessages))
|
|
377
|
+
return false;
|
|
378
|
+
return pendingMessages.some((message) => typeof message?.content === "string"
|
|
379
|
+
&& message.content.trim().length > 0);
|
|
380
|
+
}
|
|
381
|
+
const HABIT_CONTROL_TOOLS = new Set(["rest", "ponder", "observe"]);
|
|
382
|
+
function highRiskExternalMutation(profile) {
|
|
383
|
+
if (profile.risk !== "high")
|
|
384
|
+
return null;
|
|
385
|
+
const mutates = typeof profile.mutates === "string" ? [profile.mutates] : [...profile.mutates];
|
|
386
|
+
return mutates.includes("external_side_effect") ? mutates.join(", ") : null;
|
|
387
|
+
}
|
|
388
|
+
function recordBlockedHabitSurfaceAttempts(habitSession, toolCalls, reason) {
|
|
389
|
+
if (toolCalls.some((call) => call.name !== "send_message" && call.name !== "surface")) {
|
|
390
|
+
habitSession?.recordError?.(`blocked habit tool batch: ${reason}`);
|
|
391
|
+
}
|
|
392
|
+
if (!habitSession?.recordSurfaceAttempt)
|
|
393
|
+
return;
|
|
394
|
+
for (const call of toolCalls) {
|
|
395
|
+
if (call.name !== "send_message" && call.name !== "surface")
|
|
396
|
+
continue;
|
|
397
|
+
// The canonical pre-batch schema gate guarantees object arguments here.
|
|
398
|
+
const args = JSON.parse(call.arguments);
|
|
399
|
+
habitSession.recordSurfaceAttempt({
|
|
400
|
+
recipient: String(args.friendId ?? args.delegationId ?? "unknown"),
|
|
401
|
+
channel: String(args.channel ?? call.name),
|
|
402
|
+
reason: "blocked",
|
|
403
|
+
result: "blocked",
|
|
404
|
+
rawStatus: "blocked",
|
|
405
|
+
error: reason,
|
|
406
|
+
});
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
async function habitToolBatchBlockReason(habitSession, toolCalls, delegatedOrigins) {
|
|
410
|
+
if (!habitSession)
|
|
411
|
+
return null;
|
|
412
|
+
const granted = new Set(habitSession.toolPolicy.grantedTools);
|
|
413
|
+
const denied = new Set(habitSession.toolPolicy.deniedTools);
|
|
414
|
+
for (const call of toolCalls) {
|
|
415
|
+
if (denied.has(call.name))
|
|
416
|
+
return `habit tool '${call.name}' is denied by this habit session`;
|
|
417
|
+
if (HABIT_CONTROL_TOOLS.has(call.name))
|
|
418
|
+
continue;
|
|
419
|
+
if (!granted.has(call.name))
|
|
420
|
+
return `habit tool '${call.name}' was not granted to this habit session`;
|
|
421
|
+
// The canonical pre-batch schema gate guarantees object arguments here.
|
|
422
|
+
const args = JSON.parse(call.arguments);
|
|
423
|
+
const riskProfile = (0, tools_1.riskProfileForToolName)(call.name, args);
|
|
424
|
+
if (!riskProfile)
|
|
425
|
+
return `habit tool '${call.name}' does not have a known executable risk profile`;
|
|
426
|
+
const externalMutation = highRiskExternalMutation(riskProfile);
|
|
427
|
+
if (externalMutation && call.name !== "send_message" && call.name !== "surface") {
|
|
428
|
+
return `habit tool '${call.name}' has high-risk executable mutation ${externalMutation}: ${riskProfile.reason}`;
|
|
429
|
+
}
|
|
430
|
+
if (call.name === "send_message" || call.name === "surface") {
|
|
431
|
+
const route = await (0, habit_session_1.resolveHabitReturnRoute)({
|
|
432
|
+
agentRoot: (0, identity_2.getAgentRoot)(),
|
|
433
|
+
envelope: habitSession.permissionEnvelope,
|
|
434
|
+
toolName: call.name,
|
|
435
|
+
args,
|
|
436
|
+
friendStore: habitSession.friendStore,
|
|
437
|
+
delegatedOrigins,
|
|
438
|
+
});
|
|
439
|
+
if (!route.allowed)
|
|
440
|
+
return route.reason;
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
return null;
|
|
444
|
+
}
|
|
445
|
+
/** Channels that deliberately support mid-turn delivery expose `speak`.
|
|
446
|
+
* BlueBubbles is final-only: its adapter owns one accepted visibility boundary.
|
|
447
|
+
* The private runtime has `ponder`; MCP returns synchronously; mail is batch. */
|
|
448
|
+
function isChatStyleChannel(channel) {
|
|
449
|
+
return (0, friends_1.getChannelCapabilities)(channel).chatStyle;
|
|
450
|
+
}
|
|
451
|
+
function bindCurrentIngressEvidenceLocator(toolList, evidence) {
|
|
452
|
+
if (!evidence
|
|
453
|
+
|| evidence.schemaVersion !== 1
|
|
454
|
+
|| evidence.provider !== "bluebubbles"
|
|
455
|
+
|| !/^[a-f0-9]{64}$/.test(evidence.captureKeyHash))
|
|
456
|
+
return toolList;
|
|
457
|
+
const locator = `capture:${evidence.captureKeyHash}`;
|
|
458
|
+
return toolList.map((tool) => {
|
|
459
|
+
if (tool.function.name !== "habit_cancel")
|
|
460
|
+
return tool;
|
|
461
|
+
const parameters = tool.function.parameters;
|
|
462
|
+
const properties = parameters.properties;
|
|
463
|
+
return {
|
|
464
|
+
...tool,
|
|
465
|
+
function: {
|
|
466
|
+
...tool.function,
|
|
467
|
+
parameters: {
|
|
468
|
+
...parameters,
|
|
469
|
+
properties: {
|
|
470
|
+
...properties,
|
|
471
|
+
evidence: {
|
|
472
|
+
...properties.evidence,
|
|
473
|
+
enum: [locator],
|
|
474
|
+
},
|
|
475
|
+
},
|
|
476
|
+
},
|
|
477
|
+
},
|
|
478
|
+
};
|
|
479
|
+
});
|
|
480
|
+
}
|
|
481
|
+
// Sole-call tools must be the only tool call in a turn. When they appear
|
|
482
|
+
// alongside other tools, the sole-call tool is rejected with this message.
|
|
483
|
+
const SOLE_CALL_REJECTION = {
|
|
484
|
+
settle: "rejected: settle must be the only tool call. finish your work first, then call settle alone.",
|
|
485
|
+
observe: "rejected: observe must be the only tool call. call observe alone when you want to stay silent.",
|
|
486
|
+
rest: "rejected: rest must be the only tool call. finish your work first, then call rest alone.",
|
|
178
487
|
};
|
|
179
|
-
function
|
|
180
|
-
const
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
const
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
488
|
+
function parseSettlePayload(argumentsText) {
|
|
489
|
+
const parsed = JSON.parse(argumentsText);
|
|
490
|
+
// Provider finalization validates settle.answer as a string before this
|
|
491
|
+
// terminal handling path. Keep this parser focused on projection instead
|
|
492
|
+
// of carrying an unreachable second shape check.
|
|
493
|
+
const answer = parsed.answer;
|
|
494
|
+
const rawIntent = parsed.intent;
|
|
495
|
+
const intent = rawIntent === "complete" || rawIntent === "blocked" || rawIntent === "direct_reply"
|
|
496
|
+
? rawIntent
|
|
497
|
+
: undefined;
|
|
498
|
+
return { answer, intent };
|
|
499
|
+
}
|
|
500
|
+
function parsePonderPayload(argumentsText) {
|
|
501
|
+
// The canonical pre-batch schema gate guarantees a valid object payload.
|
|
502
|
+
return JSON.parse(argumentsText);
|
|
503
|
+
}
|
|
504
|
+
function parseSuccessCriteria(raw) {
|
|
505
|
+
if (typeof raw !== "string")
|
|
506
|
+
return null;
|
|
507
|
+
const criteria = raw
|
|
508
|
+
.split("\n")
|
|
509
|
+
.map((line) => line.replace(/^\s*[-*]\s*/, "").trim())
|
|
510
|
+
.filter((line) => line.length > 0);
|
|
511
|
+
return criteria.length > 0 ? criteria : null;
|
|
512
|
+
}
|
|
513
|
+
function parsePacketPayload(raw) {
|
|
514
|
+
if (typeof raw !== "string")
|
|
515
|
+
return null;
|
|
516
|
+
try {
|
|
517
|
+
const parsed = JSON.parse(raw);
|
|
518
|
+
return parsed && typeof parsed === "object" && !Array.isArray(parsed)
|
|
519
|
+
? parsed
|
|
520
|
+
: null;
|
|
190
521
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
"",
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
"",
|
|
204
|
-
"
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
522
|
+
catch {
|
|
523
|
+
return null;
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
function normalizeLegacyPonderArgs(parsed) {
|
|
527
|
+
if (typeof parsed.thought !== "string" || parsed.thought.trim().length === 0) {
|
|
528
|
+
return parsed;
|
|
529
|
+
}
|
|
530
|
+
return {
|
|
531
|
+
action: "create",
|
|
532
|
+
kind: "reflection",
|
|
533
|
+
objective: parsed.thought.trim(),
|
|
534
|
+
summary: typeof parsed.say === "string" ? parsed.say.trim() : "",
|
|
535
|
+
success_criteria: "- preserve the thread for later work",
|
|
536
|
+
payload_json: "{}",
|
|
537
|
+
};
|
|
538
|
+
}
|
|
539
|
+
function messageContentText(content) {
|
|
540
|
+
if (typeof content === "string")
|
|
541
|
+
return content;
|
|
542
|
+
if (!Array.isArray(content))
|
|
543
|
+
return "";
|
|
544
|
+
return content
|
|
545
|
+
.map((part) => {
|
|
546
|
+
if (typeof part === "string")
|
|
547
|
+
return part;
|
|
548
|
+
if (!part || typeof part !== "object")
|
|
549
|
+
return "";
|
|
550
|
+
const maybeText = part.text;
|
|
551
|
+
return typeof maybeText === "string" ? maybeText : "";
|
|
552
|
+
})
|
|
553
|
+
.filter(Boolean)
|
|
554
|
+
.join("\n");
|
|
555
|
+
}
|
|
556
|
+
function isHarnessCorrectiveUserText(text) {
|
|
557
|
+
return text.startsWith("no tool was called this turn. you must end every turn")
|
|
558
|
+
|| text.startsWith("private-return acknowledgement claimed work was queued, but no ponder packet was created this turn.")
|
|
559
|
+
|| text.startsWith("this exact request previously reached a tool that is advertised again now.");
|
|
560
|
+
}
|
|
561
|
+
function toolResultIndicatesFailure(content) {
|
|
562
|
+
const normalized = content.trim().toLowerCase();
|
|
563
|
+
return normalized.startsWith("error:")
|
|
564
|
+
|| normalized.startsWith("invalid tool arguments:")
|
|
565
|
+
|| normalized.startsWith("unknown:")
|
|
566
|
+
|| normalized.startsWith("relationship authorization required:")
|
|
567
|
+
|| normalized.startsWith("orientation hold:")
|
|
568
|
+
|| normalized.startsWith("commerce authority required:")
|
|
569
|
+
|| normalized.startsWith("blocked:")
|
|
570
|
+
|| normalized.startsWith("rejected:");
|
|
571
|
+
}
|
|
572
|
+
function requiredToolResultSucceeded(name, content, args, validate) {
|
|
573
|
+
if (toolResultIndicatesFailure(content))
|
|
574
|
+
return false;
|
|
575
|
+
return validate?.(name, content, args) ?? true;
|
|
576
|
+
}
|
|
577
|
+
function effectFingerprint(name, rawArguments) {
|
|
578
|
+
let args;
|
|
212
579
|
try {
|
|
213
|
-
const parsed = JSON.parse(
|
|
214
|
-
if (typeof parsed
|
|
215
|
-
return
|
|
580
|
+
const parsed = JSON.parse(rawArguments);
|
|
581
|
+
if (!parsed || typeof parsed !== "object" || Array.isArray(parsed))
|
|
582
|
+
return null;
|
|
583
|
+
args = { ...parsed };
|
|
584
|
+
}
|
|
585
|
+
catch {
|
|
586
|
+
return null;
|
|
587
|
+
}
|
|
588
|
+
const profile = (0, tools_1.riskProfileForToolName)(name, args);
|
|
589
|
+
if (!profile || profile.mutates === "none")
|
|
590
|
+
return null;
|
|
591
|
+
delete args.expectedVersion;
|
|
592
|
+
return (0, tool_arguments_1.digestJson)({ name, args });
|
|
593
|
+
}
|
|
594
|
+
function historicalFailedEffectsForExactRepeatedRequest(messages) {
|
|
595
|
+
const userRequests = [];
|
|
596
|
+
for (let index = 0; index < messages.length; index += 1) {
|
|
597
|
+
const message = messages[index];
|
|
598
|
+
if (message?.role !== "user")
|
|
599
|
+
continue;
|
|
600
|
+
const text = messageContentText(message.content).replace(/\s+/g, " ").trim();
|
|
601
|
+
if (!text || isHarnessCorrectiveUserText(text))
|
|
602
|
+
continue;
|
|
603
|
+
userRequests.push({ index, text });
|
|
604
|
+
}
|
|
605
|
+
const current = userRequests.at(-1);
|
|
606
|
+
if (!current)
|
|
607
|
+
return [];
|
|
608
|
+
const prior = userRequests.slice(0, -1).find((request) => request.text === current.text);
|
|
609
|
+
if (!prior)
|
|
610
|
+
return [];
|
|
611
|
+
const effectsByCallId = new Map();
|
|
612
|
+
const failedEffects = new Map();
|
|
613
|
+
for (let index = prior.index + 1; index < current.index; index += 1) {
|
|
614
|
+
const message = messages[index];
|
|
615
|
+
if (message?.role === "assistant" && Array.isArray(message.tool_calls)) {
|
|
616
|
+
for (const call of message.tool_calls) {
|
|
617
|
+
if (call.type !== "function" || !call.id || !call.function.name)
|
|
618
|
+
continue;
|
|
619
|
+
const fingerprint = effectFingerprint(call.function.name, call.function.arguments);
|
|
620
|
+
if (fingerprint)
|
|
621
|
+
effectsByCallId.set(call.id, { name: call.function.name, fingerprint });
|
|
622
|
+
}
|
|
623
|
+
continue;
|
|
624
|
+
}
|
|
625
|
+
if (message?.role !== "tool")
|
|
626
|
+
continue;
|
|
627
|
+
const content = messageContentText(message.content);
|
|
628
|
+
const effect = effectsByCallId.get(message.tool_call_id);
|
|
629
|
+
if (!effect)
|
|
630
|
+
continue;
|
|
631
|
+
if (toolResultIndicatesFailure(content)) {
|
|
632
|
+
failedEffects.set(effect.fingerprint, effect);
|
|
216
633
|
}
|
|
217
|
-
|
|
218
|
-
|
|
634
|
+
else {
|
|
635
|
+
failedEffects.delete(effect.fingerprint);
|
|
219
636
|
}
|
|
220
|
-
const answer = typeof parsed.answer === "string" ? parsed.answer : undefined;
|
|
221
|
-
const rawIntent = parsed.intent;
|
|
222
|
-
const intent = rawIntent === "complete" || rawIntent === "blocked" || rawIntent === "direct_reply"
|
|
223
|
-
? rawIntent
|
|
224
|
-
: undefined;
|
|
225
|
-
return { answer, intent };
|
|
226
637
|
}
|
|
227
|
-
|
|
228
|
-
|
|
638
|
+
return [...failedEffects.values()];
|
|
639
|
+
}
|
|
640
|
+
function latestUserMessageText(messages) {
|
|
641
|
+
for (let i = messages.length - 1; i >= 0; i -= 1) {
|
|
642
|
+
const message = messages[i];
|
|
643
|
+
if (message?.role !== "user")
|
|
644
|
+
continue;
|
|
645
|
+
const text = messageContentText(message.content).trim();
|
|
646
|
+
if (isHarnessCorrectiveUserText(text))
|
|
647
|
+
continue;
|
|
648
|
+
if (text.length > 0)
|
|
649
|
+
return text;
|
|
229
650
|
}
|
|
651
|
+
return "";
|
|
230
652
|
}
|
|
231
|
-
function
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
target: delegationDecision.target,
|
|
240
|
-
reasons: delegationDecision.reasons,
|
|
241
|
-
},
|
|
242
|
-
});
|
|
243
|
-
return "you're reaching for a final answer, but part of you knows this needs more thought. take it inward -- go_inward will let you think privately, or send_message(self) if you just want to leave yourself a note.";
|
|
653
|
+
function truncatePonderDelegatedContent(value) {
|
|
654
|
+
return value.length > 120 ? `${value.slice(0, 117)}...` : value;
|
|
655
|
+
}
|
|
656
|
+
function buildPonderDelegatedContent(input) {
|
|
657
|
+
const primary = (input.summary || input.objective).trim();
|
|
658
|
+
const sourceRequest = input.sourceRequest.trim();
|
|
659
|
+
if (!sourceRequest || sourceRequest === primary || sourceRequest === input.objective.trim()) {
|
|
660
|
+
return truncatePonderDelegatedContent(primary);
|
|
244
661
|
}
|
|
662
|
+
return truncatePonderDelegatedContent(`${primary}\nsource request: ${sourceRequest}`);
|
|
663
|
+
}
|
|
664
|
+
function looksLikePrivateReturnRequest(text) {
|
|
665
|
+
const normalized = text.toLowerCase();
|
|
666
|
+
return /\b(private|privately|private-attention|think|reflect|reflection)\b/.test(normalized)
|
|
667
|
+
&& /\b(return|bring back|come back|surface|report back)\b/.test(normalized);
|
|
668
|
+
}
|
|
669
|
+
function extractPrivateReturnHeldTokens(text) {
|
|
670
|
+
const tokens = new Set();
|
|
671
|
+
for (const match of text.matchAll(/\b[A-Z][A-Z0-9]*(?:_[A-Z0-9]+){2,}\b/g)) {
|
|
672
|
+
const token = match[0];
|
|
673
|
+
if (token.length >= 8)
|
|
674
|
+
tokens.add(token);
|
|
675
|
+
}
|
|
676
|
+
return [...tokens];
|
|
677
|
+
}
|
|
678
|
+
function privateReturnAckLeakError(answer, heldTokens) {
|
|
679
|
+
if (!answer || heldTokens.size === 0)
|
|
680
|
+
return null;
|
|
681
|
+
for (const token of heldTokens) {
|
|
682
|
+
if (answer.includes(token)) {
|
|
683
|
+
return "private return is queued; do not repeat private markers or requested private-return content in the outward acknowledgement. Say only that the private pass is queued and will return when ready.";
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
return null;
|
|
687
|
+
}
|
|
688
|
+
function claimsPrivateReturnQueued(answer) {
|
|
689
|
+
if (!answer)
|
|
690
|
+
return false;
|
|
691
|
+
const normalized = answer.toLowerCase();
|
|
692
|
+
return /\b(queued|queue|will return|return when|when .*complete|when .*completes|private pass|private runtime completes|inner dialog completes|later)\b/.test(normalized)
|
|
693
|
+
&& /\b(private|inner|return|queued|later)\b/.test(normalized);
|
|
694
|
+
}
|
|
695
|
+
function privateReturnMissingPonderError(input) {
|
|
696
|
+
if (input.sawPonder)
|
|
697
|
+
return null;
|
|
698
|
+
if (!looksLikePrivateReturnRequest(input.latestUserRequest))
|
|
699
|
+
return null;
|
|
700
|
+
if (!claimsPrivateReturnQueued(input.answer))
|
|
701
|
+
return null;
|
|
702
|
+
return "private-return acknowledgement claimed work was queued, but no ponder packet was created this turn. Call ponder(action=create, ...) first so the return has a packet, return obligation, and private-runtime wake; then settle with only a queued acknowledgement. If you cannot create the packet, ask a blocking clarification without saying it is queued.";
|
|
703
|
+
}
|
|
704
|
+
function activeReturnObligationId(agentName, obligationId) {
|
|
705
|
+
if (!obligationId)
|
|
706
|
+
return null;
|
|
707
|
+
const obligation = (0, obligations_1.readReturnObligation)(agentName, obligationId);
|
|
708
|
+
return obligation?.status === "queued" || obligation?.status === "running" ? obligationId : null;
|
|
709
|
+
}
|
|
710
|
+
function ponderReturnSessionId(packet) {
|
|
711
|
+
const origin = packet.origin;
|
|
712
|
+
if (!origin)
|
|
713
|
+
return "unknown/unknown/unknown";
|
|
714
|
+
return `${origin.friendId}/${origin.channel}/${origin.key}`;
|
|
715
|
+
}
|
|
716
|
+
function buildPonderReturnPrivateWakeOptions(input) {
|
|
717
|
+
const sessionId = ponderReturnSessionId(input.packet);
|
|
718
|
+
return {
|
|
719
|
+
reason: "ponder return obligation private attention",
|
|
720
|
+
triggerSource: "ponder-return-obligation",
|
|
721
|
+
budgetClass: "interactive",
|
|
722
|
+
idempotencyKey: `ponder-return:${input.agentName}:${input.returnObligationId}:${input.packet.id}:${sessionId}`,
|
|
723
|
+
originRefs: [
|
|
724
|
+
{ kind: "tool", id: "ponder" },
|
|
725
|
+
{ kind: "ponder-packet", id: input.packet.id },
|
|
726
|
+
{ kind: "return-obligation", id: input.returnObligationId },
|
|
727
|
+
{ kind: "session", id: sessionId },
|
|
728
|
+
],
|
|
729
|
+
};
|
|
730
|
+
}
|
|
731
|
+
function buildPonderResult(packet, action, returnObligationId) {
|
|
732
|
+
return JSON.stringify({
|
|
733
|
+
ok: true,
|
|
734
|
+
packet_id: packet.id,
|
|
735
|
+
action,
|
|
736
|
+
status: packet.status,
|
|
737
|
+
return_obligation_id: returnObligationId,
|
|
738
|
+
private_return_contract: returnObligationId
|
|
739
|
+
? "queued for private-runtime attention; do not present the requested private answer as complete in this same outward turn. if you answer now, only say the private pass is queued and will return when ready."
|
|
740
|
+
: null,
|
|
741
|
+
}, null, 2);
|
|
742
|
+
}
|
|
743
|
+
/** Returns true when a tool call queries external state (GitHub, npm registry). */
|
|
744
|
+
function isExternalStateQuery(toolName, args) {
|
|
745
|
+
if (toolName !== "shell")
|
|
746
|
+
return false;
|
|
747
|
+
const cmd = String(args.command ?? "");
|
|
748
|
+
return /\bgh\s+(pr|run|api|issue)\b/.test(cmd) || /\bnpm\s+(view|info|show)\b/.test(cmd);
|
|
749
|
+
}
|
|
750
|
+
function getSettleRetryError(mustResolveBeforeHandoff, intent, sawSteeringFollowUp, _delegationDecision, sawSendMessageSelf, sawPonder, _sawQuerySession, currentObligation, innerJob, _sawExternalStateQuery) {
|
|
751
|
+
// Delegation adherence removed: the delegation decision is surfaced in the
|
|
752
|
+
// system prompt as a suggestion. Hard-gating settle caused infinite
|
|
753
|
+
// rejection loops where the agent couldn't respond to the user at all.
|
|
754
|
+
// The agent is free to follow or ignore the delegation hint.
|
|
245
755
|
// 2. Pending obligation not addressed
|
|
246
|
-
if (innerJob?.obligationStatus === "pending" && !sawSendMessageSelf && !
|
|
247
|
-
return "you're still holding something from an earlier conversation -- someone is waiting for your answer. finish the thought first, or
|
|
756
|
+
if (innerJob?.obligationStatus === "pending" && !sawSendMessageSelf && !sawPonder) {
|
|
757
|
+
return "you're still holding something from an earlier conversation -- someone is waiting for your answer. finish the thought first, or ponder to keep working on it privately.";
|
|
248
758
|
}
|
|
249
759
|
// 3. mustResolveBeforeHandoff + missing intent
|
|
250
760
|
if (mustResolveBeforeHandoff && !intent) {
|
|
251
|
-
return "your
|
|
761
|
+
return "your settle is missing required intent. when you must keep going until done or blocked, call settle again with answer plus intent=complete, blocked, or direct_reply.";
|
|
252
762
|
}
|
|
253
763
|
// 4. mustResolveBeforeHandoff + direct_reply without follow-up
|
|
254
764
|
if (mustResolveBeforeHandoff && intent === "direct_reply" && !sawSteeringFollowUp) {
|
|
255
|
-
return "your
|
|
765
|
+
return "your settle used intent=direct_reply without a newer steering follow-up. continue the unresolved work, or call settle again with intent=complete or blocked when appropriate.";
|
|
766
|
+
}
|
|
767
|
+
// 5. mustResolveBeforeHandoff + complete while a live return loop is still active
|
|
768
|
+
if (mustResolveBeforeHandoff && intent === "complete" && currentObligation && !sawSteeringFollowUp) {
|
|
769
|
+
return "you still owe the live session a visible return on this work. don't end the turn yet — continue until you've brought back the external-state update, or use intent=blocked with the concrete blocker.";
|
|
256
770
|
}
|
|
257
|
-
|
|
258
|
-
return "your final_answer was incomplete or malformed. call final_answer again with your complete response.";
|
|
771
|
+
return null;
|
|
259
772
|
}
|
|
260
|
-
|
|
261
|
-
var kicks_1 = require("./kicks");
|
|
262
|
-
Object.defineProperty(exports, "hasToolIntent", { enumerable: true, get: function () { return kicks_1.hasToolIntent; } });
|
|
263
|
-
function upsertSystemPrompt(messages, systemText) {
|
|
773
|
+
function upsertSystemPrompt(messages, systemText, protectedSystemMessages = []) {
|
|
264
774
|
const systemMessage = { role: "system", content: systemText };
|
|
265
|
-
|
|
775
|
+
const protectedMessages = new Set(protectedSystemMessages.filter((message) => message.role === "system"));
|
|
776
|
+
if (messages[0]?.role === "system" && !protectedMessages.has(messages[0])) {
|
|
266
777
|
messages[0] = systemMessage;
|
|
267
778
|
}
|
|
268
779
|
else {
|
|
269
780
|
messages.unshift(systemMessage);
|
|
270
781
|
}
|
|
271
782
|
}
|
|
783
|
+
/**
|
|
784
|
+
* A prompt refresh failure must not revive any generated text from an older
|
|
785
|
+
* turn or release. Even the nominally stable region contains actor-scoped trust,
|
|
786
|
+
* tool, and channel context, so it is not safe to reconstruct. Fail closed to a
|
|
787
|
+
* neutral base and put the freshly derived trigger first.
|
|
788
|
+
*/
|
|
789
|
+
function repairFallbackSystemPrompt(orientationFrame) {
|
|
790
|
+
return `${(0, orientation_frame_1.renderOrientationFrame)(orientationFrame)}\n\nYou are a helpful assistant.`;
|
|
791
|
+
}
|
|
272
792
|
// Remove orphan tool_calls from the last assistant message and any
|
|
273
793
|
// trailing tool-result messages that lack a matching tool_call.
|
|
274
794
|
// This keeps the conversation valid after an abort or tool-loop limit.
|
|
@@ -297,27 +817,39 @@ const TOOL_SCAN_BOUNDARY_ROLES = new Set(["assistant", "user"]);
|
|
|
297
817
|
// 1. If an assistant message has tool_calls but missing tool results, inject synthetic error results.
|
|
298
818
|
// 2. If a tool result's tool_call_id doesn't match any tool_calls in a preceding assistant message, remove it.
|
|
299
819
|
// This prevents 400 errors from the API after an aborted turn.
|
|
820
|
+
//
|
|
821
|
+
// Position-aware: a tool result is orphaned when its tool_call_id hasn't been
|
|
822
|
+
// defined by an assistant message AT THIS POSITION yet. MiniMax-M2.7 reuses
|
|
823
|
+
// canonical tool_call_ids across turns, so the global-set check that this
|
|
824
|
+
// function used previously kept misordered tool results that MiniMax then
|
|
825
|
+
// rejected with error 2013 ("tool result's tool id not found"). Walking
|
|
826
|
+
// in order matches what MiniMax actually enforces.
|
|
300
827
|
function repairOrphanedToolCalls(messages) {
|
|
301
|
-
// Pass 1:
|
|
302
|
-
|
|
303
|
-
|
|
828
|
+
// Pass 1: walk in order, accumulate seen tool_call_ids per-position, and
|
|
829
|
+
// mark tool results for removal if their id hasn't been defined yet.
|
|
830
|
+
const seenCallIds = new Set();
|
|
831
|
+
const removeIndices = [];
|
|
832
|
+
for (let i = 0; i < messages.length; i++) {
|
|
833
|
+
const msg = messages[i];
|
|
304
834
|
if (msg.role === "assistant") {
|
|
305
835
|
const asst = msg;
|
|
306
836
|
if (asst.tool_calls) {
|
|
307
837
|
for (const tc of asst.tool_calls)
|
|
308
|
-
|
|
838
|
+
seenCallIds.add(tc.id);
|
|
309
839
|
}
|
|
840
|
+
continue;
|
|
310
841
|
}
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
const toolMsg = messages[i];
|
|
316
|
-
if (!validCallIds.has(toolMsg.tool_call_id)) {
|
|
317
|
-
messages.splice(i, 1);
|
|
842
|
+
if (msg.role === "tool") {
|
|
843
|
+
const toolMsg = msg;
|
|
844
|
+
if (!seenCallIds.has(toolMsg.tool_call_id)) {
|
|
845
|
+
removeIndices.push(i);
|
|
318
846
|
}
|
|
319
847
|
}
|
|
320
848
|
}
|
|
849
|
+
// Splice from the end so earlier indices stay valid.
|
|
850
|
+
for (let i = removeIndices.length - 1; i >= 0; i--) {
|
|
851
|
+
messages.splice(removeIndices[i], 1);
|
|
852
|
+
}
|
|
321
853
|
// Pass 3: inject synthetic results for tool_calls missing their tool results
|
|
322
854
|
for (let i = 0; i < messages.length; i++) {
|
|
323
855
|
const msg = messages[i];
|
|
@@ -339,10 +871,13 @@ function repairOrphanedToolCalls(messages) {
|
|
|
339
871
|
}
|
|
340
872
|
const missing = asst.tool_calls.filter((tc) => !resultIds.has(tc.id));
|
|
341
873
|
if (missing.length > 0) {
|
|
874
|
+
// AX rule: the agent must see what happened. Don't say "interrupted"
|
|
875
|
+
// — that's vague. Tell them the result was lost, possible causes,
|
|
876
|
+
// and what to do next.
|
|
342
877
|
const syntheticResults = missing.map((tc) => ({
|
|
343
878
|
role: "tool",
|
|
344
879
|
tool_call_id: tc.id,
|
|
345
|
-
content: "error: tool call was
|
|
880
|
+
content: "error: this tool call's result was lost — the previous turn ended before the tool finished (provider rejection, daemon interrupt, or the tool itself errored). if the work needs to be done, retry the tool call now.",
|
|
346
881
|
}));
|
|
347
882
|
let insertAt = i + 1;
|
|
348
883
|
while (insertAt < messages.length && messages[insertAt].role === "tool")
|
|
@@ -365,49 +900,72 @@ function isContextOverflow(err) {
|
|
|
365
900
|
return true;
|
|
366
901
|
return false;
|
|
367
902
|
}
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
903
|
+
const RETRY_LABELS = {
|
|
904
|
+
"auth-failure": "auth error",
|
|
905
|
+
"usage-limit": "usage limit",
|
|
906
|
+
"rate-limit": "rate limited",
|
|
907
|
+
"server-error": "server error",
|
|
908
|
+
"network-error": "network error",
|
|
909
|
+
"unknown": "error",
|
|
910
|
+
};
|
|
911
|
+
function waitForProviderRetry(delayMs, signal) {
|
|
912
|
+
if (!signal) {
|
|
913
|
+
return new Promise((resolve) => {
|
|
914
|
+
setTimeout(resolve, delayMs);
|
|
915
|
+
});
|
|
916
|
+
}
|
|
917
|
+
return new Promise((resolve, reject) => {
|
|
918
|
+
let timer;
|
|
919
|
+
const onAbort = () => {
|
|
920
|
+
clearTimeout(timer);
|
|
921
|
+
reject(new provider_attempt_1.ProviderAttemptAbortError());
|
|
922
|
+
};
|
|
923
|
+
timer = setTimeout(() => {
|
|
924
|
+
signal.removeEventListener("abort", onAbort);
|
|
925
|
+
resolve();
|
|
926
|
+
}, delayMs);
|
|
927
|
+
if (signal.aborted) {
|
|
928
|
+
onAbort();
|
|
929
|
+
return;
|
|
930
|
+
}
|
|
931
|
+
signal.addEventListener("abort", onAbort, { once: true });
|
|
932
|
+
});
|
|
933
|
+
}
|
|
934
|
+
function buildAuthFailureGuidance(provider, model, agentName, detail) {
|
|
935
|
+
const mismatch = (0, provider_models_1.getProviderModelMismatchMessage)(provider, model);
|
|
936
|
+
const modelLabel = model
|
|
937
|
+
? mismatch
|
|
938
|
+
? `${provider} [configured model: ${model}]`
|
|
939
|
+
: `${provider} (${model})`
|
|
940
|
+
: provider;
|
|
941
|
+
const lines = [`${modelLabel} authentication failed.`];
|
|
942
|
+
const cleanDetail = detail.replace(/\s+/g, " ").trim();
|
|
943
|
+
if (cleanDetail)
|
|
944
|
+
lines.push(`provider detail: ${cleanDetail.length > 300 ? `${cleanDetail.slice(0, 297)}...` : cleanDetail}`);
|
|
945
|
+
lines.push("");
|
|
946
|
+
lines.push("To keep using this provider:");
|
|
947
|
+
lines.push(` 1. Run \`ouro auth --agent ${agentName} --provider ${provider}\``);
|
|
948
|
+
if (mismatch) {
|
|
949
|
+
const defaultModel = (0, provider_models_1.getDefaultModelForProvider)(provider);
|
|
950
|
+
lines.push("");
|
|
951
|
+
lines.push("Config warning:");
|
|
952
|
+
lines.push(` - ${mismatch}`);
|
|
953
|
+
lines.push(" - Repair the configured model with:");
|
|
954
|
+
lines.push(` \`ouro use --agent ${agentName} --lane outward --provider ${provider} --model ${defaultModel}\``);
|
|
955
|
+
lines.push(` \`ouro use --agent ${agentName} --lane inner --provider ${provider} --model ${defaultModel}\``);
|
|
956
|
+
}
|
|
957
|
+
lines.push("");
|
|
958
|
+
lines.push(`To use another configured provider instead, run \`ouro use --agent ${agentName} --lane <outward|inner> --provider <provider> --model <model>\`.`);
|
|
959
|
+
return lines.join("\n");
|
|
394
960
|
}
|
|
395
|
-
function classifyTransientError(err) {
|
|
396
|
-
if (!(err instanceof Error))
|
|
397
|
-
return "unknown error";
|
|
398
|
-
const status = err.status;
|
|
399
|
-
if (status === 429)
|
|
400
|
-
return "rate limited";
|
|
401
|
-
if (status === 401 || status === 403)
|
|
402
|
-
return "auth error";
|
|
403
|
-
if (status && status >= 500)
|
|
404
|
-
return "server error";
|
|
405
|
-
return "network error";
|
|
406
|
-
}
|
|
407
|
-
const MAX_RETRIES = 3;
|
|
408
|
-
const RETRY_BASE_MS = 2000;
|
|
409
961
|
async function runAgent(messages, callbacks, channel, signal, options) {
|
|
410
|
-
const
|
|
962
|
+
const generatedMessages = [];
|
|
963
|
+
const pushGenerated = (...next) => {
|
|
964
|
+
messages.push(...next);
|
|
965
|
+
generatedMessages.push(...structuredClone(next));
|
|
966
|
+
};
|
|
967
|
+
const facing = (0, friends_1.channelToFacing)(channel);
|
|
968
|
+
let providerRuntime = options?.providerRuntimeOverride ?? await getProviderRuntime(facing);
|
|
411
969
|
const provider = providerRuntime.id;
|
|
412
970
|
const toolChoiceRequired = options?.toolChoiceRequired ?? true;
|
|
413
971
|
const traceId = options?.traceId;
|
|
@@ -428,24 +986,88 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
428
986
|
currentContext = { ...currentContext, friend: freshFriend };
|
|
429
987
|
}
|
|
430
988
|
}
|
|
989
|
+
const turnOrientationFrame = options?.orientationFrame
|
|
990
|
+
?? (channel ? (0, orientation_frame_1.buildOrientationFrame)({ channel, messages }) : undefined);
|
|
991
|
+
if (options?.requiredPromptEvidence) {
|
|
992
|
+
let structuralFloor;
|
|
993
|
+
try {
|
|
994
|
+
structuralFloor = (0, prompt_budget_1.assessRequiredPromptEvidenceBudget)({
|
|
995
|
+
messages,
|
|
996
|
+
requiredPromptEvidence: options.requiredPromptEvidence,
|
|
997
|
+
provider: providerRuntime.id,
|
|
998
|
+
model: providerRuntime.model,
|
|
999
|
+
contextWindowTokens: (0, config_1.getContextConfig)().maxTokens,
|
|
1000
|
+
});
|
|
1001
|
+
}
|
|
1002
|
+
catch (error) {
|
|
1003
|
+
const invalidEvidenceError = error instanceof Error ? error : new Error(String(error));
|
|
1004
|
+
callbacks.onError(invalidEvidenceError, "terminal");
|
|
1005
|
+
options.captureGeneratedMessages?.([]);
|
|
1006
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1007
|
+
event: "engine.turn_end",
|
|
1008
|
+
trace_id: traceId,
|
|
1009
|
+
component: "engine",
|
|
1010
|
+
message: "runAgent turn completed",
|
|
1011
|
+
meta: { done: true, sawPonder: false, sawQuerySession: false, sawBridgeManage: false },
|
|
1012
|
+
});
|
|
1013
|
+
return {
|
|
1014
|
+
outcome: "errored",
|
|
1015
|
+
error: invalidEvidenceError,
|
|
1016
|
+
errorClassification: "unknown",
|
|
1017
|
+
};
|
|
1018
|
+
}
|
|
1019
|
+
if (structuralFloor.status === "required_evidence_over_budget") {
|
|
1020
|
+
const budgetError = new Error(`required_evidence_over_budget: required current-turn evidence needs ${structuralFloor.estimatedTokens} tokens but the provider input limit is ${structuralFloor.budget.inputTokenLimit}`);
|
|
1021
|
+
callbacks.onError(budgetError, "terminal");
|
|
1022
|
+
options.captureGeneratedMessages?.([]);
|
|
1023
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1024
|
+
event: "engine.turn_end",
|
|
1025
|
+
trace_id: traceId,
|
|
1026
|
+
component: "engine",
|
|
1027
|
+
message: "runAgent turn completed",
|
|
1028
|
+
meta: { done: true, sawPonder: false, sawQuerySession: false, sawBridgeManage: false },
|
|
1029
|
+
});
|
|
1030
|
+
return {
|
|
1031
|
+
outcome: "errored",
|
|
1032
|
+
error: budgetError,
|
|
1033
|
+
errorClassification: "unknown",
|
|
1034
|
+
};
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
431
1037
|
// Refresh system prompt at start of each turn when channel is provided.
|
|
432
|
-
// If refresh fails,
|
|
433
|
-
// so
|
|
1038
|
+
// If refresh fails, retain only a recognised stable prefix (or inject a
|
|
1039
|
+
// minimal safe fallback) so stale dynamic state cannot regain authority.
|
|
1040
|
+
let structuredSystemPrompt;
|
|
434
1041
|
if (channel) {
|
|
435
1042
|
try {
|
|
436
1043
|
const buildSystemOptions = {
|
|
437
1044
|
...options,
|
|
1045
|
+
relationshipContextScopes: options?.toolContext?.relationshipAuthorization?.authorizedContextScopes,
|
|
1046
|
+
relationshipProfileId: options?.toolContext?.relationshipAuthorization?.profileId,
|
|
1047
|
+
relationshipToolNames: options?.toolContext?.relationshipAuthorization?.advertisedToolNames,
|
|
1048
|
+
orientationFrame: turnOrientationFrame,
|
|
1049
|
+
resumePriorWork: options?.resumePriorWork === true,
|
|
438
1050
|
providerCapabilities: providerRuntime.capabilities,
|
|
439
1051
|
supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
|
|
440
1052
|
};
|
|
441
1053
|
const refreshed = await (0, prompt_1.buildSystem)(channel, buildSystemOptions, currentContext);
|
|
442
|
-
|
|
1054
|
+
structuredSystemPrompt = refreshed;
|
|
1055
|
+
upsertSystemPrompt(messages, (0, prompt_1.flattenSystemPrompt)(refreshed), [
|
|
1056
|
+
...(options?.promptOnlyEvidenceMessages ?? []),
|
|
1057
|
+
...(options?.requiredPromptEvidence?.verifiedPredecessorMessage
|
|
1058
|
+
? [options.requiredPromptEvidence.verifiedPredecessorMessage]
|
|
1059
|
+
: []),
|
|
1060
|
+
]);
|
|
443
1061
|
}
|
|
444
1062
|
catch (error) {
|
|
445
1063
|
const hadExistingSystemPrompt = messages[0]?.role === "system" && typeof messages[0].content === "string";
|
|
446
|
-
const
|
|
447
|
-
|
|
448
|
-
|
|
1064
|
+
const fallback = repairFallbackSystemPrompt(turnOrientationFrame);
|
|
1065
|
+
upsertSystemPrompt(messages, fallback, [
|
|
1066
|
+
...(options?.promptOnlyEvidenceMessages ?? []),
|
|
1067
|
+
...(options?.requiredPromptEvidence?.verifiedPredecessorMessage
|
|
1068
|
+
? [options.requiredPromptEvidence.verifiedPredecessorMessage]
|
|
1069
|
+
: []),
|
|
1070
|
+
]);
|
|
449
1071
|
(0, runtime_1.emitNervesEvent)({
|
|
450
1072
|
level: "warn",
|
|
451
1073
|
event: "mind.step_error",
|
|
@@ -460,46 +1082,189 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
460
1082
|
});
|
|
461
1083
|
}
|
|
462
1084
|
}
|
|
463
|
-
|
|
1085
|
+
if (channel && options?.skipKeptNotes !== true) {
|
|
1086
|
+
await (0, kept_notes_1.injectKeptNotes)(messages, {
|
|
1087
|
+
channel,
|
|
1088
|
+
friend: currentContext?.friend,
|
|
1089
|
+
judge: async (input) => (0, kept_notes_1.createKeptNotesJudge)(await getProviderRuntime("agent"), signal)(input),
|
|
1090
|
+
signal,
|
|
1091
|
+
traceId,
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
464
1094
|
let done = false;
|
|
465
1095
|
let lastUsage;
|
|
466
1096
|
let overflowRetried = false;
|
|
467
|
-
let
|
|
468
|
-
let outcome = "complete";
|
|
1097
|
+
let outcome = "settled";
|
|
469
1098
|
let completion;
|
|
1099
|
+
let suspension;
|
|
1100
|
+
let terminalError;
|
|
1101
|
+
let terminalErrorClassification;
|
|
470
1102
|
let sawSteeringFollowUp = false;
|
|
471
1103
|
let mustResolveBeforeHandoffActive = options?.mustResolveBeforeHandoff === true;
|
|
472
1104
|
let currentReasoningEffort = "medium";
|
|
473
1105
|
let sawSendMessageSelf = false;
|
|
474
|
-
let
|
|
1106
|
+
let sawPonder = false;
|
|
475
1107
|
let sawQuerySession = false;
|
|
476
1108
|
let sawBridgeManage = false;
|
|
1109
|
+
let sawExternalStateQuery = false;
|
|
1110
|
+
const privateReturnHeldTokens = new Set();
|
|
1111
|
+
// Once-per-turn flag for the fresh-work rest gate. Without this, an agent
|
|
1112
|
+
// that called rest, was told "fresh work arrived", processed the items,
|
|
1113
|
+
// and called rest again would get the same message forever — the gate
|
|
1114
|
+
// condition is read from the turn-start snapshot of pendingMessages,
|
|
1115
|
+
// which doesn't update mid-turn. The agent only needs to be told once;
|
|
1116
|
+
// after that, repeated rest attempts mean they've acknowledged.
|
|
1117
|
+
let freshWorkGateFired = false;
|
|
1118
|
+
// Counter for no-tool-call violations. MiniMax reasoning models occasionally
|
|
1119
|
+
// emit only a <think>...</think> block and stop, without any tool call — even
|
|
1120
|
+
// when tool_choice is set to "required". Private-return requests also need
|
|
1121
|
+
// a hard no-tool guard: a text-only "queued" acknowledgement is false unless
|
|
1122
|
+
// a ponder packet created the return obligation in this turn.
|
|
1123
|
+
let noToolCallRetries = 0;
|
|
1124
|
+
const NO_TOOL_CALL_MAX_RETRIES = 2;
|
|
1125
|
+
let unresolvedHistoricalEffects = historicalFailedEffectsForExactRepeatedRequest(messages);
|
|
1126
|
+
let historicalToolFailureRetries = 0;
|
|
1127
|
+
let providerIterations = 0;
|
|
1128
|
+
const requiredToolCallNames = [...new Set(options?.requiredToolCalls?.names ?? [])];
|
|
1129
|
+
const dispatchedRequiredToolCalls = new Set();
|
|
1130
|
+
const pendingRequiredToolCalls = () => {
|
|
1131
|
+
const missing = requiredToolCallNames.filter((name) => !dispatchedRequiredToolCalls.has(name));
|
|
1132
|
+
return missing.length > 0
|
|
1133
|
+
? { missing, message: `${options.requiredToolCalls.retryMessage} Missing required tool calls: ${missing.join(", ")}.` }
|
|
1134
|
+
: null;
|
|
1135
|
+
};
|
|
1136
|
+
const queueRequiredCorrection = (message, limitContext) => {
|
|
1137
|
+
if (providerIterations >= exports.MAX_PROVIDER_ITERATIONS)
|
|
1138
|
+
throw new Error(`provider iteration limit exhausted at response ${exports.MAX_PROVIDER_ITERATIONS} ${limitContext}`);
|
|
1139
|
+
messages.push({ role: "user", content: message });
|
|
1140
|
+
providerRuntime.resetTurnState(messages);
|
|
1141
|
+
};
|
|
1142
|
+
const toolLoopState = (0, tool_loop_1.createToolLoopState)();
|
|
1143
|
+
const toolFrictionLedger = (0, tool_friction_1.createToolFrictionLedger)();
|
|
1144
|
+
const finishTerminalProviderError = (error, classification) => {
|
|
1145
|
+
terminalError = error;
|
|
1146
|
+
terminalErrorClassification = classification;
|
|
1147
|
+
/* v8 ignore start — auth-failure guidance: tested via provider error classification tests @preserve */
|
|
1148
|
+
if (terminalErrorClassification === "auth-failure") {
|
|
1149
|
+
const agentName = (0, identity_2.getAgentName)();
|
|
1150
|
+
const currentProvider = providerRuntime.id;
|
|
1151
|
+
callbacks.onError(new Error(buildAuthFailureGuidance(currentProvider, providerRuntime.model, agentName, terminalError.message)), "terminal");
|
|
1152
|
+
}
|
|
1153
|
+
else {
|
|
1154
|
+
callbacks.onError(terminalError, "terminal");
|
|
1155
|
+
}
|
|
1156
|
+
/* v8 ignore stop */
|
|
1157
|
+
const errorDetails = (0, error_classification_1.extractProviderErrorDetails)(terminalError);
|
|
1158
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1159
|
+
level: "error",
|
|
1160
|
+
event: "engine.error",
|
|
1161
|
+
trace_id: traceId,
|
|
1162
|
+
component: "engine",
|
|
1163
|
+
message: terminalError.message,
|
|
1164
|
+
meta: {
|
|
1165
|
+
provider: providerRuntime.id,
|
|
1166
|
+
model: providerRuntime.model,
|
|
1167
|
+
errorClassification: terminalErrorClassification,
|
|
1168
|
+
...(errorDetails.status !== undefined ? { httpStatus: errorDetails.status } : {}),
|
|
1169
|
+
...(errorDetails.bodyExcerpt ? { bodyExcerpt: errorDetails.bodyExcerpt } : {}),
|
|
1170
|
+
summary: (0, error_classification_1.summarizeProviderError)(terminalError, terminalErrorClassification, providerRuntime.id, providerRuntime.model),
|
|
1171
|
+
},
|
|
1172
|
+
});
|
|
1173
|
+
stripLastToolCalls(messages);
|
|
1174
|
+
stripLastToolCalls(generatedMessages);
|
|
1175
|
+
outcome = "errored";
|
|
1176
|
+
done = true;
|
|
1177
|
+
};
|
|
477
1178
|
// Prevent MaxListenersExceeded warning — each iteration adds a listener
|
|
478
1179
|
try {
|
|
479
1180
|
require("events").setMaxListeners(50, signal);
|
|
480
1181
|
}
|
|
481
1182
|
catch { /* unsupported */ }
|
|
482
1183
|
const toolPreferences = currentContext?.friend?.toolPreferences;
|
|
483
|
-
const
|
|
1184
|
+
const unboundBaseTools = options?.tools ?? (0, tools_1.getToolsForChannel)(channel ? (0, friends_1.getChannelCapabilities)(channel) : undefined, toolPreferences && Object.keys(toolPreferences).length > 0 ? toolPreferences : undefined, currentContext, providerRuntime.capabilities, options?.mcpManager, providerRuntime.model);
|
|
1185
|
+
const relationshipToolNames = options?.toolContext?.relationshipAuthorization?.advertisedToolNames;
|
|
1186
|
+
const relationshipScopedTools = relationshipToolNames
|
|
1187
|
+
? unboundBaseTools.filter((tool) => relationshipToolNames.includes(tool.function.name))
|
|
1188
|
+
: unboundBaseTools;
|
|
1189
|
+
const baseTools = bindCurrentIngressEvidenceLocator(relationshipScopedTools, options?.toolContext?.currentIngressEvidence);
|
|
484
1190
|
// Augment tool context with reasoning effort controls from provider
|
|
485
|
-
const
|
|
1191
|
+
const baseToolContext = options?.toolContext
|
|
1192
|
+
?? (turnOrientationFrame ? { signin: async () => undefined, orientationFrame: turnOrientationFrame } : undefined);
|
|
1193
|
+
const habitSession = options?.habitSession ?? baseToolContext?.habitSession;
|
|
1194
|
+
const augmentedToolContext = baseToolContext
|
|
486
1195
|
? {
|
|
487
|
-
...
|
|
1196
|
+
...baseToolContext,
|
|
488
1197
|
supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
|
|
489
1198
|
setReasoningEffort: (level) => { currentReasoningEffort = level; },
|
|
1199
|
+
activeWorkFrame: options?.activeWorkFrame,
|
|
1200
|
+
orientationFrame: turnOrientationFrame ?? baseToolContext.orientationFrame,
|
|
1201
|
+
...(habitSession ? { habitSession } : {}),
|
|
490
1202
|
}
|
|
491
|
-
:
|
|
1203
|
+
: habitSession
|
|
1204
|
+
? {
|
|
1205
|
+
signin: async () => undefined,
|
|
1206
|
+
habitSession,
|
|
1207
|
+
supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
|
|
1208
|
+
setReasoningEffort: (level) => { currentReasoningEffort = level; },
|
|
1209
|
+
}
|
|
1210
|
+
: undefined;
|
|
492
1211
|
// Rebase provider-owned turn state from canonical messages at user-turn start.
|
|
493
1212
|
// This prevents stale provider caches from replaying prior-turn context.
|
|
494
1213
|
providerRuntime.resetTurnState(messages);
|
|
495
1214
|
while (!done) {
|
|
496
|
-
//
|
|
497
|
-
//
|
|
498
|
-
//
|
|
499
|
-
//
|
|
500
|
-
|
|
501
|
-
|
|
1215
|
+
// Channel-based tool filtering:
|
|
1216
|
+
// - Private runtime: exclude send_message (delivery via surface), observe (no one to observe)
|
|
1217
|
+
// - All outward channels (1:1, group, reaction): observe available
|
|
1218
|
+
//
|
|
1219
|
+
// ponder, settle/rest, surface, and observe are always assembled based on channel context.
|
|
1220
|
+
// ponder is available in ALL channels (outer: think privately, inner: keep turning).
|
|
1221
|
+
// Private runtime gets restTool instead of settleTool (rest = end turn, gated by attention queue).
|
|
1222
|
+
// toolChoiceRequired only controls whether tool_choice: "required" is set in the API call.
|
|
1223
|
+
const isPrivateRuntimeChannel = channel === "inner";
|
|
1224
|
+
const privateRuntimeHabitCanSendMessage = isPrivateRuntimeChannel
|
|
1225
|
+
&& habitSession?.toolPolicy.outwardMessagingAllowed === true
|
|
1226
|
+
&& habitSession.toolPolicy.grantedTools.includes("send_message");
|
|
1227
|
+
const privateRuntimeHabitCanSurface = isPrivateRuntimeChannel
|
|
1228
|
+
&& (!habitSession || (habitSession.toolPolicy.outwardMessagingAllowed === true
|
|
1229
|
+
&& habitSession.toolPolicy.grantedTools.includes("surface")));
|
|
1230
|
+
const filteredBaseTools = isPrivateRuntimeChannel
|
|
1231
|
+
? baseTools.filter((t) => privateRuntimeHabitCanSendMessage || t.function.name !== "send_message")
|
|
502
1232
|
: baseTools;
|
|
1233
|
+
const unscopedOrdinaryActiveTools = [
|
|
1234
|
+
...filteredBaseTools,
|
|
1235
|
+
...(augmentedToolContext?.noSend === true ? [] : [tools_1.ponderTool]),
|
|
1236
|
+
...(isPrivateRuntimeChannel && privateRuntimeHabitCanSurface ? [tools_2.surfaceToolDef] : []),
|
|
1237
|
+
...(isPrivateRuntimeChannel ? [tools_1.restTool] : []),
|
|
1238
|
+
...(!isPrivateRuntimeChannel ? [tools_1.observeTool] : []),
|
|
1239
|
+
...(!isPrivateRuntimeChannel ? [tools_1.settleTool] : []),
|
|
1240
|
+
...(isChatStyleChannel(channel ?? "") ? [tools_1.speakTool] : []),
|
|
1241
|
+
];
|
|
1242
|
+
const ordinaryActiveTools = relationshipToolNames
|
|
1243
|
+
? unscopedOrdinaryActiveTools.filter((tool) => relationshipToolNames.includes(tool.function.name))
|
|
1244
|
+
: unscopedOrdinaryActiveTools;
|
|
1245
|
+
const candidateActiveTools = options?.toolProfile === "sanctuary-health-private"
|
|
1246
|
+
? (() => {
|
|
1247
|
+
const sendTools = baseTools.filter((tool) => tool.function.name === "send_message");
|
|
1248
|
+
if (channel !== "inner" || sendTools.length !== 1 || baseTools.length !== 1) {
|
|
1249
|
+
throw new Error("sanctuary-health-private requires inner channel with exactly one canonical send_message definition");
|
|
1250
|
+
}
|
|
1251
|
+
return [sendTools[0], tools_1.restTool];
|
|
1252
|
+
})()
|
|
1253
|
+
: ordinaryActiveTools;
|
|
1254
|
+
const candidateToolNames = new Set(candidateActiveTools.map((tool) => tool.function.name));
|
|
1255
|
+
const unadvertisedRequiredTool = requiredToolCallNames.find((name) => !candidateToolNames.has(name));
|
|
1256
|
+
if (unadvertisedRequiredTool) {
|
|
1257
|
+
(0, runtime_1.emitNervesEvent)({ level: "error", component: "engine", event: "engine.required_tool_unadvertised", message: "required tool is not advertised for the active channel", meta: { toolName: unadvertisedRequiredTool, channel: String(channel) } });
|
|
1258
|
+
throw new Error(`required tool is not advertised for this channel: ${unadvertisedRequiredTool}`);
|
|
1259
|
+
}
|
|
1260
|
+
const forcedHistoricalToolNames = new Set(unresolvedHistoricalEffects
|
|
1261
|
+
.map((effect) => effect.name)
|
|
1262
|
+
.filter((name) => candidateToolNames.has(name)));
|
|
1263
|
+
const forcingHistoricalEffect = forcedHistoricalToolNames.size > 0;
|
|
1264
|
+
const activeTools = forcingHistoricalEffect
|
|
1265
|
+
? candidateActiveTools.filter((tool) => forcedHistoricalToolNames.has(tool.function.name))
|
|
1266
|
+
: candidateActiveTools;
|
|
1267
|
+
const activeToolNames = new Set(activeTools.map((tool) => tool.function.name));
|
|
503
1268
|
const steeringFollowUps = options?.drainSteeringFollowUps?.() ?? [];
|
|
504
1269
|
if (steeringFollowUps.length > 0) {
|
|
505
1270
|
const hasSupersedingFollowUp = steeringFollowUps.some((followUp) => followUp.effect === "clear_and_supersede");
|
|
@@ -526,26 +1291,174 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
526
1291
|
break;
|
|
527
1292
|
}
|
|
528
1293
|
try {
|
|
529
|
-
|
|
530
|
-
const
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
1294
|
+
const turnCallbackBufferRef = { current: null };
|
|
1295
|
+
const callProviderTurn = async () => {
|
|
1296
|
+
callbacks.onModelStart();
|
|
1297
|
+
turnCallbackBufferRef.current = habitSession
|
|
1298
|
+
? createHabitCallbackBuffer(callbacks)
|
|
1299
|
+
: callbacks.settleOutputMode === "final_only"
|
|
1300
|
+
? createFinalOnlyTextBuffer(callbacks)
|
|
1301
|
+
: null;
|
|
1302
|
+
try {
|
|
1303
|
+
const promptBudget = (0, prompt_budget_1.applyPromptBudget)({
|
|
1304
|
+
messages,
|
|
1305
|
+
requiredPromptEvidence: options?.requiredPromptEvidence,
|
|
1306
|
+
provider: providerRuntime.id,
|
|
1307
|
+
model: providerRuntime.model,
|
|
1308
|
+
contextWindowTokens: (0, config_1.getContextConfig)().maxTokens,
|
|
1309
|
+
});
|
|
1310
|
+
if (promptBudget.status !== "within_budget") {
|
|
1311
|
+
messages.splice(0, messages.length, ...promptBudget.messages);
|
|
1312
|
+
providerRuntime.resetTurnState(messages);
|
|
1313
|
+
}
|
|
1314
|
+
return await providerRuntime.streamTurn({
|
|
1315
|
+
messages,
|
|
1316
|
+
activeTools,
|
|
1317
|
+
callbacks: turnCallbackBufferRef.current?.callbacks ?? callbacks,
|
|
1318
|
+
signal,
|
|
1319
|
+
traceId,
|
|
1320
|
+
toolChoiceRequired: forcingHistoricalEffect || toolChoiceRequired,
|
|
1321
|
+
reasoningEffort: currentReasoningEffort,
|
|
1322
|
+
eagerSettleStreaming: true,
|
|
1323
|
+
systemPrompt: structuredSystemPrompt,
|
|
1324
|
+
});
|
|
1325
|
+
}
|
|
1326
|
+
catch (error) {
|
|
1327
|
+
turnCallbackBufferRef.current?.discard();
|
|
1328
|
+
turnCallbackBufferRef.current = null;
|
|
1329
|
+
if (signal?.aborted)
|
|
1330
|
+
throw new provider_attempt_1.ProviderAttemptAbortError();
|
|
1331
|
+
throw error;
|
|
1332
|
+
}
|
|
1333
|
+
};
|
|
1334
|
+
const callProviderTurnWithOverflowRecovery = async () => {
|
|
1335
|
+
try {
|
|
1336
|
+
return await callProviderTurn();
|
|
1337
|
+
}
|
|
1338
|
+
catch (error) {
|
|
1339
|
+
if (error instanceof provider_attempt_1.ProviderAttemptAbortError)
|
|
1340
|
+
throw error;
|
|
1341
|
+
if (isContextOverflow(error) && !overflowRetried) {
|
|
1342
|
+
overflowRetried = true;
|
|
1343
|
+
stripLastToolCalls(messages);
|
|
1344
|
+
stripLastToolCalls(generatedMessages);
|
|
1345
|
+
const { maxTokens, contextMargin } = (0, config_1.getContextConfig)();
|
|
1346
|
+
const trimmed = (0, context_1.trimMessages)(messages, maxTokens, contextMargin, maxTokens * 2);
|
|
1347
|
+
const requiredEvidence = options?.requiredPromptEvidence;
|
|
1348
|
+
const requiredMessages = new Set([
|
|
1349
|
+
...(requiredEvidence?.verifiedPredecessorMessage ? [requiredEvidence.verifiedPredecessorMessage] : []),
|
|
1350
|
+
...(requiredEvidence?.currentUserMessage ? [requiredEvidence.currentUserMessage] : []),
|
|
1351
|
+
]);
|
|
1352
|
+
const trimmedMessages = new Set(trimmed);
|
|
1353
|
+
const overflowRetryMessages = requiredMessages.size === 0
|
|
1354
|
+
? trimmed
|
|
1355
|
+
: messages.filter((message) => trimmedMessages.has(message) || requiredMessages.has(message));
|
|
1356
|
+
messages.splice(0, messages.length, ...overflowRetryMessages);
|
|
1357
|
+
providerRuntime.resetTurnState(messages);
|
|
1358
|
+
callbacks.onError(new Error("context trimmed, retrying..."), "transient");
|
|
1359
|
+
return callProviderTurn();
|
|
1360
|
+
}
|
|
1361
|
+
throw error;
|
|
1362
|
+
}
|
|
1363
|
+
};
|
|
1364
|
+
const attempt = await (0, provider_attempt_1.runProviderAttempt)({
|
|
1365
|
+
operation: "turn",
|
|
1366
|
+
provider: providerRuntime.id,
|
|
1367
|
+
model: providerRuntime.model,
|
|
1368
|
+
run: callProviderTurnWithOverflowRecovery,
|
|
1369
|
+
classifyError: (error) => providerRuntime.classifyError(error),
|
|
1370
|
+
onRetry: async (record, maxAttempts) => {
|
|
1371
|
+
const delayMs = record.delayMs;
|
|
1372
|
+
const seconds = delayMs / 1000;
|
|
1373
|
+
const cause = RETRY_LABELS[record.classification];
|
|
1374
|
+
try {
|
|
1375
|
+
if (record.provider === "openai-codex" && record.classification === "auth-failure") {
|
|
1376
|
+
await (0, openai_codex_token_1.refreshOpenAICodexProviderCredentials)((0, identity_2.getAgentName)(), {
|
|
1377
|
+
force: true,
|
|
1378
|
+
reason: "turn-auth-failure",
|
|
1379
|
+
});
|
|
1380
|
+
}
|
|
1381
|
+
await (0, provider_credentials_1.refreshProviderCredentialPool)((0, identity_2.getAgentName)(), {
|
|
1382
|
+
preserveCachedOnFailure: true,
|
|
1383
|
+
providers: [record.provider],
|
|
1384
|
+
});
|
|
1385
|
+
_providerRuntimeFactories[facing] = null;
|
|
1386
|
+
providerRuntime = await getProviderRuntime(facing);
|
|
1387
|
+
providerRuntime.resetTurnState(messages);
|
|
1388
|
+
}
|
|
1389
|
+
catch (refreshError) {
|
|
1390
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1391
|
+
level: "warn",
|
|
1392
|
+
component: "engine",
|
|
1393
|
+
event: "engine.provider_retry_refresh_failed",
|
|
1394
|
+
message: "provider credential refresh failed during retry",
|
|
1395
|
+
meta: { provider: record.provider, model: record.model, reason: refreshError instanceof Error ? refreshError.message : String(refreshError) },
|
|
1396
|
+
});
|
|
1397
|
+
}
|
|
1398
|
+
callbacks.onError(new Error(`${cause}, retrying in ${seconds}s (${record.attempt}/${maxAttempts})...`), "transient");
|
|
1399
|
+
},
|
|
1400
|
+
sleep: async (delayMs) => {
|
|
1401
|
+
await waitForProviderRetry(delayMs, signal);
|
|
1402
|
+
providerRuntime.resetTurnState(messages);
|
|
1403
|
+
},
|
|
538
1404
|
});
|
|
1405
|
+
if (!attempt.ok) {
|
|
1406
|
+
finishTerminalProviderError(attempt.error, attempt.classification);
|
|
1407
|
+
continue;
|
|
1408
|
+
}
|
|
1409
|
+
const result = attempt.value;
|
|
1410
|
+
providerIterations += 1;
|
|
1411
|
+
if (providerIterations === exports.MAX_PROVIDER_ITERATIONS && result.toolCalls.length > 0) {
|
|
1412
|
+
throw new Error(`provider iteration limit exhausted at response ${exports.MAX_PROVIDER_ITERATIONS} before tool execution`);
|
|
1413
|
+
}
|
|
1414
|
+
const streamCallbackBuffer = turnCallbackBufferRef.current;
|
|
1415
|
+
turnCallbackBufferRef.current = null;
|
|
1416
|
+
if (result.settleFinalization && !result.settleFinalization.ok) {
|
|
1417
|
+
// A completed settle payload is terminal provider output, not a prompt
|
|
1418
|
+
// for another model turn. Retractable callbacks have already cleared;
|
|
1419
|
+
// core-owned callback buffers must be discarded before surfacing the exact
|
|
1420
|
+
// parser failure through the ordinary terminal-error path.
|
|
1421
|
+
streamCallbackBuffer?.discard();
|
|
1422
|
+
finishTerminalProviderError(new Error(result.settleFinalization.errorCode), "unknown");
|
|
1423
|
+
continue;
|
|
1424
|
+
}
|
|
539
1425
|
// Track usage from the latest API call
|
|
540
1426
|
if (result.usage)
|
|
541
1427
|
lastUsage = result.usage;
|
|
542
|
-
retryCount = 0; // reset on success
|
|
543
1428
|
// SHARED: build CC-format assistant message from TurnResult
|
|
544
1429
|
const msg = {
|
|
545
1430
|
role: "assistant",
|
|
546
1431
|
};
|
|
547
|
-
|
|
548
|
-
|
|
1432
|
+
// Persist assistant content WITHOUT inline <think>...</think> blocks.
|
|
1433
|
+
// Reasoning content already routed through onReasoningChunk for live
|
|
1434
|
+
// surfacing and persisted separately as `_reasoning_items` for
|
|
1435
|
+
// providers that support a reasoning channel; saving it inline AND
|
|
1436
|
+
// alongside tool_calls causes MiniMax to reject the replayed turn
|
|
1437
|
+
// with "tool result's tool id not found" (error code 2013) because
|
|
1438
|
+
// it can't reconcile reasoning-with-tools in the same assistant
|
|
1439
|
+
// message. Strip aggressively at persist so the next replay is
|
|
1440
|
+
// clean; preserve the original reasoning trace on the message via
|
|
1441
|
+
// `_inline_reasoning` so debug/audit paths can still see it.
|
|
1442
|
+
if (result.content) {
|
|
1443
|
+
const stripped = stripThinkBlocksForViolationCheck(result.content);
|
|
1444
|
+
if (stripped.length > 0)
|
|
1445
|
+
msg.content = stripped;
|
|
1446
|
+
if (stripped.length !== result.content.length) {
|
|
1447
|
+
msg._inline_reasoning = result.content;
|
|
1448
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1449
|
+
level: "info",
|
|
1450
|
+
component: "engine",
|
|
1451
|
+
event: "engine.inline_reasoning_stripped",
|
|
1452
|
+
message: "stripped inline <think> blocks from persisted assistant message; preserved on _inline_reasoning",
|
|
1453
|
+
meta: {
|
|
1454
|
+
provider: providerRuntime.id,
|
|
1455
|
+
model: providerRuntime.model,
|
|
1456
|
+
originalLength: result.content.length,
|
|
1457
|
+
strippedLength: stripped.length,
|
|
1458
|
+
},
|
|
1459
|
+
});
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
549
1462
|
if (result.toolCalls.length)
|
|
550
1463
|
msg.tool_calls = result.toolCalls.map((tc) => ({
|
|
551
1464
|
id: tc.id,
|
|
@@ -565,319 +1478,951 @@ async function runAgent(messages, callbacks, channel, signal, options) {
|
|
|
565
1478
|
}
|
|
566
1479
|
// Phase annotation for Codex provider
|
|
567
1480
|
const hasPhaseAnnotation = providerRuntime.capabilities.has("phase-annotation");
|
|
568
|
-
const
|
|
1481
|
+
const isSoleSettle = result.toolCalls.length === 1 && result.toolCalls[0].name === "settle";
|
|
569
1482
|
if (hasPhaseAnnotation) {
|
|
570
|
-
msg.phase =
|
|
1483
|
+
msg.phase = isSoleSettle ? "settle" : "commentary";
|
|
571
1484
|
}
|
|
1485
|
+
// Detect the MiniMax "only-thinking, no tool call" violation: no tool
|
|
1486
|
+
// calls returned, and the content is empty after stripping
|
|
1487
|
+
// <think>...</think> blocks. This is a narrow check — legitimate
|
|
1488
|
+
// content-only responses (text without think tags, or text outside
|
|
1489
|
+
// think tags) still flow through the original "no tool calls →
|
|
1490
|
+
// accept as-is" path so existing channels and tests are unaffected.
|
|
1491
|
+
const onlyThinkContent = !result.toolCalls.length
|
|
1492
|
+
&& typeof result.content === "string"
|
|
1493
|
+
&& stripThinkBlocksForViolationCheck(result.content).length === 0
|
|
1494
|
+
&& result.content.length > 0;
|
|
1495
|
+
const privateReturnTextAckRetryError = !result.toolCalls.length
|
|
1496
|
+
? privateReturnMissingPonderError({
|
|
1497
|
+
latestUserRequest: latestUserMessageText(messages),
|
|
1498
|
+
answer: stripThinkBlocksForViolationCheck(result.content),
|
|
1499
|
+
sawPonder,
|
|
1500
|
+
})
|
|
1501
|
+
: null;
|
|
572
1502
|
if (!result.toolCalls.length) {
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
1503
|
+
if (forcingHistoricalEffect) {
|
|
1504
|
+
streamCallbackBuffer?.discard();
|
|
1505
|
+
callbacks.onClearText?.();
|
|
1506
|
+
const retryableHistoricalTools = [...forcedHistoricalToolNames];
|
|
1507
|
+
if (historicalToolFailureRetries >= NO_TOOL_CALL_MAX_RETRIES) {
|
|
1508
|
+
const blockedAnswer = `I could not complete the unresolved ${retryableHistoricalTools.join(", ")} effect because the provider repeatedly returned no tool call. I did not treat the requested change as complete.`;
|
|
1509
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1510
|
+
level: "warn",
|
|
1511
|
+
component: "engine",
|
|
1512
|
+
event: "engine.historical_tool_failure_retry",
|
|
1513
|
+
message: "unresolved historical effect exhausted deterministic tool-call retries; failing closed",
|
|
1514
|
+
meta: { provider: providerRuntime.id, model: providerRuntime.model, toolNames: retryableHistoricalTools, cap: NO_TOOL_CALL_MAX_RETRIES },
|
|
1515
|
+
});
|
|
1516
|
+
msg.content = blockedAnswer;
|
|
1517
|
+
pushGenerated(msg);
|
|
1518
|
+
callbacks.onTextChunk(blockedAnswer);
|
|
1519
|
+
completion = { answer: blockedAnswer, intent: "blocked" };
|
|
1520
|
+
outcome = "blocked";
|
|
1521
|
+
done = true;
|
|
1522
|
+
continue;
|
|
1523
|
+
}
|
|
1524
|
+
historicalToolFailureRetries += 1;
|
|
1525
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1526
|
+
level: "warn",
|
|
1527
|
+
component: "engine",
|
|
1528
|
+
event: "engine.historical_tool_failure_retry",
|
|
1529
|
+
message: "unresolved historical effect returned no tool call; forcing another exact-effect attempt",
|
|
1530
|
+
meta: {
|
|
1531
|
+
provider: providerRuntime.id,
|
|
1532
|
+
model: providerRuntime.model,
|
|
1533
|
+
toolNames: retryableHistoricalTools,
|
|
1534
|
+
attempt: historicalToolFailureRetries,
|
|
1535
|
+
cap: NO_TOOL_CALL_MAX_RETRIES,
|
|
1536
|
+
},
|
|
1537
|
+
});
|
|
1538
|
+
pushGenerated(msg);
|
|
1539
|
+
messages.push({
|
|
1540
|
+
role: "user",
|
|
1541
|
+
content: `this exact request previously reached a tool that is advertised again now. Its unresolved historical effect is through ${retryableHistoricalTools.join(", ")}. Only that tool is available now. Read current state if needed, then retry the exact failed effect. Do not report completion until the effect succeeds.`,
|
|
1542
|
+
});
|
|
1543
|
+
continue;
|
|
1544
|
+
}
|
|
1545
|
+
const requiredToolCallsGate = pendingRequiredToolCalls();
|
|
1546
|
+
if (requiredToolCallsGate) {
|
|
1547
|
+
streamCallbackBuffer?.discard();
|
|
1548
|
+
callbacks.onClearText?.();
|
|
1549
|
+
queueRequiredCorrection(requiredToolCallsGate.message, "before required tool calls completed");
|
|
1550
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1551
|
+
level: "warn",
|
|
1552
|
+
component: "engine",
|
|
1553
|
+
event: "engine.required_tool_calls_pending",
|
|
1554
|
+
message: "terminal response rejected until required tool handlers dispatch",
|
|
1555
|
+
meta: { missingToolNames: requiredToolCallsGate.missing },
|
|
1556
|
+
});
|
|
1557
|
+
continue;
|
|
1558
|
+
}
|
|
1559
|
+
const requiredAnswerRejection = options?.requiredToolCalls?.validateTerminalAnswer?.(String(msg.content ?? ""));
|
|
1560
|
+
if (requiredAnswerRejection) {
|
|
1561
|
+
streamCallbackBuffer?.discard();
|
|
1562
|
+
callbacks.onClearText?.();
|
|
1563
|
+
queueRequiredCorrection(requiredAnswerRejection, "before required terminal answer validation completed");
|
|
1564
|
+
(0, runtime_1.emitNervesEvent)({ level: "warn", component: "engine", event: "engine.required_tool_answer_rejected", message: "unsupported terminal answer rejected after required reads", meta: { answerLength: String(msg.content ?? "").length } });
|
|
1565
|
+
continue;
|
|
1566
|
+
}
|
|
1567
|
+
if (privateReturnTextAckRetryError) {
|
|
1568
|
+
streamCallbackBuffer?.discard();
|
|
1569
|
+
callbacks.onClearText?.();
|
|
1570
|
+
if (noToolCallRetries < NO_TOOL_CALL_MAX_RETRIES) {
|
|
1571
|
+
noToolCallRetries++;
|
|
1572
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1573
|
+
level: "warn",
|
|
1574
|
+
component: "engine",
|
|
1575
|
+
event: "engine.no_tool_call_retry",
|
|
1576
|
+
message: "model returned a text-only private-return acknowledgement without ponder; retrying with corrective nudge",
|
|
1577
|
+
meta: {
|
|
1578
|
+
attempt: noToolCallRetries,
|
|
1579
|
+
cap: NO_TOOL_CALL_MAX_RETRIES,
|
|
1580
|
+
provider: providerRuntime.id,
|
|
1581
|
+
model: providerRuntime.model,
|
|
1582
|
+
reason: "private_return_missing_ponder",
|
|
1583
|
+
contentLength: result.content.length,
|
|
1584
|
+
},
|
|
1585
|
+
});
|
|
1586
|
+
pushGenerated(msg);
|
|
1587
|
+
messages.push({
|
|
1588
|
+
role: "user",
|
|
1589
|
+
content: `${privateReturnTextAckRetryError} Emit the ponder(action=create, ...) tool call now, or ask a blocking clarification without saying the private work is queued.`,
|
|
1590
|
+
});
|
|
1591
|
+
continue;
|
|
1592
|
+
}
|
|
1593
|
+
const blockedAnswer = "I could not start the private pass. No private-attention packet was created, so no return work was queued.";
|
|
1594
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1595
|
+
level: "error",
|
|
1596
|
+
component: "engine",
|
|
1597
|
+
event: "engine.private_return_missing_ponder_blocked",
|
|
1598
|
+
message: "private-return text acknowledgement skipped ponder through the retry cap; failing closed",
|
|
1599
|
+
meta: {
|
|
1600
|
+
cap: NO_TOOL_CALL_MAX_RETRIES,
|
|
1601
|
+
provider: providerRuntime.id,
|
|
1602
|
+
model: providerRuntime.model,
|
|
1603
|
+
contentLength: result.content.length,
|
|
1604
|
+
},
|
|
1605
|
+
});
|
|
1606
|
+
msg.content = blockedAnswer;
|
|
1607
|
+
pushGenerated(msg);
|
|
1608
|
+
callbacks.onTextChunk(blockedAnswer);
|
|
1609
|
+
completion = { answer: blockedAnswer, intent: "blocked" };
|
|
1610
|
+
outcome = "blocked";
|
|
1611
|
+
done = true;
|
|
1612
|
+
continue;
|
|
1613
|
+
}
|
|
1614
|
+
if (onlyThinkContent && toolChoiceRequired && noToolCallRetries < NO_TOOL_CALL_MAX_RETRIES) {
|
|
1615
|
+
streamCallbackBuffer?.discard();
|
|
1616
|
+
// Provider-level violation: tool_choice was required, model emitted
|
|
1617
|
+
// only a <think>...</think> block (or empty content) with no tool
|
|
1618
|
+
// call. Retry with a corrective nudge up to NO_TOOL_CALL_MAX_RETRIES
|
|
1619
|
+
// times. After cap, accept as-is (the readback path strips think
|
|
1620
|
+
// tags and surfaces a clear diagnostic).
|
|
1621
|
+
noToolCallRetries++;
|
|
1622
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1623
|
+
level: "warn",
|
|
1624
|
+
component: "engine",
|
|
1625
|
+
event: "engine.no_tool_call_retry",
|
|
1626
|
+
message: "model returned only <think> content with no tool call despite tool_choice=required; retrying with corrective nudge",
|
|
1627
|
+
meta: {
|
|
1628
|
+
attempt: noToolCallRetries,
|
|
1629
|
+
cap: NO_TOOL_CALL_MAX_RETRIES,
|
|
1630
|
+
provider: providerRuntime.id,
|
|
1631
|
+
model: providerRuntime.model,
|
|
1632
|
+
contentLength: result.content.length,
|
|
1633
|
+
},
|
|
1634
|
+
});
|
|
1635
|
+
pushGenerated(msg);
|
|
1636
|
+
messages.push({
|
|
1637
|
+
role: "user",
|
|
1638
|
+
content: isPrivateRuntimeChannel
|
|
1639
|
+
? augmentedToolContext?.noSend === true
|
|
1640
|
+
? "no tool was called this turn. this is an immutable no-send turn; call rest now without creating a continuation."
|
|
1641
|
+
: "no tool was called this turn. you must end every turn by calling rest (or surface, ponder, observe). emit the tool call now."
|
|
1642
|
+
: "no tool was called this turn. you must end every turn by calling settle with your answer (or ponder/observe). emit the tool call now.",
|
|
1643
|
+
});
|
|
1644
|
+
continue;
|
|
1645
|
+
}
|
|
1646
|
+
// Legitimate text-only response, or cap reached — accept as-is.
|
|
1647
|
+
await streamCallbackBuffer?.flush();
|
|
1648
|
+
pushGenerated(msg);
|
|
577
1649
|
done = true;
|
|
578
1650
|
}
|
|
579
1651
|
else {
|
|
580
|
-
//
|
|
581
|
-
|
|
1652
|
+
// Reset the retry counter on any successful tool call.
|
|
1653
|
+
noToolCallRetries = 0;
|
|
1654
|
+
const preCallMessages = structuredClone(messages.filter((message) => message.role !== "system"));
|
|
1655
|
+
const validatedCalls = validateToolCallBatchAtProductionBoundary(result.toolCalls, activeTools);
|
|
1656
|
+
const invalidCall = validatedCalls.find((entry) => "error" in entry);
|
|
1657
|
+
if (invalidCall) {
|
|
1658
|
+
await streamCallbackBuffer?.flush();
|
|
1659
|
+
pushGenerated(msg);
|
|
1660
|
+
const unadvertisedCall = validatedCalls.find((entry) => !activeToolNames.has(entry.call.name));
|
|
1661
|
+
for (const entry of validatedCalls) {
|
|
1662
|
+
const detail = "error" in entry ? entry.error : "another call in this batch had invalid arguments";
|
|
1663
|
+
const rejection = unadvertisedCall
|
|
1664
|
+
? `rejected: ${entry.call.name} was not advertised for this channel; no handler was executed.`
|
|
1665
|
+
: `invalid tool arguments: ${detail}`;
|
|
1666
|
+
pushGenerated({ role: "tool", tool_call_id: entry.call.id, content: rejection });
|
|
1667
|
+
providerRuntime.appendToolOutput(entry.call.id, rejection);
|
|
1668
|
+
options?.toolBoundaryObserver?.({
|
|
1669
|
+
name: entry.call.name,
|
|
1670
|
+
reason: activeToolNames.has(entry.call.name) ? "invalid_arguments" : "profile_excluded",
|
|
1671
|
+
globallyResolvable: typeof (0, tools_1.resolveToolDefinition)(entry.call.name)?.handler === "function",
|
|
1672
|
+
invoked: false,
|
|
1673
|
+
sideEffect: false,
|
|
1674
|
+
});
|
|
1675
|
+
}
|
|
1676
|
+
if (unadvertisedCall) {
|
|
1677
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1678
|
+
level: "warn",
|
|
1679
|
+
component: "engine",
|
|
1680
|
+
event: "engine.unadvertised_tool_blocked",
|
|
1681
|
+
message: "blocked an unadvertised tool call before batch execution",
|
|
1682
|
+
meta: { channel: String(channel), toolName: unadvertisedCall.call.name },
|
|
1683
|
+
});
|
|
1684
|
+
}
|
|
1685
|
+
else {
|
|
1686
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1687
|
+
level: "warn",
|
|
1688
|
+
component: "engine",
|
|
1689
|
+
event: "engine.tool_arguments_rejected",
|
|
1690
|
+
message: "tool batch rejected before execution because arguments were invalid",
|
|
1691
|
+
meta: { toolCallId: invalidCall.call.id, toolName: invalidCall.call.name },
|
|
1692
|
+
});
|
|
1693
|
+
}
|
|
1694
|
+
continue;
|
|
1695
|
+
}
|
|
1696
|
+
const validCalls = validatedCalls;
|
|
1697
|
+
const validatedCallArguments = new Map(validCalls.map((entry) => [
|
|
1698
|
+
entry.call,
|
|
1699
|
+
entry.validated.arguments,
|
|
1700
|
+
]));
|
|
1701
|
+
const habitBlockReason = await habitToolBatchBlockReason(habitSession, result.toolCalls, augmentedToolContext?.delegatedOrigins);
|
|
1702
|
+
if (habitBlockReason) {
|
|
1703
|
+
streamCallbackBuffer?.discard();
|
|
1704
|
+
recordBlockedHabitSurfaceAttempts(habitSession, result.toolCalls, habitBlockReason);
|
|
1705
|
+
pushGenerated(msg);
|
|
1706
|
+
const blockedOutput = `blocked: ${habitBlockReason}. No tool side effects from this assistant message were executed.`;
|
|
1707
|
+
for (const call of result.toolCalls) {
|
|
1708
|
+
pushGenerated({ role: "tool", tool_call_id: call.id, content: blockedOutput });
|
|
1709
|
+
providerRuntime.appendToolOutput(call.id, blockedOutput);
|
|
1710
|
+
}
|
|
1711
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1712
|
+
level: "warn",
|
|
1713
|
+
component: "engine",
|
|
1714
|
+
event: "engine.habit_tool_batch_blocked",
|
|
1715
|
+
message: "habit tool batch blocked before side effects",
|
|
1716
|
+
meta: { reason: habitBlockReason, toolCalls: result.toolCalls.map((call) => call.name) },
|
|
1717
|
+
});
|
|
1718
|
+
continue;
|
|
1719
|
+
}
|
|
1720
|
+
const soleTerminalCall = result.toolCalls.length === 1
|
|
1721
|
+
? result.toolCalls[0]
|
|
1722
|
+
: null;
|
|
1723
|
+
const soleTerminalProjection = soleTerminalCall
|
|
1724
|
+
? (0, tools_1.resolveToolDefinition)(soleTerminalCall.name)?.terminalProjection
|
|
1725
|
+
: undefined;
|
|
1726
|
+
if (soleTerminalCall && soleTerminalProjection?.mode === "verbatim") {
|
|
1727
|
+
const terminalArgs = validatedCallArguments.get(soleTerminalCall);
|
|
1728
|
+
if (soleTerminalProjection.clearBufferedText
|
|
1729
|
+
|| callbacks.settleOutputMode === "final_only") {
|
|
1730
|
+
streamCallbackBuffer?.discard();
|
|
1731
|
+
}
|
|
1732
|
+
else {
|
|
1733
|
+
await streamCallbackBuffer?.flush();
|
|
1734
|
+
}
|
|
1735
|
+
if (soleTerminalProjection.clearBufferedText)
|
|
1736
|
+
callbacks.onClearText?.();
|
|
1737
|
+
callbacks.onToolStart(soleTerminalCall.name, terminalArgs);
|
|
1738
|
+
let terminalResult;
|
|
1739
|
+
try {
|
|
1740
|
+
const execToolFn = options?.execTool ?? tools_1.execTool;
|
|
1741
|
+
terminalResult = await execToolFn(soleTerminalCall.name, terminalArgs, augmentedToolContext);
|
|
1742
|
+
}
|
|
1743
|
+
catch (error) {
|
|
1744
|
+
callbacks.onToolEnd(soleTerminalCall.name, (0, tools_1.summarizeArgs)(soleTerminalCall.name, terminalArgs), false);
|
|
1745
|
+
pushGenerated(msg);
|
|
1746
|
+
const failure = error instanceof Error ? `error: ${error.message}` : `error: ${String(error)}`;
|
|
1747
|
+
pushGenerated({ role: "tool", tool_call_id: soleTerminalCall.id, content: failure });
|
|
1748
|
+
providerRuntime.appendToolOutput(soleTerminalCall.id, failure);
|
|
1749
|
+
callbacks.onTextChunk(failure);
|
|
1750
|
+
completion = { answer: failure, intent: "blocked" };
|
|
1751
|
+
outcome = "blocked";
|
|
1752
|
+
done = true;
|
|
1753
|
+
continue;
|
|
1754
|
+
}
|
|
1755
|
+
callbacks.onToolEnd(soleTerminalCall.name, (0, tools_1.summarizeArgs)(soleTerminalCall.name, terminalArgs), true);
|
|
1756
|
+
pushGenerated(msg);
|
|
1757
|
+
pushGenerated({ role: "tool", tool_call_id: soleTerminalCall.id, content: terminalResult });
|
|
1758
|
+
providerRuntime.appendToolOutput(soleTerminalCall.id, terminalResult);
|
|
1759
|
+
callbacks.onTextChunk(terminalResult);
|
|
1760
|
+
completion = { answer: terminalResult, intent: "complete" };
|
|
1761
|
+
outcome = "settled";
|
|
1762
|
+
done = true;
|
|
1763
|
+
continue;
|
|
1764
|
+
}
|
|
1765
|
+
// Check for settle sole call: intercept before tool execution
|
|
1766
|
+
if (isSoleSettle) {
|
|
1767
|
+
const settleArgs = validatedCallArguments.get(result.toolCalls[0]);
|
|
1768
|
+
callbacks.onToolStart("settle", settleArgs);
|
|
1769
|
+
const requiredToolCallsGate = pendingRequiredToolCalls();
|
|
1770
|
+
if (requiredToolCallsGate) {
|
|
1771
|
+
streamCallbackBuffer?.discard();
|
|
1772
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
|
|
1773
|
+
callbacks.onClearText?.();
|
|
1774
|
+
queueRequiredCorrection(requiredToolCallsGate.message, "before required tool calls completed");
|
|
1775
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1776
|
+
level: "warn",
|
|
1777
|
+
component: "engine",
|
|
1778
|
+
event: "engine.required_tool_calls_pending",
|
|
1779
|
+
message: "settle rejected until required tool handlers dispatch",
|
|
1780
|
+
meta: { missingToolNames: requiredToolCallsGate.missing },
|
|
1781
|
+
});
|
|
1782
|
+
continue;
|
|
1783
|
+
}
|
|
1784
|
+
// Private-runtime attention queue gate: reject settle if items remain
|
|
1785
|
+
const attentionQueue = augmentedToolContext?.delegatedOrigins;
|
|
1786
|
+
if (isPrivateRuntimeChannel && attentionQueue && attentionQueue.length > 0) {
|
|
1787
|
+
streamCallbackBuffer?.discard();
|
|
1788
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
|
|
1789
|
+
callbacks.onClearText?.();
|
|
1790
|
+
pushGenerated(msg);
|
|
1791
|
+
const gateMessage = "current held-work frame still has unsurfaced items — return each listed item with surface(delegationId=...) before you settle. Older transcript claims are historical; only the current held-work frame is the gate.";
|
|
1792
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
|
|
1793
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
|
|
1794
|
+
continue;
|
|
1795
|
+
}
|
|
582
1796
|
// Extract answer from the tool call arguments.
|
|
583
1797
|
// Supports: {"answer":"text","intent":"..."} or "text" (JSON string).
|
|
584
|
-
const { answer, intent } =
|
|
1798
|
+
const { answer, intent } = parseSettlePayload(result.toolCalls[0].arguments);
|
|
1799
|
+
const requiredAnswerRejection = options?.requiredToolCalls?.validateTerminalAnswer?.(answer);
|
|
1800
|
+
if (requiredAnswerRejection) {
|
|
1801
|
+
streamCallbackBuffer?.discard();
|
|
1802
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
|
|
1803
|
+
callbacks.onClearText?.();
|
|
1804
|
+
queueRequiredCorrection(requiredAnswerRejection, "before required terminal answer validation completed");
|
|
1805
|
+
(0, runtime_1.emitNervesEvent)({ level: "warn", component: "engine", event: "engine.required_tool_answer_rejected", message: "unsupported settle answer rejected after required reads", meta: { answerLength: answer.length } });
|
|
1806
|
+
continue;
|
|
1807
|
+
}
|
|
1808
|
+
// Private-runtime settle: no CompletionMetadata, "(settled)" ack
|
|
1809
|
+
if (isPrivateRuntimeChannel) {
|
|
1810
|
+
streamCallbackBuffer?.discard();
|
|
1811
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), true);
|
|
1812
|
+
pushGenerated(msg);
|
|
1813
|
+
const settled = "(settled)";
|
|
1814
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: settled });
|
|
1815
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, settled);
|
|
1816
|
+
outcome = "settled";
|
|
1817
|
+
done = true;
|
|
1818
|
+
continue;
|
|
1819
|
+
}
|
|
1820
|
+
// The provider finalizer has already established a top-level string
|
|
1821
|
+
// answer before ordinary settle handling reaches this point.
|
|
1822
|
+
const deliveredAnswer = answer;
|
|
1823
|
+
const retryError = privateReturnAckLeakError(deliveredAnswer, privateReturnHeldTokens)
|
|
1824
|
+
?? privateReturnMissingPonderError({
|
|
1825
|
+
latestUserRequest: latestUserMessageText(messages),
|
|
1826
|
+
answer: deliveredAnswer,
|
|
1827
|
+
sawPonder,
|
|
1828
|
+
})
|
|
1829
|
+
?? getSettleRetryError(mustResolveBeforeHandoffActive, intent, sawSteeringFollowUp, options?.delegationDecision, sawSendMessageSelf, sawPonder, sawQuerySession, options?.currentObligation ?? null, options?.activeWorkFrame?.inner?.job, sawExternalStateQuery);
|
|
585
1830
|
const validDirectReply = mustResolveBeforeHandoffActive && intent === "direct_reply" && sawSteeringFollowUp;
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
1831
|
+
if (retryError === null) {
|
|
1832
|
+
try {
|
|
1833
|
+
if (!result.settleStreamed) {
|
|
1834
|
+
const acceptedOutputCallbacks = streamCallbackBuffer?.callbacks ?? callbacks;
|
|
1835
|
+
acceptedOutputCallbacks.onTextChunk(deliveredAnswer);
|
|
1836
|
+
}
|
|
1837
|
+
await streamCallbackBuffer?.flush();
|
|
1838
|
+
}
|
|
1839
|
+
catch (error) {
|
|
1840
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
|
|
1841
|
+
streamCallbackBuffer?.discard();
|
|
1842
|
+
finishTerminalProviderError(new streaming_1.SettleFinalizationCallbackError(error), "unknown");
|
|
1843
|
+
continue;
|
|
1844
|
+
}
|
|
1845
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), true);
|
|
590
1846
|
completion = {
|
|
591
|
-
answer,
|
|
1847
|
+
answer: deliveredAnswer,
|
|
592
1848
|
intent: validDirectReply ? "direct_reply" : intent === "blocked" ? "blocked" : "complete",
|
|
593
1849
|
};
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
// re-emitting to avoid double-delivery.
|
|
598
|
-
}
|
|
599
|
-
else {
|
|
600
|
-
// Clear any streamed noise (e.g. refusal text) before emitting.
|
|
601
|
-
callbacks.onClearText?.();
|
|
602
|
-
// Emit the answer through the callback pipeline so channels receive it.
|
|
603
|
-
// Never truncate -- channel adapters handle splitting long messages.
|
|
604
|
-
callbacks.onTextChunk(answer);
|
|
605
|
-
}
|
|
606
|
-
messages.push(msg);
|
|
1850
|
+
// Retractable owners already hold the validated answer. Final-only
|
|
1851
|
+
// owners receive it here, after every semantic continuation gate.
|
|
1852
|
+
pushGenerated(msg);
|
|
607
1853
|
if (validDirectReply) {
|
|
608
1854
|
const resumeWork = "direct reply delivered. resume the unresolved obligation now and keep working until you can finish or clearly report that you are blocked.";
|
|
609
|
-
|
|
1855
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: resumeWork });
|
|
610
1856
|
providerRuntime.appendToolOutput(result.toolCalls[0].id, resumeWork);
|
|
611
1857
|
}
|
|
612
1858
|
else {
|
|
613
1859
|
const delivered = "(delivered)";
|
|
614
|
-
|
|
1860
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: delivered });
|
|
615
1861
|
providerRuntime.appendToolOutput(result.toolCalls[0].id, delivered);
|
|
616
|
-
outcome = intent === "blocked" ? "blocked" : "
|
|
1862
|
+
outcome = intent === "blocked" ? "blocked" : "settled";
|
|
617
1863
|
done = true;
|
|
618
1864
|
}
|
|
619
1865
|
}
|
|
620
1866
|
else {
|
|
621
|
-
//
|
|
622
|
-
//
|
|
623
|
-
|
|
1867
|
+
// The payload is structurally final, but a semantic continuation
|
|
1868
|
+
// gate rejected it. Return that exact gate reason to the model.
|
|
1869
|
+
streamCallbackBuffer?.discard();
|
|
1870
|
+
callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
|
|
624
1871
|
callbacks.onClearText?.();
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
providerRuntime.appendToolOutput(result.toolCalls[0].id,
|
|
1872
|
+
pushGenerated(msg);
|
|
1873
|
+
const toolRetryMessage = retryError;
|
|
1874
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: toolRetryMessage });
|
|
1875
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, toolRetryMessage);
|
|
629
1876
|
}
|
|
630
1877
|
continue;
|
|
631
1878
|
}
|
|
632
|
-
// Check for
|
|
633
|
-
const
|
|
634
|
-
if (
|
|
1879
|
+
// Check for observe sole call: intercept before tool execution
|
|
1880
|
+
const isSoleObserve = result.toolCalls.length === 1 && result.toolCalls[0].name === "observe";
|
|
1881
|
+
if (isSoleObserve) {
|
|
1882
|
+
streamCallbackBuffer?.discard();
|
|
1883
|
+
const observeArgs = validatedCallArguments.get(result.toolCalls[0]);
|
|
635
1884
|
let reason;
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
reason = parsed.reason;
|
|
640
|
-
}
|
|
641
|
-
catch { /* ignore */ }
|
|
1885
|
+
if (typeof observeArgs?.reason === "string")
|
|
1886
|
+
reason = observeArgs.reason;
|
|
1887
|
+
callbacks.onToolStart("observe", observeArgs);
|
|
642
1888
|
(0, runtime_1.emitNervesEvent)({
|
|
643
1889
|
component: "engine",
|
|
644
|
-
event: "engine.
|
|
645
|
-
message: "agent
|
|
1890
|
+
event: "engine.observe",
|
|
1891
|
+
message: "agent observed without responding",
|
|
646
1892
|
meta: { ...(reason ? { reason } : {}) },
|
|
647
1893
|
});
|
|
648
|
-
|
|
1894
|
+
callbacks.onToolEnd("observe", (0, tools_1.summarizeArgs)("observe", observeArgs), true);
|
|
1895
|
+
pushGenerated(msg);
|
|
649
1896
|
const silenced = "(silenced)";
|
|
650
|
-
|
|
1897
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: silenced });
|
|
651
1898
|
providerRuntime.appendToolOutput(result.toolCalls[0].id, silenced);
|
|
652
|
-
outcome = "
|
|
1899
|
+
outcome = "observed";
|
|
653
1900
|
done = true;
|
|
654
1901
|
continue;
|
|
655
1902
|
}
|
|
656
|
-
// Check for
|
|
657
|
-
const
|
|
658
|
-
if (
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
// Emit outward answer if provided
|
|
672
|
-
if (answer) {
|
|
673
|
-
callbacks.onClearText?.();
|
|
674
|
-
callbacks.onTextChunk(answer);
|
|
675
|
-
}
|
|
676
|
-
// Build handoff packet and enqueue
|
|
677
|
-
const handoffContent = buildGoInwardHandoffPacket({
|
|
678
|
-
content,
|
|
679
|
-
mode,
|
|
680
|
-
delegationDecision: options?.delegationDecision,
|
|
681
|
-
currentSession: options?.toolContext?.currentSession ?? null,
|
|
682
|
-
currentObligation: options?.currentObligation ?? null,
|
|
683
|
-
outwardClosureRequired: options?.delegationDecision?.outwardClosureRequired ?? false,
|
|
684
|
-
});
|
|
685
|
-
const pendingDir = (0, pending_1.getInnerDialogPendingDir)((0, identity_2.getAgentName)());
|
|
686
|
-
const currentSession = options?.toolContext?.currentSession;
|
|
687
|
-
const isInnerChannel = currentSession?.friendId === "self" && currentSession?.channel === "inner";
|
|
688
|
-
const envelope = {
|
|
689
|
-
from: (0, identity_2.getAgentName)(),
|
|
690
|
-
friendId: "self",
|
|
691
|
-
channel: "inner",
|
|
692
|
-
key: "dialog",
|
|
693
|
-
content: handoffContent,
|
|
694
|
-
timestamp: Date.now(),
|
|
695
|
-
mode,
|
|
696
|
-
...(currentSession && !isInnerChannel ? {
|
|
697
|
-
delegatedFrom: {
|
|
698
|
-
friendId: currentSession.friendId,
|
|
699
|
-
channel: currentSession.channel,
|
|
700
|
-
key: currentSession.key,
|
|
701
|
-
},
|
|
702
|
-
obligationStatus: "pending",
|
|
703
|
-
} : {}),
|
|
704
|
-
};
|
|
705
|
-
(0, pending_1.queuePendingMessage)(pendingDir, envelope);
|
|
706
|
-
if (currentSession && !isInnerChannel) {
|
|
707
|
-
try {
|
|
708
|
-
(0, obligations_1.createObligation)((0, identity_2.getAgentRoot)(), {
|
|
709
|
-
origin: {
|
|
710
|
-
friendId: currentSession.friendId,
|
|
711
|
-
channel: currentSession.channel,
|
|
712
|
-
key: currentSession.key,
|
|
713
|
-
},
|
|
714
|
-
content,
|
|
715
|
-
});
|
|
716
|
-
}
|
|
717
|
-
catch {
|
|
718
|
-
/* v8 ignore next -- defensive: obligation store write failure should not break go_inward @preserve */
|
|
719
|
-
}
|
|
1903
|
+
// Check for rest sole call: intercept before tool execution
|
|
1904
|
+
const isSoleRest = result.toolCalls.length === 1 && result.toolCalls[0].name === "rest";
|
|
1905
|
+
if (isSoleRest) {
|
|
1906
|
+
streamCallbackBuffer?.discard();
|
|
1907
|
+
const restArgs = validatedCallArguments.get(result.toolCalls[0]);
|
|
1908
|
+
callbacks.onToolStart("rest", restArgs);
|
|
1909
|
+
// Attention queue gate: reject rest if items remain
|
|
1910
|
+
const attentionQueue = augmentedToolContext?.delegatedOrigins;
|
|
1911
|
+
if (attentionQueue && attentionQueue.length > 0) {
|
|
1912
|
+
callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), false);
|
|
1913
|
+
pushGenerated(msg);
|
|
1914
|
+
const gateMessage = "current held-work frame still has unsurfaced items — return each listed item with surface(delegationId=...) before you rest. Older transcript claims are historical; only the current held-work frame is the gate.";
|
|
1915
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
|
|
1916
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
|
|
1917
|
+
continue;
|
|
720
1918
|
}
|
|
721
|
-
|
|
722
|
-
|
|
1919
|
+
if (hasFreshPendingWork(options) && !freshWorkGateFired) {
|
|
1920
|
+
freshWorkGateFired = true;
|
|
1921
|
+
callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), false);
|
|
1922
|
+
pushGenerated(msg);
|
|
1923
|
+
const gateMessage = "fresh work arrived for me this turn — inspect the pending messages above and take the next concrete action before you rest.";
|
|
1924
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
|
|
1925
|
+
providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
|
|
1926
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1927
|
+
level: "info",
|
|
1928
|
+
component: "engine",
|
|
1929
|
+
event: "engine.fresh_work_gate_fired",
|
|
1930
|
+
message: "rest deferred once because pending work arrived this turn; agent has been notified",
|
|
1931
|
+
meta: { pendingCount: options.pendingMessages.length },
|
|
1932
|
+
});
|
|
1933
|
+
continue;
|
|
723
1934
|
}
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: ack });
|
|
1935
|
+
callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), true);
|
|
1936
|
+
pushGenerated(msg);
|
|
1937
|
+
const ack = "(resting)";
|
|
1938
|
+
pushGenerated({ role: "tool", tool_call_id: result.toolCalls[0].id, content: ack });
|
|
729
1939
|
providerRuntime.appendToolOutput(result.toolCalls[0].id, ack);
|
|
730
1940
|
(0, runtime_1.emitNervesEvent)({
|
|
731
1941
|
component: "engine",
|
|
732
|
-
event: "engine.
|
|
733
|
-
message: "
|
|
734
|
-
meta: {
|
|
1942
|
+
event: "engine.rested",
|
|
1943
|
+
message: "resting until next heartbeat",
|
|
1944
|
+
meta: { ...(typeof restArgs?.status === "string" ? { status: restArgs.status } : {}) },
|
|
1945
|
+
});
|
|
1946
|
+
outcome = "rested";
|
|
1947
|
+
done = true;
|
|
1948
|
+
continue;
|
|
1949
|
+
}
|
|
1950
|
+
const requiredDispatchRejections = new Map();
|
|
1951
|
+
for (const entry of validCalls) {
|
|
1952
|
+
const requiredArgs = entry.validated.arguments;
|
|
1953
|
+
const rejection = options?.requiredToolCalls?.validateToolCallBeforeDispatch?.(entry.call.name, requiredArgs);
|
|
1954
|
+
if (rejection)
|
|
1955
|
+
requiredDispatchRejections.set(entry.call.id, { name: entry.call.name, args: requiredArgs, message: rejection });
|
|
1956
|
+
}
|
|
1957
|
+
const approvalCalls = await Promise.all(validCalls.filter((entry) => !requiredDispatchRejections.has(entry.call.id)).map(async (entry) => {
|
|
1958
|
+
const classification = await (0, tools_1.classifyApprovalForInvocation)(entry.call.name, entry.validated.arguments, augmentedToolContext);
|
|
1959
|
+
return {
|
|
1960
|
+
...entry,
|
|
1961
|
+
...classification,
|
|
1962
|
+
};
|
|
1963
|
+
}));
|
|
1964
|
+
const protectedCall = approvalCalls.find((entry) => entry.policy.kind === "required");
|
|
1965
|
+
if (protectedCall && result.toolCalls.length !== 1) {
|
|
1966
|
+
streamCallbackBuffer?.discard();
|
|
1967
|
+
pushGenerated(msg);
|
|
1968
|
+
for (const call of result.toolCalls) {
|
|
1969
|
+
const rejection = "rejected: approval-eligible tool must be the sole call; no call in this batch was executed.";
|
|
1970
|
+
pushGenerated({ role: "tool", tool_call_id: call.id, content: rejection });
|
|
1971
|
+
providerRuntime.appendToolOutput(call.id, rejection);
|
|
1972
|
+
}
|
|
1973
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1974
|
+
level: "warn",
|
|
1975
|
+
component: "engine",
|
|
1976
|
+
event: "engine.approval_mixed_batch_rejected",
|
|
1977
|
+
message: "protected tool batch rejected before every handler",
|
|
1978
|
+
meta: { toolCallCount: result.toolCalls.length, protectedToolName: protectedCall.call.name },
|
|
735
1979
|
});
|
|
736
|
-
|
|
1980
|
+
continue;
|
|
1981
|
+
}
|
|
1982
|
+
if (protectedCall && protectedCall.policy.kind === "required") {
|
|
1983
|
+
if (!options?.approvalCoordinator) {
|
|
1984
|
+
streamCallbackBuffer?.discard();
|
|
1985
|
+
pushGenerated(msg);
|
|
1986
|
+
const rejection = "rejected: this protected tool requires approval, but the approval coordinator is unavailable; the handler was not invoked.";
|
|
1987
|
+
pushGenerated({ role: "tool", tool_call_id: protectedCall.call.id, content: rejection });
|
|
1988
|
+
providerRuntime.appendToolOutput(protectedCall.call.id, rejection);
|
|
1989
|
+
(0, runtime_1.emitNervesEvent)({
|
|
1990
|
+
level: "warn",
|
|
1991
|
+
component: "engine",
|
|
1992
|
+
event: "engine.approval_coordinator_unavailable",
|
|
1993
|
+
message: "protected tool failed closed before handler execution",
|
|
1994
|
+
meta: { toolName: protectedCall.call.name, toolCallId: protectedCall.call.id },
|
|
1995
|
+
});
|
|
1996
|
+
continue;
|
|
1997
|
+
}
|
|
1998
|
+
streamCallbackBuffer?.discard();
|
|
1999
|
+
pushGenerated(msg);
|
|
2000
|
+
const toolDigest = (0, tool_arguments_1.digestJson)({
|
|
2001
|
+
name: protectedCall.call.name,
|
|
2002
|
+
schemaDigest: protectedCall.validated.schemaDigest,
|
|
2003
|
+
policyId: protectedCall.policy.policyId,
|
|
2004
|
+
});
|
|
2005
|
+
const policyDigest = (0, tool_arguments_1.digestJson)({
|
|
2006
|
+
policyId: protectedCall.policy.policyId,
|
|
2007
|
+
actionClass: protectedCall.policy.actionClass,
|
|
2008
|
+
classification: "required",
|
|
2009
|
+
});
|
|
2010
|
+
const committed = await options.approvalCoordinator.propose({
|
|
2011
|
+
toolCall: structuredClone(msg.tool_calls[0]),
|
|
2012
|
+
arguments: structuredClone(protectedCall.validated.arguments),
|
|
2013
|
+
preCallMessages,
|
|
2014
|
+
frozenAssistantMessage: structuredClone(msg),
|
|
2015
|
+
schemaDigest: protectedCall.validated.schemaDigest,
|
|
2016
|
+
toolDigest,
|
|
2017
|
+
policyDigest,
|
|
2018
|
+
policyId: protectedCall.policy.policyId,
|
|
2019
|
+
actionClass: protectedCall.policy.actionClass,
|
|
2020
|
+
});
|
|
2021
|
+
suspension = {
|
|
2022
|
+
approvalId: committed.approvalId,
|
|
2023
|
+
toolCallId: protectedCall.call.id,
|
|
2024
|
+
checkpointDigest: committed.checkpointDigest,
|
|
2025
|
+
suspendedSessionRevision: committed.suspendedSessionRevision,
|
|
2026
|
+
};
|
|
2027
|
+
outcome = "suspended";
|
|
737
2028
|
done = true;
|
|
2029
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2030
|
+
component: "engine",
|
|
2031
|
+
event: "engine.approval_turn_suspended",
|
|
2032
|
+
message: "agent turn suspended before protected tool execution",
|
|
2033
|
+
meta: { approvalId: committed.approvalId, toolCallId: protectedCall.call.id },
|
|
2034
|
+
});
|
|
738
2035
|
continue;
|
|
739
2036
|
}
|
|
740
|
-
|
|
741
|
-
|
|
2037
|
+
const containsSoleCallOnlyViolation = result.toolCalls.length > 1
|
|
2038
|
+
&& result.toolCalls.some((call) => {
|
|
2039
|
+
const terminalProjection = (0, tools_1.resolveToolDefinition)(call.name)?.terminalProjection;
|
|
2040
|
+
return SOLE_CALL_REJECTION[call.name] !== undefined
|
|
2041
|
+
|| terminalProjection?.requiresSoleCall === true;
|
|
2042
|
+
});
|
|
2043
|
+
if (callbacks.settleOutputMode === "final_only" && containsSoleCallOnlyViolation) {
|
|
2044
|
+
streamCallbackBuffer?.discard();
|
|
2045
|
+
}
|
|
2046
|
+
else {
|
|
2047
|
+
await streamCallbackBuffer?.flush();
|
|
2048
|
+
}
|
|
2049
|
+
pushGenerated(msg);
|
|
2050
|
+
// Execute tools (sole-call tools in mixed calls are rejected inline)
|
|
742
2051
|
for (const tc of result.toolCalls) {
|
|
743
2052
|
if (signal?.aborted)
|
|
744
2053
|
break;
|
|
745
|
-
|
|
746
|
-
if (
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
2054
|
+
const requiredDispatchRejection = requiredDispatchRejections.get(tc.id);
|
|
2055
|
+
if (requiredDispatchRejection) {
|
|
2056
|
+
callbacks.onToolStart(tc.name, requiredDispatchRejection.args);
|
|
2057
|
+
callbacks.onToolEnd(tc.name, (0, tools_1.summarizeArgs)(tc.name, requiredDispatchRejection.args), false);
|
|
2058
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: requiredDispatchRejection.message });
|
|
2059
|
+
providerRuntime.appendToolOutput(tc.id, requiredDispatchRejection.message);
|
|
2060
|
+
options?.toolBoundaryObserver?.({
|
|
2061
|
+
name: tc.name,
|
|
2062
|
+
reason: "dependency_rejected",
|
|
2063
|
+
globallyResolvable: typeof (0, tools_1.resolveToolDefinition)(tc.name)?.handler === "function",
|
|
2064
|
+
invoked: false,
|
|
2065
|
+
sideEffect: false,
|
|
2066
|
+
});
|
|
2067
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2068
|
+
level: "warn",
|
|
2069
|
+
component: "engine",
|
|
2070
|
+
event: "engine.required_tool_dispatch_rejected",
|
|
2071
|
+
message: "required tool dependency rejected before approval and handler dispatch",
|
|
2072
|
+
meta: { toolName: tc.name },
|
|
2073
|
+
});
|
|
750
2074
|
continue;
|
|
751
2075
|
}
|
|
752
|
-
//
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
2076
|
+
// Reject sole-call tools when mixed with other tool calls
|
|
2077
|
+
const terminalProjection = (0, tools_1.resolveToolDefinition)(tc.name)?.terminalProjection;
|
|
2078
|
+
const soleCallRejection = SOLE_CALL_REJECTION[tc.name]
|
|
2079
|
+
?? (terminalProjection?.requiresSoleCall
|
|
2080
|
+
? `rejected: ${tc.name} must be the only tool call.`
|
|
2081
|
+
: undefined);
|
|
2082
|
+
if (soleCallRejection) {
|
|
2083
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: soleCallRejection });
|
|
2084
|
+
providerRuntime.appendToolOutput(tc.id, soleCallRejection);
|
|
757
2085
|
continue;
|
|
758
2086
|
}
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
2087
|
+
const args = validatedCallArguments.get(tc);
|
|
2088
|
+
const currentEffectFingerprint = effectFingerprint(tc.name, tc.arguments);
|
|
2089
|
+
if (forcingHistoricalEffect
|
|
2090
|
+
&& currentEffectFingerprint
|
|
2091
|
+
&& !unresolvedHistoricalEffects.some((effect) => effect.fingerprint === currentEffectFingerprint)) {
|
|
2092
|
+
const rejection = "rejected: this turn is retrying an unresolved historical effect, and these mutation arguments do not match it. Read current state or retry the exact failed effect.";
|
|
2093
|
+
callbacks.onToolStart(tc.name, args);
|
|
2094
|
+
callbacks.onToolEnd(tc.name, (0, tools_1.summarizeArgs)(tc.name, args), false);
|
|
2095
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
763
2096
|
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
764
2097
|
continue;
|
|
765
2098
|
}
|
|
766
|
-
let args = {};
|
|
767
|
-
try {
|
|
768
|
-
args = JSON.parse(tc.arguments);
|
|
769
|
-
}
|
|
770
|
-
catch {
|
|
771
|
-
/* ignore */
|
|
772
|
-
}
|
|
773
2099
|
if (tc.name === "send_message" && args.friendId === "self") {
|
|
2100
|
+
const latestUserText = latestUserMessageText(messages);
|
|
2101
|
+
if (!isPrivateRuntimeChannel && looksLikePrivateReturnRequest(latestUserText)) {
|
|
2102
|
+
const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
|
|
2103
|
+
const rejection = "private-return requests must use ponder, not send_message(friendId=self). Create a typed ponder packet with the marker/source request preserved, then only acknowledge that the private pass is queued.";
|
|
2104
|
+
callbacks.onToolStart(tc.name, args);
|
|
2105
|
+
callbacks.onToolEnd(tc.name, argSummary, false);
|
|
2106
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
2107
|
+
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
2108
|
+
continue;
|
|
2109
|
+
}
|
|
774
2110
|
sawSendMessageSelf = true;
|
|
775
2111
|
}
|
|
2112
|
+
if (tc.name === "speak") {
|
|
2113
|
+
// The canonical pre-batch schema gate guarantees a required string.
|
|
2114
|
+
const speakArgs = JSON.parse(tc.arguments);
|
|
2115
|
+
const speakMessage = speakArgs.message;
|
|
2116
|
+
const argSummary = (0, tools_1.summarizeArgs)("speak", { message: speakMessage });
|
|
2117
|
+
callbacks.onToolStart("speak", { message: speakMessage });
|
|
2118
|
+
if (speakMessage.trim().length === 0) {
|
|
2119
|
+
const err = "speak requires a non-empty `message` string.";
|
|
2120
|
+
callbacks.onToolEnd("speak", argSummary, false);
|
|
2121
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: err });
|
|
2122
|
+
providerRuntime.appendToolOutput(tc.id, err);
|
|
2123
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2124
|
+
level: "warn",
|
|
2125
|
+
component: "engine",
|
|
2126
|
+
event: "engine.speak_invalid",
|
|
2127
|
+
message: "speak rejected: missing or empty message",
|
|
2128
|
+
meta: {},
|
|
2129
|
+
});
|
|
2130
|
+
continue;
|
|
2131
|
+
}
|
|
2132
|
+
callbacks.onTextChunk(speakMessage);
|
|
2133
|
+
let speakDeliveryError = null;
|
|
2134
|
+
try {
|
|
2135
|
+
await callbacks.flushNow?.();
|
|
2136
|
+
}
|
|
2137
|
+
catch (err) {
|
|
2138
|
+
speakDeliveryError = err instanceof Error ? err : new Error(String(err));
|
|
2139
|
+
}
|
|
2140
|
+
if (speakDeliveryError) {
|
|
2141
|
+
callbacks.onToolEnd("speak", argSummary, false);
|
|
2142
|
+
const failMsg = `speak delivery failed: ${speakDeliveryError.message}. the message did not reach your friend; do not assume they saw it.`;
|
|
2143
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: failMsg });
|
|
2144
|
+
providerRuntime.appendToolOutput(tc.id, failMsg);
|
|
2145
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2146
|
+
level: "error",
|
|
2147
|
+
component: "engine",
|
|
2148
|
+
event: "engine.speak_delivery_failed",
|
|
2149
|
+
message: "speak delivery failed",
|
|
2150
|
+
meta: { error: speakDeliveryError.message, messageLength: speakMessage.length },
|
|
2151
|
+
});
|
|
2152
|
+
continue;
|
|
2153
|
+
}
|
|
2154
|
+
callbacks.onToolEnd("speak", argSummary, true);
|
|
2155
|
+
const ack = "(spoken)";
|
|
2156
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: ack });
|
|
2157
|
+
providerRuntime.appendToolOutput(tc.id, ack);
|
|
2158
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2159
|
+
component: "engine",
|
|
2160
|
+
event: "engine.speak",
|
|
2161
|
+
message: "agent spoke mid-turn",
|
|
2162
|
+
meta: { messageLength: speakMessage.length },
|
|
2163
|
+
});
|
|
2164
|
+
continue;
|
|
2165
|
+
}
|
|
2166
|
+
if (tc.name === "ponder") {
|
|
2167
|
+
const parsedArgs = normalizeLegacyPonderArgs(parsePonderPayload(tc.arguments));
|
|
2168
|
+
const argSummary = (0, tools_1.summarizeArgs)(tc.name, parsedArgs);
|
|
2169
|
+
callbacks.onToolStart(tc.name, parsedArgs);
|
|
2170
|
+
let toolResult;
|
|
2171
|
+
let success = false;
|
|
2172
|
+
try {
|
|
2173
|
+
const action = parsedArgs.action ?? "create";
|
|
2174
|
+
const currentSession = augmentedToolContext?.currentSession;
|
|
2175
|
+
const currentOrigin = currentSession
|
|
2176
|
+
? { friendId: currentSession.friendId, channel: currentSession.channel, key: currentSession.key }
|
|
2177
|
+
: undefined;
|
|
2178
|
+
const isInnerChannel = currentOrigin?.friendId === "self" && currentOrigin?.channel === "inner";
|
|
2179
|
+
const shouldCreateReturnObligation = !!currentOrigin && !isInnerChannel;
|
|
2180
|
+
const attentionQueue = augmentedToolContext?.delegatedOrigins ?? [];
|
|
2181
|
+
const successCriteria = parseSuccessCriteria(parsedArgs.success_criteria);
|
|
2182
|
+
const payload = parsePacketPayload(parsedArgs.payload_json);
|
|
2183
|
+
let packet;
|
|
2184
|
+
let returnObligationId = null;
|
|
2185
|
+
let resultAction = "created";
|
|
2186
|
+
let privateReturnSourceRequest = "";
|
|
2187
|
+
if (action === "create") {
|
|
2188
|
+
if (isInnerChannel && attentionQueue.length > 0) {
|
|
2189
|
+
throw new Error("private runtime already has held return work in the attention queue; surface the existing delegationId instead of creating a replacement ponder packet.");
|
|
2190
|
+
}
|
|
2191
|
+
const kind = parsedArgs.kind;
|
|
2192
|
+
const objective = typeof parsedArgs.objective === "string" ? parsedArgs.objective.trim() : "";
|
|
2193
|
+
const summary = typeof parsedArgs.summary === "string" ? parsedArgs.summary.trim() : "";
|
|
2194
|
+
const sourceRequest = currentOrigin && !isInnerChannel ? latestUserMessageText(messages) : "";
|
|
2195
|
+
privateReturnSourceRequest = sourceRequest;
|
|
2196
|
+
if (!kind || !objective || !successCriteria || !payload) {
|
|
2197
|
+
throw new Error("ponder create requires kind, objective, success_criteria, and valid payload_json.");
|
|
2198
|
+
}
|
|
2199
|
+
const packetPayload = sourceRequest
|
|
2200
|
+
? { ...payload, sourceRequest }
|
|
2201
|
+
: payload;
|
|
2202
|
+
const createLinkedReturnObligation = (id, packetId) => {
|
|
2203
|
+
(0, obligations_1.createReturnObligation)((0, identity_2.getAgentName)(), {
|
|
2204
|
+
id,
|
|
2205
|
+
origin: currentOrigin,
|
|
2206
|
+
status: "queued",
|
|
2207
|
+
delegatedContent: buildPonderDelegatedContent({ summary, objective, sourceRequest }),
|
|
2208
|
+
packetId,
|
|
2209
|
+
createdAt: Date.now(),
|
|
2210
|
+
});
|
|
2211
|
+
};
|
|
2212
|
+
const agentRoot = (0, identity_2.getAgentRoot)();
|
|
2213
|
+
let relatedObligationId;
|
|
2214
|
+
if (currentOrigin && !isInnerChannel) {
|
|
2215
|
+
try {
|
|
2216
|
+
const obligation = (0, obligations_1.createObligation)(agentRoot, {
|
|
2217
|
+
origin: currentOrigin,
|
|
2218
|
+
content: objective,
|
|
2219
|
+
});
|
|
2220
|
+
relatedObligationId = obligation.id;
|
|
2221
|
+
}
|
|
2222
|
+
catch {
|
|
2223
|
+
relatedObligationId = undefined;
|
|
2224
|
+
}
|
|
2225
|
+
}
|
|
2226
|
+
const frictionSignature = kind === "harness_friction" && typeof packetPayload.frictionSignature === "string"
|
|
2227
|
+
? packetPayload.frictionSignature
|
|
2228
|
+
: null;
|
|
2229
|
+
const existing = frictionSignature && currentOrigin
|
|
2230
|
+
? (0, packets_1.findHarnessFrictionPacket)(agentRoot, currentOrigin, frictionSignature)
|
|
2231
|
+
: null;
|
|
2232
|
+
if (existing) {
|
|
2233
|
+
resultAction = "revised";
|
|
2234
|
+
const existingActiveReturnId = shouldCreateReturnObligation
|
|
2235
|
+
? activeReturnObligationId((0, identity_2.getAgentName)(), existing.relatedReturnObligationId)
|
|
2236
|
+
: null;
|
|
2237
|
+
returnObligationId = existingActiveReturnId
|
|
2238
|
+
?? (shouldCreateReturnObligation ? (0, obligations_1.generateObligationId)(Date.now()) : null);
|
|
2239
|
+
packet = existing.status === "drafting"
|
|
2240
|
+
? (0, packets_1.revisePonderPacket)(agentRoot, existing.id, {
|
|
2241
|
+
kind,
|
|
2242
|
+
objective,
|
|
2243
|
+
summary,
|
|
2244
|
+
successCriteria,
|
|
2245
|
+
payload: packetPayload,
|
|
2246
|
+
})
|
|
2247
|
+
: existing;
|
|
2248
|
+
if (returnObligationId && returnObligationId !== existing.relatedReturnObligationId) {
|
|
2249
|
+
packet = (0, packets_1.advancePonderPacket)(agentRoot, packet.id, { relatedReturnObligationId: returnObligationId });
|
|
2250
|
+
createLinkedReturnObligation(returnObligationId, packet.id);
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
else {
|
|
2254
|
+
returnObligationId = shouldCreateReturnObligation ? (0, obligations_1.generateObligationId)(Date.now()) : null;
|
|
2255
|
+
packet = (0, packets_1.createPonderPacket)(agentRoot, {
|
|
2256
|
+
kind,
|
|
2257
|
+
objective,
|
|
2258
|
+
summary,
|
|
2259
|
+
successCriteria,
|
|
2260
|
+
...(currentOrigin ? { origin: currentOrigin } : {}),
|
|
2261
|
+
...(relatedObligationId ? { relatedObligationId } : {}),
|
|
2262
|
+
...(returnObligationId ? { relatedReturnObligationId: returnObligationId } : {}),
|
|
2263
|
+
...(parsedArgs.follows_packet_id ? { followsPacketId: parsedArgs.follows_packet_id } : {}),
|
|
2264
|
+
payload: packetPayload,
|
|
2265
|
+
});
|
|
2266
|
+
if (returnObligationId) {
|
|
2267
|
+
createLinkedReturnObligation(returnObligationId, packet.id);
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
else {
|
|
2272
|
+
const packetId = typeof parsedArgs.packet_id === "string" ? parsedArgs.packet_id.trim() : "";
|
|
2273
|
+
const kind = parsedArgs.kind;
|
|
2274
|
+
const objective = typeof parsedArgs.objective === "string" ? parsedArgs.objective.trim() : "";
|
|
2275
|
+
const summary = typeof parsedArgs.summary === "string" ? parsedArgs.summary.trim() : "";
|
|
2276
|
+
if (!packetId || !kind || !objective || !successCriteria || !payload) {
|
|
2277
|
+
throw new Error("ponder revise requires packet_id, kind, objective, success_criteria, and valid payload_json.");
|
|
2278
|
+
}
|
|
2279
|
+
packet = (0, packets_1.revisePonderPacket)((0, identity_2.getAgentRoot)(), packetId, {
|
|
2280
|
+
kind,
|
|
2281
|
+
objective,
|
|
2282
|
+
summary,
|
|
2283
|
+
successCriteria,
|
|
2284
|
+
payload,
|
|
2285
|
+
});
|
|
2286
|
+
returnObligationId = packet.relatedReturnObligationId
|
|
2287
|
+
&& !(packet.origin?.friendId === "self" && packet.origin.channel === "inner")
|
|
2288
|
+
? packet.relatedReturnObligationId
|
|
2289
|
+
: null;
|
|
2290
|
+
resultAction = "revised";
|
|
2291
|
+
}
|
|
2292
|
+
if (returnObligationId) {
|
|
2293
|
+
for (const token of extractPrivateReturnHeldTokens(privateReturnSourceRequest)) {
|
|
2294
|
+
privateReturnHeldTokens.add(token);
|
|
2295
|
+
}
|
|
2296
|
+
const agentName = (0, identity_2.getAgentName)();
|
|
2297
|
+
await (0, socket_client_1.requestPrivateWake)(agentName, augmentedToolContext?.daemonSocketPath, buildPonderReturnPrivateWakeOptions({ agentName, packet, returnObligationId })).catch(() => undefined);
|
|
2298
|
+
}
|
|
2299
|
+
sawPonder = true;
|
|
2300
|
+
toolResult = buildPonderResult(packet, resultAction, returnObligationId);
|
|
2301
|
+
success = true;
|
|
2302
|
+
(0, runtime_1.emitNervesEvent)({
|
|
2303
|
+
component: "engine",
|
|
2304
|
+
event: "engine.ponder_packet",
|
|
2305
|
+
message: "ponder packet touched",
|
|
2306
|
+
meta: {
|
|
2307
|
+
action: resultAction,
|
|
2308
|
+
packetId: packet.id,
|
|
2309
|
+
kind: packet.kind,
|
|
2310
|
+
status: packet.status,
|
|
2311
|
+
},
|
|
2312
|
+
});
|
|
2313
|
+
}
|
|
2314
|
+
catch (error) {
|
|
2315
|
+
toolResult = error instanceof Error ? error.message : String(error);
|
|
2316
|
+
}
|
|
2317
|
+
callbacks.onToolEnd(tc.name, argSummary, success);
|
|
2318
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: toolResult });
|
|
2319
|
+
providerRuntime.appendToolOutput(tc.id, toolResult);
|
|
2320
|
+
continue;
|
|
2321
|
+
}
|
|
776
2322
|
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
777
2323
|
if (tc.name === "query_session")
|
|
778
2324
|
sawQuerySession = true;
|
|
779
2325
|
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
780
2326
|
if (tc.name === "bridge_manage")
|
|
781
2327
|
sawBridgeManage = true;
|
|
2328
|
+
/* v8 ignore next -- flag tested via truth-check integration tests @preserve */
|
|
2329
|
+
if (isExternalStateQuery(tc.name, args))
|
|
2330
|
+
sawExternalStateQuery = true;
|
|
782
2331
|
const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
|
|
783
|
-
|
|
784
|
-
if (
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
callbacks.onToolStart(tc.name, args);
|
|
792
|
-
callbacks.onToolEnd(tc.name, argSummary, false);
|
|
793
|
-
messages.push({ role: "tool", tool_call_id: tc.id, content: cancelled });
|
|
794
|
-
providerRuntime.appendToolOutput(tc.id, cancelled);
|
|
795
|
-
continue;
|
|
796
|
-
}
|
|
2332
|
+
const toolLoop = (0, tool_loop_1.detectToolLoop)(toolLoopState, tc.name, args);
|
|
2333
|
+
if (toolLoop.stuck) {
|
|
2334
|
+
const rejection = `loop guard: ${toolLoop.message}`;
|
|
2335
|
+
callbacks.onToolStart(tc.name, args);
|
|
2336
|
+
callbacks.onToolEnd(tc.name, argSummary, false);
|
|
2337
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: rejection });
|
|
2338
|
+
providerRuntime.appendToolOutput(tc.id, rejection);
|
|
2339
|
+
continue;
|
|
797
2340
|
}
|
|
798
2341
|
callbacks.onToolStart(tc.name, args);
|
|
799
2342
|
let toolResult;
|
|
800
2343
|
let success;
|
|
801
2344
|
try {
|
|
802
2345
|
const execToolFn = options?.execTool ?? tools_1.execTool;
|
|
803
|
-
|
|
2346
|
+
const routineActionSelection = approvalCalls.find((entry) => entry.call.id === tc.id)?.routineActionSelection;
|
|
2347
|
+
const executionToolContext = routineActionSelection && augmentedToolContext ? { ...augmentedToolContext, routineActionSelection } : augmentedToolContext;
|
|
2348
|
+
if (requiredToolCallNames.includes(tc.name) && !options?.requiredToolCalls?.requireSuccessfulResults)
|
|
2349
|
+
dispatchedRequiredToolCalls.add(tc.name);
|
|
2350
|
+
toolResult = await execToolFn(tc.name, args, executionToolContext);
|
|
804
2351
|
success = true;
|
|
805
2352
|
}
|
|
806
2353
|
catch (e) {
|
|
807
2354
|
toolResult = `error: ${e}`;
|
|
808
2355
|
success = false;
|
|
2356
|
+
augmentedToolContext?.habitSession?.recordError?.(toolResult);
|
|
2357
|
+
}
|
|
2358
|
+
const validatedRequiredResult = success && requiredToolCallNames.includes(tc.name) && options?.requiredToolCalls?.requireSuccessfulResults
|
|
2359
|
+
? requiredToolResultSucceeded(tc.name, toolResult, args, options.requiredToolCalls.validateRequiredToolResult)
|
|
2360
|
+
: false;
|
|
2361
|
+
if (validatedRequiredResult) {
|
|
2362
|
+
dispatchedRequiredToolCalls.add(tc.name);
|
|
2363
|
+
for (const requiredName of options?.requiredToolCalls?.requiredToolCallsAfterResult?.(tc.name, args, toolResult) ?? []) {
|
|
2364
|
+
if (!candidateToolNames.has(requiredName)) {
|
|
2365
|
+
(0, runtime_1.emitNervesEvent)({ level: "error", component: "engine", event: "engine.required_tool_unadvertised", message: "dependent required tool is not advertised for the active channel", meta: { toolName: requiredName, channel: String(channel) } });
|
|
2366
|
+
throw new Error(`dependent required tool is not advertised for this channel: ${requiredName}`);
|
|
2367
|
+
}
|
|
2368
|
+
if (!requiredToolCallNames.includes(requiredName))
|
|
2369
|
+
requiredToolCallNames.push(requiredName);
|
|
2370
|
+
}
|
|
809
2371
|
}
|
|
810
|
-
|
|
811
|
-
|
|
2372
|
+
if (success && currentEffectFingerprint && !toolResultIndicatesFailure(toolResult)) {
|
|
2373
|
+
unresolvedHistoricalEffects = unresolvedHistoricalEffects.filter((effect) => effect.fingerprint !== currentEffectFingerprint);
|
|
2374
|
+
}
|
|
2375
|
+
const resolvedRiskProfile = (0, tools_1.resolveToolDefinition)(tc.name)?.riskProfile;
|
|
2376
|
+
const toolRiskProfile = typeof resolvedRiskProfile === "function" ? resolvedRiskProfile(args) : resolvedRiskProfile;
|
|
2377
|
+
options?.toolBoundaryObserver?.({
|
|
2378
|
+
name: tc.name,
|
|
2379
|
+
reason: "dispatched",
|
|
2380
|
+
globallyResolvable: typeof (0, tools_1.resolveToolDefinition)(tc.name)?.handler === "function",
|
|
2381
|
+
invoked: true,
|
|
2382
|
+
sideEffect: success && toolRiskProfile?.mutates !== "none",
|
|
2383
|
+
});
|
|
2384
|
+
toolResult = (0, tool_friction_1.rewriteToolResultForModel)(tc.name, toolResult, toolFrictionLedger);
|
|
2385
|
+
(0, tool_loop_1.recordToolOutcome)(toolLoopState, tc.name, args, toolResult, success);
|
|
2386
|
+
callbacks.onToolEnd(tc.name, (0, tools_1.buildToolResultSummary)(tc.name, args, toolResult, success), success);
|
|
2387
|
+
pushGenerated({ role: "tool", tool_call_id: tc.id, content: toolResult });
|
|
812
2388
|
providerRuntime.appendToolOutput(tc.id, toolResult);
|
|
2389
|
+
callbacks.onToolResult?.(messages);
|
|
813
2390
|
}
|
|
814
2391
|
}
|
|
815
2392
|
}
|
|
816
2393
|
catch (e) {
|
|
817
2394
|
// Abort is not an error — just stop cleanly
|
|
818
|
-
if (signal?.aborted) {
|
|
2395
|
+
if (e instanceof provider_attempt_1.ProviderAttemptAbortError || signal?.aborted) {
|
|
819
2396
|
stripLastToolCalls(messages);
|
|
2397
|
+
stripLastToolCalls(generatedMessages);
|
|
820
2398
|
outcome = "aborted";
|
|
821
2399
|
break;
|
|
822
2400
|
}
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
const { maxTokens, contextMargin } = (0, config_1.getContextConfig)();
|
|
828
|
-
const trimmed = (0, context_1.trimMessages)(messages, maxTokens, contextMargin, maxTokens * 2);
|
|
829
|
-
messages.splice(0, messages.length, ...trimmed);
|
|
830
|
-
providerRuntime.resetTurnState(messages);
|
|
831
|
-
callbacks.onError(new Error("context trimmed, retrying..."), "transient");
|
|
832
|
-
continue;
|
|
2401
|
+
const errorForClassification = e instanceof Error ? e : /* v8 ignore next -- defensive @preserve */ new Error(String(e));
|
|
2402
|
+
let providerClassification;
|
|
2403
|
+
try {
|
|
2404
|
+
providerClassification = providerRuntime.classifyError(errorForClassification);
|
|
833
2405
|
}
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
const delay = RETRY_BASE_MS * Math.pow(2, retryCount - 1);
|
|
838
|
-
const cause = classifyTransientError(e);
|
|
839
|
-
callbacks.onError(new Error(`${cause}, retrying in ${delay / 1000}s (${retryCount}/${MAX_RETRIES})...`), "transient");
|
|
840
|
-
// Wait with abort support
|
|
841
|
-
const aborted = await new Promise((resolve) => {
|
|
842
|
-
const timer = setTimeout(() => resolve(false), delay);
|
|
843
|
-
if (signal) {
|
|
844
|
-
const onAbort = () => { clearTimeout(timer); resolve(true); };
|
|
845
|
-
if (signal.aborted) {
|
|
846
|
-
clearTimeout(timer);
|
|
847
|
-
resolve(true);
|
|
848
|
-
return;
|
|
849
|
-
}
|
|
850
|
-
signal.addEventListener("abort", onAbort, { once: true });
|
|
851
|
-
}
|
|
852
|
-
});
|
|
853
|
-
if (aborted) {
|
|
854
|
-
stripLastToolCalls(messages);
|
|
855
|
-
outcome = "aborted";
|
|
856
|
-
break;
|
|
857
|
-
}
|
|
858
|
-
providerRuntime.resetTurnState(messages);
|
|
859
|
-
continue;
|
|
2406
|
+
catch {
|
|
2407
|
+
/* v8 ignore next -- defensive: classifyError should not throw @preserve */
|
|
2408
|
+
providerClassification = "unknown";
|
|
860
2409
|
}
|
|
861
|
-
|
|
862
|
-
(0, runtime_1.emitNervesEvent)({
|
|
863
|
-
level: "error",
|
|
864
|
-
event: "engine.error",
|
|
865
|
-
trace_id: traceId,
|
|
866
|
-
component: "engine",
|
|
867
|
-
message: e instanceof Error ? e.message : String(e),
|
|
868
|
-
meta: {},
|
|
869
|
-
});
|
|
870
|
-
stripLastToolCalls(messages);
|
|
871
|
-
outcome = "errored";
|
|
872
|
-
done = true;
|
|
2410
|
+
finishTerminalProviderError(errorForClassification, providerClassification);
|
|
873
2411
|
}
|
|
874
2412
|
}
|
|
2413
|
+
options?.captureGeneratedMessages?.(structuredClone(generatedMessages));
|
|
875
2414
|
(0, runtime_1.emitNervesEvent)({
|
|
876
2415
|
event: "engine.turn_end",
|
|
877
2416
|
trace_id: traceId,
|
|
878
2417
|
component: "engine",
|
|
879
2418
|
message: "runAgent turn completed",
|
|
880
|
-
meta: { done,
|
|
2419
|
+
meta: { done, sawPonder, sawQuerySession, sawBridgeManage },
|
|
881
2420
|
});
|
|
882
|
-
return {
|
|
2421
|
+
return {
|
|
2422
|
+
usage: lastUsage,
|
|
2423
|
+
outcome,
|
|
2424
|
+
completion,
|
|
2425
|
+
...(suspension ? { suspension } : {}),
|
|
2426
|
+
...(terminalError ? { error: terminalError, errorClassification: terminalErrorClassification } : {}),
|
|
2427
|
+
};
|
|
883
2428
|
}
|