@promptbook/cli 0.114.0-3 → 0.114.0-31

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 (1049) hide show
  1. package/README.md +10 -18
  2. package/agents/default/developer.book +1 -0
  3. package/apps/agents-server/README.md +1 -1
  4. package/apps/agents-server/{USE_TIMEOUT_CHIP_QA.md → TIMEOUT_CHIP_QA.md} +1 -1
  5. package/apps/agents-server/next.config.ts +28 -0
  6. package/apps/agents-server/package.json +6 -6
  7. package/apps/agents-server/scripts/build-agents-server.js +43 -7
  8. package/apps/agents-server/scripts/build-e2e.js +12 -2
  9. package/apps/agents-server/scripts/generate-reserved-paths/generate-reserved-paths.ts +30 -16
  10. package/apps/agents-server/scripts/kill-port.js +163 -0
  11. package/apps/agents-server/scripts/run-e2e-tests.js +21 -8
  12. package/apps/agents-server/scripts/run-npm.js +81 -5
  13. package/apps/agents-server/src/app/admin/_components/AdminFilterFields.tsx +84 -0
  14. package/apps/agents-server/src/app/admin/_components/AdminMetricCard.tsx +36 -0
  15. package/apps/agents-server/src/app/admin/_components/AdminTaskManagerTabs.tsx +97 -0
  16. package/apps/agents-server/src/app/admin/about/page.tsx +1 -1
  17. package/apps/agents-server/src/app/admin/email-server/page.tsx +17 -18
  18. package/apps/agents-server/src/app/admin/messages/MessageParticipants.tsx +84 -0
  19. package/apps/agents-server/src/app/admin/messages/MessageStatus.tsx +96 -0
  20. package/apps/agents-server/src/app/admin/messages/MessagesClient.tsx +29 -33
  21. package/apps/agents-server/src/app/admin/messages/messageAdminPresentation.ts +289 -0
  22. package/apps/agents-server/src/app/admin/messages/send-email/SendEmailClient.tsx +193 -63
  23. package/apps/agents-server/src/app/admin/messages/send-email/actions.ts +25 -28
  24. package/apps/agents-server/src/app/admin/messages/send-email/emailTesting.ts +153 -0
  25. package/apps/agents-server/src/app/admin/messages/send-email/emailTestingAccess.ts +30 -0
  26. package/apps/agents-server/src/app/admin/messages/send-email/page.tsx +18 -5
  27. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerClient.tsx +103 -0
  28. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerEditDialog.tsx +232 -0
  29. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerFiltersCard.tsx +195 -0
  30. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerRow.tsx +189 -0
  31. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerSummaryMetrics.tsx +60 -0
  32. package/apps/agents-server/src/app/admin/planned-messages/PlannedMessageManagerTableCard.tsx +147 -0
  33. package/apps/agents-server/src/app/admin/planned-messages/page.tsx +17 -0
  34. package/apps/agents-server/src/app/admin/planned-messages/plannedMessageEditForm.ts +186 -0
  35. package/apps/agents-server/src/app/admin/planned-messages/plannedMessageManagerDialogs.ts +46 -0
  36. package/apps/agents-server/src/app/admin/planned-messages/plannedMessageManagerPresentation.tsx +188 -0
  37. package/apps/agents-server/src/app/admin/planned-messages/resolvePlannedMessageSortValue.ts +115 -0
  38. package/apps/agents-server/src/app/admin/planned-messages/usePlannedMessageManagerData.ts +116 -0
  39. package/apps/agents-server/src/app/admin/planned-messages/usePlannedMessageManagerState.ts +289 -0
  40. package/apps/agents-server/src/app/admin/task-manager/TaskManagerClient.tsx +7 -2
  41. package/apps/agents-server/src/app/admin/task-manager/TaskManagerFiltersCard.tsx +7 -73
  42. package/apps/agents-server/src/app/admin/task-manager/TaskManagerSummaryMetrics.tsx +5 -30
  43. package/apps/agents-server/src/app/admin/task-manager/TaskManagerTaskRow.tsx +2 -0
  44. package/apps/agents-server/src/app/admin/task-manager/[taskId]/TaskManagerTaskDetailClient.tsx +3 -1
  45. package/apps/agents-server/src/app/admin/task-manager/taskManagerTaskPresentation.tsx +23 -0
  46. package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +8 -9
  47. package/apps/agents-server/src/app/agents/[agentName]/AgentProfileChat.tsx +5 -9
  48. package/apps/agents-server/src/app/agents/[agentName]/api/book/reference-diagnostics/route.ts +30 -7
  49. package/apps/agents-server/src/app/agents/[agentName]/api/book/route.ts +9 -0
  50. package/apps/agents-server/src/app/agents/[agentName]/api/book/test.http +3 -3
  51. package/apps/agents-server/src/app/agents/[agentName]/api/chat/resolveAgentChatRouteContext.ts +8 -16
  52. package/apps/agents-server/src/app/agents/[agentName]/api/timeouts/[timeoutId]/route.ts +10 -153
  53. package/apps/agents-server/src/app/agents/[agentName]/api/timeouts/route.ts +9 -4
  54. package/apps/agents-server/src/app/agents/[agentName]/api/user-chats/[chatId]/route.ts +3 -0
  55. package/apps/agents-server/src/app/agents/[agentName]/api/user-chats/[chatId]/stream/route.ts +2 -0
  56. package/apps/agents-server/src/app/agents/[agentName]/api/user-chats/resolveUserChatScope.ts +8 -1
  57. package/apps/agents-server/src/app/agents/[agentName]/api/user-chats/route.ts +15 -7
  58. package/apps/agents-server/src/app/agents/[agentName]/api/voice/route.ts +4 -9
  59. package/apps/agents-server/src/app/agents/[agentName]/book/BookEditorMissingReferences.tsx +106 -12
  60. package/apps/agents-server/src/app/agents/[agentName]/book/BookEditorWrapper.tsx +3 -0
  61. package/apps/agents-server/src/app/agents/[agentName]/book/useBookEditorDiagnostics.ts +12 -0
  62. package/apps/agents-server/src/app/agents/[agentName]/book/useBookEditorSaving.ts +18 -28
  63. package/apps/agents-server/src/app/agents/[agentName]/book/useBookEditorWrapper.tsx +2 -0
  64. package/apps/agents-server/src/app/agents/[agentName]/chat/AgentChatHistoryClient.tsx +19 -1
  65. package/apps/agents-server/src/app/agents/[agentName]/chat/AgentChatSidebarDefault.tsx +17 -5
  66. package/apps/agents-server/src/app/agents/[agentName]/chat/AgentGoalChatNotice.tsx +23 -0
  67. package/apps/agents-server/src/app/agents/[agentName]/chat/AgentGoalChatPlannedMessages.tsx +226 -0
  68. package/apps/agents-server/src/app/agents/[agentName]/chat/CanonicalAgentChatPanel.tsx +6 -0
  69. package/apps/agents-server/src/app/agents/[agentName]/chat/CanonicalAgentChatSurface.tsx +32 -12
  70. package/apps/agents-server/src/app/agents/[agentName]/chat/ExternalUserChatAdminActions.tsx +51 -3
  71. package/apps/agents-server/src/app/agents/[agentName]/chat/TeamMemberFrozenChatPrimaryAgentLink.tsx +31 -0
  72. package/apps/agents-server/src/app/agents/[agentName]/chat/page.tsx +2 -20
  73. package/apps/agents-server/src/app/agents/[agentName]/chat/useAgentChatSidebarState.ts +26 -2
  74. package/apps/agents-server/src/app/agents/[agentName]/goal/page.tsx +35 -0
  75. package/apps/agents-server/src/app/agents/[agentName]/page.tsx +2 -1
  76. package/apps/agents-server/src/app/agents/[agentName]/projectReferenceActions.ts +61 -0
  77. package/apps/agents-server/src/app/agents/[agentName]/projectRuntimeActions.ts +97 -0
  78. package/apps/agents-server/src/app/agents/[agentName]/projects/[projectName]/actions.ts +5 -50
  79. package/apps/agents-server/src/app/agents/[agentName]/projects/[projectName]/page.tsx +2 -2
  80. package/apps/agents-server/src/app/api/admin/default-agents/reinstate/route.ts +5 -1
  81. package/apps/agents-server/src/app/api/admin/dns-records/cloudflare/route.ts +26 -16
  82. package/apps/agents-server/src/app/api/admin/planned-messages/[timeoutId]/route.ts +80 -0
  83. package/apps/agents-server/src/app/api/admin/planned-messages/route.ts +19 -0
  84. package/apps/agents-server/src/app/api/emails/incoming/stalwart/route.ts +9 -2
  85. package/apps/agents-server/src/app/api/internal/agent-goal-chat-planned-messages/route.ts +201 -0
  86. package/apps/agents-server/src/app/api/scrape/route.ts +1 -1
  87. package/apps/agents-server/src/app/layout.tsx +25 -0
  88. package/apps/agents-server/src/app/page.tsx +1 -1
  89. package/apps/agents-server/src/app/superadmin/servers/ServersRegistryTable.tsx +31 -39
  90. package/apps/agents-server/src/app/system/user-wallet/UserWalletDraft.ts +2 -2
  91. package/apps/agents-server/src/components/AgentNaming/legacyAgentTextTranslations.cs.yaml +7 -0
  92. package/apps/agents-server/src/components/AgentProfile/AgentCapabilityChips.tsx +1 -24
  93. package/apps/agents-server/src/components/AgentProfile/AgentProfile.tsx +10 -3
  94. package/apps/agents-server/src/components/AgentProjects/AgentProjectIcon.tsx +137 -0
  95. package/apps/agents-server/src/components/AgentProjects/AgentProjectItem.tsx +26 -10
  96. package/apps/agents-server/src/components/AgentProjects/resolveLatestCompletedAgentMessageKey.ts +32 -0
  97. package/apps/agents-server/src/components/AgentProjects/useAgentProjectMarkdownReferences.ts +306 -0
  98. package/apps/agents-server/src/components/CloudflareDnsWizard/CloudflareDnsApiTokenImportStep.tsx +5 -6
  99. package/apps/agents-server/src/components/CloudflareDnsWizard/CloudflareDnsCheckStep.tsx +6 -5
  100. package/apps/agents-server/src/components/CloudflareDnsWizard/CloudflareDnsManualStep.tsx +10 -14
  101. package/apps/agents-server/src/components/CloudflareDnsWizard/CloudflareDnsWizard.tsx +11 -20
  102. package/apps/agents-server/src/components/CloudflareDnsWizard/useCloudflareDnsRecordImport.ts +5 -6
  103. package/apps/agents-server/src/components/DefaultAgents/ReinstateBundledAgentsButton.tsx +7 -0
  104. package/apps/agents-server/src/components/DefaultAgents/coreAgentsAdminRoute.ts +6 -0
  105. package/apps/agents-server/src/components/DnsRecordsInstructions/DnsRecordsInstructions.tsx +91 -57
  106. package/apps/agents-server/src/components/DnsRecordsInstructions/DnsRecordsSectionPanel.tsx +63 -0
  107. package/apps/agents-server/src/components/DnsRecordsInstructions/DnsRecordsSectionVariantTabs.tsx +67 -0
  108. package/apps/agents-server/src/components/DnsRecordsInstructions/DnsRecordsTable.tsx +40 -0
  109. package/apps/agents-server/src/components/Header/Header.tsx +8 -0
  110. package/apps/agents-server/src/components/Header/HeaderTypes.ts +5 -0
  111. package/apps/agents-server/src/components/Header/buildActiveAgentViewItems.ts +5 -4
  112. package/apps/agents-server/src/components/Header/buildHeaderSystemMenuItems.ts +125 -30
  113. package/apps/agents-server/src/components/Header/createAgentViewLabel.tsx +4 -4
  114. package/apps/agents-server/src/components/Header/resolveActiveAgentNavigation.ts +2 -2
  115. package/apps/agents-server/src/components/Header/resolveHeaderSystemActivities.ts +86 -0
  116. package/apps/agents-server/src/components/Homepage/AgentCard.tsx +0 -3
  117. package/apps/agents-server/src/components/Homepage/DefaultAgentsStatusNotice.tsx +1 -7
  118. package/apps/agents-server/src/components/Homepage/useAgentsListImportExportState.ts +22 -10
  119. package/apps/agents-server/src/components/LayoutWrapper/LayoutWrapper.tsx +8 -0
  120. package/apps/agents-server/src/components/NewAgentDialog/NewAgentWizardState.ts +0 -12
  121. package/apps/agents-server/src/components/NewAgentDialog/NewAgentWizardUseSetupStep.tsx +0 -58
  122. package/apps/agents-server/src/components/NewAgentDialog/newAgentWizardPresets.ts +0 -56
  123. package/apps/agents-server/src/components/WalletRecordDialog/useWalletRecordDialogState.ts +1 -1
  124. package/apps/agents-server/src/components/_utils/generateMetaTxt.ts +1 -1
  125. package/apps/agents-server/src/constants/federatedAgentImport.ts +7 -0
  126. package/apps/agents-server/src/database/migratePrefix.ts +13 -12
  127. package/apps/agents-server/src/database/migrations/2026-08-0100-agent-goal-chat-source.sql +10 -0
  128. package/apps/agents-server/src/database/migrations/2026-08-1800-user-chat-timeout-schedule.sql +11 -0
  129. package/apps/agents-server/src/generated/reservedPaths.ts +42 -42
  130. package/apps/agents-server/src/instrumentation-node.ts +18 -0
  131. package/apps/agents-server/src/languages/ServerTranslationKeys.ts +16 -11
  132. package/apps/agents-server/src/languages/translations/czech.yaml +16 -11
  133. package/apps/agents-server/src/languages/translations/english.yaml +16 -11
  134. package/apps/agents-server/src/message-providers/email/smtp/SmtpMessageProvider.ts +1 -1
  135. package/apps/agents-server/src/message-providers/email/stalwart/StalwartMessageProvider.ts +59 -19
  136. package/apps/agents-server/src/message-providers/email/stalwart/parseInboundStalwartEmail.ts +17 -2
  137. package/apps/agents-server/src/middleware/createMiddlewareRequestContext/loadRegisteredServers.ts +8 -0
  138. package/apps/agents-server/src/tools/$provideOpenAiAgentKitExecutionToolsForServer.ts +0 -191
  139. package/apps/agents-server/src/tools/$provideOpenAiAssistantExecutionToolsForServer.ts +0 -3
  140. package/apps/agents-server/src/tools/$provideServer.ts +2 -1
  141. package/apps/agents-server/src/tools/agentGoalChatTimeoutToolFunctions.ts +249 -0
  142. package/apps/agents-server/src/tools/agentGoalChatTimeoutTools.ts +147 -0
  143. package/apps/agents-server/src/tools/createServerChatRuntimeTools.ts +20 -0
  144. package/apps/agents-server/src/tools/getAllToolFunctionsForServer.ts +2 -0
  145. package/apps/agents-server/src/tools/mapRegisteredServerContexts.ts +1 -1
  146. package/apps/agents-server/src/tools/run_browser.ts +1 -1
  147. package/apps/agents-server/src/tools/send_email.ts +3 -3
  148. package/apps/agents-server/src/utils/adminEntityLookups/loadAgentNamesByPermanentId.ts +45 -0
  149. package/apps/agents-server/src/utils/adminEntityLookups/loadUsernamesByUserId.ts +36 -0
  150. package/apps/agents-server/src/utils/adminEntityLookups.ts +2 -0
  151. package/apps/agents-server/src/utils/agentGoalChat/agentGoalChatConstants.ts +14 -0
  152. package/apps/agents-server/src/utils/agentGoalChat/agentGoalChatIdentity.ts +28 -0
  153. package/apps/agents-server/src/utils/agentGoalChat/agentGoalChatPlannedMessageActions.ts +583 -0
  154. package/apps/agents-server/src/utils/agentGoalChat/appendAgentGoalChatNote.ts +43 -0
  155. package/apps/agents-server/src/utils/agentGoalChat/canAccessAgentGoalChat.ts +14 -0
  156. package/apps/agents-server/src/utils/agentGoalChat/createAgentGoalChatNoteContent.ts +129 -0
  157. package/apps/agents-server/src/utils/agentGoalChat/enqueueAgentGoalChatTurn.ts +167 -0
  158. package/apps/agents-server/src/utils/agentGoalChat/ensureAgentGoalChat.ts +66 -0
  159. package/apps/agents-server/src/utils/agentGoalChat/prependAgentGoalChatSummarySeed.ts +40 -0
  160. package/apps/agents-server/src/utils/agentGoalChat/recordAgentGoalChatLifecycleNote.ts +53 -0
  161. package/apps/agents-server/src/utils/agentGoalChat/resolveAgentGoalChatOwnerUserId.ts +104 -0
  162. package/apps/agents-server/src/utils/agentGoalChat/resolveEffectiveAgentGoal.ts +29 -0
  163. package/apps/agents-server/src/utils/agentGoalChat/scheduleAgentGoalChatModifiedNote.ts +85 -0
  164. package/apps/agents-server/src/utils/agentGoalChat.ts +25 -0
  165. package/apps/agents-server/src/utils/agentProjects/AgentProjectInfo.ts +10 -1
  166. package/apps/agents-server/src/utils/agentProjects/AgentProjectReferenceInfo.ts +5 -2
  167. package/apps/agents-server/src/utils/agentProjects/AgentProjectRuntimeActionResult.ts +14 -0
  168. package/apps/agents-server/src/utils/agentProjects/agentProjectFileNames.ts +21 -0
  169. package/apps/agents-server/src/utils/agentProjects/agentProjectHrefs.ts +20 -11
  170. package/apps/agents-server/src/utils/agentProjects/agentProjectIdentity.ts +46 -0
  171. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimeAutostartScheduler.ts +162 -0
  172. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimeDesiredState.ts +252 -0
  173. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimeDisplay.ts +6 -3
  174. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimeDomains.ts +2 -44
  175. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimePaths.ts +25 -0
  176. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimePm2.ts +60 -13
  177. package/apps/agents-server/src/utils/agentProjects/agentProjectRuntimeRegistry.ts +77 -24
  178. package/apps/agents-server/src/utils/agentProjects/agentProjectStateMutationQueue.ts +58 -0
  179. package/apps/agents-server/src/utils/agentProjects/agentProjectsPaths.ts +15 -5
  180. package/apps/agents-server/src/utils/agentProjects/createAgentProjectInitials.ts +36 -0
  181. package/apps/agents-server/src/utils/agentProjects/createAgentProjectMarkdownReferences.ts +124 -19
  182. package/apps/agents-server/src/utils/agentProjects/createAgentProjectsDnsRecordsSection.ts +113 -0
  183. package/apps/agents-server/src/utils/agentProjects/createStaticAgentProjectServer.ts +2 -6
  184. package/apps/agents-server/src/utils/agentProjects/humanizeAgentProjectName.ts +25 -0
  185. package/apps/agents-server/src/utils/agentProjects/listAgentProjectChatReferences.ts +10 -3
  186. package/apps/agents-server/src/utils/agentProjects/listAgentProjectNames.ts +35 -0
  187. package/apps/agents-server/src/utils/agentProjects/listAgentProjects.ts +6 -23
  188. package/apps/agents-server/src/utils/agentProjects/listAllAgentProjectSummaries.ts +2 -1
  189. package/apps/agents-server/src/utils/agentProjects/listAllLocalAgentProjectIdentities.ts +48 -0
  190. package/apps/agents-server/src/utils/agentProjects/parseAgentProjectIndexHtml.ts +167 -0
  191. package/apps/agents-server/src/utils/agentProjects/readAgentProjectIndexHtmlProfile.ts +24 -0
  192. package/apps/agents-server/src/utils/agentProjects/readAgentProjectReadme.ts +3 -53
  193. package/apps/agents-server/src/utils/agentProjects/readAgentProjectRootTextFile.ts +73 -0
  194. package/apps/agents-server/src/utils/agentProjects/resolveAgentChatProjectReferences.ts +25 -0
  195. package/apps/agents-server/src/utils/agentProjects/resolveAgentProjectFaviconRelativePath.ts +108 -0
  196. package/apps/agents-server/src/utils/agentProjects/resolveAgentProjectInfo.ts +12 -3
  197. package/apps/agents-server/src/utils/agentProjects/{resolveAgentProjectReadmeProfile.ts → resolveAgentProjectProfile.ts} +33 -33
  198. package/apps/agents-server/src/utils/agentProjects/resolveAgentProjectPublicUrls.ts +34 -0
  199. package/apps/agents-server/src/utils/agentProjects/resolveAgentProjectRuntimeEnvironmentFlag.ts +23 -0
  200. package/apps/agents-server/src/utils/agentProjects/resolveAgentProjectRuntimeStatus.ts +73 -0
  201. package/apps/agents-server/src/utils/agentProjects/startDefaultAgentProjectRuntimes.ts +110 -0
  202. package/apps/agents-server/src/utils/agentReferenceResolver/MissingCoreAgentRecovery.ts +19 -0
  203. package/apps/agents-server/src/utils/agentReferenceResolver/bookScopedAgentReferences.ts +7 -0
  204. package/apps/agents-server/src/utils/agentReferenceResolver/createAgentInheritanceDiagnostics.ts +457 -0
  205. package/apps/agents-server/src/utils/agentReferenceResolver/createUnresolvedAgentReferenceDiagnostics.ts +27 -0
  206. package/apps/agents-server/src/utils/agentReferenceResolver/resolveCoreAgentAwareMissingReferences.ts +156 -0
  207. package/apps/agents-server/src/utils/bookLanguageDocumentation/createBookLanguageDocumentationPdfResponse.ts +19 -17
  208. package/apps/agents-server/src/utils/chatMessageChips/createAnsweredMessageChipToolCalls.ts +49 -0
  209. package/apps/agents-server/src/utils/chatMessageChips/createPlannedMessageChipToolCalls.ts +44 -0
  210. package/apps/agents-server/src/utils/chatMessageChips/createTouchedExternalSourceChipToolCalls.ts +39 -0
  211. package/apps/agents-server/src/utils/chatMessageChips/createTouchedProjectChipResult.ts +45 -0
  212. package/apps/agents-server/src/utils/chatMessageChips/createTouchedProjectChipToolCalls.ts +109 -0
  213. package/apps/agents-server/src/utils/chatTasksAdmin.ts +9 -0
  214. package/apps/agents-server/src/utils/createAgentWithDefaultVisibility.ts +8 -0
  215. package/apps/agents-server/src/utils/createWellKnownAgentUrl.ts +17 -0
  216. package/apps/agents-server/src/utils/cronExpression/CronExpression.ts +63 -0
  217. package/apps/agents-server/src/utils/cronExpression/normalizeCronExpression.ts +34 -0
  218. package/apps/agents-server/src/utils/cronExpression/normalizeCronExpressionWhitespace.ts +11 -0
  219. package/apps/agents-server/src/utils/cronExpression/parseCronExpression.ts +41 -0
  220. package/apps/agents-server/src/utils/cronExpression/parseCronExpressionField.ts +140 -0
  221. package/apps/agents-server/src/utils/cronExpression/resolveNextCronRun.ts +100 -0
  222. package/apps/agents-server/src/utils/cronExpression/throwInvalidCronExpressionField.ts +20 -0
  223. package/apps/agents-server/src/utils/cronExpression.ts +10 -0
  224. package/apps/agents-server/src/utils/currentServerRegistryContext.ts +2 -1
  225. package/apps/agents-server/src/utils/customDomainRouting.ts +143 -10
  226. package/apps/agents-server/src/utils/dnsRecords/DnsRecordInstruction.ts +20 -0
  227. package/apps/agents-server/src/utils/dnsRecords/DnsRecordsSection.ts +77 -0
  228. package/apps/agents-server/src/utils/dnsRecords/createServerDnsRecordsSections.ts +58 -0
  229. package/apps/agents-server/src/utils/dnsRecords/createServerDomainDnsRecordsSection.ts +48 -0
  230. package/apps/agents-server/src/utils/dnsRecords/dnsRecordGroups.ts +52 -0
  231. package/apps/agents-server/src/utils/dnsRecords/resolveDnsRecordBatchPlan.ts +47 -1
  232. package/apps/agents-server/src/utils/email/agentEmailAddress.ts +14 -0
  233. package/apps/agents-server/src/utils/email/sendEmailThroughStalwart.ts +2 -1
  234. package/apps/agents-server/src/utils/explicitFromCommitment.ts +130 -0
  235. package/apps/agents-server/src/utils/getAdminChatTasksResponse/getAdminChatTasks/adminChatTaskSqlQuery.ts +41 -36
  236. package/apps/agents-server/src/utils/getAdminChatTasksResponse/getAdminChatTasks/loadAdminChatTaskFallbackData.ts +3 -77
  237. package/apps/agents-server/src/utils/getAdminChatTasksResponse/getAdminChatTasks/mapAdminChatTaskFallbackRows.ts +3 -0
  238. package/apps/agents-server/src/utils/getAdminChatTasksResponse/getAdminChatTasks/mapAdminChatTaskSqlRows.ts +2 -0
  239. package/apps/agents-server/src/utils/getFederatedServers.ts +5 -15
  240. package/apps/agents-server/src/utils/getWellKnownAgentUrl.ts +2 -3
  241. package/apps/agents-server/src/utils/handleChatCompletion/createHandleChatCompletionPromptContext.ts +3 -2
  242. package/apps/agents-server/src/utils/handleChatCompletion/resolveHandleChatCompletionRuntime.ts +4 -12
  243. package/apps/agents-server/src/utils/localChatRunner/applyLocalAgentPlannedMessageCommands.ts +261 -0
  244. package/apps/agents-server/src/utils/localChatRunner/parseLocalTeamConversations.ts +281 -0
  245. package/apps/agents-server/src/utils/localChatRunner/persistLocalTeamConversations.ts +71 -0
  246. package/apps/agents-server/src/utils/localChatRunner/prepareLocalAgentPlannedMessagesSidecar.ts +74 -0
  247. package/apps/agents-server/src/utils/localChatRunner/prepareLocalTeamConversationWorkspace.ts +233 -0
  248. package/apps/agents-server/src/utils/localChatRunner/processLocalUserChatJob.ts +154 -27
  249. package/apps/agents-server/src/utils/manGoOnboarding/manGoOnboardingAgentBooks.ts +5 -12
  250. package/apps/agents-server/src/utils/manGoOnboarding/manGoOnboardingAgentRuntime.ts +2 -2
  251. package/apps/agents-server/src/utils/managementApi/managementApiSchemas.ts +2 -2
  252. package/apps/agents-server/src/utils/messages/parseUseEmailSmtpCredential.ts +1 -1
  253. package/apps/agents-server/src/utils/parseFederatedServers.ts +14 -0
  254. package/apps/agents-server/src/utils/plannedMessageManager/cancelManagedPlannedMessage.ts +35 -0
  255. package/apps/agents-server/src/utils/plannedMessageManager/collectPlannedMessageAgentOptions.ts +56 -0
  256. package/apps/agents-server/src/utils/plannedMessageManager/createPlannedMessageManagerCounters.ts +104 -0
  257. package/apps/agents-server/src/utils/plannedMessageManager/filterPlannedMessages.ts +191 -0
  258. package/apps/agents-server/src/utils/plannedMessageManager/getPlannedMessageManagerResponse.ts +55 -0
  259. package/apps/agents-server/src/utils/plannedMessageManager/isPlannedMessageStillPlanned.ts +18 -0
  260. package/apps/agents-server/src/utils/plannedMessageManager/loadPlannedMessageManagerRecord.ts +32 -0
  261. package/apps/agents-server/src/utils/plannedMessageManager/mapPlannedMessageManagerRecord.ts +73 -0
  262. package/apps/agents-server/src/utils/plannedMessageManager/parsePlannedMessageManagerUpdateRequest.ts +76 -0
  263. package/apps/agents-server/src/utils/plannedMessageManager/resolvePlannedMessageEndReason.ts +59 -0
  264. package/apps/agents-server/src/utils/plannedMessageManager/resolvePlannedMessageLifecycle.ts +99 -0
  265. package/apps/agents-server/src/utils/plannedMessageManager/resolvePlannedMessageRecurrenceKind.ts +40 -0
  266. package/apps/agents-server/src/utils/plannedMessageManager/updateManagedPlannedMessage.ts +121 -0
  267. package/apps/agents-server/src/utils/plannedMessagesAdmin.ts +200 -0
  268. package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +114 -95
  269. package/apps/agents-server/src/utils/resolveUseEmailSmtpCredential.ts +1 -1
  270. package/apps/agents-server/src/utils/serverManagement/createManagedServer/insertManagedServerRegistryRow.ts +2 -2
  271. package/apps/agents-server/src/utils/serverManagement/createManagedServer/seedServerCoreAgents.ts +7 -6
  272. package/apps/agents-server/src/utils/serverManagement/createManagedServer/seedServerDefaultAgents.ts +5 -4
  273. package/apps/agents-server/src/utils/serverManagement/createManagedServer/seedServerMetadata.ts +3 -2
  274. package/apps/agents-server/src/utils/serverManagement/createManagedServer/seedServerUsers.ts +3 -2
  275. package/apps/agents-server/src/utils/serverManagement/deleteManagedServer.ts +2 -2
  276. package/apps/agents-server/src/utils/serverManagement/getManagedServerById.ts +1 -1
  277. package/apps/agents-server/src/utils/serverManagement/listManagedServers.ts +1 -1
  278. package/apps/agents-server/src/utils/serverRegistry.ts +0 -24
  279. package/apps/agents-server/src/utils/serverRegistryNode.ts +27 -0
  280. package/apps/agents-server/src/utils/stalwart/createEmailDnsRecordsSection.ts +53 -0
  281. package/apps/agents-server/src/utils/useEmailSmtpWalletConstants.ts +5 -5
  282. package/apps/agents-server/src/utils/userChat/UserChatRecord.ts +13 -0
  283. package/apps/agents-server/src/utils/userChat/UserChatSource.ts +14 -0
  284. package/apps/agents-server/src/utils/userChat/appendQueuedUserChatTurn.ts +9 -2
  285. package/apps/agents-server/src/utils/userChat/createImmediateUserChatAnswerModelRequirements.ts +1 -0
  286. package/apps/agents-server/src/utils/userChat/createRunUserChatJobExecutionContext.ts +7 -17
  287. package/apps/agents-server/src/utils/userChat/createUserChatSummary.ts +10 -2
  288. package/apps/agents-server/src/utils/userChat/finalizeUserChatJob.ts +3 -2
  289. package/apps/agents-server/src/utils/userChat/getUserChat.ts +16 -1
  290. package/apps/agents-server/src/utils/userChat/getUserChatForJobRunner.ts +31 -0
  291. package/apps/agents-server/src/utils/userChat/listUserChats.ts +113 -110
  292. package/apps/agents-server/src/utils/userChat/persistFrozenUserChat.ts +21 -6
  293. package/apps/agents-server/src/utils/userChat/persistUserChatJobTerminalState.ts +5 -0
  294. package/apps/agents-server/src/utils/userChat/resolveUserChatWorkerInternalToken.ts +5 -4
  295. package/apps/agents-server/src/utils/userChat/runImmediateUserChatAnswer.ts +2 -6
  296. package/apps/agents-server/src/utils/userChat/runUserChatJob.ts +2 -6
  297. package/apps/agents-server/src/utils/userChat/teamMemberUserChatContext.ts +63 -0
  298. package/apps/agents-server/src/utils/userChat/userChatJobRunReport.ts +30 -0
  299. package/apps/agents-server/src/utils/userChat/userChatMessageLifecycle.ts +6 -1
  300. package/apps/agents-server/src/utils/userChat.ts +5 -1
  301. package/apps/agents-server/src/utils/userChatClient/cancelAgentUserTimeout.ts +2 -2
  302. package/apps/agents-server/src/utils/userChatClient/fetchAgentUserTimeouts.ts +2 -2
  303. package/apps/agents-server/src/utils/userChatClient.ts +13 -31
  304. package/apps/agents-server/src/utils/userChatTimeout/UserChatTimeoutRecord.ts +47 -3
  305. package/apps/agents-server/src/utils/userChatTimeout/agentScopedTimeoutBulkActions.ts +11 -17
  306. package/apps/agents-server/src/utils/userChatTimeout/createTimeoutWakeUpMessage.ts +38 -6
  307. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/PlannedMessageSchedule.ts +52 -0
  308. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/hasPlannedMessageRecurrence.ts +13 -0
  309. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/isPlannedMessageScheduleFinished.ts +30 -0
  310. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/normalizePlannedMessageScheduleValues.ts +62 -0
  311. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/parsePlannedMessageSchedule.ts +202 -0
  312. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule/resolvePlannedMessageDueAt.ts +121 -0
  313. package/apps/agents-server/src/utils/userChatTimeout/plannedMessageSchedule.ts +12 -0
  314. package/apps/agents-server/src/utils/userChatTimeout/setAgentScopedUserChatTimeoutPausedState.ts +66 -0
  315. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/claimNextDueUserChatTimeout.ts +28 -25
  316. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/createUserChatTimeout.ts +76 -5
  317. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/getAgentScopedUserChatTimeout.ts +8 -4
  318. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/listAgentUserChatTimeouts.ts +4 -1
  319. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/listAllUserChatTimeouts.ts +37 -0
  320. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/mapUserChatTimeoutRow.ts +9 -0
  321. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/recoverExpiredRunningUserChatTimeouts.ts +3 -2
  322. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/repeatFiredUserChatTimeout.ts +84 -0
  323. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore/updateAgentScopedUserChatTimeout.ts +39 -6
  324. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutStore.ts +2 -0
  325. package/apps/agents-server/src/utils/userChatTimeout/userChatTimeoutWorker.ts +220 -57
  326. package/apps/agents-server/src/utils/userChatTimeout.ts +16 -0
  327. package/apps/agents-server/src/utils/userWallet/UserWalletRecord.ts +1 -1
  328. package/apps/agents-server/src/utils/userWallet/resolveUseEmailSmtpCredentialFromWallet.ts +1 -1
  329. package/apps/agents-server/src/utils/vpsSelfUpdate/deleteVpsSelfUpdateInstalledVersion.ts +2 -1
  330. package/apps/agents-server/src/utils/vpsSelfUpdate/isVpsSelfUpdateJobRunning.ts +16 -0
  331. package/apps/agents-server/src/utils/vpsSelfUpdate/startVpsSelfUpdate.ts +2 -1
  332. package/apps/agents-server/src/utils/vpsSelfUpdate/vpsSelfUpdateCron.ts +23 -316
  333. package/apps/agents-server/src/utils/vpsSelfUpdate.ts +1 -0
  334. package/apps/agents-server/tests/e2e/support/AgentManagementApi.ts +3 -3
  335. package/esm/apps/agents-server/src/constants/federatedAgentImport.d.ts +6 -0
  336. package/esm/index.es.js +9596 -8286
  337. package/esm/index.es.js.map +1 -1
  338. package/esm/scripts/run-agent-messages/git/commitAgentProjectChanges.d.ts +15 -0
  339. package/esm/scripts/run-agent-messages/git/commitAnsweredMessageProjectChanges.d.ts +24 -0
  340. package/esm/scripts/run-agent-messages/git/ensureAgentProjectGitRepository.d.ts +20 -0
  341. package/esm/scripts/run-agent-messages/git/readAgentProjectCommitChange.d.ts +11 -0
  342. package/esm/scripts/run-agent-messages/git/runAgentProjectGitCommand.d.ts +29 -0
  343. package/esm/scripts/run-agent-messages/messages/buildAgentGoalChatPromptSection.d.ts +26 -0
  344. package/esm/scripts/run-agent-messages/messages/buildAgentMessagePrompt.d.ts +12 -1
  345. package/esm/scripts/run-agent-messages/messages/buildAgentProjectsPromptSection.d.ts +2 -14
  346. package/esm/scripts/run-agent-messages/messages/buildAgentTeamPromptSection.d.ts +12 -0
  347. package/esm/scripts/run-agent-messages/messages/finalizeAgentTeamConversationWorkspace.d.ts +16 -0
  348. package/esm/scripts/run-agent-messages/messages/listAgentProjectDirectoryNames.d.ts +7 -0
  349. package/esm/scripts/run-agent-messages/messages/loadAgentPlannedMessagesSidecar.d.ts +10 -0
  350. package/esm/scripts/run-agent-messages/messages/loadAgentTeamConversationWorkspace.d.ts +6 -0
  351. package/esm/scripts/run-agent-messages/messages/resolveAnsweredMessageTouches.d.ts +29 -0
  352. package/esm/scripts/run-codex-prompts/common/CoderRunControlFeedback.d.ts +54 -0
  353. package/esm/scripts/run-codex-prompts/common/applyCoderRunControlKey.d.ts +14 -0
  354. package/esm/scripts/run-codex-prompts/common/buildCoderRunControlKeyBadge.d.ts +7 -0
  355. package/esm/scripts/run-codex-prompts/common/createCoderRunStepTracker.d.ts +48 -0
  356. package/esm/scripts/run-codex-prompts/common/formatCoderRunControlFeedback.d.ts +13 -0
  357. package/esm/scripts/run-codex-prompts/common/listenForCoderRunControls.d.ts +17 -0
  358. package/esm/scripts/run-codex-prompts/common/normalizeLineEndingsInChangedFiles.d.ts +2 -3
  359. package/esm/scripts/run-codex-prompts/common/runGoScript/$spawnLoggedBashScript.d.ts +25 -0
  360. package/esm/scripts/run-codex-prompts/common/runGoScript/$terminateLoggedBashProcessTree.d.ts +11 -0
  361. package/esm/scripts/run-codex-prompts/common/runGoScript/scriptExecutionLog.d.ts +4 -0
  362. package/esm/scripts/run-codex-prompts/common/waitForPause.d.ts +0 -8
  363. package/esm/scripts/run-codex-prompts/common/waitForSkippableWorldTimeDeadline.d.ts +15 -0
  364. package/esm/scripts/run-codex-prompts/git/coderCommitScope.d.ts +31 -0
  365. package/esm/scripts/run-codex-prompts/git/coderGitSync.d.ts +15 -2
  366. package/esm/scripts/run-codex-prompts/git/commitChanges.d.ts +9 -3
  367. package/esm/scripts/run-codex-prompts/git/workingTreeChanges.d.ts +40 -0
  368. package/esm/scripts/run-codex-prompts/ping/pingCoderHarnessPeriodically.d.ts +22 -0
  369. package/esm/scripts/run-codex-prompts/prompts/buildPromptLabel.d.ts +6 -0
  370. package/esm/scripts/run-codex-prompts/prompts/buildPromptStatusDetails.d.ts +51 -0
  371. package/esm/scripts/run-codex-prompts/prompts/findFirstNonEmptyLineIndex.d.ts +6 -0
  372. package/esm/scripts/run-codex-prompts/prompts/formatCoderRunSteps.d.ts +6 -3
  373. package/esm/scripts/run-codex-prompts/prompts/isPromptSectionUnfinished.d.ts +8 -0
  374. package/esm/scripts/run-codex-prompts/prompts/listPromptsByStatus.d.ts +7 -0
  375. package/esm/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +15 -4
  376. package/esm/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +35 -1
  377. package/esm/scripts/run-codex-prompts/prompts/markPromptInProgress.d.ts +27 -0
  378. package/esm/scripts/run-codex-prompts/prompts/promptRunnerAttribution.d.ts +30 -0
  379. package/esm/scripts/run-codex-prompts/prompts/resolveInterruptedPrompt.d.ts +9 -0
  380. package/esm/scripts/run-codex-prompts/prompts/resolvePromptStatusLine.d.ts +19 -0
  381. package/esm/scripts/run-codex-prompts/prompts/writePromptStatusLine.d.ts +10 -0
  382. package/esm/scripts/run-codex-prompts/runners/claude-code/ClaudeCodeRunner.d.ts +15 -0
  383. package/esm/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeOutputEvents.d.ts +3 -0
  384. package/esm/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeSubscriptionUsage.d.ts +11 -0
  385. package/esm/scripts/run-codex-prompts/runners/common/estimateUsageFromTextLength.d.ts +33 -0
  386. package/esm/scripts/run-codex-prompts/runners/common/modelPricing.d.ts +41 -0
  387. package/esm/scripts/run-codex-prompts/runners/gemini/gemini-pricing.d.ts +5 -18
  388. package/esm/scripts/run-codex-prompts/runners/openai-codex/OpenAiCodexRunner.d.ts +8 -0
  389. package/esm/scripts/run-codex-prompts/runners/openai-codex/buildCodexUsageFromOutput.d.ts +4 -1
  390. package/esm/scripts/run-codex-prompts/runners/openai-codex/getCodexSubscriptionUsage.d.ts +19 -0
  391. package/esm/scripts/run-codex-prompts/runners/qwen-code/QwenCodeRunner.d.ts +23 -0
  392. package/esm/scripts/run-codex-prompts/runners/qwen-code/buildQwenCodeScript.d.ts +8 -0
  393. package/esm/scripts/run-codex-prompts/runners/qwen-code/parseQwenCodeUsageFromOutput.d.ts +9 -0
  394. package/esm/scripts/run-codex-prompts/runners/qwen-code/qwen-code-pricing.d.ts +30 -0
  395. package/esm/scripts/run-codex-prompts/runners/types/HarnessSubscriptionUsage.d.ts +43 -0
  396. package/esm/scripts/run-codex-prompts/server/buildCoderServerPromptResponse.d.ts +1 -1
  397. package/esm/scripts/run-codex-prompts/server/coderServerHtml.d.ts +1 -1
  398. package/esm/scripts/run-codex-prompts/server/updatePromptSection.d.ts +1 -1
  399. package/esm/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +6 -0
  400. package/esm/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +21 -1
  401. package/esm/scripts/run-codex-prompts/ui/buildCoderRunAgentVisual.d.ts +5 -5
  402. package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +8 -1
  403. package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiTerminalFrameUpdate.d.ts +27 -0
  404. package/esm/scripts/run-codex-prompts/ui/buildRunUiFrameShared.d.ts +11 -0
  405. package/esm/scripts/run-codex-prompts/ui/buildSubscriptionUsageSessionRows.d.ts +11 -0
  406. package/esm/scripts/run-codex-prompts/ui/refreshCoderRunUiSubscriptionUsage.d.ts +14 -0
  407. package/esm/scripts/utils/emojiTags/validSinglePictogramEmojis.d.ts +17 -0
  408. package/esm/scripts/verify-prompts/$orderPromptFiles.d.ts +9 -0
  409. package/esm/scripts/verify-prompts/VerifyPromptsOrder.d.ts +26 -0
  410. package/esm/scripts/verify-prompts/verify-prompts.d.ts +3 -2
  411. package/esm/src/_packages/components.index.d.ts +4 -0
  412. package/esm/src/_packages/types.index.d.ts +4 -0
  413. package/esm/src/avatars/renderAvatarVisualTerminalText.d.ts +80 -0
  414. package/esm/src/avatars/types/AvatarVisualDefinition.d.ts +54 -0
  415. package/esm/src/book-2.0/agent-source/AgentBasicInformation.d.ts +3 -3
  416. package/esm/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +5 -0
  417. package/esm/src/book-2.0/agent-source/ParsedUnknownCommitment.d.ts +26 -0
  418. package/esm/src/book-2.0/agent-source/getBookCommitmentLineType.d.ts +19 -0
  419. package/esm/src/book-3.0/AgentMessageRunReport.d.ts +46 -0
  420. package/esm/src/book-3.0/AgentPlannedMessagesSidecar.d.ts +127 -0
  421. package/esm/src/book-3.0/AgentTeamConversationWorkspace.d.ts +85 -0
  422. package/esm/src/book-3.0/cliAgentEnv.d.ts +3 -3
  423. package/esm/src/book-3.0/createAgentMessageSidecarBaseName.d.ts +13 -0
  424. package/esm/src/book-3.0/describeAgentPlannedMessageSchedule.d.ts +31 -0
  425. package/esm/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +1 -9
  426. package/esm/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.d.ts +28 -0
  427. package/esm/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.d.ts +28 -0
  428. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +3 -2
  429. package/esm/src/book-components/Chat/Chat/renderAgentProjectDiff.d.ts +13 -0
  430. package/esm/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.d.ts +16 -0
  431. package/esm/src/book-components/Chat/utils/agentProjectToolCall.d.ts +85 -0
  432. package/esm/src/book-components/Chat/utils/externalSourceToolCall.d.ts +38 -0
  433. package/esm/src/book-components/Chat/utils/renderMarkdown.d.ts +68 -3
  434. package/esm/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +30 -0
  435. package/esm/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.d.ts +9 -0
  436. package/esm/src/cli/cli-commands/coder/GitChangesMode.d.ts +28 -0
  437. package/esm/src/cli/cli-commands/coder/boilerplateCount.d.ts +52 -0
  438. package/esm/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +14 -1
  439. package/esm/src/cli/cli-commands/coder/generate-boilerplates.d.ts +4 -3
  440. package/esm/src/cli/cli-commands/coder/verify.d.ts +1 -1
  441. package/esm/src/cli/cli-commands/coder/waitOptions.d.ts +12 -0
  442. package/esm/src/cli/cli-commands/common/$askForConfirmation.d.ts +9 -0
  443. package/esm/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +1 -1
  444. package/esm/src/cli/cli-commands/common/harness/$checkHarnessInstallation.d.ts +3 -3
  445. package/esm/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -3
  446. package/esm/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.d.ts +14 -0
  447. package/esm/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.d.ts +10 -0
  448. package/esm/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.d.ts +43 -0
  449. package/esm/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +36 -0
  450. package/esm/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.d.ts +36 -0
  451. package/esm/src/cli/cli-commands/common/harness/HarnessInstallationStatus.d.ts +8 -2
  452. package/esm/src/cli/cli-commands/common/harness/HarnessUpdatePlan.d.ts +23 -0
  453. package/esm/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.d.ts +4 -1
  454. package/esm/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.d.ts +8 -0
  455. package/esm/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.d.ts +31 -0
  456. package/esm/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.d.ts +12 -0
  457. package/esm/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +29 -0
  458. package/esm/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.d.ts → npm/$askForNpmPackageInstallationApproval.d.ts} +2 -2
  459. package/esm/src/cli/cli-commands/common/{harness/$resolveLatestHarnessVersion.d.ts → npm/$resolveLatestNpmPackageVersion.d.ts} +2 -3
  460. package/esm/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.d.ts +9 -0
  461. package/esm/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.d.ts +12 -0
  462. package/esm/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.d.ts +12 -0
  463. package/esm/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.d.ts +12 -0
  464. package/esm/src/cli/cli-commands/common/projectInitialization.d.ts +6 -0
  465. package/esm/src/cli/cli-commands/common/promptRunnerCliOptions.d.ts +17 -4
  466. package/esm/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.d.ts +9 -0
  467. package/esm/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +14 -0
  468. package/esm/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.d.ts +12 -0
  469. package/esm/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.d.ts +10 -0
  470. package/esm/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.d.ts +66 -0
  471. package/esm/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.d.ts +26 -0
  472. package/esm/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.d.ts +7 -0
  473. package/esm/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.d.ts +7 -0
  474. package/esm/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +15 -0
  475. package/esm/src/commitments/{COMPONENT/COMPONENT.d.ts → META_FULLNAME/META_FULLNAME.d.ts} +8 -5
  476. package/esm/src/commitments/META_ID/META_ID.d.ts +32 -0
  477. package/esm/src/commitments/WRITING_RULES/WRITING_RULES.d.ts +14 -7
  478. package/esm/src/commitments/index.d.ts +4 -12
  479. package/esm/src/executables/platforms/locateAppOnWindows.d.ts +1 -1
  480. package/esm/src/llm-providers/agent/Agent.d.ts +1 -1
  481. package/esm/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.d.ts +1 -1
  482. package/esm/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.d.ts +2 -3
  483. package/esm/src/utils/agent-message-runtime/AgentMessageProjectChange.d.ts +76 -0
  484. package/esm/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.d.ts +45 -0
  485. package/esm/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.d.ts +62 -0
  486. package/esm/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.d.ts +3 -3
  487. package/esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.d.ts +18 -0
  488. package/esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.d.ts +19 -0
  489. package/esm/src/utils/agents/terminalAgentAvatarVisual.d.ts +5 -2
  490. package/esm/src/utils/ascii-art/convertImageDataToAsciiArt.d.ts +6 -0
  491. package/esm/src/utils/ascii-art/createAnsiColorCode.d.ts +46 -0
  492. package/esm/src/utils/misc/debounce.d.ts +4 -2
  493. package/esm/src/utils/misc/debounce.test.d.ts +1 -0
  494. package/esm/src/utils/misc/emojis.d.ts +3 -2
  495. package/esm/src/utils/random/$generateBookBoilerplate.test.d.ts +1 -0
  496. package/esm/src/version.d.ts +1 -1
  497. package/package.json +2 -2
  498. package/src/_packages/components.index.ts +4 -0
  499. package/src/_packages/components.readme.md +1 -1
  500. package/src/_packages/types.index.ts +4 -0
  501. package/src/avatars/renderAvatarVisualTerminalText.ts +249 -0
  502. package/src/avatars/types/AvatarVisualDefinition.ts +60 -0
  503. package/src/avatars/visuals/asciiOctopusAvatarVisual.ts +144 -22
  504. package/src/book-2.0/agent-source/AgentBasicInformation.ts +3 -9
  505. package/src/book-2.0/agent-source/AgentSourceParseResult.ts +6 -0
  506. package/src/book-2.0/agent-source/ParsedUnknownCommitment.ts +29 -0
  507. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments/augmentAgentModelRequirementsFromSource.ts +38 -1
  508. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments/filterCommitmentsForAgentModelRequirements.ts +0 -23
  509. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.ts +0 -2
  510. package/src/book-2.0/agent-source/getBookCommitmentLineType.ts +36 -0
  511. package/src/book-2.0/agent-source/parseAgentSource/applyMetaCommitment.ts +16 -31
  512. package/src/book-2.0/agent-source/parseAgentSource/createCapabilitiesFromCommitment.ts +0 -35
  513. package/src/book-2.0/agent-source/parseAgentSourceWithCommitments.ts +128 -61
  514. package/src/book-2.0/agent-source/string_book.ts +1 -1
  515. package/src/book-2.0/book-language-documentation/bookLanguageDocumentationExamples.ts +0 -25
  516. package/src/book-2.0/book-language-documentation/createStandaloneBookLanguageMarkdown.ts +7 -14
  517. package/src/book-2.0/book-language-documentation/czechBookLanguageManualDictionary.ts +13 -33
  518. package/src/book-2.0/book-language-documentation/englishBookLanguageManualDictionary.ts +12 -32
  519. package/src/book-2.0/book-language-documentation/renderCommitmentCatalogSection.ts +1 -4
  520. package/src/book-2.0/book-language-documentation/renderGroupedCommitmentDocumentationMarkdown.ts +4 -17
  521. package/src/book-3.0/AgentMessageRunReport.ts +135 -0
  522. package/src/book-3.0/AgentPlannedMessagesSidecar.ts +284 -0
  523. package/src/book-3.0/AgentTeamConversationWorkspace.ts +170 -0
  524. package/src/book-3.0/cliAgentEnv.ts +3 -2
  525. package/src/book-3.0/createAgentMessageSidecarBaseName.ts +20 -0
  526. package/src/book-3.0/describeAgentPlannedMessageSchedule.ts +94 -0
  527. package/src/book-components/BookEditor/BookEditorMonaco.tsx +8 -1
  528. package/src/book-components/BookEditor/BookEditorMonacoTokenization.ts +3 -1
  529. package/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.ts +3 -11
  530. package/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.ts +71 -0
  531. package/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.ts +50 -0
  532. package/src/book-components/BookEditor/useBookEditorMonacoLanguage.ts +1 -1
  533. package/src/book-components/BookEditor/useBookEditorMonacoStyles.ts +56 -55
  534. package/src/book-components/Chat/Chat/Chat.module.css +172 -27
  535. package/src/book-components/Chat/Chat/ChatMessageMap.tsx +7 -4
  536. package/src/book-components/Chat/Chat/ChatProps.tsx +3 -2
  537. package/src/book-components/Chat/Chat/renderAgentProjectDiff.tsx +85 -0
  538. package/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.tsx +206 -0
  539. package/src/book-components/Chat/Chat/renderToolCallDetails.tsx +9 -12
  540. package/src/book-components/Chat/MarkdownContent/MarkdownContent.module.css +85 -17
  541. package/src/book-components/Chat/MarkdownContent/MarkdownContent.tsx +115 -2
  542. package/src/book-components/Chat/save/react/exports/chat-preview-2025-10-13 (1).jsx +95 -5
  543. package/src/book-components/Chat/utils/agentProjectToolCall.ts +151 -0
  544. package/src/book-components/Chat/utils/externalSourceToolCall.ts +65 -0
  545. package/src/book-components/Chat/utils/getToolCallChipletInfo.ts +64 -0
  546. package/src/book-components/Chat/utils/renderMarkdown.ts +658 -96
  547. package/src/book-components/Chat/utils/timeoutToolCallPresentation.ts +34 -3
  548. package/src/cli/cli-commands/agents-server/startAgentsServer/createLocalAgentRunOptions.ts +1 -1
  549. package/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.ts +51 -0
  550. package/src/cli/cli-commands/coder/GitChangesMode.ts +35 -0
  551. package/src/cli/cli-commands/coder/add.ts +3 -3
  552. package/src/cli/cli-commands/coder/boilerplateCount.ts +139 -0
  553. package/src/cli/cli-commands/coder/boilerplateTemplates.ts +3 -15
  554. package/src/cli/cli-commands/coder/ensureCoderGitignoreFile.ts +37 -3
  555. package/src/cli/cli-commands/coder/generate-boilerplates.ts +55 -47
  556. package/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.ts +7 -4
  557. package/src/cli/cli-commands/coder/init.ts +17 -7
  558. package/src/cli/cli-commands/coder/ping.ts +48 -10
  559. package/src/cli/cli-commands/coder/run.ts +26 -4
  560. package/src/cli/cli-commands/coder/server.ts +15 -3
  561. package/src/cli/cli-commands/coder/verify.ts +29 -5
  562. package/src/cli/cli-commands/coder/waitOptions.ts +33 -0
  563. package/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.ts → $askForConfirmation.ts} +6 -6
  564. package/src/cli/cli-commands/common/coderGitSyncCliOptions.ts +6 -2
  565. package/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.ts +66 -10
  566. package/src/cli/cli-commands/common/harness/$checkHarnessInstallation.ts +32 -9
  567. package/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.ts +6 -3
  568. package/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.ts +46 -0
  569. package/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.ts +36 -0
  570. package/src/cli/cli-commands/common/harness/$resolveInstalledHarnessVersion.ts +2 -2
  571. package/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.ts +100 -0
  572. package/src/cli/cli-commands/common/harness/HarnessDefinition.ts +65 -0
  573. package/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.ts +44 -0
  574. package/src/cli/cli-commands/common/harness/HarnessInstallationStatus.ts +9 -2
  575. package/src/cli/cli-commands/common/harness/HarnessUpdatePlan.ts +27 -0
  576. package/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.ts +6 -2
  577. package/src/cli/cli-commands/common/harness/formatHarnessInstallationWarning.ts +28 -6
  578. package/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.ts +41 -0
  579. package/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.ts +111 -0
  580. package/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.ts +47 -0
  581. package/src/cli/cli-commands/common/harnessUpdateCliOptions.ts +46 -0
  582. package/src/cli/cli-commands/common/npm/$askForNpmPackageInstallationApproval.ts +15 -0
  583. package/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.ts +49 -0
  584. package/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.ts +51 -0
  585. package/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.ts +28 -0
  586. package/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.ts +25 -0
  587. package/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.ts +165 -0
  588. package/src/cli/cli-commands/common/projectInitialization.ts +35 -3
  589. package/src/cli/cli-commands/common/promptRunnerCliOptions.ts +38 -12
  590. package/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.ts +69 -0
  591. package/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.ts +117 -0
  592. package/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.ts +259 -0
  593. package/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.ts +55 -0
  594. package/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.ts +76 -0
  595. package/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.ts +32 -0
  596. package/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.ts +13 -0
  597. package/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.ts +45 -0
  598. package/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.ts +47 -3
  599. package/src/commands/FORMAT/formatCommandParser.ts +4 -2
  600. package/src/commitments/ACTION/ACTION.ts +3 -3
  601. package/src/commitments/FROM/FROM.ts +13 -0
  602. package/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.ts +1 -1
  603. package/src/commitments/META_FULLNAME/META_FULLNAME.ts +70 -0
  604. package/src/commitments/META_ID/META_ID.ts +78 -0
  605. package/src/commitments/WRITING_RULES/WRITING_RULES.ts +16 -8
  606. package/src/commitments/_common/getAllCommitmentsToolFunctionsForNode.ts +1 -49
  607. package/src/commitments/index.ts +8 -25
  608. package/src/executables/platforms/locateAppOnWindows.ts +12 -9
  609. package/src/llm-providers/agent/Agent.ts +1 -1
  610. package/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.ts +2 -2
  611. package/src/llm-providers/openai/utils/buildToolInvocationScript.ts +21 -18
  612. package/src/other/templates/getTemplatesPipelineCollection.ts +971 -679
  613. package/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.ts +8 -9
  614. package/src/utils/agent-message-runtime/AgentMessageProjectChange.ts +183 -0
  615. package/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.ts +80 -0
  616. package/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.ts +108 -0
  617. package/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.ts +78 -75
  618. package/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.ts +341 -0
  619. package/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.ts +147 -0
  620. package/src/utils/agents/terminalAgentAvatarVisual.ts +31 -3
  621. package/src/utils/ascii-art/convertImageDataToAsciiArt.ts +9 -109
  622. package/src/utils/ascii-art/createAnsiColorCode.ts +132 -0
  623. package/src/utils/misc/debounce.ts +26 -5
  624. package/src/utils/misc/emojis.ts +3 -3
  625. package/src/utils/random/$generateBookBoilerplate.ts +1 -1
  626. package/src/version.ts +2 -2
  627. package/src/versions.txt +26 -0
  628. package/umd/apps/agents-server/src/constants/federatedAgentImport.d.ts +6 -0
  629. package/umd/index.umd.js +9600 -8290
  630. package/umd/index.umd.js.map +1 -1
  631. package/umd/scripts/run-agent-messages/git/commitAgentProjectChanges.d.ts +15 -0
  632. package/umd/scripts/run-agent-messages/git/commitAnsweredMessageProjectChanges.d.ts +24 -0
  633. package/umd/scripts/run-agent-messages/git/ensureAgentProjectGitRepository.d.ts +20 -0
  634. package/umd/scripts/run-agent-messages/git/readAgentProjectCommitChange.d.ts +11 -0
  635. package/umd/scripts/run-agent-messages/git/runAgentProjectGitCommand.d.ts +29 -0
  636. package/umd/scripts/run-agent-messages/messages/buildAgentGoalChatPromptSection.d.ts +26 -0
  637. package/umd/scripts/run-agent-messages/messages/buildAgentMessagePrompt.d.ts +12 -1
  638. package/umd/scripts/run-agent-messages/messages/buildAgentProjectsPromptSection.d.ts +2 -14
  639. package/umd/scripts/run-agent-messages/messages/buildAgentTeamPromptSection.d.ts +12 -0
  640. package/umd/scripts/run-agent-messages/messages/finalizeAgentTeamConversationWorkspace.d.ts +16 -0
  641. package/umd/scripts/run-agent-messages/messages/listAgentProjectDirectoryNames.d.ts +7 -0
  642. package/umd/scripts/run-agent-messages/messages/loadAgentPlannedMessagesSidecar.d.ts +10 -0
  643. package/umd/scripts/run-agent-messages/messages/loadAgentTeamConversationWorkspace.d.ts +6 -0
  644. package/umd/scripts/run-agent-messages/messages/resolveAnsweredMessageTouches.d.ts +29 -0
  645. package/umd/scripts/run-codex-prompts/common/CoderRunControlFeedback.d.ts +54 -0
  646. package/umd/scripts/run-codex-prompts/common/applyCoderRunControlKey.d.ts +14 -0
  647. package/umd/scripts/run-codex-prompts/common/buildCoderRunControlKeyBadge.d.ts +7 -0
  648. package/umd/scripts/run-codex-prompts/common/createCoderRunStepTracker.d.ts +48 -0
  649. package/umd/scripts/run-codex-prompts/common/formatCoderRunControlFeedback.d.ts +13 -0
  650. package/umd/scripts/run-codex-prompts/common/listenForCoderRunControls.d.ts +17 -0
  651. package/umd/scripts/run-codex-prompts/common/normalizeLineEndingsInChangedFiles.d.ts +2 -3
  652. package/umd/scripts/run-codex-prompts/common/runGoScript/$spawnLoggedBashScript.d.ts +25 -0
  653. package/umd/scripts/run-codex-prompts/common/runGoScript/$terminateLoggedBashProcessTree.d.ts +11 -0
  654. package/umd/scripts/run-codex-prompts/common/runGoScript/scriptExecutionLog.d.ts +4 -0
  655. package/umd/scripts/run-codex-prompts/common/waitForPause.d.ts +0 -8
  656. package/umd/scripts/run-codex-prompts/common/waitForSkippableWorldTimeDeadline.d.ts +15 -0
  657. package/umd/scripts/run-codex-prompts/git/coderCommitScope.d.ts +31 -0
  658. package/umd/scripts/run-codex-prompts/git/coderGitSync.d.ts +15 -2
  659. package/umd/scripts/run-codex-prompts/git/commitChanges.d.ts +9 -3
  660. package/umd/scripts/run-codex-prompts/git/workingTreeChanges.d.ts +40 -0
  661. package/umd/scripts/run-codex-prompts/ping/pingCoderHarnessPeriodically.d.ts +22 -0
  662. package/umd/scripts/run-codex-prompts/prompts/buildPromptLabel.d.ts +6 -0
  663. package/umd/scripts/run-codex-prompts/prompts/buildPromptStatusDetails.d.ts +51 -0
  664. package/umd/scripts/run-codex-prompts/prompts/findFirstNonEmptyLineIndex.d.ts +6 -0
  665. package/umd/scripts/run-codex-prompts/prompts/formatCoderRunSteps.d.ts +6 -3
  666. package/umd/scripts/run-codex-prompts/prompts/isPromptSectionUnfinished.d.ts +8 -0
  667. package/umd/scripts/run-codex-prompts/prompts/listPromptsByStatus.d.ts +7 -0
  668. package/umd/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +15 -4
  669. package/umd/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +35 -1
  670. package/umd/scripts/run-codex-prompts/prompts/markPromptInProgress.d.ts +27 -0
  671. package/umd/scripts/run-codex-prompts/prompts/promptRunnerAttribution.d.ts +30 -0
  672. package/umd/scripts/run-codex-prompts/prompts/resolveInterruptedPrompt.d.ts +9 -0
  673. package/umd/scripts/run-codex-prompts/prompts/resolvePromptStatusLine.d.ts +19 -0
  674. package/umd/scripts/run-codex-prompts/prompts/writePromptStatusLine.d.ts +10 -0
  675. package/umd/scripts/run-codex-prompts/runners/claude-code/ClaudeCodeRunner.d.ts +15 -0
  676. package/umd/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeOutputEvents.d.ts +3 -0
  677. package/umd/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeSubscriptionUsage.d.ts +11 -0
  678. package/umd/scripts/run-codex-prompts/runners/common/estimateUsageFromTextLength.d.ts +33 -0
  679. package/umd/scripts/run-codex-prompts/runners/common/modelPricing.d.ts +41 -0
  680. package/umd/scripts/run-codex-prompts/runners/gemini/gemini-pricing.d.ts +5 -18
  681. package/umd/scripts/run-codex-prompts/runners/openai-codex/OpenAiCodexRunner.d.ts +8 -0
  682. package/umd/scripts/run-codex-prompts/runners/openai-codex/buildCodexUsageFromOutput.d.ts +4 -1
  683. package/umd/scripts/run-codex-prompts/runners/openai-codex/getCodexSubscriptionUsage.d.ts +19 -0
  684. package/umd/scripts/run-codex-prompts/runners/qwen-code/QwenCodeRunner.d.ts +23 -0
  685. package/umd/scripts/run-codex-prompts/runners/qwen-code/buildQwenCodeScript.d.ts +8 -0
  686. package/umd/scripts/run-codex-prompts/runners/qwen-code/parseQwenCodeUsageFromOutput.d.ts +9 -0
  687. package/umd/scripts/run-codex-prompts/runners/qwen-code/qwen-code-pricing.d.ts +30 -0
  688. package/umd/scripts/run-codex-prompts/runners/types/HarnessSubscriptionUsage.d.ts +43 -0
  689. package/umd/scripts/run-codex-prompts/server/buildCoderServerPromptResponse.d.ts +1 -1
  690. package/umd/scripts/run-codex-prompts/server/coderServerHtml.d.ts +1 -1
  691. package/umd/scripts/run-codex-prompts/server/updatePromptSection.d.ts +1 -1
  692. package/umd/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +6 -0
  693. package/umd/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +21 -1
  694. package/umd/scripts/run-codex-prompts/ui/buildCoderRunAgentVisual.d.ts +5 -5
  695. package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +8 -1
  696. package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiTerminalFrameUpdate.d.ts +27 -0
  697. package/umd/scripts/run-codex-prompts/ui/buildRunUiFrameShared.d.ts +11 -0
  698. package/umd/scripts/run-codex-prompts/ui/buildSubscriptionUsageSessionRows.d.ts +11 -0
  699. package/umd/scripts/run-codex-prompts/ui/refreshCoderRunUiSubscriptionUsage.d.ts +14 -0
  700. package/umd/scripts/utils/emojiTags/validSinglePictogramEmojis.d.ts +17 -0
  701. package/umd/scripts/verify-prompts/$orderPromptFiles.d.ts +9 -0
  702. package/umd/scripts/verify-prompts/VerifyPromptsOrder.d.ts +26 -0
  703. package/umd/scripts/verify-prompts/verify-prompts.d.ts +3 -2
  704. package/umd/src/_packages/components.index.d.ts +4 -0
  705. package/umd/src/_packages/types.index.d.ts +4 -0
  706. package/umd/src/avatars/renderAvatarVisualTerminalText.d.ts +80 -0
  707. package/umd/src/avatars/renderAvatarVisualTerminalText.test.d.ts +1 -0
  708. package/umd/src/avatars/types/AvatarVisualDefinition.d.ts +54 -0
  709. package/umd/src/book-2.0/agent-source/AgentBasicInformation.d.ts +3 -3
  710. package/umd/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +5 -0
  711. package/umd/src/book-2.0/agent-source/ParsedUnknownCommitment.d.ts +26 -0
  712. package/umd/src/book-2.0/agent-source/createAgentModelRequirements.commitmentAggregation.test.d.ts +1 -0
  713. package/umd/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.unknown.test.d.ts +1 -0
  714. package/umd/src/book-2.0/agent-source/getBookCommitmentLineType.d.ts +19 -0
  715. package/umd/src/book-2.0/agent-source/parseAgentSourceWithCommitments.unknown.test.d.ts +1 -0
  716. package/umd/src/book-3.0/AgentMessageRunReport.d.ts +46 -0
  717. package/umd/src/book-3.0/AgentPlannedMessagesSidecar.d.ts +127 -0
  718. package/umd/src/book-3.0/AgentPlannedMessagesSidecar.test.d.ts +1 -0
  719. package/umd/src/book-3.0/AgentTeamConversationWorkspace.d.ts +85 -0
  720. package/umd/src/book-3.0/cliAgentEnv.d.ts +3 -3
  721. package/umd/src/book-3.0/createAgentMessageSidecarBaseName.d.ts +13 -0
  722. package/umd/src/book-3.0/describeAgentPlannedMessageSchedule.d.ts +31 -0
  723. package/umd/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +1 -9
  724. package/umd/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.d.ts +28 -0
  725. package/umd/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.test.d.ts +1 -0
  726. package/umd/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.d.ts +28 -0
  727. package/umd/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.test.d.ts +1 -0
  728. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +3 -2
  729. package/umd/src/book-components/Chat/Chat/renderAgentProjectDiff.d.ts +13 -0
  730. package/umd/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.d.ts +16 -0
  731. package/umd/src/book-components/Chat/utils/agentProjectToolCall.d.ts +85 -0
  732. package/umd/src/book-components/Chat/utils/agentProjectToolCall.test.d.ts +1 -0
  733. package/umd/src/book-components/Chat/utils/externalSourceToolCall.d.ts +38 -0
  734. package/umd/src/book-components/Chat/utils/renderMarkdown.d.ts +68 -3
  735. package/umd/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +30 -0
  736. package/umd/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.d.ts +9 -0
  737. package/umd/src/cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.test.d.ts +1 -0
  738. package/umd/src/cli/cli-commands/coder/GitChangesMode.d.ts +28 -0
  739. package/umd/src/cli/cli-commands/coder/boilerplateCount.d.ts +52 -0
  740. package/umd/src/cli/cli-commands/coder/boilerplateCount.test.d.ts +1 -0
  741. package/umd/src/cli/cli-commands/coder/ensureCoderGitignoreFile.d.ts +14 -1
  742. package/umd/src/cli/cli-commands/coder/generate-boilerplates.d.ts +4 -3
  743. package/umd/src/cli/cli-commands/coder/generate-boilerplates.test.d.ts +1 -0
  744. package/umd/src/cli/cli-commands/coder/server.test.d.ts +1 -0
  745. package/umd/src/cli/cli-commands/coder/verify.d.ts +1 -1
  746. package/umd/src/cli/cli-commands/coder/waitOptions.d.ts +12 -0
  747. package/umd/src/cli/cli-commands/common/$askForConfirmation.d.ts +9 -0
  748. package/umd/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +1 -1
  749. package/umd/src/cli/cli-commands/common/harness/$checkHarnessInstallation.d.ts +3 -3
  750. package/umd/src/cli/cli-commands/common/harness/$checkHarnessInstallation.test.d.ts +1 -0
  751. package/umd/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -3
  752. package/umd/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.d.ts +14 -0
  753. package/umd/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.d.ts +10 -0
  754. package/umd/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.d.ts +43 -0
  755. package/umd/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +36 -0
  756. package/umd/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.d.ts +36 -0
  757. package/umd/src/cli/cli-commands/common/harness/HarnessInstallationStatus.d.ts +8 -2
  758. package/umd/src/cli/cli-commands/common/harness/HarnessUpdatePlan.d.ts +23 -0
  759. package/umd/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.d.ts +4 -1
  760. package/umd/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.d.ts +8 -0
  761. package/umd/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.test.d.ts +1 -0
  762. package/umd/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.d.ts +31 -0
  763. package/umd/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.test.d.ts +1 -0
  764. package/umd/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.d.ts +12 -0
  765. package/umd/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.test.d.ts +1 -0
  766. package/umd/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +29 -0
  767. package/umd/src/cli/cli-commands/common/harnessUpdateCliOptions.test.d.ts +1 -0
  768. package/umd/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.d.ts → npm/$askForNpmPackageInstallationApproval.d.ts} +2 -2
  769. package/umd/src/cli/cli-commands/common/{harness/$resolveLatestHarnessVersion.d.ts → npm/$resolveLatestNpmPackageVersion.d.ts} +2 -3
  770. package/umd/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.test.d.ts +1 -0
  771. package/umd/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.d.ts +9 -0
  772. package/umd/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.d.ts +12 -0
  773. package/umd/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.test.d.ts +1 -0
  774. package/umd/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.d.ts +12 -0
  775. package/umd/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.test.d.ts +1 -0
  776. package/umd/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.d.ts +12 -0
  777. package/umd/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.test.d.ts +1 -0
  778. package/umd/src/cli/cli-commands/common/projectInitialization.d.ts +6 -0
  779. package/umd/src/cli/cli-commands/common/promptRunnerCliOptions.d.ts +17 -4
  780. package/umd/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.d.ts +9 -0
  781. package/umd/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.test.d.ts +1 -0
  782. package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +14 -0
  783. package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.test.d.ts +1 -0
  784. package/umd/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.d.ts +12 -0
  785. package/umd/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.test.d.ts +1 -0
  786. package/umd/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.d.ts +10 -0
  787. package/umd/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.test.d.ts +1 -0
  788. package/umd/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.d.ts +66 -0
  789. package/umd/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.d.ts +26 -0
  790. package/umd/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.d.ts +7 -0
  791. package/umd/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.d.ts +7 -0
  792. package/umd/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +15 -0
  793. package/umd/src/commitments/{COMPONENT/COMPONENT.d.ts → META_FULLNAME/META_FULLNAME.d.ts} +8 -5
  794. package/umd/src/commitments/META_ID/META_ID.d.ts +32 -0
  795. package/umd/src/commitments/WRITING_RULES/WRITING_RULES.d.ts +14 -7
  796. package/umd/src/commitments/index.d.ts +4 -12
  797. package/umd/src/executables/platforms/locateAppOnWindows.d.ts +1 -1
  798. package/umd/src/executables/platforms/locateAppOnWindows.test.d.ts +1 -0
  799. package/umd/src/llm-providers/agent/Agent.d.ts +1 -1
  800. package/umd/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.d.ts +1 -1
  801. package/umd/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.d.ts +2 -3
  802. package/umd/src/utils/agent-message-runtime/AgentMessageProjectChange.d.ts +76 -0
  803. package/umd/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.d.ts +45 -0
  804. package/umd/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.d.ts +62 -0
  805. package/umd/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.d.ts +3 -3
  806. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.d.ts +18 -0
  807. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.test.d.ts +1 -0
  808. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.d.ts +19 -0
  809. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.test.d.ts +1 -0
  810. package/umd/src/utils/agents/terminalAgentAvatarVisual.d.ts +5 -2
  811. package/umd/src/utils/ascii-art/convertImageDataToAsciiArt.d.ts +6 -0
  812. package/umd/src/utils/ascii-art/createAnsiColorCode.d.ts +46 -0
  813. package/umd/src/utils/misc/debounce.d.ts +4 -2
  814. package/umd/src/utils/misc/debounce.test.d.ts +1 -0
  815. package/umd/src/utils/misc/emojis.d.ts +3 -2
  816. package/umd/src/utils/random/$generateBookBoilerplate.test.d.ts +1 -0
  817. package/umd/src/version.d.ts +1 -1
  818. package/apps/agents-server/scripts/ignore-kill-eperm.js +0 -31
  819. package/apps/agents-server/src/app/admin/task-manager/TaskManagerScopeTabs.tsx +0 -74
  820. package/apps/agents-server/src/app/agents/[agentName]/api/timeouts/actions/route.ts +0 -103
  821. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsClient.tsx +0 -43
  822. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsEditDialog.tsx +0 -98
  823. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsFiltersCard.tsx +0 -75
  824. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsHeader.tsx +0 -53
  825. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsSummaryMetrics.tsx +0 -70
  826. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsTableCard.tsx +0 -58
  827. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsTableRow.tsx +0 -242
  828. package/apps/agents-server/src/app/agents/[agentName]/timeouts/loading.tsx +0 -15
  829. package/apps/agents-server/src/app/agents/[agentName]/timeouts/page.tsx +0 -28
  830. package/apps/agents-server/src/app/agents/[agentName]/timeouts/useAgentTimeoutsClientState.ts +0 -769
  831. package/apps/agents-server/src/components/AgentProjectDnsInstructions/AgentProjectDnsInstructions.tsx +0 -182
  832. package/apps/agents-server/src/tools/configureTimeoutToolRuntimeAdapterForServer.ts +0 -381
  833. package/apps/agents-server/src/utils/emails/extractUseEmailConfigurationFromAgentSource.ts +0 -42
  834. package/apps/agents-server/src/utils/userChatClient/runAgentUserTimeoutBulkAction.ts +0 -24
  835. package/apps/agents-server/src/utils/userChatClient/updateAgentUserTimeout.ts +0 -25
  836. package/esm/apps/agents-server/src/database/sqlite/$provideAgentsServerSqliteDatabase.d.ts +0 -69
  837. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/ensureTable.d.ts +0 -7
  838. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteSql.d.ts +0 -30
  839. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteTableSchema.d.ts +0 -76
  840. package/esm/apps/agents-server/src/database/sqlite/resolveAgentsServerSqliteDatabasePath.d.ts +0 -4
  841. package/esm/apps/agents-server/src/database/sqlite/resolveServerSqliteDatabasePath.d.ts +0 -28
  842. package/esm/apps/agents-server/src/database/sqlite/standaloneServerRegistryStore.d.ts +0 -110
  843. package/esm/scripts/find-fresh-emoji-tags/utils/emojis.d.ts +0 -16
  844. package/esm/scripts/run-codex-prompts/prompts/replacePromptTodoStatusLine.d.ts +0 -7
  845. package/esm/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +0 -13
  846. package/esm/src/cli/cli-commands/common/harness/$installHarness.d.ts +0 -13
  847. package/esm/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.d.ts +0 -11
  848. package/esm/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.d.ts +0 -9
  849. package/esm/src/commitments/MEMORY/MEMORY.d.ts +0 -48
  850. package/esm/src/commitments/MEMORY/MemoryToolNames.d.ts +0 -11
  851. package/esm/src/commitments/MEMORY/MemoryToolRuntimeAdapter.d.ts +0 -149
  852. package/esm/src/commitments/MEMORY/createMemorySystemMessage.d.ts +0 -6
  853. package/esm/src/commitments/MEMORY/createMemoryToolFunctions.d.ts +0 -8
  854. package/esm/src/commitments/MEMORY/createMemoryTools.d.ts +0 -14
  855. package/esm/src/commitments/MEMORY/getMemoryCommitmentDocumentation.d.ts +0 -6
  856. package/esm/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  857. package/esm/src/commitments/MEMORY/getMemoryToolTitles.d.ts +0 -7
  858. package/esm/src/commitments/MEMORY/parseMemoryToolArgs.d.ts +0 -61
  859. package/esm/src/commitments/MEMORY/resolveMemoryRuntimeContext.d.ts +0 -8
  860. package/esm/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.d.ts +0 -13
  861. package/esm/src/commitments/META/META.d.ts +0 -65
  862. package/esm/src/commitments/USE/aggregateUseCommitmentSystemMessages.d.ts +0 -32
  863. package/esm/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +0 -58
  864. package/esm/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +0 -13
  865. package/esm/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.d.ts +0 -10
  866. package/esm/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.d.ts +0 -47
  867. package/esm/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +0 -38
  868. package/esm/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.d.ts +0 -21
  869. package/esm/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +0 -11
  870. package/esm/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +0 -13
  871. package/esm/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +0 -46
  872. package/esm/src/commitments/USE_SPAWN/USE_SPAWN.d.ts +0 -38
  873. package/esm/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.d.ts +0 -9
  874. package/esm/src/commitments/USE_SPAWN/spawnAgentViaBrowser.d.ts +0 -12
  875. package/esm/src/commitments/USE_TIME/USE_TIME.d.ts +0 -43
  876. package/esm/src/commitments/USE_TIMEOUT/TimeoutToolNames.d.ts +0 -11
  877. package/esm/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.d.ts +0 -212
  878. package/esm/src/commitments/USE_TIMEOUT/USE_TIMEOUT.d.ts +0 -38
  879. package/esm/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.d.ts +0 -6
  880. package/esm/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.d.ts +0 -8
  881. package/esm/src/commitments/USE_TIMEOUT/createTimeoutTools.d.ts +0 -7
  882. package/esm/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  883. package/esm/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.d.ts +0 -78
  884. package/esm/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.d.ts +0 -8
  885. package/esm/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.d.ts +0 -13
  886. package/esm/src/commitments/WALLET/WALLET.d.ts +0 -21
  887. package/esm/src/commitments/WALLET/WalletToolNames.d.ts +0 -12
  888. package/esm/src/commitments/WALLET/WalletToolRuntimeAdapter.d.ts +0 -163
  889. package/esm/src/commitments/WALLET/createWalletSystemMessage.d.ts +0 -6
  890. package/esm/src/commitments/WALLET/createWalletToolFunctions.d.ts +0 -8
  891. package/esm/src/commitments/WALLET/createWalletTools.d.ts +0 -7
  892. package/esm/src/commitments/WALLET/getWalletCommitmentDocumentation.d.ts +0 -6
  893. package/esm/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.d.ts +0 -16
  894. package/esm/src/commitments/WALLET/getWalletToolTitles.d.ts +0 -7
  895. package/esm/src/commitments/WALLET/parseWalletToolArgs.d.ts +0 -51
  896. package/esm/src/commitments/WALLET/resolveWalletRuntimeContext.d.ts +0 -8
  897. package/esm/src/commitments/WALLET/setWalletToolRuntimeAdapter.d.ts +0 -13
  898. package/esm/src/commitments/_common/createSerpSearchToolFunction.d.ts +0 -12
  899. package/src/cli/cli-commands/common/harness/$installHarness.ts +0 -56
  900. package/src/cli/cli-commands/common/harness/$resolveLatestHarnessVersion.ts +0 -34
  901. package/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.ts +0 -28
  902. package/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.ts +0 -39
  903. package/src/commitments/COMPONENT/COMPONENT.ts +0 -70
  904. package/src/commitments/MEMORY/MEMORY.ts +0 -94
  905. package/src/commitments/MEMORY/MemoryToolNames.ts +0 -13
  906. package/src/commitments/MEMORY/MemoryToolRuntimeAdapter.ts +0 -180
  907. package/src/commitments/MEMORY/createMemorySystemMessage.ts +0 -27
  908. package/src/commitments/MEMORY/createMemoryToolFunctions.ts +0 -134
  909. package/src/commitments/MEMORY/createMemoryTools.ts +0 -115
  910. package/src/commitments/MEMORY/getMemoryCommitmentDocumentation.ts +0 -47
  911. package/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.ts +0 -104
  912. package/src/commitments/MEMORY/getMemoryToolTitles.ts +0 -16
  913. package/src/commitments/MEMORY/parseMemoryToolArgs.ts +0 -126
  914. package/src/commitments/MEMORY/resolveMemoryRuntimeContext.ts +0 -23
  915. package/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.ts +0 -26
  916. package/src/commitments/META/META.ts +0 -168
  917. package/src/commitments/USE/TODO.txt +0 -1
  918. package/src/commitments/USE/aggregateUseCommitmentSystemMessages.ts +0 -219
  919. package/src/commitments/USE_BROWSER/TODO.txt +0 -1
  920. package/src/commitments/USE_BROWSER/USE_BROWSER.ts +0 -257
  921. package/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.ts +0 -45
  922. package/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.ts +0 -83
  923. package/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.ts +0 -146
  924. package/src/commitments/USE_EMAIL/USE_EMAIL.ts +0 -201
  925. package/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.ts +0 -75
  926. package/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.ts +0 -44
  927. package/src/commitments/USE_EMAIL/sendEmailViaBrowser.ts +0 -47
  928. package/src/commitments/USE_SEARCH_ENGINE/TODO.txt +0 -1
  929. package/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.ts +0 -171
  930. package/src/commitments/USE_SPAWN/USE_SPAWN.ts +0 -150
  931. package/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.ts +0 -42
  932. package/src/commitments/USE_SPAWN/spawnAgentViaBrowser.ts +0 -50
  933. package/src/commitments/USE_TIME/USE_TIME.ts +0 -177
  934. package/src/commitments/USE_TIMEOUT/TimeoutToolNames.ts +0 -13
  935. package/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.ts +0 -255
  936. package/src/commitments/USE_TIMEOUT/USE_TIMEOUT.ts +0 -117
  937. package/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.ts +0 -22
  938. package/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.ts +0 -361
  939. package/src/commitments/USE_TIMEOUT/createTimeoutTools.ts +0 -127
  940. package/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.ts +0 -67
  941. package/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.ts +0 -460
  942. package/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.ts +0 -36
  943. package/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.ts +0 -26
  944. package/src/commitments/WALLET/WALLET.ts +0 -71
  945. package/src/commitments/WALLET/WalletToolNames.ts +0 -14
  946. package/src/commitments/WALLET/WalletToolRuntimeAdapter.ts +0 -180
  947. package/src/commitments/WALLET/createWalletSystemMessage.ts +0 -22
  948. package/src/commitments/WALLET/createWalletToolFunctions.ts +0 -145
  949. package/src/commitments/WALLET/createWalletTools.ts +0 -129
  950. package/src/commitments/WALLET/getWalletCommitmentDocumentation.ts +0 -14
  951. package/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.ts +0 -64
  952. package/src/commitments/WALLET/getWalletToolTitles.ts +0 -17
  953. package/src/commitments/WALLET/parseWalletToolArgs.ts +0 -231
  954. package/src/commitments/WALLET/resolveWalletRuntimeContext.ts +0 -23
  955. package/src/commitments/WALLET/setWalletToolRuntimeAdapter.ts +0 -26
  956. package/src/commitments/_common/createSerpSearchToolFunction.ts +0 -46
  957. package/umd/apps/agents-server/src/database/sqlite/$provideAgentsServerSqliteDatabase.d.ts +0 -69
  958. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/ensureTable.d.ts +0 -7
  959. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteSql.d.ts +0 -30
  960. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteTableSchema.d.ts +0 -76
  961. package/umd/apps/agents-server/src/database/sqlite/resolveAgentsServerSqliteDatabasePath.d.ts +0 -4
  962. package/umd/apps/agents-server/src/database/sqlite/resolveServerSqliteDatabasePath.d.ts +0 -28
  963. package/umd/apps/agents-server/src/database/sqlite/standaloneServerRegistryStore.d.ts +0 -110
  964. package/umd/scripts/find-fresh-emoji-tags/utils/emojis.d.ts +0 -16
  965. package/umd/scripts/run-codex-prompts/prompts/replacePromptTodoStatusLine.d.ts +0 -7
  966. package/umd/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +0 -13
  967. package/umd/src/cli/cli-commands/common/harness/$installHarness.d.ts +0 -13
  968. package/umd/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.d.ts +0 -11
  969. package/umd/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.d.ts +0 -9
  970. package/umd/src/commitments/MEMORY/MEMORY.d.ts +0 -48
  971. package/umd/src/commitments/MEMORY/MemoryToolNames.d.ts +0 -11
  972. package/umd/src/commitments/MEMORY/MemoryToolRuntimeAdapter.d.ts +0 -149
  973. package/umd/src/commitments/MEMORY/createMemorySystemMessage.d.ts +0 -6
  974. package/umd/src/commitments/MEMORY/createMemoryToolFunctions.d.ts +0 -8
  975. package/umd/src/commitments/MEMORY/createMemoryTools.d.ts +0 -14
  976. package/umd/src/commitments/MEMORY/getMemoryCommitmentDocumentation.d.ts +0 -6
  977. package/umd/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  978. package/umd/src/commitments/MEMORY/getMemoryToolTitles.d.ts +0 -7
  979. package/umd/src/commitments/MEMORY/parseMemoryToolArgs.d.ts +0 -61
  980. package/umd/src/commitments/MEMORY/resolveMemoryRuntimeContext.d.ts +0 -8
  981. package/umd/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.d.ts +0 -13
  982. package/umd/src/commitments/META/META.d.ts +0 -65
  983. package/umd/src/commitments/USE/aggregateUseCommitmentSystemMessages.d.ts +0 -32
  984. package/umd/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +0 -58
  985. package/umd/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +0 -13
  986. package/umd/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.d.ts +0 -10
  987. package/umd/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.d.ts +0 -47
  988. package/umd/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +0 -38
  989. package/umd/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.d.ts +0 -21
  990. package/umd/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +0 -11
  991. package/umd/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +0 -13
  992. package/umd/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +0 -46
  993. package/umd/src/commitments/USE_SPAWN/USE_SPAWN.d.ts +0 -38
  994. package/umd/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.d.ts +0 -9
  995. package/umd/src/commitments/USE_SPAWN/spawnAgentViaBrowser.d.ts +0 -12
  996. package/umd/src/commitments/USE_TIME/USE_TIME.d.ts +0 -43
  997. package/umd/src/commitments/USE_TIMEOUT/TimeoutToolNames.d.ts +0 -11
  998. package/umd/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.d.ts +0 -212
  999. package/umd/src/commitments/USE_TIMEOUT/USE_TIMEOUT.d.ts +0 -38
  1000. package/umd/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.d.ts +0 -6
  1001. package/umd/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.d.ts +0 -8
  1002. package/umd/src/commitments/USE_TIMEOUT/createTimeoutTools.d.ts +0 -7
  1003. package/umd/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  1004. package/umd/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.d.ts +0 -78
  1005. package/umd/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.d.ts +0 -8
  1006. package/umd/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.d.ts +0 -13
  1007. package/umd/src/commitments/WALLET/WALLET.d.ts +0 -21
  1008. package/umd/src/commitments/WALLET/WalletToolNames.d.ts +0 -12
  1009. package/umd/src/commitments/WALLET/WalletToolRuntimeAdapter.d.ts +0 -163
  1010. package/umd/src/commitments/WALLET/createWalletSystemMessage.d.ts +0 -6
  1011. package/umd/src/commitments/WALLET/createWalletToolFunctions.d.ts +0 -8
  1012. package/umd/src/commitments/WALLET/createWalletTools.d.ts +0 -7
  1013. package/umd/src/commitments/WALLET/getWalletCommitmentDocumentation.d.ts +0 -6
  1014. package/umd/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.d.ts +0 -16
  1015. package/umd/src/commitments/WALLET/getWalletToolTitles.d.ts +0 -7
  1016. package/umd/src/commitments/WALLET/parseWalletToolArgs.d.ts +0 -51
  1017. package/umd/src/commitments/WALLET/resolveWalletRuntimeContext.d.ts +0 -8
  1018. package/umd/src/commitments/WALLET/setWalletToolRuntimeAdapter.d.ts +0 -13
  1019. package/umd/src/commitments/_common/createSerpSearchToolFunction.d.ts +0 -12
  1020. /package/esm/src/{book-2.0/agent-source/createAgentModelRequirements.useCommitmentAggregation.test.d.ts → avatars/renderAvatarVisualTerminalText.test.d.ts} +0 -0
  1021. /package/esm/src/{cli/cli-commands/common/harness/extractHarnessVersionFromOutput.test.d.ts → book-2.0/agent-source/createAgentModelRequirements.commitmentAggregation.test.d.ts} +0 -0
  1022. /package/esm/src/{cli/cli-commands/common/harness/isHarnessVersionOutdated.test.d.ts → book-2.0/agent-source/createAgentModelRequirementsWithCommitments.unknown.test.d.ts} +0 -0
  1023. /package/esm/src/{commitments/MEMORY/MEMORY.test.d.ts → book-2.0/agent-source/parseAgentSourceWithCommitments.unknown.test.d.ts} +0 -0
  1024. /package/esm/src/{commitments/USE_BROWSER/USE_BROWSER.test.d.ts → book-3.0/AgentPlannedMessagesSidecar.test.d.ts} +0 -0
  1025. /package/esm/src/{commitments/USE_BROWSER/resolveRunBrowserToolForNode.test.d.ts → book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.test.d.ts} +0 -0
  1026. /package/esm/src/{commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.test.d.ts → book-components/BookEditor/createUnknownCommitmentDiagnostics.test.d.ts} +0 -0
  1027. /package/esm/src/{commitments/USE_EMAIL/USE_EMAIL.test.d.ts → book-components/Chat/utils/agentProjectToolCall.test.d.ts} +0 -0
  1028. /package/esm/src/{commitments/USE_EMAIL/parseUseEmailCommitmentContent.test.d.ts → cli/cli-commands/coder/$ensureCoderHarnessGitignoreRules.test.d.ts} +0 -0
  1029. /package/esm/src/{commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts → cli/cli-commands/coder/boilerplateCount.test.d.ts} +0 -0
  1030. /package/esm/src/{commitments/USE_SPAWN/USE_SPAWN.test.d.ts → cli/cli-commands/coder/generate-boilerplates.test.d.ts} +0 -0
  1031. /package/esm/src/{commitments/USE_TIME/USE_TIME.test.d.ts → cli/cli-commands/coder/server.test.d.ts} +0 -0
  1032. /package/esm/src/{commitments/USE_TIMEOUT/USE_TIMEOUT.test.d.ts → cli/cli-commands/common/harness/$checkHarnessInstallation.test.d.ts} +0 -0
  1033. /package/esm/src/{commitments/WALLET/WALLET.test.d.ts → cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.test.d.ts} +0 -0
  1034. /package/{umd/src/book-2.0/agent-source/createAgentModelRequirements.useCommitmentAggregation.test.d.ts → esm/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.test.d.ts} +0 -0
  1035. /package/{umd/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.test.d.ts → esm/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.test.d.ts} +0 -0
  1036. /package/{umd/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.test.d.ts → esm/src/cli/cli-commands/common/harnessUpdateCliOptions.test.d.ts} +0 -0
  1037. /package/{umd/src/commitments/MEMORY/MEMORY.test.d.ts → esm/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.test.d.ts} +0 -0
  1038. /package/{umd/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts → esm/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.test.d.ts} +0 -0
  1039. /package/{umd/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.test.d.ts → esm/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.test.d.ts} +0 -0
  1040. /package/{umd/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.test.d.ts → esm/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.test.d.ts} +0 -0
  1041. /package/{umd/src/commitments/USE_EMAIL/USE_EMAIL.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.test.d.ts} +0 -0
  1042. /package/{umd/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.test.d.ts} +0 -0
  1043. /package/{umd/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.test.d.ts} +0 -0
  1044. /package/{umd/src/commitments/USE_SPAWN/USE_SPAWN.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.test.d.ts} +0 -0
  1045. /package/esm/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.d.ts +0 -0
  1046. /package/{umd/src/commitments/USE_TIME/USE_TIME.test.d.ts → esm/src/executables/platforms/locateAppOnWindows.test.d.ts} +0 -0
  1047. /package/{umd/src/commitments/USE_TIMEOUT/USE_TIMEOUT.test.d.ts → esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.test.d.ts} +0 -0
  1048. /package/{umd/src/commitments/WALLET/WALLET.test.d.ts → esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.test.d.ts} +0 -0
  1049. /package/umd/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.d.ts +0 -0
