@ouro.bot/cli 0.1.0-alpha.63 → 0.1.0-alpha.638

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (432) hide show
  1. package/README.md +127 -23
  2. package/RepairGuide.ouro/agent.json +5 -0
  3. package/RepairGuide.ouro/psyche/IDENTITY.md +19 -0
  4. package/RepairGuide.ouro/psyche/SOUL.md +55 -0
  5. package/RepairGuide.ouro/skills/diagnose-broken-remote.md +63 -0
  6. package/RepairGuide.ouro/skills/diagnose-stacked-typed-issues.md +35 -0
  7. package/RepairGuide.ouro/skills/diagnose-sync-blocked.md +54 -0
  8. package/RepairGuide.ouro/skills/diagnose-vault-expired.md +60 -0
  9. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/agent.json +4 -2
  10. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/SOUL.md +2 -2
  11. package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-serpent.md +1 -1
  12. package/changelog.json +4076 -2
  13. package/dist/arc/attention-types.js +8 -0
  14. package/dist/arc/cares.js +144 -0
  15. package/dist/arc/episodes.js +118 -0
  16. package/dist/arc/evolution.js +487 -0
  17. package/dist/arc/intentions.js +134 -0
  18. package/dist/arc/json-store.js +117 -0
  19. package/dist/arc/obligations.js +270 -0
  20. package/dist/arc/packets.js +288 -0
  21. package/dist/arc/presence.js +185 -0
  22. package/dist/arc/task-lifecycle.js +57 -0
  23. package/dist/heart/active-work.js +860 -43
  24. package/dist/heart/agent-entry.js +69 -3
  25. package/dist/heart/attachments/image-normalize.js +194 -0
  26. package/dist/heart/attachments/materialize.js +97 -0
  27. package/dist/heart/attachments/originals.js +88 -0
  28. package/dist/heart/attachments/render.js +29 -0
  29. package/dist/heart/attachments/sources/bluebubbles.js +156 -0
  30. package/dist/heart/attachments/sources/cli-local-file.js +78 -0
  31. package/dist/heart/attachments/sources/index.js +16 -0
  32. package/dist/heart/attachments/store.js +103 -0
  33. package/dist/heart/attachments/types.js +93 -0
  34. package/dist/heart/auth/auth-flow.js +479 -0
  35. package/dist/heart/awaiting/await-alert.js +146 -0
  36. package/dist/heart/awaiting/await-expiry.js +108 -0
  37. package/dist/heart/awaiting/await-loader.js +91 -0
  38. package/dist/heart/awaiting/await-parser.js +141 -0
  39. package/dist/heart/awaiting/await-runtime-state.js +100 -0
  40. package/dist/heart/awaiting/await-scheduler.js +377 -0
  41. package/dist/heart/background-operations.js +281 -0
  42. package/dist/heart/bridges/manager.js +137 -17
  43. package/dist/heart/bridges/store.js +14 -2
  44. package/dist/heart/bundle-state.js +168 -0
  45. package/dist/heart/commitments.js +135 -0
  46. package/dist/heart/config-registry.js +322 -0
  47. package/dist/heart/config.js +114 -119
  48. package/dist/heart/core.js +1049 -248
  49. package/dist/heart/cross-chat-delivery.js +3 -18
  50. package/dist/heart/daemon/agent-config-check.js +419 -0
  51. package/dist/heart/daemon/agent-discovery.js +102 -3
  52. package/dist/heart/daemon/agent-service.js +522 -0
  53. package/dist/heart/daemon/agentic-repair.js +547 -0
  54. package/dist/heart/daemon/bluebubbles-health-diagnostics.js +122 -0
  55. package/dist/heart/daemon/boot-sync-probe.js +197 -0
  56. package/dist/heart/daemon/cadence.js +70 -0
  57. package/dist/heart/daemon/cli-defaults.js +776 -0
  58. package/dist/heart/daemon/cli-desk.js +322 -0
  59. package/dist/heart/daemon/cli-exec.js +7468 -0
  60. package/dist/heart/daemon/cli-help.js +505 -0
  61. package/dist/heart/daemon/cli-parse.js +1554 -0
  62. package/dist/heart/daemon/cli-render-doctor.js +57 -0
  63. package/dist/heart/daemon/cli-render.js +763 -0
  64. package/dist/heart/daemon/cli-types.js +8 -0
  65. package/dist/heart/daemon/connect-bay.js +323 -0
  66. package/dist/heart/daemon/daemon-cli.js +29 -1702
  67. package/dist/heart/daemon/daemon-entry.js +485 -2
  68. package/dist/heart/daemon/daemon-health.js +176 -0
  69. package/dist/heart/daemon/daemon-rollup.js +57 -0
  70. package/dist/heart/daemon/daemon-runtime-sync.js +88 -13
  71. package/dist/heart/daemon/daemon-tombstone.js +236 -0
  72. package/dist/heart/daemon/daemon.js +906 -71
  73. package/dist/heart/daemon/dns-workflow.js +394 -0
  74. package/dist/heart/daemon/doctor-types.js +8 -0
  75. package/dist/heart/daemon/doctor.js +873 -0
  76. package/dist/heart/daemon/health-monitor.js +122 -1
  77. package/dist/heart/daemon/hooks/agent-config-v2.js +33 -0
  78. package/dist/heart/daemon/hooks/bundle-meta.js +115 -1
  79. package/dist/heart/daemon/http-health-probe.js +80 -0
  80. package/dist/heart/daemon/human-command-screens.js +234 -0
  81. package/dist/heart/daemon/human-readiness.js +114 -0
  82. package/dist/heart/daemon/inner-status.js +89 -0
  83. package/dist/heart/daemon/interactive-repair.js +394 -0
  84. package/dist/heart/daemon/launchd.js +37 -8
  85. package/dist/heart/daemon/log-tailer.js +79 -10
  86. package/dist/heart/daemon/logs-prune.js +110 -0
  87. package/dist/heart/daemon/mcp-canary.js +297 -0
  88. package/dist/heart/daemon/migrate-to-desk.js +848 -0
  89. package/dist/heart/daemon/os-cron-deps.js +135 -0
  90. package/dist/heart/daemon/os-cron.js +14 -12
  91. package/dist/heart/daemon/ouro-bot-entry.js +4 -2
  92. package/dist/heart/daemon/ouro-entry.js +3 -1
  93. package/dist/heart/daemon/plugin-cli.js +432 -0
  94. package/dist/heart/daemon/process-manager.js +501 -35
  95. package/dist/heart/daemon/provider-discovery.js +137 -0
  96. package/dist/heart/daemon/provider-ping-progress.js +83 -0
  97. package/dist/heart/daemon/pulse.js +475 -0
  98. package/dist/heart/daemon/readiness-repair.js +365 -0
  99. package/dist/heart/daemon/run-hooks.js +2 -0
  100. package/dist/heart/daemon/runtime-logging.js +11 -3
  101. package/dist/heart/daemon/runtime-metadata.js +2 -30
  102. package/dist/heart/daemon/safe-mode.js +161 -0
  103. package/dist/heart/daemon/sense-manager.js +493 -38
  104. package/dist/heart/daemon/session-id-resolver.js +131 -0
  105. package/dist/heart/daemon/skill-management-installer.js +1 -1
  106. package/dist/heart/daemon/socket-client.js +158 -11
  107. package/dist/heart/daemon/stale-bundle-prune.js +96 -0
  108. package/dist/heart/daemon/startup-tui.js +330 -0
  109. package/dist/heart/daemon/task-scheduler.js +117 -39
  110. package/dist/heart/daemon/terminal-ui.js +499 -0
  111. package/dist/heart/daemon/thoughts.js +229 -17
  112. package/dist/heart/daemon/up-progress.js +366 -0
  113. package/dist/heart/daemon/vault-items.js +56 -0
  114. package/dist/heart/delegation.js +1 -4
  115. package/dist/heart/habits/habit-migration.js +189 -0
  116. package/dist/heart/habits/habit-parser.js +140 -0
  117. package/dist/heart/habits/habit-runtime-state.js +100 -0
  118. package/dist/heart/habits/habit-scheduler.js +372 -0
  119. package/dist/heart/{daemon → hatch}/hatch-flow.js +32 -56
  120. package/dist/heart/{daemon → hatch}/hatch-specialist.js +6 -8
  121. package/dist/heart/{daemon → hatch}/specialist-prompt.js +12 -9
  122. package/dist/heart/{daemon → hatch}/specialist-tools.js +37 -14
  123. package/dist/heart/identity.js +168 -57
  124. package/dist/heart/kept-notes.js +357 -0
  125. package/dist/heart/kicks.js +1 -1
  126. package/dist/heart/machine-identity.js +161 -0
  127. package/dist/heart/mail-import-discovery.js +353 -0
  128. package/dist/heart/mailbox/mailbox-http-hooks.js +66 -0
  129. package/dist/heart/mailbox/mailbox-http-response.js +7 -0
  130. package/dist/heart/mailbox/mailbox-http-routes.js +246 -0
  131. package/dist/heart/mailbox/mailbox-http-static.js +103 -0
  132. package/dist/heart/mailbox/mailbox-http-transport.js +116 -0
  133. package/dist/heart/mailbox/mailbox-http.js +99 -0
  134. package/dist/heart/mailbox/mailbox-read.js +31 -0
  135. package/dist/heart/mailbox/mailbox-types.js +27 -0
  136. package/dist/heart/mailbox/mailbox-view.js +197 -0
  137. package/dist/heart/mailbox/readers/agent-machine.js +418 -0
  138. package/dist/heart/mailbox/readers/continuity-readers.js +319 -0
  139. package/dist/heart/mailbox/readers/mail.js +375 -0
  140. package/dist/heart/mailbox/readers/runtime-readers.js +756 -0
  141. package/dist/heart/mailbox/readers/sessions.js +232 -0
  142. package/dist/heart/mailbox/readers/shared.js +111 -0
  143. package/dist/heart/mcp/mcp-server.js +692 -0
  144. package/dist/heart/migrate-config.js +100 -0
  145. package/dist/heart/model-capabilities.js +19 -0
  146. package/dist/heart/orientation-frame.js +217 -0
  147. package/dist/heart/platform.js +81 -0
  148. package/dist/heart/provider-attempt.js +134 -0
  149. package/dist/heart/provider-binding-resolver.js +272 -0
  150. package/dist/heart/provider-credentials.js +425 -0
  151. package/dist/heart/provider-failover.js +301 -0
  152. package/dist/heart/provider-models.js +81 -0
  153. package/dist/heart/provider-ping.js +262 -0
  154. package/dist/heart/provider-readiness-cache.js +40 -0
  155. package/dist/heart/provider-visibility.js +188 -0
  156. package/dist/heart/providers/anthropic-token.js +131 -0
  157. package/dist/heart/providers/anthropic.js +139 -52
  158. package/dist/heart/providers/azure.js +23 -11
  159. package/dist/heart/providers/error-classification.js +127 -0
  160. package/dist/heart/providers/github-copilot.js +145 -0
  161. package/dist/heart/providers/minimax-vlm.js +189 -0
  162. package/dist/heart/providers/minimax.js +26 -8
  163. package/dist/heart/providers/openai-codex.js +55 -40
  164. package/dist/heart/runtime-capability-check.js +170 -0
  165. package/dist/heart/runtime-credentials.js +367 -0
  166. package/dist/heart/runtime-cwd.js +87 -0
  167. package/dist/heart/sense-truth.js +13 -4
  168. package/dist/heart/session-activity.js +48 -24
  169. package/dist/heart/session-events.js +1163 -0
  170. package/dist/heart/session-playback-cli-main.js +5 -0
  171. package/dist/heart/session-playback-cli.js +36 -0
  172. package/dist/heart/session-playback.js +231 -0
  173. package/dist/heart/session-stats-cli-main.js +5 -0
  174. package/dist/heart/session-stats.js +182 -0
  175. package/dist/heart/session-transcript.js +133 -0
  176. package/dist/heart/start-of-turn-packet.js +345 -0
  177. package/dist/heart/streaming.js +44 -27
  178. package/dist/heart/structured-output.js +196 -0
  179. package/dist/heart/sync-classification.js +176 -0
  180. package/dist/heart/sync.js +449 -0
  181. package/dist/heart/target-resolution.js +9 -5
  182. package/dist/heart/tempo.js +93 -0
  183. package/dist/heart/temporal-view.js +41 -0
  184. package/dist/heart/timeouts.js +101 -0
  185. package/dist/heart/tool-activity-callbacks.js +59 -0
  186. package/dist/heart/tool-description.js +143 -0
  187. package/dist/heart/tool-friction.js +55 -0
  188. package/dist/heart/tool-loop.js +200 -0
  189. package/dist/heart/turn-context.js +389 -0
  190. package/dist/heart/{daemon → versioning}/ouro-bot-global-installer.js +6 -5
  191. package/dist/heart/{daemon → versioning}/ouro-bot-wrapper.js +1 -1
  192. package/dist/heart/versioning/ouro-path-installer.js +426 -0
  193. package/dist/heart/versioning/ouro-version-manager.js +295 -0
  194. package/dist/heart/{daemon → versioning}/staged-restart.js +40 -8
  195. package/dist/heart/{daemon → versioning}/update-checker.js +6 -1
  196. package/dist/heart/{daemon → versioning}/update-hooks.js +63 -59
  197. package/dist/mailbox-ui/assets/index-9-AxCxuB.js +61 -0
  198. package/dist/mailbox-ui/assets/index-CWzt267f.css +1 -0
  199. package/dist/mailbox-ui/index.html +15 -0
  200. package/dist/mailroom/attention.js +167 -0
  201. package/dist/mailroom/autonomy.js +209 -0
  202. package/dist/mailroom/blob-store.js +715 -0
  203. package/dist/mailroom/body-cache.js +61 -0
  204. package/dist/mailroom/core.js +788 -0
  205. package/dist/mailroom/entry.js +160 -0
  206. package/dist/mailroom/file-store.js +568 -0
  207. package/dist/mailroom/mbox-import.js +393 -0
  208. package/dist/mailroom/migration.js +164 -0
  209. package/dist/mailroom/outbound.js +380 -0
  210. package/dist/mailroom/policy.js +263 -0
  211. package/dist/mailroom/reader.js +233 -0
  212. package/dist/mailroom/search-cache.js +334 -0
  213. package/dist/mailroom/search-relevance.js +319 -0
  214. package/dist/mailroom/smtp-ingress.js +176 -0
  215. package/dist/mailroom/source-state.js +176 -0
  216. package/dist/mailroom/thread.js +109 -0
  217. package/dist/mailroom/travel-extract.js +89 -0
  218. package/dist/mind/bundle-manifest.js +14 -1
  219. package/dist/mind/context.js +251 -101
  220. package/dist/mind/desk-section.js +310 -0
  221. package/dist/mind/diary-integrity.js +60 -0
  222. package/dist/mind/{memory.js → diary.js} +68 -76
  223. package/dist/mind/embedding-provider.js +60 -0
  224. package/dist/mind/file-state.js +179 -0
  225. package/dist/mind/friends/channel.js +39 -0
  226. package/dist/mind/friends/resolver.js +54 -2
  227. package/dist/mind/friends/store-file.js +48 -4
  228. package/dist/mind/friends/types.js +2 -2
  229. package/dist/mind/journal-index.js +162 -0
  230. package/dist/mind/note-search.js +268 -0
  231. package/dist/mind/obligation-steering.js +221 -0
  232. package/dist/mind/pending.js +6 -1
  233. package/dist/mind/prompt-refresh.js +3 -2
  234. package/dist/mind/prompt.js +1075 -146
  235. package/dist/mind/provenance-trust.js +26 -0
  236. package/dist/mind/scrutiny.js +173 -0
  237. package/dist/nerves/cli-logging.js +7 -1
  238. package/dist/nerves/coverage/audit-rules.js +15 -6
  239. package/dist/nerves/coverage/audit.js +28 -2
  240. package/dist/nerves/coverage/cli.js +1 -1
  241. package/dist/nerves/coverage/contract.js +5 -5
  242. package/dist/nerves/coverage/file-completeness.js +139 -5
  243. package/dist/nerves/event-buffer.js +111 -0
  244. package/dist/nerves/index.js +224 -4
  245. package/dist/nerves/observation.js +20 -0
  246. package/dist/nerves/redact.js +79 -0
  247. package/dist/nerves/review/cli-main.js +5 -0
  248. package/dist/nerves/review/cli.js +156 -0
  249. package/dist/nerves/review/core.js +152 -0
  250. package/dist/nerves/runtime.js +5 -1
  251. package/dist/repertoire/ado-client.js +15 -56
  252. package/dist/repertoire/ado-semantic.js +16 -10
  253. package/dist/repertoire/api-client.js +97 -0
  254. package/dist/repertoire/bitwarden-store.js +1040 -0
  255. package/dist/repertoire/bundle-templates.js +72 -0
  256. package/dist/repertoire/bw-installer.js +180 -0
  257. package/dist/repertoire/coding/codex-jsonl.js +64 -0
  258. package/dist/repertoire/coding/context-pack.js +331 -0
  259. package/dist/repertoire/coding/feedback.js +197 -30
  260. package/dist/repertoire/coding/manager.js +166 -10
  261. package/dist/repertoire/coding/spawner.js +55 -9
  262. package/dist/repertoire/coding/tools.js +219 -7
  263. package/dist/repertoire/commerce-errors.js +109 -0
  264. package/dist/repertoire/commerce-self-test.js +156 -0
  265. package/dist/repertoire/credential-access.js +178 -0
  266. package/dist/repertoire/desk/classifier.js +362 -0
  267. package/dist/repertoire/duffel-client.js +185 -0
  268. package/dist/repertoire/github-client.js +14 -55
  269. package/dist/repertoire/graph-client.js +11 -52
  270. package/dist/repertoire/guardrails.js +385 -0
  271. package/dist/repertoire/mcp-client.js +295 -0
  272. package/dist/repertoire/mcp-manager.js +403 -0
  273. package/dist/repertoire/mcp-tools.js +83 -0
  274. package/dist/repertoire/plugin-mcp.js +175 -0
  275. package/dist/repertoire/plugins.js +253 -0
  276. package/dist/repertoire/shell-sessions.js +133 -0
  277. package/dist/repertoire/skills.js +48 -4
  278. package/dist/repertoire/stripe-client.js +131 -0
  279. package/dist/repertoire/tool-results.js +29 -0
  280. package/dist/repertoire/tools-attachments.js +317 -0
  281. package/dist/repertoire/tools-awaiting.js +372 -0
  282. package/dist/repertoire/tools-base.js +59 -1082
  283. package/dist/repertoire/tools-bluebubbles.js +2 -0
  284. package/dist/repertoire/tools-bridge.js +144 -0
  285. package/dist/repertoire/tools-bundle.js +993 -0
  286. package/dist/repertoire/tools-config.js +186 -0
  287. package/dist/repertoire/tools-continuity.js +252 -0
  288. package/dist/repertoire/tools-credential.js +383 -0
  289. package/dist/repertoire/tools-evolution.js +527 -0
  290. package/dist/repertoire/tools-files.js +344 -0
  291. package/dist/repertoire/tools-flight.js +227 -0
  292. package/dist/repertoire/tools-flow.js +119 -0
  293. package/dist/repertoire/tools-github.js +3 -8
  294. package/dist/repertoire/tools-mail.js +1975 -0
  295. package/dist/repertoire/tools-notes.js +438 -0
  296. package/dist/repertoire/tools-obligations.js +143 -0
  297. package/dist/repertoire/tools-orientation.js +31 -0
  298. package/dist/repertoire/tools-record.js +464 -0
  299. package/dist/repertoire/tools-runtime.js +150 -0
  300. package/dist/repertoire/tools-session.js +766 -0
  301. package/dist/repertoire/tools-shell.js +120 -0
  302. package/dist/repertoire/tools-stripe.js +182 -0
  303. package/dist/repertoire/tools-surface.js +344 -0
  304. package/dist/repertoire/tools-teams.js +12 -39
  305. package/dist/repertoire/tools-travel.js +125 -0
  306. package/dist/repertoire/tools-trip.js +982 -0
  307. package/dist/repertoire/tools-user-profile.js +146 -0
  308. package/dist/repertoire/tools-vault.js +40 -0
  309. package/dist/repertoire/tools-voice.js +145 -0
  310. package/dist/repertoire/tools.js +215 -103
  311. package/dist/repertoire/travel-api-client.js +360 -0
  312. package/dist/repertoire/user-profile.js +131 -0
  313. package/dist/repertoire/vault-setup.js +246 -0
  314. package/dist/repertoire/vault-unlock.js +594 -0
  315. package/dist/scripts/claude-code-hook.js +41 -0
  316. package/dist/scripts/claude-code-stop-hook.js +47 -0
  317. package/dist/senses/attention-queue.js +186 -0
  318. package/dist/senses/await-turn-message.js +58 -0
  319. package/dist/senses/bluebubbles/active-turns.js +216 -0
  320. package/dist/senses/bluebubbles/attachment-cache.js +53 -0
  321. package/dist/senses/bluebubbles/attachment-download.js +137 -0
  322. package/dist/senses/{bluebubbles-client.js → bluebubbles/client.js} +219 -18
  323. package/dist/senses/bluebubbles/entry.js +77 -0
  324. package/dist/senses/{bluebubbles-inbound-log.js → bluebubbles/inbound-log.js} +20 -3
  325. package/dist/senses/bluebubbles/index.js +2737 -0
  326. package/dist/senses/{bluebubbles-media.js → bluebubbles/media.js} +121 -71
  327. package/dist/senses/{bluebubbles-model.js → bluebubbles/model.js} +33 -12
  328. package/dist/senses/{bluebubbles-mutation-log.js → bluebubbles/mutation-log.js} +3 -3
  329. package/dist/senses/bluebubbles/processed-log.js +133 -0
  330. package/dist/senses/bluebubbles/replay.js +137 -0
  331. package/dist/senses/{bluebubbles-runtime-state.js → bluebubbles/runtime-state.js} +30 -2
  332. package/dist/senses/{bluebubbles-session-cleanup.js → bluebubbles/session-cleanup.js} +1 -1
  333. package/dist/senses/bluebubbles-meta-guard.js +40 -0
  334. package/dist/senses/cli/bracketed-paste.js +82 -0
  335. package/dist/senses/cli/image-paste.js +287 -0
  336. package/dist/senses/cli/image-ref-navigation.js +75 -0
  337. package/dist/senses/cli/ink-app.js +156 -0
  338. package/dist/senses/cli/inline-diff.js +64 -0
  339. package/dist/senses/cli/input-keys.js +174 -0
  340. package/dist/senses/cli/kill-ring.js +86 -0
  341. package/dist/senses/cli/message-list.js +51 -0
  342. package/dist/senses/cli/ouro-tui.js +607 -0
  343. package/dist/senses/cli/spinner-imperative.js +135 -0
  344. package/dist/senses/cli/spinner.js +101 -0
  345. package/dist/senses/cli/status-line.js +60 -0
  346. package/dist/senses/cli/streaming-markdown.js +526 -0
  347. package/dist/senses/cli/tool-display.js +85 -0
  348. package/dist/senses/cli/tool-render.js +85 -0
  349. package/dist/senses/cli/tui-store.js +240 -0
  350. package/dist/senses/cli/virtual-list.js +35 -0
  351. package/dist/senses/cli-entry.js +60 -8
  352. package/dist/senses/cli-layout.js +100 -0
  353. package/dist/senses/cli.js +517 -204
  354. package/dist/senses/commands.js +66 -3
  355. package/dist/senses/habit-turn-message.js +108 -0
  356. package/dist/senses/inner-dialog-worker.js +254 -22
  357. package/dist/senses/inner-dialog.js +505 -40
  358. package/dist/senses/mail-entry.js +66 -0
  359. package/dist/senses/mail.js +379 -0
  360. package/dist/senses/pipeline.js +666 -181
  361. package/dist/senses/proactive-content-guard.js +51 -0
  362. package/dist/senses/shared-turn.js +393 -0
  363. package/dist/senses/surface-tool.js +108 -0
  364. package/dist/senses/teams-entry.js +60 -8
  365. package/dist/senses/teams.js +388 -98
  366. package/dist/senses/trust-gate.js +100 -5
  367. package/dist/senses/voice/audio-playback.js +237 -0
  368. package/dist/senses/voice/audio-routing.js +119 -0
  369. package/dist/senses/voice/elevenlabs.js +202 -0
  370. package/dist/senses/voice/floor-control.js +431 -0
  371. package/dist/senses/voice/floor-controller.js +115 -0
  372. package/dist/senses/voice/golden-path.js +116 -0
  373. package/dist/senses/voice/index.js +29 -0
  374. package/dist/senses/voice/meeting.js +113 -0
  375. package/dist/senses/voice/outbound.js +190 -0
  376. package/dist/senses/voice/phone.js +33 -0
  377. package/dist/senses/voice/playback.js +139 -0
  378. package/dist/senses/voice/realtime-eval.js +496 -0
  379. package/dist/senses/voice/realtime-trace.js +531 -0
  380. package/dist/senses/voice/transcript.js +70 -0
  381. package/dist/senses/voice/turn.js +191 -0
  382. package/dist/senses/voice/twilio-phone-runtime.js +807 -0
  383. package/dist/senses/voice/twilio-phone.js +5079 -0
  384. package/dist/senses/voice/types.js +2 -0
  385. package/dist/senses/voice/whisper.js +161 -0
  386. package/dist/senses/voice-entry.js +81 -0
  387. package/dist/senses/voice-realtime-eval-command.js +99 -0
  388. package/dist/senses/voice-realtime-eval-entry.js +21 -0
  389. package/dist/senses/voice-twilio-entry.js +87 -0
  390. package/dist/trips/core.js +138 -0
  391. package/dist/trips/store.js +265 -0
  392. package/dist/util/frontmatter.js +53 -0
  393. package/package.json +48 -8
  394. package/skills/agent-commerce.md +106 -0
  395. package/skills/browser-navigation.md +117 -0
  396. package/skills/commerce-setup-guide.md +116 -0
  397. package/skills/commerce-setup.md +84 -0
  398. package/skills/configure-dev-tools.md +99 -0
  399. package/skills/travel-planning.md +138 -0
  400. package/dist/heart/daemon/auth-flow.js +0 -351
  401. package/dist/heart/daemon/ouro-path-installer.js +0 -178
  402. package/dist/heart/safe-workspace.js +0 -228
  403. package/dist/heart/session-recall.js +0 -116
  404. package/dist/mind/associative-recall.js +0 -209
  405. package/dist/repertoire/tasks/board.js +0 -134
  406. package/dist/repertoire/tasks/index.js +0 -224
  407. package/dist/repertoire/tasks/lifecycle.js +0 -80
  408. package/dist/repertoire/tasks/middleware.js +0 -65
  409. package/dist/repertoire/tasks/parser.js +0 -173
  410. package/dist/repertoire/tasks/scanner.js +0 -132
  411. package/dist/repertoire/tasks/transitions.js +0 -144
  412. package/dist/senses/bluebubbles-entry.js +0 -13
  413. package/dist/senses/bluebubbles.js +0 -1177
  414. package/dist/senses/debug-activity.js +0 -148
  415. package/subagents/README.md +0 -7
  416. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/basilisk.md +0 -0
  417. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jafar.md +0 -0
  418. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/jormungandr.md +0 -0
  419. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/kaa.md +0 -0
  420. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/medusa.md +0 -0
  421. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/monty.md +0 -0
  422. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/nagini.md +0 -0
  423. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/ouroboros.md +0 -0
  424. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/python.md +0 -0
  425. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/quetzalcoatl.md +0 -0
  426. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/sir-hiss.md +0 -0
  427. /package/{AdoptionSpecialist.ouro → SerpentGuide.ouro}/psyche/identities/the-snake.md +0 -0
  428. /package/dist/{repertoire/tasks/types.js → heart/attachments/sources/adapter.js} +0 -0
  429. /package/dist/heart/{daemon → hatch}/hatch-animation.js +0 -0
  430. /package/dist/heart/{daemon → hatch}/specialist-orchestrator.js +0 -0
  431. /package/dist/heart/{daemon → versioning}/ouro-uti.js +0 -0
  432. /package/dist/heart/{daemon → versioning}/wrapper-publish-guard.js +0 -0