@@ -3,6 +3,7 @@ import type { UserChatRecord } from './UserChatRecord';
3
3
  import { createUserChat } from './createUserChat';
4
4
  import { updateUserChatMessages } from './updateUserChatMessages';
5
5
  import { isFrozenUserChatSource, type UserChatSource } from './UserChatSource';
6
+ import { isUserChatNotFoundScopeError } from './UserChatScopeError';
6
7
 
7
8
  /**
8
9
  * Input payload for persisting one frozen external chat snapshot.
@@ -24,12 +25,26 @@ export async function persistFrozenUserChat(options: PersistFrozenUserChatOption
24
25
  }
25
26
 
26
27
  if (options.chatId) {
27
- return updateUserChatMessages({
28
- userId: options.userId,
29
- agentPermanentId: options.agentPermanentId,
30
- chatId: options.chatId,
31
- messages: options.messages,
32
- });
28
+ try {
29
+ return await updateUserChatMessages({
30
+ userId: options.userId,
31
+ agentPermanentId: options.agentPermanentId,
32
+ chatId: options.chatId,
33
+ messages: options.messages,
34
+ });
35
+ } catch (error) {
36
+ if (!isUserChatNotFoundScopeError(error)) {
37
+ throw error;
38
+ }
39
+
40
+ return createUserChat({
41
+ userId: options.userId,
42
+ agentPermanentId: options.agentPermanentId,
43
+ source: options.source,
44
+ chatId: options.chatId,
45
+ messages: options.messages,
46
+ });
47
+ }
33
48
  }
34
49
 
35
50
  return createUserChat({
@@ -28,6 +28,10 @@ export async function persistUserChatJobTerminalState(options: {
28
28
  provider?: string | null;
29
29
  failureReason?: string | null;
30
30
  failureDetails?: string | null;
31
+ /**
32
+ * Actual time at which an out-of-process runner finished this assistant message.
33
+ */
34
+ executedAt?: NonNullable<ChatMessage['createdAt']>;
31
35
  generationDurationMs?: number;