@@ -1,71 +1,103 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.hasToolIntent = exports.buildSystem = exports.toResponsesTools = exports.toResponsesInput = exports.streamResponsesApi = exports.streamChatCompletion = exports.getToolsForChannel = exports.summarizeArgs = exports.execTool = exports.tools = void 0;
4
3
  exports.createProviderRegistry = createProviderRegistry;
5
4
  exports.resetProviderRuntime = resetProviderRuntime;
6
5
  exports.getModel = getModel;
7
6
  exports.getProvider = getProvider;
8
7
  exports.createSummarize = createSummarize;
9
8
  exports.getProviderDisplayLabel = getProviderDisplayLabel;
9
+ exports.isChatStyleChannel = isChatStyleChannel;
10
+ exports.buildPonderResult = buildPonderResult;
11
+ exports.isExternalStateQuery = isExternalStateQuery;
12
+ exports.getSettleRetryError = getSettleRetryError;
10
13
  exports.stripLastToolCalls = stripLastToolCalls;
11
14
  exports.repairOrphanedToolCalls = repairOrphanedToolCalls;
12
- exports.isTransientError = isTransientError;
13
- exports.classifyTransientError = classifyTransientError;
14
15
  exports.runAgent = runAgent;
15
16
  const config_1 = require("./config");