32
36
  }): Promise<void> {
33
37
  let updatedChat: Awaited<ReturnType<typeof updateUserChatAssistantMessage>> | null = null;
@@ -47,6 +51,7 @@ export async function persistUserChatJobTerminalState(options: {
47
51
  ongoingToolCalls: undefined,
48
52
  toolCalls: options.toolCalls ?? message.toolCalls,
49
53
  completedToolCalls: options.toolCalls ?? message.completedToolCalls,
54
+ createdAt: options.executedAt ?? message.createdAt,
50
55
  generationDurationMs: options.generationDurationMs ?? message.generationDurationMs,
51
56
  progressCard: undefined,
52
57
  availableTools: options.availableTools ?? message.availableTools,
@@ -13,7 +13,7 @@ import { EnvironmentMismatchError } from '../../../../../src/errors/EnvironmentM
13
13
  let resolvedUserChatWorkerInternalToken: string | null = null;
14
14
 
15
15
  /**
16
- * Resolves the shared internal token used to protect background worker routes.
16
+ * Resolves the shared internal token used to protect managed-agent and background worker routes.
17
17
  *
18
18
  * In production, `PTBK_AGENTS_SERVER_USER_CHAT_WORKER_TOKEN` must be configured
19
19
  * explicitly — falling back to any shared credential (in particular
@@ -44,11 +44,12 @@ export function resolveUserChatWorkerInternalToken(): string {
44
44
  spaceTrim(`
45
45
  Missing required \`PTBK_AGENTS_SERVER_USER_CHAT_WORKER_TOKEN\` environment variable in production.
46
46
 
47
- The Agents Server protects its internal worker routes
47
+ The Agents Server protects its internal managed-agent and worker routes
48
48
  (\`/api/internal/user-chat-jobs/run\`,
49
49
  \`/api/internal/user-chat-timeouts/run\`,
50
- \`/api/internal/agent-runner-limits\`, and
51
- \`/api/internal/agent-project-runtimes\`) with this shared token.
50
+ \`/api/internal/agent-runner-limits\`,
51
+ \`/api/internal/agent-project-runtimes\`, and
52
+ \`/api/internal/agent-goal-chat-planned-messages\`) with this shared token.
52
53
  Reusing \`ADMIN_PASSWORD\`, \`SUPABASE_SERVICE_ROLE_KEY\`, or a
53
54
  hardcoded fallback would let anyone who learns that value drive
54
55
  background jobs at will.
@@ -9,7 +9,7 @@ import type { ChatMessage, ChatPrompt } from '@promptbook-local/types';
9
9
  import type { string_book } from '../../../../../src/book-2.0/agent-source/string_book';
10
10
  import type { ChatPromptResult } from '../../../../../src/execution/PromptResult';
11
11
  import { createImmediateUserChatAnswerModelRequirements } from './createImmediateUserChatAnswerModelRequirements';
12
- import { getUserChat } from './getUserChat';
12
+ import { getUserChatForJobRunner } from './getUserChatForJobRunner';
13
13
  import { getUserChatJobById } from './getUserChatJobById';
14
14
  import { mutateUserChat } from './mutateUserChat';
15
15
  import type { UserChatJobParameters, UserChatJobRecord } from './UserChatJobRecord';
@@ -109,11 +109,7 @@ async function resolveImmediateUserChatAnswerContext(
109
109
  return null;
110
110
  }
111
111
 
112
- const chat = await getUserChat({
113
- userId: job.userId,
114
- agentPermanentId: job.agentPermanentId,
115
- chatId: job.chatId,
116
- });
112
+ const chat = await getUserChatForJobRunner(job);
117
113
 
118
114
  if (!chat) {
119
115
  return null;
@@ -17,7 +17,7 @@ import {
17
17
  DEFAULT_USER_CHAT_JOB_HEARTBEAT_MAX_CONSECUTIVE_FAILURES,
18
18
  } from './createUserChatJobHeartbeatController';
19
19
  import { finalizeUserChatJob } from './finalizeUserChatJob';
20
- import { getUserChat } from './getUserChat';
20
+ import { getUserChatForJobRunner } from './getUserChatForJobRunner';
21
21
  import { heartbeatUserChatJob } from './heartbeatUserChatJob';
22
22
  import { persistUserChatJobTerminalState } from './persistUserChatJobTerminalState';
23
23
  import { persistUserChatJobProgressCard } from './persistUserChatJobProgressCard';
@@ -159,11 +159,7 @@ function createRunUserChatJobProgressReporter(
159
159
  */
160
160
  async function resolveRunUserChatJobStartContext(job: UserChatJobRecord): Promise<RunUserChatJobStartContext | null> {
161
161
  const [chat, userRow] = await Promise.all([
162
- getUserChat({
163
- userId: job.userId,
164
- agentPermanentId: job.agentPermanentId,
165
- chatId: job.chatId,
166
- }),
162
+ getUserChatForJobRunner(job),
167
163
  getUserById(job.userId),
168
164
  ]);
169
165
 
@@ -0,0 +1,63 @@
1
+ import type { ChatMessage } from '@promptbook-local/types';
2
+
3
+ /**
4
+ * JSON property stored on the first message of a frozen TEAM conversation.
5
+ *
6
+ * A message-level property keeps the relation backwards-compatible without changing the UserChat table.
7
+ */
8
+ const TEAM_MEMBER_USER_CHAT_CONTEXT_KEY = '__promptbookTeamMemberChat';
9
+
10
+ /**
11
+ * Primary chat information attached to a frozen teammate conversation.
12
+ */
13
+ export type TeamMemberUserChatContext = {
14
+ readonly version: 1;
15
+ readonly primaryAgentPermanentId: string;
16
+ readonly primaryAgentName: string;
17
+ readonly primaryChatId: string;
18
+ };
19
+
20
+ /**
21
+ * Adds the primary-chat relation to the first message of a frozen teammate transcript.
22
+ */
23
+ export function attachTeamMemberUserChatContext(
24
+ messages: ReadonlyArray<ChatMessage>,
25
+ context: TeamMemberUserChatContext,
26
+ ): Array<ChatMessage> {
27
+ const firstMessage = messages[0];
28
+ if (!firstMessage) {
29
+ return [...messages];
30
+ }
31
+
32
+ return [
33
+ {
34
+ ...firstMessage,
35
+ [TEAM_MEMBER_USER_CHAT_CONTEXT_KEY]: context,
36
+ } as ChatMessage,
37
+ ...messages.slice(1),
38
+ ];
39
+ }
40
+
41
+ /**
42
+ * Reads the optional primary-chat relation from a frozen teammate transcript.
43
+ */
44
+ export function getTeamMemberUserChatContext(messages: ReadonlyArray<ChatMessage>): TeamMemberUserChatContext | null {
45
+ const firstMessage = messages[0] as (ChatMessage & Record<string, unknown>) | undefined;
46
+ const value = firstMessage?.[TEAM_MEMBER_USER_CHAT_CONTEXT_KEY];
47
+
48
+ return isTeamMemberUserChatContext(value) ? value : null;
49
+ }
50
+
51
+ /**
52
+ * Validates the compact context stored in untrusted persisted message JSON.
53
+ */
54
+ function isTeamMemberUserChatContext(value: unknown): value is TeamMemberUserChatContext {
55
+ return Boolean(
56
+ value &&
57
+ typeof value === 'object' &&
58
+ (value as TeamMemberUserChatContext).version === 1 &&
59
+ typeof (value as TeamMemberUserChatContext).primaryAgentPermanentId === 'string' &&
60
+ typeof (value as TeamMemberUserChatContext).primaryAgentName === 'string' &&
61
+ typeof (value as TeamMemberUserChatContext).primaryChatId === 'string',
62
+ );
63
+ }
@@ -1,4 +1,5 @@
1
1
  import type { Json } from '@/src/database/schema';
2
+ import type { ChatMessage } from '@promptbook-local/types';
2
3
  import {
3
4
  normalizeAgentMessageRunReport,
4
5
  type AgentMessageRunReport,
@@ -42,6 +43,35 @@ export function withUserChatJobRunReport(
42
43
  };
43
44
  }
44
45
 
46
+ /**
47
+ * Resolves display-ready execution timing from one runner-produced message report.
48
+ *
49
+ * The runner's timestamps describe only active harness work, unlike durable job timestamps which also include time
50
+ * waiting for the out-of-process runner to pick up a queued message.
51
+ *
52
+ * @returns The completed message timestamp and actual execution duration, or `null` for older reports without timing.
53
+ */
54
+ export function resolveUserChatJobExecutionTiming(report: AgentMessageRunReport | null): {
55
+ readonly executedAt: NonNullable<ChatMessage['createdAt']>;
56
+ readonly generationDurationMs: number;
57
+ } | null {
58
+ const executionTiming = report?.executionTiming;
59
+ if (!executionTiming) {
60
+ return null;
61
+ }
62
+
63
+ const startedAtMilliseconds = Date.parse(executionTiming.startedAt);
64
+ const finishedAtMilliseconds = Date.parse(executionTiming.finishedAt);
65
+ if (!Number.isFinite(startedAtMilliseconds) || !Number.isFinite(finishedAtMilliseconds)) {
66
+ return null;
67
+ }
68
+
69
+ return {
70
+ executedAt: executionTiming.finishedAt as NonNullable<ChatMessage['createdAt']>,
71
+ generationDurationMs: Math.max(0, finishedAtMilliseconds - startedAtMilliseconds),
72
+ };
73
+ }
74
+
45
75
  /**
46
76
  * Persists one runner-produced run report into the job parameters so task details can show it.
47
77
  */
@@ -20,13 +20,18 @@ export function createQueuedUserChatUserMessage(options: {
20
20
  messageId: string;
21
21
  clientMessageId: string;
22
22
  content: string;
23
+ /**
24
+ * Sender persisted for the input turn. Agent-owned goal-chat wake-ups use `AGENT` because
25
+ * no human authored them, while ordinary durable turns keep the default `USER` sender.
26
+ */
27
+ sender?: 'USER' | 'AGENT';
23
28
  attachments?: ChatMessage['attachments'];
24
29
  replyingTo?: ChatMessage['replyingTo'];
25
30
  createdAt: NonNullable<ChatMessage['createdAt']>;
26
31
  }): ChatMessage {
27
32
  return {
28
33
  id: options.messageId,
29
- sender: 'USER',
34
+ sender: options.sender || 'USER',
30
35
  content: options.content,
31
36
  attachments: options.attachments,
32
37
  replyingTo: options.replyingTo,
@@ -16,7 +16,11 @@ export { getUserChatJobByClientMessageId } from './userChat/getUserChatJobByClie
16
16
  export { heartbeatUserChatJob } from './userChat/heartbeatUserChatJob';
17
17
  export { isUserChatViewOnly } from './userChat/isUserChatViewOnly';
18
18
  export { listExpiredRunningUserChatJobs } from './userChat/listExpiredRunningUserChatJobs';
19
- export { listUserChats, listUserChatSummarySeeds } from './userChat/listUserChats';
19
+ export {
20
+ createUserChatSummarySeedFromChatRecord,
21
+ listUserChats,
22
+ listUserChatSummarySeeds,
23
+ } from './userChat/listUserChats';
20
24
  export { listUserChatJobActivityCounts, listUserChatJobs } from './userChat/listUserChatJobs';
21
25
  export { mutateUserChat } from './userChat/mutateUserChat';
22
26
  export { persistUserChatJobTerminalState } from './userChat/persistUserChatJobTerminalState';
@@ -4,7 +4,7 @@ import type { UserChatTimeout } from '../userChatClient';
4
4
  import { requestUserChatApi } from './requestUserChatApi';
5
5
 
6
6
  /**
7
- * Cancels one durable timeout in the agent-wide timeout manager.
7
+ * Cancels one planned message of the agent from its goal chat.
8
8
  *
9
9
  * @private shared helper for the Agents Server browser client
10
10
  */
@@ -14,6 +14,6 @@ export async function cancelAgentUserTimeout(agentName: string, timeoutId: strin
14
14
  {
15
15
  method: 'DELETE',
16
16
  },
17
- 'Failed to cancel agent timeout.',
17
+ 'Failed to cancel the planned message.',
18
18
  );
19
19
  }
@@ -4,7 +4,7 @@ import type { AgentUserTimeoutListResponse } from '../userChatClient';
4
4
  import { requestUserChatApi } from './requestUserChatApi';
5
5
 
6
6
  /**
7
- * Loads all durable timeouts for one user+agent across chats.
7
+ * Loads every planned message of one agent, as listed in its goal chat.
8
8
  *
9
9
  * @private shared helper for the Agents Server browser client
10
10
  */
@@ -15,6 +15,6 @@ export async function fetchAgentUserTimeouts(agentName: string): Promise<AgentUs
15
15
  method: 'GET',
16
16
  cache: 'no-store',
17
17
  },
18
- 'Failed to load agent timeouts.',
18
+ 'Failed to load planned messages.',
19
19
  );
20
20
  }
@@ -12,12 +12,10 @@ export { fetchAgentUserTimeouts } from './userChatClient/fetchAgentUserTimeouts'
12
12
  export { fetchUserChat } from './userChatClient/fetchUserChat';
13
13
  export { fetchUserChats } from './userChatClient/fetchUserChats';
14
14
  export { removeUserChat } from './userChatClient/removeUserChat';
15
- export { runAgentUserTimeoutBulkAction } from './userChatClient/runAgentUserTimeoutBulkAction';
16
15
  export { saveUserChatDraft } from './userChatClient/saveUserChatDraft';
17
16
  export { saveUserChatMessages } from './userChatClient/saveUserChatMessages';
18
17
  export { sendUserChatMessage } from './userChatClient/sendUserChatMessage';
19
18
  export { streamUserChat } from './userChatClient/streamUserChat';
20
- export { updateAgentUserTimeout } from './userChatClient/updateAgentUserTimeout';
21
19
  export { UserChatApiError } from './userChatClient/UserChatApiError';
22
20
 
23
21
  /**
@@ -39,12 +37,21 @@ export type UserChatSummary = {
39
37
  updatedAt: string;
40
38
  lastMessageAt: string | null;
41
39
  source: UserChatSource;
40
+ /**
41
+ * Database user id owning the chat, used to link a super-admin to its owner.
42
+ */
43
+ userId?: number;
42
44
  isReadOnly: boolean;
43
45
  /**
44
46
  * True when the chat belongs to a different user than the current viewer
45
47
  * (visible only to admins/super-admins browsing external chats).
46
48
  */
47
49
  isExternalUserChat?: boolean;
50
+ /**
51
+ * True for the singleton goal chat the agent keeps with itself, which is pinned above
52
+ * every other chat and rendered with its own icon.
53
+ */
54
+ isAgentGoalChat?: boolean;
48
55
  messagesCount: number;
49
56
  title: string;
50
57
  preview: string;
@@ -100,6 +107,10 @@ export type UserChatTimeout = {
100
107
  durationMs: number;
101
108
  dueAt: string;
102
109
  recurrenceIntervalMs: number | null;
110
+ cronExpression: string | null;
111
+ startsAt: string | null;
112
+ endsAt: string | null;
113
+ maxRunCount: number | null;
103
114
  queuedAt: string;
104
115
  startedAt: string | null;
105
116
  completedAt: string | null;
@@ -134,35 +145,6 @@ export type AgentUserTimeoutListResponse = {
134
145
  generatedAt: string;
135
146
  };
136
147
 
137
- /**
138
- * Editable timeout fields accepted by the agent-wide timeout update endpoint.
139
- */
140
- export type AgentUserTimeoutUpdatePayload = {
141
- dueAt?: string;
142
- recurrenceIntervalMs?: number | null;
143
- message?: string | null;
144
- parameters?: Record<string, unknown>;
145
- paused?: boolean;
146
- extendByMs?: number;
147
- };
148
-
149
- /**
150
- * Supported bulk timeout actions in the agent-wide timeout manager.
151
- */
152
- export type AgentUserTimeoutBulkAction = 'cancel_all_active' | 'pause_all_active' | 'resume_all_paused';
153
-
154
- /**
155
- * API payload returned after one bulk timeout action.
156
- */
157
- export type AgentUserTimeoutBulkActionResponse = {
158
- action: AgentUserTimeoutBulkAction;
159
- matchedCount: number;
160
- updatedCount: number;
161
- timeoutIds: Array<string>;
162
- hasMore: boolean;
163
- generatedAt: string;
164
- };
165
-
166
148
  /**
167
149
  * API payload for list endpoint.
168
150
  */
@@ -27,6 +27,10 @@ export type UserChatTimeoutRecord = {
27
27
  durationMs: number;
28
28
  dueAt: string;
29
29
  recurrenceIntervalMs: number | null;
30
+ cronExpression: string | null;
31
+ startsAt: string | null;
32
+ endsAt: string | null;
33
+ maxRunCount: number | null;
30
34
  queuedAt: string;
31
35
  startedAt: string | null;
32
36
  completedAt: string | null;
@@ -55,6 +59,10 @@ export type UserChatTimeoutRow = {
55
59
  durationMs: number;
56
60
  dueAt: string;
57
61
  recurrenceIntervalMs: number | null;
62
+ cronExpression: string | null;
63
+ startsAt: string | null;
64
+ endsAt: string | null;
65
+ maxRunCount: number | null;
58
66
  queuedAt: string;
59
67
  startedAt: string | null;
60
68
  completedAt: string | null;
@@ -83,6 +91,10 @@ export type UserChatTimeoutInsert = {
83
91
  durationMs: number;
84
92
  dueAt: string;
85
93
  recurrenceIntervalMs?: number | null;
94
+ cronExpression?: string | null;
95
+ startsAt?: string | null;
96
+ endsAt?: string | null;
97
+ maxRunCount?: number | null;
86
98
  queuedAt: string;
87
99
  startedAt?: string | null;
88
100
  completedAt?: string | null;
@@ -97,15 +109,22 @@ export type UserChatTimeoutInsert = {
97
109
 
98
110
  /**
99
111
  * Input used when persisting one new chat timeout.
112
+ *
113
+ * The schedule fields describe the whole life of a planned message, so `durationMs` and `dueAt` are
114
+ * only needed by a caller that schedules one plain wake-up at a fixed delay.
100
115
  */
101
116
  export type CreateUserChatTimeoutOptions = {
102
117
  id?: string;
103
118
  userId: number;
104
119
  agentPermanentId: string;
105
120
  chatId: string;
106
- durationMs: number;
121
+ durationMs?: number;
107
122
  dueAt?: string;
108
123
  recurrenceIntervalMs?: number | null;
124
+ cronExpression?: string | null;
125
+ startsAt?: string | null;
126
+ endsAt?: string | null;
127
+ maxRunCount?: number | null;
109
128
  message?: string;
110
129
  parameters?: UserChatTimeoutParameters;
111
130
  };
@@ -130,11 +149,25 @@ export type ListUserChatTimeoutsOptions = {
130
149
  onlyActive?: boolean;
131
150
  };
132
151
 
152
+ /**
153
+ * Query options for listing the timeouts of every agent on the server.
154
+ */
155
+ export type ListAllUserChatTimeoutsOptions = {
156
+ /**
157
+ * Largest number of rows to return, newest first.
158
+ */
159
+ limit: number;
160
+ };
161
+
133
162
  /**
134
163
  * Query options for loading one timeout scoped only to user + agent.
135
164
  */
136
165
  export type GetAgentScopedUserChatTimeoutOptions = {
137
- userId: number;
166
+ /**
167
+ * Owning user, or `undefined` to span every user of the agent
168
+ * (used by the agent goal chat, which plans on behalf of the agent itself).
169
+ */
170
+ userId?: number;
138
171
  agentPermanentId: string;
139
172
  timeoutId: string;
140
173
  };
@@ -143,7 +176,11 @@ export type GetAgentScopedUserChatTimeoutOptions = {
143
176
  * Query options for listing all timeouts owned by one user+agent across chats.
144
177
  */
145
178
  export type ListAgentUserChatTimeoutsOptions = {
146
- userId: number;
179
+ /**
180
+ * Owning user, or `undefined` to span every user of the agent
181
+ * (used by the agent goal chat, which plans on behalf of the agent itself).
182
+ */
183
+ userId?: number;
147
184
  agentPermanentId: string;
148
185
  statuses?: ReadonlyArray<UserChatTimeoutStatus>;
149
186
  includePaused?: boolean;
@@ -154,10 +191,17 @@ export type ListAgentUserChatTimeoutsOptions = {
154
191
 
155
192
  /**
156
193
  * Mutable fields accepted when editing one agent-scoped timeout.
194
+ *
195
+ * Every schedule field that is present is written, so leaving one out keeps it as it is and passing
196
+ * `null` removes it.
157
197
  */
158
198
  export type UpdateAgentScopedUserChatTimeoutPatch = {
159
199
  dueAt?: string;
160
200
  recurrenceIntervalMs?: number | null;
201
+ cronExpression?: string | null;
202
+ startsAt?: string | null;
203
+ endsAt?: string | null;
204
+ maxRunCount?: number | null;
161
205
  message?: string | null;
162
206
  parameters?: UserChatTimeoutParameters;
163
207
  pausedAt?: string | null;
@@ -1,6 +1,7 @@
1
+ import { setAgentScopedUserChatTimeoutPausedState } from './setAgentScopedUserChatTimeoutPausedState';
1
2
  import type { UserChatTimeoutStatus, UserChatTimeoutRecord } from './UserChatTimeoutRecord';
2
- import { listAgentUserChatTimeouts, updateAgentScopedUserChatTimeout } from './userChatTimeoutStore';
3
- import { cancelScheduledUserChatTimeout, notifyUserChatTimeoutScheduleChanged } from './userChatTimeoutWorker';
3
+ import { listAgentUserChatTimeouts } from './userChatTimeoutStore';
4
+ import { cancelScheduledUserChatTimeout } from './userChatTimeoutWorker';
4
5
 
5
6
  /**
6
7
  * Number of timeout rows loaded per page while collecting bulk-mutation targets.
@@ -68,22 +69,18 @@ export async function pauseAllActiveAgentScopedUserChatTimeouts(options: {
68
69
  statuses: ['QUEUED'],
69
70
  paused: false,
70
71
  });
71
- const pausedAtIso = new Date().toISOString();
72
72
  const pausedTimeoutIds: Array<string> = [];
73
73
 
74
74
  for (const timeout of collectedTimeouts.timeouts) {
75
- const updatedTimeout = await updateAgentScopedUserChatTimeout({
75
+ const pauseResult = await setAgentScopedUserChatTimeoutPausedState({
76
76
  userId: options.userId,
77
77
  agentPermanentId: options.agentPermanentId,
78
78
  timeoutId: timeout.timeoutId,
79
- patch: {
80
- pausedAt: pausedAtIso,
81
- },
79
+ isPaused: true,
82
80
  });
83
81
 
84
- if (updatedTimeout && updatedTimeout.pausedAt) {
85
- notifyUserChatTimeoutScheduleChanged(updatedTimeout);
86
- pausedTimeoutIds.push(updatedTimeout.timeoutId);
82
+ if (pauseResult.isApplied) {
83
+ pausedTimeoutIds.push(pauseResult.plannedMessage.timeoutId);
87
84
  }
88
85
  }
89
86
 
@@ -111,18 +108,15 @@ export async function resumeAllPausedAgentScopedUserChatTimeouts(options: {
111
108
  const resumedTimeoutIds: Array<string> = [];
112
109
 
113
110
  for (const timeout of collectedTimeouts.timeouts) {
114
- const updatedTimeout = await updateAgentScopedUserChatTimeout({
111
+ const resumeResult = await setAgentScopedUserChatTimeoutPausedState({
115
112
  userId: options.userId,
116
113
  agentPermanentId: options.agentPermanentId,
117
114
  timeoutId: timeout.timeoutId,
118
- patch: {
119
- pausedAt: null,
120
- },
115
+ isPaused: false,
121
116
  });
122
117
 
123
- if (updatedTimeout && !updatedTimeout.pausedAt) {
124
- notifyUserChatTimeoutScheduleChanged(updatedTimeout);
125
- resumedTimeoutIds.push(updatedTimeout.timeoutId);
118
+ if (resumeResult.isApplied) {
119
+ resumedTimeoutIds.push(resumeResult.plannedMessage.timeoutId);
126
120
  }
127
121
  }
128
122
 
@@ -1,22 +1,54 @@
1
1
  import { spaceTrim } from 'spacetrim';
2
+ import {
3
+ describeAgentPlannedMessageSchedule,
4
+ type AgentPlannedMessageScheduleDescription,
5
+ } from '../../../../../src/book-3.0/describeAgentPlannedMessageSchedule';
2
6
 
3
7
  /**
4
8
  * Builds the synthetic user-like message injected when a timeout elapses.
5
9
  *
10
+ * A planned message carries its whole schedule into its own wake-up, so the agent immediately knows
11
+ * whether this was its last run and does not have to plan anything again just to keep the plan alive.
12
+ *
6
13
  * @private internal utility of userChatTimeout
7
14
  */
8
- export function createTimeoutWakeUpMessage(options: {
9
- readonly timeoutId: string;
10
- readonly durationMs: number;
11
- readonly message?: string | null;
12
- }): string {
15
+ export function createTimeoutWakeUpMessage(
16
+ options: AgentPlannedMessageScheduleDescription & {
17
+ readonly timeoutId: string;
18
+ readonly durationMs: number;
19
+ readonly message?: string | null;
20
+ },
21
+ ): string {
13
22
  const message = options.message?.trim() || '';
14
23
 
15
24
  return spaceTrim(
16
25
  (block) => `
17
- ⏱️ Timeout elapsed after ${options.durationMs}ms.
26
+ ${createTimeoutWakeUpHeadline(options)}
18
27
  timeoutId: ${options.timeoutId}
19
28
  ${message ? block(message) : ''}
20
29
  `,
21
30
  );
22
31
  }
32
+
33
+ /**
34
+ * Builds the first line of one wake-up, telling the agent what woke it and where in its plan it is.
35
+ *
36
+ * @param options - Schedule of the planned message together with the plain timeout duration.
37
+ * @returns Headline of the wake-up message.
38
+ *
39
+ * @private internal utility of `createTimeoutWakeUpMessage`
40
+ */
41
+ function createTimeoutWakeUpHeadline(
42
+ options: AgentPlannedMessageScheduleDescription & { readonly durationMs: number },
43
+ ): string {
44
+ if (options.intervalMs || options.cronExpression) {
45
+ // Note: The next wake-up is resolved only after this one is queued, so the schedule is described without it
46
+ return `⏱️ Planned message elapsed, ${describeAgentPlannedMessageSchedule({ ...options, dueAt: null })}.`;
47
+ }
48
+
49
+ if (options.maxRunCount || options.startsAt) {
50
+ return '⏱️ Planned message elapsed, this was its only wake-up.';
51
+ }
52
+
53
+ return `⏱️ Timeout elapsed after ${options.durationMs}ms.`;
54
+ }