16
17
  const identity_1 = require("./identity");
17
18
  const tools_1 = require("../repertoire/tools");
18
19
  const channel_1 = require("../mind/friends/channel");
20
+ const tools_2 = require("../repertoire/tools");
19
21
  const runtime_1 = require("../nerves/runtime");
20
22
  const context_1 = require("../mind/context");
21
23
  const prompt_1 = require("../mind/prompt");
22
- const associative_recall_1 = require("../mind/associative-recall");
24
+ const kept_notes_1 = require("./kept-notes");
25
+ const error_classification_1 = require("./providers/error-classification");
23
26
  const anthropic_1 = require("./providers/anthropic");
24
27
  const azure_1 = require("./providers/azure");
25
28
  const minimax_1 = require("./providers/minimax");
26
29
  const openai_codex_1 = require("./providers/openai-codex");
27
- let _providerRuntime = null;
28
- function getProviderRuntimeFingerprint() {
29
- const provider = (0, identity_1.loadAgentConfig)().provider;
30
- switch (provider) {
31
- case "azure": {
32
- const { apiKey, endpoint, deployment, modelName, apiVersion, managedIdentityClientId } = (0, config_1.getAzureConfig)();
33
- return JSON.stringify({ provider, apiKey, endpoint, deployment, modelName, apiVersion, managedIdentityClientId });
34
- }
35
- case "anthropic": {
36
- const { model, setupToken } = (0, config_1.getAnthropicConfig)();
37
- return JSON.stringify({ provider, model, setupToken });
38
- }
39
- case "minimax": {
40
- const { apiKey, model } = (0, config_1.getMinimaxConfig)();
41
- return JSON.stringify({ provider, apiKey, model });
42
- }
43
- case "openai-codex": {
44
- const { model, oauthAccessToken } = (0, config_1.getOpenAICodexConfig)();
45
- return JSON.stringify({ provider, model, oauthAccessToken });
46
- }
30
+ const github_copilot_1 = require("./providers/github-copilot");
31
+ const identity_2 = require("./identity");
32
+ const socket_client_1 = require("./daemon/socket-client");
33
+ const obligations_1 = require("../arc/obligations");
34
+ const tool_loop_1 = require("./tool-loop");
35
+ const packets_1 = require("../arc/packets");
36
+ const tool_friction_1 = require("./tool-friction");
37
+ const provider_models_1 = require("./provider-models");
38
+ const provider_credentials_1 = require("./provider-credentials");
39
+ const provider_attempt_1 = require("./provider-attempt");
40
+ const _providerRuntimes = {
41
+ human: null,
42
+ agent: null,
43
+ };
44
+ function providerLaneForFacing(facing) {
45
+ return facing === "human" ? "outward" : "inner";
46
+ }
47
+ function resolveRuntimeProviderBinding(facing) {
48
+ const lane = providerLaneForFacing(facing);
49
+ const config = (0, identity_1.loadAgentConfig)();
50
+ const facingConfig = facing === "human" ? config.humanFacing : config.agentFacing;
51
+ return { lane, provider: facingConfig.provider, model: facingConfig.model };
52
+ }
53
+ async function getProviderRuntimeFingerprint(facing) {
54
+ const agentName = (0, identity_2.getAgentName)();
55
+ const binding = resolveRuntimeProviderBinding(facing);
56
+ const credential = await (0, provider_credentials_1.readProviderCredentialRecord)(agentName, binding.provider);
57
+ if (!credential.ok) {
58
+ throw new Error([
59
+ `${binding.lane} provider ${binding.provider} (${binding.model}) has no credentials for ${agentName}.`,
60
+ credential.error,
61
+ `Run \`ouro auth --agent ${agentName} --provider ${binding.provider}\`.`,
62
+ ].join("\n"));
47
63
  }
64
+ return {
65
+ binding,
66
+ fingerprint: JSON.stringify({
67
+ lane: binding.lane,
68
+ provider: binding.provider,
69
+ model: binding.model,
70
+ credentialRevision: credential.record.revision,
71
+ }),
72
+ credential: credential.record,
73
+ };
48
74
  }
49
75
  function createProviderRegistry() {
50
- const factories = {
51
- azure: azure_1.createAzureProviderRuntime,
52
- anthropic: anthropic_1.createAnthropicProviderRuntime,
53
- minimax: minimax_1.createMinimaxProviderRuntime,
54
- "openai-codex": openai_codex_1.createOpenAICodexProviderRuntime,
55
- };
56
76
  return {
57
- resolve() {
58
- const provider = (0, identity_1.loadAgentConfig)().provider;
59
- return factories[provider]();
77
+ resolve(provider, model, credential) {
78
+ const providerConfig = { ...credential.config, ...credential.credentials };
79
+ switch (provider) {
80
+ case "azure":
81
+ return (0, azure_1.createAzureProviderRuntime)(model, providerConfig);
82
+ case "anthropic":
83
+ return (0, anthropic_1.createAnthropicProviderRuntime)(model, providerConfig);
84
+ case "minimax":
85
+ return (0, minimax_1.createMinimaxProviderRuntime)(model, providerConfig);
86
+ case "openai-codex":
87
+ return (0, openai_codex_1.createOpenAICodexProviderRuntime)(model, providerConfig);
88
+ case "github-copilot":
89
+ return (0, github_copilot_1.createGithubCopilotProviderRuntime)(model, providerConfig);
90
+ }
60
91
  },
61
92
  };
62
93
  }
63
- function getProviderRuntime() {
94
+ async function getProviderRuntime(facing = "human") {
64
95
  try {
65
- const fingerprint = getProviderRuntimeFingerprint();
66
- if (!_providerRuntime || _providerRuntime.fingerprint !== fingerprint) {
67
- const runtime = createProviderRegistry().resolve();
68
- _providerRuntime = runtime ? { fingerprint, runtime } : null;
96
+ const { binding, fingerprint, credential } = await getProviderRuntimeFingerprint(facing);
97
+ const cached = _providerRuntimes[facing];
98
+ if (!cached || cached.fingerprint !== fingerprint) {
99
+ const runtime = createProviderRegistry().resolve(binding.provider, binding.model, credential);
100
+ _providerRuntimes[facing] = runtime ? { fingerprint, runtime } : null;
69
101
  }
70
102
  }
71
103
  catch (error) {
@@ -75,25 +107,26 @@ function getProviderRuntime() {
75
107
  event: "engine.provider_init_error",
76
108
  component: "engine",
77
109
  message: msg,
78
- meta: {},
110
+ meta: { facing },
79
111
  });
80
112
  // eslint-disable-next-line no-console -- pre-boot guard: provider init failure
81
113
  console.error(`\n[fatal] ${msg}\n`);
82
- process.exit(1);
83
- throw new Error("unreachable");
114
+ throw error instanceof Error ? error : new Error(msg);
84
115
  }
85
- if (!_providerRuntime) {
116
+ if (!_providerRuntimes[facing]) {
117
+ const msg = "provider runtime could not be initialized.";
86
118
  (0, runtime_1.emitNervesEvent)({
87
119
  level: "error",
88
120
  event: "engine.provider_init_error",
89
121
  component: "engine",
90
- message: "provider runtime could not be initialized.",
91
- meta: {},
122
+ message: msg,
123
+ meta: { facing },
92
124
  });
93
- process.exit(1);
94
- throw new Error("unreachable");
125
+ // eslint-disable-next-line no-console -- pre-boot guard: provider init failure
126
+ console.error(`\n[fatal] ${msg}\n`);
127
+ throw new Error(msg);
95
128
  }
96
- return _providerRuntime.runtime;
129
+ return _providerRuntimes[facing].runtime;
97
130
  }
98
131
  /**
99
132
  * Clear the cached provider runtime so the next access re-creates it from
@@ -101,17 +134,18 @@ function getProviderRuntime() {
101
134
  * provider fingerprint changes on disk.
102
135
  */
103
136
  function resetProviderRuntime() {
104
- _providerRuntime = null;
137
+ _providerRuntimes.human = null;
138
+ _providerRuntimes.agent = null;
105
139
  }
106
- function getModel() {
107
- return getProviderRuntime().model;
140
+ function getModel(facing = "human") {
141
+ return resolveRuntimeProviderBinding(facing).model;
108
142
  }
109
- function getProvider() {
110
- return getProviderRuntime().id;
143
+ function getProvider(facing = "human") {
144
+ return resolveRuntimeProviderBinding(facing).provider;
111
145
  }
112
- function createSummarize() {
146
+ function createSummarize(facing = "human") {
113
147
  return async (transcript, instruction) => {
114
- const runtime = getProviderRuntime();
148
+ const runtime = await getProviderRuntime(facing);
115
149
  const client = runtime.client;
116
150
  const response = await client.chat.completions.create({
117
151
  model: runtime.model,
@@ -124,35 +158,66 @@ function createSummarize() {
124
158
  return response.choices?.[0]?.message?.content ?? transcript;
125
159
  };
126
160
  }
127
- function getProviderDisplayLabel() {
128
- const provider = (0, identity_1.loadAgentConfig)().provider;
161
+ function getProviderDisplayLabel(facing = "human") {
162
+ const binding = resolveRuntimeProviderBinding(facing);
163
+ const provider = binding.provider;
164
+ const model = binding.model || "unknown";
129
165
  const providerLabelBuilders = {
130
166
  azure: () => {
131
- const config = (0, config_1.getAzureConfig)();
132
- return `azure openai (${config.deployment || "default"}, model: ${config.modelName || "unknown"})`;
167
+ return `azure openai (model: ${model})`;
133
168
  },
134
- anthropic: () => `anthropic (${(0, config_1.getAnthropicConfig)().model || "unknown"})`,
135
- minimax: () => `minimax (${(0, config_1.getMinimaxConfig)().model || "unknown"})`,
136
- "openai-codex": () => `openai codex (${(0, config_1.getOpenAICodexConfig)().model || "unknown"})`,
169
+ anthropic: () => `anthropic (${model})`,
170
+ minimax: () => `minimax (${model})`,
171
+ "openai-codex": () => `openai codex (${model})`,
172
+ /* v8 ignore next -- branch: tested via display label unit test @preserve */
173
+ "github-copilot": () => `github copilot (${model})`,
137
174
  };
138
175
  return providerLabelBuilders[provider]();
139
176
  }
140
- // Re-export tools, execTool, summarizeArgs from ./tools for backward compat
141
- var tools_2 = require("../repertoire/tools");
142
- Object.defineProperty(exports, "tools", { enumerable: true, get: function () { return tools_2.tools; } });
143
- Object.defineProperty(exports, "execTool", { enumerable: true, get: function () { return tools_2.execTool; } });
144
- Object.defineProperty(exports, "summarizeArgs", { enumerable: true, get: function () { return tools_2.summarizeArgs; } });
145
- Object.defineProperty(exports, "getToolsForChannel", { enumerable: true, get: function () { return tools_2.getToolsForChannel; } });
146
- // Re-export streaming functions for backward compat
147
- var streaming_1 = require("./streaming");
148
- Object.defineProperty(exports, "streamChatCompletion", { enumerable: true, get: function () { return streaming_1.streamChatCompletion; } });
149
- Object.defineProperty(exports, "streamResponsesApi", { enumerable: true, get: function () { return streaming_1.streamResponsesApi; } });
150
- Object.defineProperty(exports, "toResponsesInput", { enumerable: true, get: function () { return streaming_1.toResponsesInput; } });
151
- Object.defineProperty(exports, "toResponsesTools", { enumerable: true, get: function () { return streaming_1.toResponsesTools; } });
152
- // Re-export prompt functions for backward compat
153
- var prompt_2 = require("../mind/prompt");
154
- Object.defineProperty(exports, "buildSystem", { enumerable: true, get: function () { return prompt_2.buildSystem; } });
155
- function parseFinalAnswerPayload(argumentsText) {
177
+ /**
178
+ * Strip <think>...</think> blocks for the violation-detection check at the
179
+ * end of a streaming turn. Used to tell legitimate text-only responses
180
+ * apart from the MiniMax-M2.7 "only thinking, no tool call" violation
181
+ * shape. Mirrors the more thorough stripThinkBlocks helper in
182
+ * senses/shared-turn.ts (which is for operator-facing output) kept
183
+ * inline here to avoid pulling senses/ into the core module's import graph.
184
+ */
185
+ function stripThinkBlocksForViolationCheck(input) {
186
+ let out = input;
187
+ for (;;) {
188
+ const open = out.indexOf("<think>");
189
+ if (open === -1)
190
+ break;
191
+ const close = out.indexOf("</think>", open + "<think>".length);
192
+ if (close === -1) {
193
+ out = out.slice(0, open);
194
+ break;
195
+ }
196
+ out = out.slice(0, open) + out.slice(close + "</think>".length);
197
+ }
198
+ return out.trim();
199
+ }
200
+ function hasFreshPendingWork(options) {
201
+ const pendingMessages = options?.pendingMessages;
202
+ if (!Array.isArray(pendingMessages))
203
+ return false;
204
+ return pendingMessages.some((message) => typeof message?.content === "string"
205
+ && message.content.trim().length > 0);
206
+ }
207
+ /** Chat-style channels expose the `speak` tool — outer human-conversation channels
208
+ * where mid-turn delivery is meaningful. Inner dialog has `ponder`. MCP returns
209
+ * synchronously. Mail is batch. Anything else (unknown channel) treats as non-chat. */
210
+ function isChatStyleChannel(channel) {
211
+ return channel === "cli" || channel === "teams" || channel === "bluebubbles" || channel === "voice";
212
+ }
213
+ // Sole-call tools must be the only tool call in a turn. When they appear
214
+ // alongside other tools, the sole-call tool is rejected with this message.
215
+ const SOLE_CALL_REJECTION = {
216
+ settle: "rejected: settle must be the only tool call. finish your work first, then call settle alone.",
217
+ observe: "rejected: observe must be the only tool call. call observe alone when you want to stay silent.",
218
+ rest: "rejected: rest must be the only tool call. finish your work first, then call rest alone.",
219
+ };
220
+ function parseSettlePayload(argumentsText) {
156
221
  try {
157
222
  const parsed = JSON.parse(argumentsText);
158
223
  if (typeof parsed === "string") {
@@ -172,18 +237,177 @@ function parseFinalAnswerPayload(argumentsText) {
172
237
  return {};
173
238
  }
174
239
  }
175
- function getFinalAnswerRetryError(mustResolveBeforeHandoff, intent, sawSteeringFollowUp) {
240
+ function parsePonderPayload(argumentsText) {
241
+ try {
242
+ const parsed = JSON.parse(argumentsText);
243
+ return parsed && typeof parsed === "object" ? parsed : {};
244
+ }
245
+ catch {
246
+ return {};
247
+ }
248
+ }
249
+ function parseSuccessCriteria(raw) {
250
+ if (typeof raw !== "string")
251
+ return null;
252
+ const criteria = raw
253
+ .split("\n")
254
+ .map((line) => line.replace(/^\s*[-*]\s*/, "").trim())
255
+ .filter((line) => line.length > 0);
256
+ return criteria.length > 0 ? criteria : null;
257
+ }
258
+ function parsePacketPayload(raw) {
259
+ if (typeof raw !== "string")
260
+ return null;
261
+ try {
262
+ const parsed = JSON.parse(raw);
263
+ return parsed && typeof parsed === "object" && !Array.isArray(parsed)
264
+ ? parsed
265
+ : null;
266
+ }
267
+ catch {
268
+ return null;
269
+ }
270
+ }
271
+ function normalizeLegacyPonderArgs(parsed) {
272
+ if (typeof parsed.thought !== "string" || parsed.thought.trim().length === 0) {
273
+ return parsed;
274
+ }
275
+ return {
276
+ action: "create",
277
+ kind: "reflection",
278
+ objective: parsed.thought.trim(),
279
+ summary: typeof parsed.say === "string" ? parsed.say.trim() : "",
280
+ success_criteria: "- preserve the thread for later work",
281
+ payload_json: "{}",
282
+ };
283
+ }
284
+ function messageContentText(content) {
285
+ if (typeof content === "string")
286
+ return content;
287
+ if (!Array.isArray(content))
288
+ return "";
289
+ return content
290
+ .map((part) => {
291
+ if (typeof part === "string")
292
+ return part;
293
+ if (!part || typeof part !== "object")
294
+ return "";
295
+ const maybeText = part.text;
296
+ return typeof maybeText === "string" ? maybeText : "";
297
+ })
298
+ .filter(Boolean)
299
+ .join("\n");
300
+ }
301
+ function latestUserMessageText(messages) {
302
+ for (let i = messages.length - 1; i >= 0; i -= 1) {
303
+ const message = messages[i];
304
+ if (message?.role !== "user")
305
+ continue;
306
+ const text = messageContentText(message.content).trim();
307
+ if (text.length > 0)
308
+ return text;
309
+ }
310
+ return "";
311
+ }
312
+ function truncatePonderDelegatedContent(value) {
313
+ return value.length > 120 ? `${value.slice(0, 117)}...` : value;
314
+ }
315
+ function buildPonderDelegatedContent(input) {
316
+ const primary = (input.summary || input.objective).trim();
317
+ const sourceRequest = input.sourceRequest.trim();
318
+ if (!sourceRequest || sourceRequest === primary || sourceRequest === input.objective.trim()) {
319
+ return truncatePonderDelegatedContent(primary);
320
+ }
321
+ return truncatePonderDelegatedContent(`${primary}\nsource request: ${sourceRequest}`);
322
+ }
323
+ function looksLikePrivateReturnRequest(text) {
324
+ const normalized = text.toLowerCase();
325
+ return /\b(private|privately|private-attention|think|reflect|reflection)\b/.test(normalized)
326
+ && /\b(return|bring back|come back|surface|report back)\b/.test(normalized);
327
+ }
328
+ function extractPrivateReturnHeldTokens(text) {
329
+ const tokens = new Set();
330
+ for (const match of text.matchAll(/\b[A-Z][A-Z0-9]*(?:_[A-Z0-9]+){2,}\b/g)) {
331
+ const token = match[0];
332
+ if (token.length >= 8)
333
+ tokens.add(token);
334
+ }
335
+ return [...tokens];
336
+ }
337
+ function privateReturnAckLeakError(answer, heldTokens) {
338
+ if (!answer || heldTokens.size === 0)
339
+ return null;
340
+ for (const token of heldTokens) {
341
+ if (answer.includes(token)) {
342
+ 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.";
343
+ }
344
+ }
345
+ return null;
346
+ }
347
+ function claimsPrivateReturnQueued(answer) {
348
+ if (!answer)
349
+ return false;
350
+ const normalized = answer.toLowerCase();
351
+ return /\b(queued|queue|will return|return when|when .*complete|when .*completes|private pass|inner dialog completes|later)\b/.test(normalized)
352
+ && /\b(private|inner|return|queued|later)\b/.test(normalized);
353
+ }
354
+ function privateReturnMissingPonderError(input) {
355
+ if (input.sawPonder)
356
+ return null;
357
+ if (!looksLikePrivateReturnRequest(input.latestUserRequest))
358
+ return null;
359
+ if (!claimsPrivateReturnQueued(input.answer))
360
+ return null;
361
+ 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 inner wake; then settle with only a queued acknowledgement. If you cannot create the packet, ask a blocking clarification without saying it is queued.";
362
+ }
363
+ function activeReturnObligationId(agentName, obligationId) {
364
+ if (!obligationId)
365
+ return null;
366
+ const obligation = (0, obligations_1.readReturnObligation)(agentName, obligationId);
367
+ return obligation?.status === "queued" || obligation?.status === "running" ? obligationId : null;
368
+ }
369
+ function buildPonderResult(packet, action, returnObligationId) {
370
+ return JSON.stringify({
371
+ ok: true,
372
+ packet_id: packet.id,
373
+ action,
374
+ status: packet.status,
375
+ return_obligation_id: returnObligationId,
376
+ private_return_contract: returnObligationId
377
+ ? "queued for inner 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."
378
+ : null,
379
+ }, null, 2);
380
+ }
381
+ /** Returns true when a tool call queries external state (GitHub, npm registry). */
382
+ function isExternalStateQuery(toolName, args) {
383
+ if (toolName !== "shell")
384
+ return false;
385
+ const cmd = String(args.command ?? "");
386
+ return /\bgh\s+(pr|run|api|issue)\b/.test(cmd) || /\bnpm\s+(view|info|show)\b/.test(cmd);
387
+ }
388
+ function getSettleRetryError(mustResolveBeforeHandoff, intent, sawSteeringFollowUp, _delegationDecision, sawSendMessageSelf, sawPonder, _sawQuerySession, currentObligation, innerJob, _sawExternalStateQuery) {
389
+ // Delegation adherence removed: the delegation decision is surfaced in the
390
+ // system prompt as a suggestion. Hard-gating settle caused infinite
391
+ // rejection loops where the agent couldn't respond to the user at all.
392
+ // The agent is free to follow or ignore the delegation hint.
393
+ // 2. Pending obligation not addressed
394
+ if (innerJob?.obligationStatus === "pending" && !sawSendMessageSelf && !sawPonder) {
395
+ 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.";
396
+ }
397
+ // 3. mustResolveBeforeHandoff + missing intent
176
398
  if (mustResolveBeforeHandoff && !intent) {
177
- return "your final_answer is missing required intent. when you must keep going until done or blocked, call final_answer again with answer plus intent=complete, blocked, or direct_reply.";
399
+ 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.";
178
400
  }
401
+ // 4. mustResolveBeforeHandoff + direct_reply without follow-up
179
402
  if (mustResolveBeforeHandoff && intent === "direct_reply" && !sawSteeringFollowUp) {
180
- return "your final_answer used intent=direct_reply without a newer steering follow-up. continue the unresolved work, or call final_answer again with intent=complete or blocked when appropriate.";
403
+ 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.";
404
+ }
405
+ // 5. mustResolveBeforeHandoff + complete while a live return loop is still active
406
+ if (mustResolveBeforeHandoff && intent === "complete" && currentObligation && !sawSteeringFollowUp) {
407
+ 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.";
181
408
  }
182
- return "your final_answer was incomplete or malformed. call final_answer again with your complete response.";
409
+ return null;
183
410
  }
184
- // Re-export kick utilities for backward compat
185
- var kicks_1 = require("./kicks");
186
- Object.defineProperty(exports, "hasToolIntent", { enumerable: true, get: function () { return kicks_1.hasToolIntent; } });
187
411
  function upsertSystemPrompt(messages, systemText) {
188
412
  const systemMessage = { role: "system", content: systemText };
189
413
  if (messages[0]?.role === "system") {
@@ -221,27 +445,39 @@ const TOOL_SCAN_BOUNDARY_ROLES = new Set(["assistant", "user"]);
221
445
  // 1. If an assistant message has tool_calls but missing tool results, inject synthetic error results.
222
446
  // 2. If a tool result's tool_call_id doesn't match any tool_calls in a preceding assistant message, remove it.
223
447
  // This prevents 400 errors from the API after an aborted turn.
448
+ //
449
+ // Position-aware: a tool result is orphaned when its tool_call_id hasn't been
450
+ // defined by an assistant message AT THIS POSITION yet. MiniMax-M2.7 reuses
451
+ // canonical tool_call_ids across turns, so the global-set check that this
452
+ // function used previously kept misordered tool results that MiniMax then
453
+ // rejected with error 2013 ("tool result's tool id not found"). Walking
454
+ // in order matches what MiniMax actually enforces.
224
455
  function repairOrphanedToolCalls(messages) {
225
- // Pass 1: collect all valid tool_call IDs from assistant messages
226
- const validCallIds = new Set();
227
- for (const msg of messages) {
456
+ // Pass 1: walk in order, accumulate seen tool_call_ids per-position, and
457
+ // mark tool results for removal if their id hasn't been defined yet.
458
+ const seenCallIds = new Set();
459
+ const removeIndices = [];
460
+ for (let i = 0; i < messages.length; i++) {
461
+ const msg = messages[i];
228
462
  if (msg.role === "assistant") {
229
463
  const asst = msg;
230
464
  if (asst.tool_calls) {
231
465
  for (const tc of asst.tool_calls)
232
- validCallIds.add(tc.id);
466
+ seenCallIds.add(tc.id);
233
467
  }
468
+ continue;
234
469
  }
235
- }
236
- // Pass 2: remove orphaned tool results (tool_call_id not in any assistant's tool_calls)
237
- for (let i = messages.length - 1; i >= 0; i--) {
238
- if (messages[i].role === "tool") {
239
- const toolMsg = messages[i];
240
- if (!validCallIds.has(toolMsg.tool_call_id)) {
241
- messages.splice(i, 1);
470
+ if (msg.role === "tool") {
471
+ const toolMsg = msg;
472
+ if (!seenCallIds.has(toolMsg.tool_call_id)) {
473
+ removeIndices.push(i);
242
474
  }
243
475
  }
244
476
  }
477
+ // Splice from the end so earlier indices stay valid.
478
+ for (let i = removeIndices.length - 1; i >= 0; i--) {
479
+ messages.splice(removeIndices[i], 1);
480
+ }
245
481
  // Pass 3: inject synthetic results for tool_calls missing their tool results
246
482
  for (let i = 0; i < messages.length; i++) {
247
483
  const msg = messages[i];
@@ -263,10 +499,13 @@ function repairOrphanedToolCalls(messages) {
263
499
  }
264
500
  const missing = asst.tool_calls.filter((tc) => !resultIds.has(tc.id));
265
501
  if (missing.length > 0) {
502
+ // AX rule: the agent must see what happened. Don't say "interrupted"
503
+ // — that's vague. Tell them the result was lost, possible causes,
504
+ // and what to do next.
266
505
  const syntheticResults = missing.map((tc) => ({
267
506
  role: "tool",
268
507
  tool_call_id: tc.id,
269
- content: "error: tool call was interrupted (previous turn timed out or was aborted)",
508
+ 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.",
270
509
  }));
271
510
  let insertAt = i + 1;
272
511
  while (insertAt < messages.length && messages[insertAt].role === "tool")
@@ -289,49 +528,67 @@ function isContextOverflow(err) {
289
528
  return true;
290
529
  return false;
291
530
  }
292
- // Detect transient network errors worth retrying
293
- function isTransientError(err) {
294
- if (!(err instanceof Error))
295
- return false;
296
- const msg = err.message || "";
297
- const code = err.code || "";
298
- // Node.js network error codes
299
- if (["ECONNRESET", "ECONNREFUSED", "ENOTFOUND", "ETIMEDOUT", "EPIPE",
300
- "EAI_AGAIN", "EHOSTUNREACH", "ENETUNREACH", "ECONNABORTED"].includes(code))
301
- return true;
302
- // OpenAI SDK / fetch errors
303
- if (msg.includes("fetch failed"))
304
- return true;
305
- if (msg.includes("network") && !msg.includes("context"))
306
- return true;
307
- if (msg.includes("ECONNRESET") || msg.includes("ETIMEDOUT"))
308
- return true;
309
- if (msg.includes("socket hang up"))
310
- return true;
311
- if (msg.includes("getaddrinfo"))
312
- return true;
313
- // HTTP 429 / 500 / 502 / 503 / 504
314
- const status = err.status;
315
- if (status === 429 || status === 500 || status === 502 || status === 503 || status === 504)
316
- return true;
317
- return false;
531
+ const RETRY_LABELS = {
532
+ "auth-failure": "auth error",
533
+ "usage-limit": "usage limit",
534
+ "rate-limit": "rate limited",
535
+ "server-error": "server error",
536
+ "network-error": "network error",
537
+ "unknown": "error",
538
+ };
539
+ function waitForProviderRetry(delayMs, signal) {
540
+ if (!signal) {
541
+ return new Promise((resolve) => {
542
+ setTimeout(resolve, delayMs);
543
+ });
544
+ }
545
+ return new Promise((resolve, reject) => {
546
+ let timer;
547
+ const onAbort = () => {
548
+ clearTimeout(timer);
549
+ reject(new provider_attempt_1.ProviderAttemptAbortError());
550
+ };
551
+ timer = setTimeout(() => {
552
+ signal.removeEventListener("abort", onAbort);
553
+ resolve();
554
+ }, delayMs);
555
+ if (signal.aborted) {
556
+ onAbort();
557
+ return;
558
+ }
559
+ signal.addEventListener("abort", onAbort, { once: true });
560
+ });
561
+ }
562
+ function buildAuthFailureGuidance(provider, model, agentName, detail) {
563
+ const mismatch = (0, provider_models_1.getProviderModelMismatchMessage)(provider, model);
564
+ const modelLabel = model
565
+ ? mismatch
566
+ ? `${provider} [configured model: ${model}]`
567
+ : `${provider} (${model})`
568
+ : provider;
569
+ const lines = [`${modelLabel} authentication failed.`];
570
+ const cleanDetail = detail.replace(/\s+/g, " ").trim();
571
+ if (cleanDetail)
572
+ lines.push(`provider detail: ${cleanDetail.length > 300 ? `${cleanDetail.slice(0, 297)}...` : cleanDetail}`);
573
+ lines.push("");
574
+ lines.push("To keep using this provider:");
575
+ lines.push(` 1. Run \`ouro auth --agent ${agentName} --provider ${provider}\``);
576
+ if (mismatch) {
577
+ const defaultModel = (0, provider_models_1.getDefaultModelForProvider)(provider);
578
+ lines.push("");
579
+ lines.push("Config warning:");
580
+ lines.push(` - ${mismatch}`);
581
+ lines.push(" - Repair the configured model with:");
582
+ lines.push(` \`ouro use --agent ${agentName} --lane outward --provider ${provider} --model ${defaultModel}\``);
583
+ lines.push(` \`ouro use --agent ${agentName} --lane inner --provider ${provider} --model ${defaultModel}\``);
584
+ }
585
+ lines.push("");
586
+ lines.push(`To use another configured provider instead, run \`ouro use --agent ${agentName} --lane <outward|inner> --provider <provider> --model <model>\`.`);
587
+ return lines.join("\n");
318
588
  }
319
- function classifyTransientError(err) {
320
- if (!(err instanceof Error))
321
- return "unknown error";
322
- const status = err.status;
323
- if (status === 429)
324
- return "rate limited";
325
- if (status === 401 || status === 403)
326
- return "auth error";
327
- if (status && status >= 500)
328
- return "server error";
329
- return "network error";
330
- }
331
- const MAX_RETRIES = 3;
332
- const RETRY_BASE_MS = 2000;
333
589
  async function runAgent(messages, callbacks, channel, signal, options) {
334
- const providerRuntime = getProviderRuntime();
590
+ const facing = (0, channel_1.channelToFacing)(channel);
591
+ let providerRuntime = await getProviderRuntime(facing);
335
592
  const provider = providerRuntime.id;
336
593
  const toolChoiceRequired = options?.toolChoiceRequired ?? true;
337
594
  const traceId = options?.traceId;
@@ -355,6 +612,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
355
612
  // Refresh system prompt at start of each turn when channel is provided.
356
613
  // If refresh fails, keep existing system prompt (or inject a minimal safe fallback)
357
614
  // so turn execution remains consistent and non-fatal.
615
+ let structuredSystemPrompt;
358
616
  if (channel) {
359
617
  try {
360
618
  const buildSystemOptions = {
@@ -363,7 +621,8 @@ async function runAgent(messages, callbacks, channel, signal, options) {
363
621
  supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
364
622
  };
365
623
  const refreshed = await (0, prompt_1.buildSystem)(channel, buildSystemOptions, currentContext);
366
- upsertSystemPrompt(messages, refreshed);
624
+ structuredSystemPrompt = refreshed;
625
+ upsertSystemPrompt(messages, (0, prompt_1.flattenSystemPrompt)(refreshed));
367
626
  }
368
627
  catch (error) {
369
628
  const hadExistingSystemPrompt = messages[0]?.role === "system" && typeof messages[0].content === "string";
@@ -384,40 +643,124 @@ async function runAgent(messages, callbacks, channel, signal, options) {
384
643
  });
385
644
  }
386
645
  }
387
- await (0, associative_recall_1.injectAssociativeRecall)(messages);
646
+ if (channel && options?.skipKeptNotes !== true) {
647
+ await (0, kept_notes_1.injectKeptNotes)(messages, {
648
+ channel,
649
+ friend: currentContext?.friend,
650
+ judge: async (input) => (0, kept_notes_1.createKeptNotesJudge)(await getProviderRuntime("agent"), signal)(input),
651
+ signal,
652
+ traceId,
653
+ });
654
+ }
388
655
  let done = false;
389
656
  let lastUsage;
390
657
  let overflowRetried = false;
391
- let retryCount = 0;
392
- let outcome = "complete";
658
+ let outcome = "settled";
393
659
  let completion;
660
+ let terminalError;
661
+ let terminalErrorClassification;
394
662
  let sawSteeringFollowUp = false;
395
663
  let mustResolveBeforeHandoffActive = options?.mustResolveBeforeHandoff === true;
396
664
  let currentReasoningEffort = "medium";
665
+ let sawSendMessageSelf = false;
666
+ let sawPonder = false;
667
+ let sawQuerySession = false;
668
+ let sawBridgeManage = false;
669
+ let sawExternalStateQuery = false;
670
+ const privateReturnHeldTokens = new Set();
671
+ // Once-per-turn flag for the fresh-work rest gate. Without this, an agent
672
+ // that called rest, was told "fresh work arrived", processed the items,
673
+ // and called rest again would get the same message forever — the gate
674
+ // condition is read from the turn-start snapshot of pendingMessages,
675
+ // which doesn't update mid-turn. The agent only needs to be told once;
676
+ // after that, repeated rest attempts mean they've acknowledged.
677
+ let freshWorkGateFired = false;
678
+ // Counter for "no tool call returned despite tool_choice=required" violations.
679
+ // MiniMax reasoning models occasionally emit only a <think>...</think>
680
+ // block and stop, without any tool call — even when tool_choice is set to
681
+ // "required". This is a provider-level violation; the harness retries with
682
+ // a corrective nudge up to a small cap rather than silently accepting an
683
+ // empty turn.
684
+ let noToolCallRetries = 0;
685
+ const NO_TOOL_CALL_MAX_RETRIES = 2;
686
+ const toolLoopState = (0, tool_loop_1.createToolLoopState)();
687
+ const toolFrictionLedger = (0, tool_friction_1.createToolFrictionLedger)();
688
+ const finishTerminalProviderError = (error, classification) => {
689
+ terminalError = error;
690
+ terminalErrorClassification = classification;
691
+ /* v8 ignore start — auth-failure guidance: tested via provider error classification tests @preserve */
692
+ if (terminalErrorClassification === "auth-failure") {
693
+ const agentName = (0, identity_2.getAgentName)();
694
+ const currentProvider = providerRuntime.id;
695
+ callbacks.onError(new Error(buildAuthFailureGuidance(currentProvider, providerRuntime.model, agentName, terminalError.message)), "terminal");
696
+ }
697
+ else {
698
+ callbacks.onError(terminalError, "terminal");
699
+ }
700
+ /* v8 ignore stop */
701
+ const errorDetails = (0, error_classification_1.extractProviderErrorDetails)(terminalError);
702
+ (0, runtime_1.emitNervesEvent)({
703
+ level: "error",
704
+ event: "engine.error",
705
+ trace_id: traceId,
706
+ component: "engine",
707
+ message: terminalError.message,
708
+ meta: {
709
+ provider: providerRuntime.id,
710
+ model: providerRuntime.model,
711
+ errorClassification: terminalErrorClassification,
712
+ ...(errorDetails.status !== undefined ? { httpStatus: errorDetails.status } : {}),
713
+ ...(errorDetails.bodyExcerpt ? { bodyExcerpt: errorDetails.bodyExcerpt } : {}),
714
+ summary: (0, error_classification_1.summarizeProviderError)(terminalError, terminalErrorClassification, providerRuntime.id, providerRuntime.model),
715
+ },
716
+ });
717
+ stripLastToolCalls(messages);
718
+ outcome = "errored";
719
+ done = true;
720
+ };
397
721
  // Prevent MaxListenersExceeded warning — each iteration adds a listener
398
722
  try {
399
723
  require("events").setMaxListeners(50, signal);
400
724
  }
401
725
  catch { /* unsupported */ }
402
726
  const toolPreferences = currentContext?.friend?.toolPreferences;
403
- const baseTools = options?.tools ?? (0, tools_1.getToolsForChannel)(channel ? (0, channel_1.getChannelCapabilities)(channel) : undefined, toolPreferences && Object.keys(toolPreferences).length > 0 ? toolPreferences : undefined, currentContext, providerRuntime.capabilities);
727
+ const baseTools = options?.tools ?? (0, tools_1.getToolsForChannel)(channel ? (0, channel_1.getChannelCapabilities)(channel) : undefined, toolPreferences && Object.keys(toolPreferences).length > 0 ? toolPreferences : undefined, currentContext, providerRuntime.capabilities, options?.mcpManager, providerRuntime.model);
404
728
  // Augment tool context with reasoning effort controls from provider
405
- const augmentedToolContext = options?.toolContext
729
+ const baseToolContext = options?.toolContext
730
+ ?? (options?.orientationFrame ? { signin: async () => undefined, orientationFrame: options.orientationFrame } : undefined);
731
+ const augmentedToolContext = baseToolContext
406
732
  ? {
407
- ...options.toolContext,
733
+ ...baseToolContext,
408
734
  supportedReasoningEfforts: providerRuntime.supportedReasoningEfforts,
409
735
  setReasoningEffort: (level) => { currentReasoningEffort = level; },
736
+ activeWorkFrame: options?.activeWorkFrame,
737
+ orientationFrame: options?.orientationFrame ?? baseToolContext.orientationFrame,
410
738
  }
411
739
  : undefined;
412
740
  // Rebase provider-owned turn state from canonical messages at user-turn start.
413
741
  // This prevents stale provider caches from replaying prior-turn context.
414
742
  providerRuntime.resetTurnState(messages);
415
743
  while (!done) {
416
- // When toolChoiceRequired is true (the default), include final_answer
417
- // so the model can signal completion. With tool_choice: required, the
418
- // model must call a tool every turn final_answer is how it exits.
419
- // Overridable via options.toolChoiceRequired = false (e.g. CLI).
420
- const activeTools = toolChoiceRequired ? [...baseTools, tools_1.finalAnswerTool] : baseTools;
744
+ // Channel-based tool filtering:
745
+ // - Inner dialog: exclude send_message (delivery via surface), observe (no one to observe)
746
+ // - All outward channels (1:1, group, reaction): observe available
747
+ //
748
+ // ponder, settle/rest, surface, and observe are always assembled based on channel context.
749
+ // ponder is available in ALL channels (outer: think privately, inner: keep turning).
750
+ // Inner dialog gets restTool instead of settleTool (rest = end turn, gated by attention queue).
751
+ // toolChoiceRequired only controls whether tool_choice: "required" is set in the API call.
752
+ const isInnerDialog = channel === "inner";
753
+ const filteredBaseTools = isInnerDialog
754
+ ? baseTools.filter((t) => t.function.name !== "send_message")
755
+ : baseTools;
756
+ const activeTools = [
757
+ ...filteredBaseTools,
758
+ tools_1.ponderTool,
759
+ ...(isInnerDialog ? [tools_2.surfaceToolDef, tools_1.restTool] : []),
760
+ ...(!isInnerDialog ? [tools_1.observeTool] : []),
761
+ ...(!isInnerDialog ? [tools_1.settleTool] : []),
762
+ ...(isChatStyleChannel(channel ?? "") ? [tools_1.speakTool] : []),
763
+ ];
421
764
  const steeringFollowUps = options?.drainSteeringFollowUps?.() ?? [];
422
765
  if (steeringFollowUps.length > 0) {
423
766
  const hasSupersedingFollowUp = steeringFollowUps.some((followUp) => followUp.effect === "clear_and_supersede");
@@ -444,26 +787,124 @@ async function runAgent(messages, callbacks, channel, signal, options) {
444
787
  break;
445
788
  }
446
789
  try {
447
- callbacks.onModelStart();
448
- const result = await providerRuntime.streamTurn({
449
- messages,
450
- activeTools,
451
- callbacks,
452
- signal,
453
- traceId,
454
- toolChoiceRequired,
455
- reasoningEffort: currentReasoningEffort,
790
+ const callProviderTurn = async () => {
791
+ callbacks.onModelStart();
792
+ try {
793
+ return await providerRuntime.streamTurn({
794
+ messages,
795
+ activeTools,
796
+ callbacks,
797
+ signal,
798
+ traceId,
799
+ toolChoiceRequired,
800
+ reasoningEffort: currentReasoningEffort,
801
+ eagerSettleStreaming: true,
802
+ systemPrompt: structuredSystemPrompt,
803
+ });
804
+ }
805
+ catch (error) {
806
+ if (signal?.aborted)
807
+ throw new provider_attempt_1.ProviderAttemptAbortError();
808
+ throw error;
809
+ }
810
+ };
811
+ const callProviderTurnWithOverflowRecovery = async () => {
812
+ try {
813
+ return await callProviderTurn();
814
+ }
815
+ catch (error) {
816
+ if (error instanceof provider_attempt_1.ProviderAttemptAbortError)
817
+ throw error;
818
+ if (isContextOverflow(error) && !overflowRetried) {
819
+ overflowRetried = true;
820
+ stripLastToolCalls(messages);
821
+ const { maxTokens, contextMargin } = (0, config_1.getContextConfig)();
822
+ const trimmed = (0, context_1.trimMessages)(messages, maxTokens, contextMargin, maxTokens * 2);
823
+ messages.splice(0, messages.length, ...trimmed);
824
+ providerRuntime.resetTurnState(messages);
825
+ callbacks.onError(new Error("context trimmed, retrying..."), "transient");
826
+ return callProviderTurn();
827
+ }
828
+ throw error;
829
+ }
830
+ };
831
+ const attempt = await (0, provider_attempt_1.runProviderAttempt)({
832
+ operation: "turn",
833
+ provider: providerRuntime.id,
834
+ model: providerRuntime.model,
835
+ run: callProviderTurnWithOverflowRecovery,
836
+ classifyError: (error) => providerRuntime.classifyError(error),
837
+ onRetry: async (record, maxAttempts) => {
838
+ const delayMs = record.delayMs;
839
+ const seconds = delayMs / 1000;
840
+ const cause = RETRY_LABELS[record.classification];
841
+ try {
842
+ await (0, provider_credentials_1.refreshProviderCredentialPool)((0, identity_2.getAgentName)(), {
843
+ preserveCachedOnFailure: true,
844
+ providers: [record.provider],
845
+ });
846
+ _providerRuntimes[facing] = null;
847
+ providerRuntime = await getProviderRuntime(facing);
848
+ providerRuntime.resetTurnState(messages);
849
+ }
850
+ catch (refreshError) {
851
+ (0, runtime_1.emitNervesEvent)({
852
+ level: "warn",
853
+ component: "engine",
854
+ event: "engine.provider_retry_refresh_failed",
855
+ message: "provider credential refresh failed during retry",
856
+ meta: { provider: record.provider, model: record.model, reason: refreshError instanceof Error ? refreshError.message : String(refreshError) },
857
+ });
858
+ }
859
+ callbacks.onError(new Error(`${cause}, retrying in ${seconds}s (${record.attempt}/${maxAttempts})...`), "transient");
860
+ },
861
+ sleep: async (delayMs) => {
862
+ await waitForProviderRetry(delayMs, signal);
863
+ providerRuntime.resetTurnState(messages);
864
+ },
456
865
  });
866
+ if (!attempt.ok) {
867
+ finishTerminalProviderError(attempt.error, attempt.classification);
868
+ continue;
869
+ }
870
+ const result = attempt.value;
457
871
  // Track usage from the latest API call
458
872
  if (result.usage)
459
873
  lastUsage = result.usage;
460
- retryCount = 0; // reset on success
461
874
  // SHARED: build CC-format assistant message from TurnResult
462
875
  const msg = {
463
876
  role: "assistant",
464
877
  };
465
- if (result.content)
466
- msg.content = result.content;
878
+ // Persist assistant content WITHOUT inline <think>...</think> blocks.
879
+ // Reasoning content already routed through onReasoningChunk for live
880
+ // surfacing and persisted separately as `_reasoning_items` for
881
+ // providers that support a reasoning channel; saving it inline AND
882
+ // alongside tool_calls causes MiniMax to reject the replayed turn
883
+ // with "tool result's tool id not found" (error code 2013) because
884
+ // it can't reconcile reasoning-with-tools in the same assistant
885
+ // message. Strip aggressively at persist so the next replay is
886
+ // clean; preserve the original reasoning trace on the message via
887
+ // `_inline_reasoning` so debug/audit paths can still see it.
888
+ if (result.content) {
889
+ const stripped = stripThinkBlocksForViolationCheck(result.content);
890
+ if (stripped.length > 0)
891
+ msg.content = stripped;
892
+ if (stripped.length !== result.content.length) {
893
+ msg._inline_reasoning = result.content;
894
+ (0, runtime_1.emitNervesEvent)({
895
+ level: "info",
896
+ component: "engine",
897
+ event: "engine.inline_reasoning_stripped",
898
+ message: "stripped inline <think> blocks from persisted assistant message; preserved on _inline_reasoning",
899
+ meta: {
900
+ provider: providerRuntime.id,
901
+ model: providerRuntime.model,
902
+ originalLength: result.content.length,
903
+ strippedLength: stripped.length,
904
+ },
905
+ });
906
+ }
907
+ }
467
908
  if (result.toolCalls.length)
468
909
  msg.tool_calls = result.toolCalls.map((tc) => ({
469
910
  id: tc.id,
@@ -483,35 +924,114 @@ async function runAgent(messages, callbacks, channel, signal, options) {
483
924
  }
484
925
  // Phase annotation for Codex provider
485
926
  const hasPhaseAnnotation = providerRuntime.capabilities.has("phase-annotation");
486
- const isSoleFinalAnswer = result.toolCalls.length === 1 && result.toolCalls[0].name === "final_answer";
927
+ const isSoleSettle = result.toolCalls.length === 1 && result.toolCalls[0].name === "settle";
487
928
  if (hasPhaseAnnotation) {
488
- msg.phase = isSoleFinalAnswer ? "final_answer" : "commentary";
929
+ msg.phase = isSoleSettle ? "settle" : "commentary";
489
930
  }
931
+ // Detect the MiniMax "only-thinking, no tool call" violation: no tool
932
+ // calls returned, and the content is empty after stripping
933
+ // <think>...</think> blocks. This is a narrow check — legitimate
934
+ // content-only responses (text without think tags, or text outside
935
+ // think tags) still flow through the original "no tool calls →
936
+ // accept as-is" path so existing channels and tests are unaffected.
937
+ const onlyThinkContent = !result.toolCalls.length
938
+ && typeof result.content === "string"
939
+ && stripThinkBlocksForViolationCheck(result.content).length === 0
940
+ && result.content.length > 0;
490
941
  if (!result.toolCalls.length) {
491
- // No tool calls accept response as-is.
492
- // (Kick detection disabled; tool_choice: required + final_answer
493
- // is the primary loop control. See src/heart/kicks.ts to re-enable.)
942
+ if (onlyThinkContent && toolChoiceRequired && noToolCallRetries < NO_TOOL_CALL_MAX_RETRIES) {
943
+ // Provider-level violation: tool_choice was required, model emitted
944
+ // only a <think>...</think> block (or empty content) with no tool
945
+ // call. Retry with a corrective nudge up to NO_TOOL_CALL_MAX_RETRIES
946
+ // times. After cap, accept as-is (the readback path strips think
947
+ // tags and surfaces a clear diagnostic).
948
+ noToolCallRetries++;
949
+ (0, runtime_1.emitNervesEvent)({
950
+ level: "warn",
951
+ component: "engine",
952
+ event: "engine.no_tool_call_retry",
953
+ message: "model returned only <think> content with no tool call despite tool_choice=required; retrying with corrective nudge",
954
+ meta: {
955
+ attempt: noToolCallRetries,
956
+ cap: NO_TOOL_CALL_MAX_RETRIES,
957
+ provider: providerRuntime.id,
958
+ model: providerRuntime.model,
959
+ contentLength: result.content.length,
960
+ },
961
+ });
962
+ messages.push(msg);
963
+ messages.push({
964
+ role: "user",
965
+ content: isInnerDialog
966
+ ? "no tool was called this turn. you must end every turn by calling rest (or surface, ponder, observe). emit the tool call now."
967
+ : "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.",
968
+ });
969
+ continue;
970
+ }
971
+ // Legitimate text-only response, or cap reached — accept as-is.
494
972
  messages.push(msg);
495
973
  done = true;
496
974
  }
497
975
  else {
498
- // Check for final_answer sole call: intercept before tool execution
499
- if (isSoleFinalAnswer) {
976
+ // Reset the retry counter on any successful tool call.
977
+ noToolCallRetries = 0;
978
+ // Check for settle sole call: intercept before tool execution
979
+ if (isSoleSettle) {
980
+ /* v8 ignore next -- defensive: JSON.parse catch for malformed settle args @preserve */
981
+ const settleArgs = (() => { try {
982
+ return JSON.parse(result.toolCalls[0].arguments);
983
+ }
984
+ catch {
985
+ return {};
986
+ } })();
987
+ callbacks.onToolStart("settle", settleArgs);
988
+ // Inner dialog attention queue gate: reject settle if items remain
989
+ const attentionQueue = (augmentedToolContext ?? options?.toolContext)?.delegatedOrigins;
990
+ if (isInnerDialog && attentionQueue && attentionQueue.length > 0) {
991
+ callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
992
+ callbacks.onClearText?.();
993
+ messages.push(msg);
994
+ 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.";
995
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
996
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
997
+ continue;
998
+ }
500
999
  // Extract answer from the tool call arguments.
501
1000
  // Supports: {"answer":"text","intent":"..."} or "text" (JSON string).
502
- const { answer, intent } = parseFinalAnswerPayload(result.toolCalls[0].arguments);
1001
+ const { answer, intent } = parseSettlePayload(result.toolCalls[0].arguments);
1002
+ // Inner dialog settle: no CompletionMetadata, "(settled)" ack
1003
+ if (isInnerDialog) {
1004
+ callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), true);
1005
+ messages.push(msg);
1006
+ const settled = "(settled)";
1007
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: settled });
1008
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, settled);
1009
+ outcome = "settled";
1010
+ done = true;
1011
+ continue;
1012
+ }
1013
+ const deliveredAnswer = answer;
1014
+ const retryError = privateReturnAckLeakError(deliveredAnswer, privateReturnHeldTokens)
1015
+ ?? privateReturnMissingPonderError({
1016
+ latestUserRequest: latestUserMessageText(messages),
1017
+ answer: deliveredAnswer,
1018
+ sawPonder,
1019
+ })
1020
+ ?? getSettleRetryError(mustResolveBeforeHandoffActive, intent, sawSteeringFollowUp, options?.delegationDecision, sawSendMessageSelf, sawPonder, sawQuerySession, options?.currentObligation ?? null, options?.activeWorkFrame?.inner?.job, sawExternalStateQuery);
503
1021
  const validDirectReply = mustResolveBeforeHandoffActive && intent === "direct_reply" && sawSteeringFollowUp;
504
1022
  const validTerminalIntent = intent === "complete" || intent === "blocked";
505
- const validClosure = answer != null
1023
+ const validClosure = deliveredAnswer != null
1024
+ && !retryError
506
1025
  && (!mustResolveBeforeHandoffActive || validDirectReply || validTerminalIntent);
507
1026
  if (validClosure) {
1027
+ callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), true);
508
1028
  completion = {
509
- answer,
1029
+ answer: deliveredAnswer,
510
1030
  intent: validDirectReply ? "direct_reply" : intent === "blocked" ? "blocked" : "complete",
511
1031
  };
512
- if (result.finalAnswerStreamed) {
1032
+ if (result.settleStreamed) {
513
1033
  // The streaming layer already parsed and emitted the answer
514
- // progressively via FinalAnswerParser. Skip clearing and
1034
+ // progressively via SettleParser. Skip clearing and
515
1035
  // re-emitting to avoid double-delivery.
516
1036
  }
517
1037
  else {
@@ -519,7 +1039,7 @@ async function runAgent(messages, callbacks, channel, signal, options) {
519
1039
  callbacks.onClearText?.();
520
1040
  // Emit the answer through the callback pipeline so channels receive it.
521
1041
  // Never truncate -- channel adapters handle splitting long messages.
522
- callbacks.onTextChunk(answer);
1042
+ callbacks.onTextChunk(deliveredAnswer);
523
1043
  }
524
1044
  messages.push(msg);
525
1045
  if (validDirectReply) {
@@ -531,32 +1051,114 @@ async function runAgent(messages, callbacks, channel, signal, options) {
531
1051
  const delivered = "(delivered)";
532
1052
  messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: delivered });
533
1053
  providerRuntime.appendToolOutput(result.toolCalls[0].id, delivered);
534
- outcome = intent === "blocked" ? "blocked" : "complete";
1054
+ outcome = intent === "blocked" ? "blocked" : "settled";
535
1055
  done = true;
536
1056
  }
537
1057
  }
538
1058
  else {
539
- // Answer is undefined -- the model's final_answer was incomplete or
1059
+ // Answer is undefined -- the model's settle was incomplete or
540
1060
  // malformed. Clear any partial streamed text or noise, then push the
541
1061
  // assistant msg + error tool result and let the model try again.
1062
+ callbacks.onToolEnd("settle", (0, tools_1.summarizeArgs)("settle", settleArgs), false);
542
1063
  callbacks.onClearText?.();
543
- const retryError = getFinalAnswerRetryError(mustResolveBeforeHandoffActive, intent, sawSteeringFollowUp);
544
1064
  messages.push(msg);
545
- messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: retryError });
546
- providerRuntime.appendToolOutput(result.toolCalls[0].id, retryError);
1065
+ const toolRetryMessage = retryError
1066
+ ?? "your settle was incomplete or malformed. call settle again with your complete response.";
1067
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: toolRetryMessage });
1068
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, toolRetryMessage);
1069
+ }
1070
+ continue;
1071
+ }
1072
+ // Check for observe sole call: intercept before tool execution
1073
+ const isSoleObserve = result.toolCalls.length === 1 && result.toolCalls[0].name === "observe";
1074
+ if (isSoleObserve) {
1075
+ /* v8 ignore next -- defensive: JSON.parse catch for malformed observe args @preserve */
1076
+ const observeArgs = (() => { try {
1077
+ return JSON.parse(result.toolCalls[0].arguments);
1078
+ }
1079
+ catch {
1080
+ return {};
1081
+ } })();
1082
+ let reason;
1083
+ if (typeof observeArgs?.reason === "string")
1084
+ reason = observeArgs.reason;
1085
+ callbacks.onToolStart("observe", observeArgs);
1086
+ (0, runtime_1.emitNervesEvent)({
1087
+ component: "engine",
1088
+ event: "engine.observe",
1089
+ message: "agent observed without responding",
1090
+ meta: { ...(reason ? { reason } : {}) },
1091
+ });
1092
+ callbacks.onToolEnd("observe", (0, tools_1.summarizeArgs)("observe", observeArgs), true);
1093
+ messages.push(msg);
1094
+ const silenced = "(silenced)";
1095
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: silenced });
1096
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, silenced);
1097
+ outcome = "observed";
1098
+ done = true;
1099
+ continue;
1100
+ }
1101
+ // Check for rest sole call: intercept before tool execution
1102
+ const isSoleRest = result.toolCalls.length === 1 && result.toolCalls[0].name === "rest";
1103
+ if (isSoleRest) {
1104
+ const restArgs = (() => { try {
1105
+ return JSON.parse(result.toolCalls[0].arguments);
1106
+ }
1107
+ catch {
1108
+ return {};
1109
+ } })();
1110
+ callbacks.onToolStart("rest", restArgs);
1111
+ // Attention queue gate: reject rest if items remain
1112
+ const attentionQueue = (augmentedToolContext ?? options?.toolContext)?.delegatedOrigins;
1113
+ if (attentionQueue && attentionQueue.length > 0) {
1114
+ callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), false);
1115
+ messages.push(msg);
1116
+ 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.";
1117
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
1118
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
1119
+ continue;
547
1120
  }
1121
+ if (hasFreshPendingWork(options) && !freshWorkGateFired) {
1122
+ freshWorkGateFired = true;
1123
+ callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), false);
1124
+ messages.push(msg);
1125
+ const gateMessage = "fresh work arrived for me this turn — inspect the pending messages above and take the next concrete action before you rest.";
1126
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: gateMessage });
1127
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, gateMessage);
1128
+ (0, runtime_1.emitNervesEvent)({
1129
+ level: "info",
1130
+ component: "engine",
1131
+ event: "engine.fresh_work_gate_fired",
1132
+ message: "rest deferred once because pending work arrived this turn; agent has been notified",
1133
+ meta: { pendingCount: options.pendingMessages.length },
1134
+ });
1135
+ continue;
1136
+ }
1137
+ callbacks.onToolEnd("rest", (0, tools_1.summarizeArgs)("rest", restArgs), true);
1138
+ messages.push(msg);
1139
+ const ack = "(resting)";
1140
+ messages.push({ role: "tool", tool_call_id: result.toolCalls[0].id, content: ack });
1141
+ providerRuntime.appendToolOutput(result.toolCalls[0].id, ack);
1142
+ (0, runtime_1.emitNervesEvent)({
1143
+ component: "engine",
1144
+ event: "engine.rested",
1145
+ message: "resting until next heartbeat",
1146
+ meta: { ...(typeof restArgs?.status === "string" ? { status: restArgs.status } : {}) },
1147
+ });
1148
+ outcome = "rested";
1149
+ done = true;
548
1150
  continue;
549
1151
  }
550
1152
  messages.push(msg);
551
- // SHARED: execute tools (final_answer in mixed calls is rejected inline)
1153
+ // Execute tools (sole-call tools in mixed calls are rejected inline)
552
1154
  for (const tc of result.toolCalls) {
553
1155
  if (signal?.aborted)
554
1156
  break;
555
- // Intercept final_answer in mixed call: reject it
556
- if (tc.name === "final_answer") {
557
- const rejection = "rejected: final_answer must be the only tool call. Finish your work first, then call final_answer alone.";
558
- messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
559
- providerRuntime.appendToolOutput(tc.id, rejection);
1157
+ // Reject sole-call tools when mixed with other tool calls
1158
+ const soleCallRejection = SOLE_CALL_REJECTION[tc.name];
1159
+ if (soleCallRejection) {
1160
+ messages.push({ role: "tool", tool_call_id: tc.id, content: soleCallRejection });
1161
+ providerRuntime.appendToolOutput(tc.id, soleCallRejection);
560
1162
  continue;
561
1163
  }
562
1164
  let args = {};
@@ -566,21 +1168,252 @@ async function runAgent(messages, callbacks, channel, signal, options) {
566
1168
  catch {
567
1169
  /* ignore */
568
1170
  }
569
- const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
570
- // Confirmation check for mutate tools
571
- if ((0, tools_1.isConfirmationRequired)(tc.name) && !options?.skipConfirmation) {
572
- let decision = "denied";
573
- if (callbacks.onConfirmAction) {
574
- decision = await callbacks.onConfirmAction(tc.name, args);
575
- }
576
- if (decision !== "confirmed") {
577
- const cancelled = "Action cancelled by user.";
1171
+ if (tc.name === "send_message" && args.friendId === "self") {
1172
+ const latestUserText = latestUserMessageText(messages);
1173
+ if (!isInnerDialog && looksLikePrivateReturnRequest(latestUserText)) {
1174
+ const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
1175
+ 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.";
578
1176
  callbacks.onToolStart(tc.name, args);
579
1177
  callbacks.onToolEnd(tc.name, argSummary, false);
580
- messages.push({ role: "tool", tool_call_id: tc.id, content: cancelled });
581
- providerRuntime.appendToolOutput(tc.id, cancelled);
1178
+ messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
1179
+ providerRuntime.appendToolOutput(tc.id, rejection);
1180
+ continue;
1181
+ }
1182
+ sawSendMessageSelf = true;
1183
+ }
1184
+ if (tc.name === "speak") {
1185
+ let speakArgs = {};
1186
+ try {
1187
+ speakArgs = JSON.parse(tc.arguments);
1188
+ }
1189
+ catch { /* malformed */ }
1190
+ const speakMessage = typeof speakArgs.message === "string" ? speakArgs.message : "";
1191
+ const argSummary = (0, tools_1.summarizeArgs)("speak", { message: speakMessage });
1192
+ callbacks.onToolStart("speak", { message: speakMessage });
1193
+ if (speakMessage.trim().length === 0) {
1194
+ const err = "speak requires a non-empty `message` string.";
1195
+ callbacks.onToolEnd("speak", argSummary, false);
1196
+ messages.push({ role: "tool", tool_call_id: tc.id, content: err });
1197
+ providerRuntime.appendToolOutput(tc.id, err);
1198
+ (0, runtime_1.emitNervesEvent)({
1199
+ level: "warn",
1200
+ component: "engine",
1201
+ event: "engine.speak_invalid",
1202
+ message: "speak rejected: missing or empty message",
1203
+ meta: {},
1204
+ });
1205
+ continue;
1206
+ }
1207
+ callbacks.onTextChunk(speakMessage);
1208
+ let speakDeliveryError = null;
1209
+ try {
1210
+ await callbacks.flushNow?.();
1211
+ }
1212
+ catch (err) {
1213
+ speakDeliveryError = err instanceof Error ? err : new Error(String(err));
1214
+ }
1215
+ if (speakDeliveryError) {
1216
+ callbacks.onToolEnd("speak", argSummary, false);
1217
+ const failMsg = `speak delivery failed: ${speakDeliveryError.message}. the message did not reach your friend; do not assume they saw it.`;
1218
+ messages.push({ role: "tool", tool_call_id: tc.id, content: failMsg });
1219
+ providerRuntime.appendToolOutput(tc.id, failMsg);
1220
+ (0, runtime_1.emitNervesEvent)({
1221
+ level: "error",
1222
+ component: "engine",
1223
+ event: "engine.speak_delivery_failed",
1224
+ message: "speak delivery failed",
1225
+ meta: { error: speakDeliveryError.message, messageLength: speakMessage.length },
1226
+ });
582
1227
  continue;
583
1228
  }
1229
+ callbacks.onToolEnd("speak", argSummary, true);
1230
+ const ack = "(spoken)";
1231
+ messages.push({ role: "tool", tool_call_id: tc.id, content: ack });
1232
+ providerRuntime.appendToolOutput(tc.id, ack);
1233
+ (0, runtime_1.emitNervesEvent)({
1234
+ component: "engine",
1235
+ event: "engine.speak",
1236
+ message: "agent spoke mid-turn",
1237
+ meta: { messageLength: speakMessage.length },
1238
+ });
1239
+ continue;
1240
+ }
1241
+ if (tc.name === "ponder") {
1242
+ const parsedArgs = normalizeLegacyPonderArgs(parsePonderPayload(tc.arguments));
1243
+ const argSummary = (0, tools_1.summarizeArgs)(tc.name, parsedArgs);
1244
+ callbacks.onToolStart(tc.name, parsedArgs);
1245
+ let toolResult;
1246
+ let success = false;
1247
+ try {
1248
+ const action = parsedArgs.action ?? "create";
1249
+ const currentSession = (augmentedToolContext ?? options?.toolContext)?.currentSession;
1250
+ const currentOrigin = currentSession
1251
+ ? { friendId: currentSession.friendId, channel: currentSession.channel, key: currentSession.key }
1252
+ : undefined;
1253
+ const isInnerChannel = currentOrigin?.friendId === "self" && currentOrigin?.channel === "inner";
1254
+ const shouldCreateReturnObligation = !!currentOrigin && !isInnerChannel;
1255
+ const attentionQueue = (augmentedToolContext ?? options?.toolContext)?.delegatedOrigins ?? [];
1256
+ const successCriteria = parseSuccessCriteria(parsedArgs.success_criteria);
1257
+ const payload = parsePacketPayload(parsedArgs.payload_json);
1258
+ let packet;
1259
+ let returnObligationId = null;
1260
+ let resultAction = "created";
1261
+ let privateReturnSourceRequest = "";
1262
+ if (action === "create") {
1263
+ if (isInnerChannel && attentionQueue.length > 0) {
1264
+ throw new Error("inner dialog already has held return work in the attention queue; surface the existing delegationId instead of creating a replacement ponder packet.");
1265
+ }
1266
+ const kind = parsedArgs.kind;
1267
+ const objective = typeof parsedArgs.objective === "string" ? parsedArgs.objective.trim() : "";
1268
+ const summary = typeof parsedArgs.summary === "string" ? parsedArgs.summary.trim() : "";
1269
+ const sourceRequest = currentOrigin && !isInnerChannel ? latestUserMessageText(messages) : "";
1270
+ privateReturnSourceRequest = sourceRequest;
1271
+ if (!kind || !objective || !successCriteria || !payload) {
1272
+ throw new Error("ponder create requires kind, objective, success_criteria, and valid payload_json.");
1273
+ }
1274
+ const packetPayload = sourceRequest && typeof payload.sourceRequest !== "string"
1275
+ ? { ...payload, sourceRequest }
1276
+ : payload;
1277
+ const createLinkedReturnObligation = (id, packetId) => {
1278
+ (0, obligations_1.createReturnObligation)((0, identity_2.getAgentName)(), {
1279
+ id,
1280
+ origin: currentOrigin,
1281
+ status: "queued",
1282
+ delegatedContent: buildPonderDelegatedContent({ summary, objective, sourceRequest }),
1283
+ packetId,
1284
+ createdAt: Date.now(),
1285
+ });
1286
+ };
1287
+ const agentRoot = (0, identity_2.getAgentRoot)();
1288
+ let relatedObligationId;
1289
+ if (currentOrigin && !isInnerChannel) {
1290
+ try {
1291
+ const obligation = (0, obligations_1.createObligation)(agentRoot, {
1292
+ origin: currentOrigin,
1293
+ content: objective,
1294
+ });
1295
+ relatedObligationId = obligation.id;
1296
+ }
1297
+ catch {
1298
+ relatedObligationId = undefined;
1299
+ }
1300
+ }
1301
+ const frictionSignature = kind === "harness_friction" && typeof packetPayload.frictionSignature === "string"
1302
+ ? packetPayload.frictionSignature
1303
+ : null;
1304
+ const existing = frictionSignature && currentOrigin
1305
+ ? (0, packets_1.findHarnessFrictionPacket)(agentRoot, currentOrigin, frictionSignature)
1306
+ : null;
1307
+ if (existing) {
1308
+ resultAction = "revised";
1309
+ const existingActiveReturnId = shouldCreateReturnObligation
1310
+ ? activeReturnObligationId((0, identity_2.getAgentName)(), existing.relatedReturnObligationId)
1311
+ : null;
1312
+ returnObligationId = existingActiveReturnId
1313
+ ?? (shouldCreateReturnObligation ? (0, obligations_1.generateObligationId)(Date.now()) : null);
1314
+ packet = existing.status === "drafting"
1315
+ ? (0, packets_1.revisePonderPacket)(agentRoot, existing.id, {
1316
+ kind,
1317
+ objective,
1318
+ summary,
1319
+ successCriteria,
1320
+ payload: packetPayload,
1321
+ })
1322
+ : existing;
1323
+ if (returnObligationId && returnObligationId !== existing.relatedReturnObligationId) {
1324
+ packet = (0, packets_1.advancePonderPacket)(agentRoot, packet.id, { relatedReturnObligationId: returnObligationId });
1325
+ createLinkedReturnObligation(returnObligationId, packet.id);
1326
+ }
1327
+ }
1328
+ else {
1329
+ returnObligationId = shouldCreateReturnObligation ? (0, obligations_1.generateObligationId)(Date.now()) : null;
1330
+ packet = (0, packets_1.createPonderPacket)(agentRoot, {
1331
+ kind,
1332
+ objective,
1333
+ summary,
1334
+ successCriteria,
1335
+ ...(currentOrigin ? { origin: currentOrigin } : {}),
1336
+ ...(relatedObligationId ? { relatedObligationId } : {}),
1337
+ ...(returnObligationId ? { relatedReturnObligationId: returnObligationId } : {}),
1338
+ ...(parsedArgs.follows_packet_id ? { followsPacketId: parsedArgs.follows_packet_id } : {}),
1339
+ payload: packetPayload,
1340
+ });
1341
+ if (returnObligationId) {
1342
+ createLinkedReturnObligation(returnObligationId, packet.id);
1343
+ }
1344
+ }
1345
+ }
1346
+ else if (action === "revise") {
1347
+ const packetId = typeof parsedArgs.packet_id === "string" ? parsedArgs.packet_id.trim() : "";
1348
+ const kind = parsedArgs.kind;
1349
+ const objective = typeof parsedArgs.objective === "string" ? parsedArgs.objective.trim() : "";
1350
+ const summary = typeof parsedArgs.summary === "string" ? parsedArgs.summary.trim() : "";
1351
+ if (!packetId || !kind || !objective || !successCriteria || !payload) {
1352
+ throw new Error("ponder revise requires packet_id, kind, objective, success_criteria, and valid payload_json.");
1353
+ }
1354
+ packet = (0, packets_1.revisePonderPacket)((0, identity_2.getAgentRoot)(), packetId, {
1355
+ kind,
1356
+ objective,
1357
+ summary,
1358
+ successCriteria,
1359
+ payload,
1360
+ });
1361
+ returnObligationId = packet.relatedReturnObligationId
1362
+ && !(packet.origin?.friendId === "self" && packet.origin.channel === "inner")
1363
+ ? packet.relatedReturnObligationId
1364
+ : null;
1365
+ resultAction = "revised";
1366
+ }
1367
+ else {
1368
+ throw new Error("ponder requires action=create or revise.");
1369
+ }
1370
+ if (returnObligationId) {
1371
+ for (const token of extractPrivateReturnHeldTokens(privateReturnSourceRequest)) {
1372
+ privateReturnHeldTokens.add(token);
1373
+ }
1374
+ await (0, socket_client_1.requestInnerWake)((0, identity_2.getAgentName)(), augmentedToolContext?.daemonSocketPath).catch(() => undefined);
1375
+ }
1376
+ sawPonder = true;
1377
+ toolResult = buildPonderResult(packet, resultAction, returnObligationId);
1378
+ success = true;
1379
+ (0, runtime_1.emitNervesEvent)({
1380
+ component: "engine",
1381
+ event: "engine.ponder_packet",
1382
+ message: "ponder packet touched",
1383
+ meta: {
1384
+ action: resultAction,
1385
+ packetId: packet.id,
1386
+ kind: packet.kind,
1387
+ status: packet.status,
1388
+ },
1389
+ });
1390
+ }
1391
+ catch (error) {
1392
+ toolResult = error instanceof Error ? error.message : String(error);
1393
+ }
1394
+ callbacks.onToolEnd(tc.name, argSummary, success);
1395
+ messages.push({ role: "tool", tool_call_id: tc.id, content: toolResult });
1396
+ providerRuntime.appendToolOutput(tc.id, toolResult);
1397
+ continue;
1398
+ }
1399
+ /* v8 ignore next -- flag tested via truth-check integration tests @preserve */
1400
+ if (tc.name === "query_session")
1401
+ sawQuerySession = true;
1402
+ /* v8 ignore next -- flag tested via truth-check integration tests @preserve */
1403
+ if (tc.name === "bridge_manage")
1404
+ sawBridgeManage = true;
1405
+ /* v8 ignore next -- flag tested via truth-check integration tests @preserve */
1406
+ if (isExternalStateQuery(tc.name, args))
1407
+ sawExternalStateQuery = true;
1408
+ const argSummary = (0, tools_1.summarizeArgs)(tc.name, args);
1409
+ const toolLoop = (0, tool_loop_1.detectToolLoop)(toolLoopState, tc.name, args);
1410
+ if (toolLoop.stuck) {
1411
+ const rejection = `loop guard: ${toolLoop.message}`;
1412
+ callbacks.onToolStart(tc.name, args);
1413
+ callbacks.onToolEnd(tc.name, argSummary, false);
1414
+ messages.push({ role: "tool", tool_call_id: tc.id, content: rejection });
1415
+ providerRuntime.appendToolOutput(tc.id, rejection);
1416
+ continue;
584
1417
  }
585
1418
  callbacks.onToolStart(tc.name, args);
586
1419
  let toolResult;
@@ -594,69 +1427,32 @@ async function runAgent(messages, callbacks, channel, signal, options) {
594
1427
  toolResult = `error: ${e}`;
595
1428
  success = false;
596
1429
  }
597
- callbacks.onToolEnd(tc.name, argSummary, success);
1430
+ toolResult = (0, tool_friction_1.rewriteToolResultForModel)(tc.name, toolResult, toolFrictionLedger);
1431
+ (0, tool_loop_1.recordToolOutcome)(toolLoopState, tc.name, args, toolResult, success);
1432
+ callbacks.onToolEnd(tc.name, (0, tools_1.buildToolResultSummary)(tc.name, args, toolResult, success), success);
598
1433
  messages.push({ role: "tool", tool_call_id: tc.id, content: toolResult });
599
1434
  providerRuntime.appendToolOutput(tc.id, toolResult);
1435
+ callbacks.onToolResult?.(messages);
600
1436
  }
601
1437
  }
602
1438
  }
603
1439
  catch (e) {
604
1440
  // Abort is not an error — just stop cleanly
605
- if (signal?.aborted) {
1441
+ if (e instanceof provider_attempt_1.ProviderAttemptAbortError || signal?.aborted) {
606
1442
  stripLastToolCalls(messages);
607
1443
  outcome = "aborted";
608
1444
  break;
609
1445
  }
610
- // Context overflow: trim aggressively and retry once
611
- if (isContextOverflow(e) && !overflowRetried) {
612
- overflowRetried = true;
613
- stripLastToolCalls(messages);
614
- const { maxTokens, contextMargin } = (0, config_1.getContextConfig)();
615
- const trimmed = (0, context_1.trimMessages)(messages, maxTokens, contextMargin, maxTokens * 2);
616
- messages.splice(0, messages.length, ...trimmed);
617
- providerRuntime.resetTurnState(messages);
618
- callbacks.onError(new Error("context trimmed, retrying..."), "transient");
619
- continue;
1446
+ const errorForClassification = e instanceof Error ? e : /* v8 ignore next -- defensive @preserve */ new Error(String(e));
1447
+ let providerClassification;
1448
+ try {
1449
+ providerClassification = providerRuntime.classifyError(errorForClassification);
620
1450
  }
621
- // Transient errors: retry with exponential backoff
622
- if (isTransientError(e) && retryCount < MAX_RETRIES) {
623
- retryCount++;
624
- const delay = RETRY_BASE_MS * Math.pow(2, retryCount - 1);
625
- const cause = classifyTransientError(e);
626
- callbacks.onError(new Error(`${cause}, retrying in ${delay / 1000}s (${retryCount}/${MAX_RETRIES})...`), "transient");
627
- // Wait with abort support
628
- const aborted = await new Promise((resolve) => {
629
- const timer = setTimeout(() => resolve(false), delay);
630
- if (signal) {
631
- const onAbort = () => { clearTimeout(timer); resolve(true); };
632
- if (signal.aborted) {
633
- clearTimeout(timer);
634
- resolve(true);
635
- return;
636
- }
637
- signal.addEventListener("abort", onAbort, { once: true });
638
- }
639
- });
640
- if (aborted) {
641
- stripLastToolCalls(messages);
642
- outcome = "aborted";
643
- break;
644
- }
645
- providerRuntime.resetTurnState(messages);
646
- continue;
1451
+ catch {
1452
+ /* v8 ignore next -- defensive: classifyError should not throw @preserve */
1453
+ providerClassification = "unknown";
647
1454
  }
648
- callbacks.onError(e instanceof Error ? e : new Error(String(e)), "terminal");
649
- (0, runtime_1.emitNervesEvent)({
650
- level: "error",
651
- event: "engine.error",
652
- trace_id: traceId,
653
- component: "engine",
654
- message: e instanceof Error ? e.message : String(e),
655
- meta: {},
656
- });
657
- stripLastToolCalls(messages);
658
- outcome = "errored";
659
- done = true;
1455
+ finishTerminalProviderError(errorForClassification, providerClassification);
660
1456
  }
661
1457
  }
662
1458
  (0, runtime_1.emitNervesEvent)({
@@ -664,7 +1460,12 @@ async function runAgent(messages, callbacks, channel, signal, options) {
664
1460
  trace_id: traceId,
665
1461
  component: "engine",
666
1462
  message: "runAgent turn completed",
667
- meta: { done },
1463
+ meta: { done, sawPonder, sawQuerySession, sawBridgeManage },
668
1464
  });
669
- return { usage: lastUsage, outcome, completion };
1465
+ return {
1466
+ usage: lastUsage,
1467
+ outcome,
1468
+ completion,
1469
+ ...(terminalError ? { error: terminalError, errorClassification: terminalErrorClassification } : {}),
1470
+ };
670
1471
  }