@promptbook/cli 0.114.0-3 → 0.114.0-30

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 (1032) 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 +9409 -8271
  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/formatCoderRunSteps.d.ts +6 -3
  372. package/esm/scripts/run-codex-prompts/prompts/isPromptSectionUnfinished.d.ts +8 -0
  373. package/esm/scripts/run-codex-prompts/prompts/listPromptsByStatus.d.ts +7 -0
  374. package/esm/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +15 -4
  375. package/esm/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +35 -1
  376. package/esm/scripts/run-codex-prompts/prompts/markPromptInProgress.d.ts +27 -0
  377. package/esm/scripts/run-codex-prompts/prompts/promptRunnerAttribution.d.ts +30 -0
  378. package/esm/scripts/run-codex-prompts/prompts/resolveInterruptedPrompt.d.ts +9 -0
  379. package/esm/scripts/run-codex-prompts/prompts/resolvePromptStatusLine.d.ts +19 -0
  380. package/esm/scripts/run-codex-prompts/prompts/writePromptStatusLine.d.ts +9 -0
  381. package/esm/scripts/run-codex-prompts/runners/claude-code/ClaudeCodeRunner.d.ts +15 -0
  382. package/esm/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeOutputEvents.d.ts +3 -0
  383. package/esm/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeSubscriptionUsage.d.ts +11 -0
  384. package/esm/scripts/run-codex-prompts/runners/common/estimateUsageFromTextLength.d.ts +33 -0
  385. package/esm/scripts/run-codex-prompts/runners/common/modelPricing.d.ts +41 -0
  386. package/esm/scripts/run-codex-prompts/runners/gemini/gemini-pricing.d.ts +5 -18
  387. package/esm/scripts/run-codex-prompts/runners/openai-codex/OpenAiCodexRunner.d.ts +8 -0
  388. package/esm/scripts/run-codex-prompts/runners/openai-codex/buildCodexUsageFromOutput.d.ts +4 -1
  389. package/esm/scripts/run-codex-prompts/runners/openai-codex/getCodexSubscriptionUsage.d.ts +19 -0
  390. package/esm/scripts/run-codex-prompts/runners/qwen-code/QwenCodeRunner.d.ts +23 -0
  391. package/esm/scripts/run-codex-prompts/runners/qwen-code/buildQwenCodeScript.d.ts +8 -0
  392. package/esm/scripts/run-codex-prompts/runners/qwen-code/parseQwenCodeUsageFromOutput.d.ts +9 -0
  393. package/esm/scripts/run-codex-prompts/runners/qwen-code/qwen-code-pricing.d.ts +30 -0
  394. package/esm/scripts/run-codex-prompts/runners/types/HarnessSubscriptionUsage.d.ts +43 -0
  395. package/esm/scripts/run-codex-prompts/server/buildCoderServerPromptResponse.d.ts +1 -1
  396. package/esm/scripts/run-codex-prompts/server/coderServerHtml.d.ts +1 -1
  397. package/esm/scripts/run-codex-prompts/server/updatePromptSection.d.ts +1 -1
  398. package/esm/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +6 -0
  399. package/esm/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +21 -1
  400. package/esm/scripts/run-codex-prompts/ui/buildCoderRunAgentVisual.d.ts +5 -5
  401. package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +8 -1
  402. package/esm/scripts/run-codex-prompts/ui/buildCoderRunUiTerminalFrameUpdate.d.ts +27 -0
  403. package/esm/scripts/run-codex-prompts/ui/buildRunUiFrameShared.d.ts +11 -0
  404. package/esm/scripts/run-codex-prompts/ui/buildSubscriptionUsageSessionRows.d.ts +11 -0
  405. package/esm/scripts/run-codex-prompts/ui/refreshCoderRunUiSubscriptionUsage.d.ts +14 -0
  406. package/esm/scripts/utils/emojiTags/validSinglePictogramEmojis.d.ts +17 -0
  407. package/esm/scripts/verify-prompts/$orderPromptFiles.d.ts +9 -0
  408. package/esm/scripts/verify-prompts/VerifyPromptsOrder.d.ts +26 -0
  409. package/esm/scripts/verify-prompts/verify-prompts.d.ts +3 -2
  410. package/esm/src/_packages/components.index.d.ts +4 -0
  411. package/esm/src/_packages/types.index.d.ts +4 -0
  412. package/esm/src/avatars/renderAvatarVisualTerminalText.d.ts +80 -0
  413. package/esm/src/avatars/types/AvatarVisualDefinition.d.ts +54 -0
  414. package/esm/src/book-2.0/agent-source/AgentBasicInformation.d.ts +3 -3
  415. package/esm/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +5 -0
  416. package/esm/src/book-2.0/agent-source/ParsedUnknownCommitment.d.ts +26 -0
  417. package/esm/src/book-2.0/agent-source/getBookCommitmentLineType.d.ts +19 -0
  418. package/esm/src/book-3.0/AgentMessageRunReport.d.ts +46 -0
  419. package/esm/src/book-3.0/AgentPlannedMessagesSidecar.d.ts +127 -0
  420. package/esm/src/book-3.0/AgentTeamConversationWorkspace.d.ts +85 -0
  421. package/esm/src/book-3.0/cliAgentEnv.d.ts +3 -3
  422. package/esm/src/book-3.0/createAgentMessageSidecarBaseName.d.ts +13 -0
  423. package/esm/src/book-3.0/describeAgentPlannedMessageSchedule.d.ts +31 -0
  424. package/esm/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +1 -9
  425. package/esm/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.d.ts +28 -0
  426. package/esm/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.d.ts +28 -0
  427. package/esm/src/book-components/Chat/Chat/ChatProps.d.ts +3 -2
  428. package/esm/src/book-components/Chat/Chat/renderAgentProjectDiff.d.ts +13 -0
  429. package/esm/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.d.ts +16 -0
  430. package/esm/src/book-components/Chat/utils/agentProjectToolCall.d.ts +85 -0
  431. package/esm/src/book-components/Chat/utils/externalSourceToolCall.d.ts +38 -0
  432. package/esm/src/book-components/Chat/utils/renderMarkdown.d.ts +68 -3
  433. package/esm/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +30 -0
  434. package/esm/src/cli/cli-commands/coder/GitChangesMode.d.ts +28 -0
  435. package/esm/src/cli/cli-commands/coder/boilerplateCount.d.ts +52 -0
  436. package/esm/src/cli/cli-commands/coder/generate-boilerplates.d.ts +4 -3
  437. package/esm/src/cli/cli-commands/coder/verify.d.ts +1 -1
  438. package/esm/src/cli/cli-commands/coder/waitOptions.d.ts +12 -0
  439. package/esm/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +1 -1
  440. package/esm/src/cli/cli-commands/common/harness/$checkHarnessInstallation.d.ts +3 -3
  441. package/esm/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -3
  442. package/esm/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.d.ts +14 -0
  443. package/esm/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.d.ts +10 -0
  444. package/esm/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.d.ts +43 -0
  445. package/esm/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +26 -0
  446. package/esm/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.d.ts +36 -0
  447. package/esm/src/cli/cli-commands/common/harness/HarnessInstallationStatus.d.ts +8 -2
  448. package/esm/src/cli/cli-commands/common/harness/HarnessUpdatePlan.d.ts +23 -0
  449. package/esm/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.d.ts +4 -1
  450. package/esm/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.d.ts +8 -0
  451. package/esm/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.d.ts +31 -0
  452. package/esm/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.d.ts +12 -0
  453. package/esm/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +29 -0
  454. package/esm/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.d.ts → npm/$askForNpmPackageInstallationApproval.d.ts} +2 -2
  455. package/esm/src/cli/cli-commands/common/{harness/$resolveLatestHarnessVersion.d.ts → npm/$resolveLatestNpmPackageVersion.d.ts} +2 -3
  456. package/esm/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.d.ts +9 -0
  457. package/esm/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.d.ts +12 -0
  458. package/esm/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.d.ts +12 -0
  459. package/esm/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.d.ts +12 -0
  460. package/esm/src/cli/cli-commands/common/promptRunnerCliOptions.d.ts +17 -4
  461. package/esm/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.d.ts +9 -0
  462. package/esm/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +14 -0
  463. package/esm/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.d.ts +12 -0
  464. package/esm/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.d.ts +10 -0
  465. package/esm/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.d.ts +66 -0
  466. package/esm/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.d.ts +26 -0
  467. package/esm/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.d.ts +7 -0
  468. package/esm/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.d.ts +7 -0
  469. package/esm/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +15 -0
  470. package/esm/src/commitments/{COMPONENT/COMPONENT.d.ts → META_FULLNAME/META_FULLNAME.d.ts} +8 -5
  471. package/esm/src/commitments/META_ID/META_ID.d.ts +32 -0
  472. package/esm/src/commitments/WRITING_RULES/WRITING_RULES.d.ts +14 -7
  473. package/esm/src/commitments/index.d.ts +4 -12
  474. package/esm/src/executables/platforms/locateAppOnWindows.d.ts +1 -1
  475. package/esm/src/llm-providers/agent/Agent.d.ts +1 -1
  476. package/esm/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.d.ts +1 -1
  477. package/esm/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.d.ts +2 -3
  478. package/esm/src/utils/agent-message-runtime/AgentMessageProjectChange.d.ts +76 -0
  479. package/esm/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.d.ts +45 -0
  480. package/esm/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.d.ts +62 -0
  481. package/esm/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.d.ts +3 -3
  482. package/esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.d.ts +18 -0
  483. package/esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.d.ts +19 -0
  484. package/esm/src/utils/agents/terminalAgentAvatarVisual.d.ts +5 -2
  485. package/esm/src/utils/ascii-art/convertImageDataToAsciiArt.d.ts +6 -0
  486. package/esm/src/utils/ascii-art/createAnsiColorCode.d.ts +46 -0
  487. package/esm/src/utils/misc/debounce.d.ts +4 -2
  488. package/esm/src/utils/misc/emojis.d.ts +3 -2
  489. package/esm/src/version.d.ts +1 -1
  490. package/package.json +2 -2
  491. package/src/_packages/components.index.ts +4 -0
  492. package/src/_packages/components.readme.md +1 -1
  493. package/src/_packages/types.index.ts +4 -0
  494. package/src/avatars/renderAvatarVisualTerminalText.ts +249 -0
  495. package/src/avatars/types/AvatarVisualDefinition.ts +60 -0
  496. package/src/avatars/visuals/asciiOctopusAvatarVisual.ts +144 -22
  497. package/src/book-2.0/agent-source/AgentBasicInformation.ts +3 -9
  498. package/src/book-2.0/agent-source/AgentSourceParseResult.ts +6 -0
  499. package/src/book-2.0/agent-source/ParsedUnknownCommitment.ts +29 -0
  500. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments/augmentAgentModelRequirementsFromSource.ts +38 -1
  501. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments/filterCommitmentsForAgentModelRequirements.ts +0 -23
  502. package/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.ts +0 -2
  503. package/src/book-2.0/agent-source/getBookCommitmentLineType.ts +36 -0
  504. package/src/book-2.0/agent-source/parseAgentSource/applyMetaCommitment.ts +16 -31
  505. package/src/book-2.0/agent-source/parseAgentSource/createCapabilitiesFromCommitment.ts +0 -35
  506. package/src/book-2.0/agent-source/parseAgentSourceWithCommitments.ts +128 -61
  507. package/src/book-2.0/agent-source/string_book.ts +1 -1
  508. package/src/book-2.0/book-language-documentation/bookLanguageDocumentationExamples.ts +0 -25
  509. package/src/book-2.0/book-language-documentation/createStandaloneBookLanguageMarkdown.ts +7 -14
  510. package/src/book-2.0/book-language-documentation/czechBookLanguageManualDictionary.ts +13 -33
  511. package/src/book-2.0/book-language-documentation/englishBookLanguageManualDictionary.ts +12 -32
  512. package/src/book-2.0/book-language-documentation/renderCommitmentCatalogSection.ts +1 -4
  513. package/src/book-2.0/book-language-documentation/renderGroupedCommitmentDocumentationMarkdown.ts +4 -17
  514. package/src/book-3.0/AgentMessageRunReport.ts +135 -0
  515. package/src/book-3.0/AgentPlannedMessagesSidecar.ts +284 -0
  516. package/src/book-3.0/AgentTeamConversationWorkspace.ts +170 -0
  517. package/src/book-3.0/cliAgentEnv.ts +3 -2
  518. package/src/book-3.0/createAgentMessageSidecarBaseName.ts +20 -0
  519. package/src/book-3.0/describeAgentPlannedMessageSchedule.ts +94 -0
  520. package/src/book-components/BookEditor/BookEditorMonaco.tsx +8 -1
  521. package/src/book-components/BookEditor/BookEditorMonacoTokenization.ts +3 -1
  522. package/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.ts +3 -11
  523. package/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.ts +71 -0
  524. package/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.ts +50 -0
  525. package/src/book-components/BookEditor/useBookEditorMonacoLanguage.ts +1 -1
  526. package/src/book-components/BookEditor/useBookEditorMonacoStyles.ts +56 -55
  527. package/src/book-components/Chat/Chat/Chat.module.css +172 -27
  528. package/src/book-components/Chat/Chat/ChatMessageMap.tsx +7 -4
  529. package/src/book-components/Chat/Chat/ChatProps.tsx +3 -2
  530. package/src/book-components/Chat/Chat/renderAgentProjectDiff.tsx +85 -0
  531. package/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.tsx +206 -0
  532. package/src/book-components/Chat/Chat/renderToolCallDetails.tsx +9 -12
  533. package/src/book-components/Chat/MarkdownContent/MarkdownContent.module.css +85 -17
  534. package/src/book-components/Chat/MarkdownContent/MarkdownContent.tsx +115 -2
  535. package/src/book-components/Chat/save/react/exports/chat-preview-2025-10-13 (1).jsx +95 -5
  536. package/src/book-components/Chat/utils/agentProjectToolCall.ts +151 -0
  537. package/src/book-components/Chat/utils/externalSourceToolCall.ts +65 -0
  538. package/src/book-components/Chat/utils/getToolCallChipletInfo.ts +64 -0
  539. package/src/book-components/Chat/utils/renderMarkdown.ts +658 -96
  540. package/src/book-components/Chat/utils/timeoutToolCallPresentation.ts +34 -3
  541. package/src/cli/cli-commands/agents-server/startAgentsServer/createLocalAgentRunOptions.ts +1 -1
  542. package/src/cli/cli-commands/coder/GitChangesMode.ts +35 -0
  543. package/src/cli/cli-commands/coder/add.ts +3 -3
  544. package/src/cli/cli-commands/coder/boilerplateCount.ts +139 -0
  545. package/src/cli/cli-commands/coder/boilerplateTemplates.ts +3 -15
  546. package/src/cli/cli-commands/coder/generate-boilerplates.ts +55 -47
  547. package/src/cli/cli-commands/coder/getDefaultCoderPackageJsonScripts.ts +7 -4
  548. package/src/cli/cli-commands/coder/init.ts +16 -6
  549. package/src/cli/cli-commands/coder/ping.ts +45 -9
  550. package/src/cli/cli-commands/coder/run.ts +23 -4
  551. package/src/cli/cli-commands/coder/server.ts +12 -3
  552. package/src/cli/cli-commands/coder/verify.ts +29 -5
  553. package/src/cli/cli-commands/coder/waitOptions.ts +33 -0
  554. package/src/cli/cli-commands/common/coderGitSyncCliOptions.ts +6 -2
  555. package/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.ts +66 -10
  556. package/src/cli/cli-commands/common/harness/$checkHarnessInstallation.ts +32 -9
  557. package/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.ts +6 -3
  558. package/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.ts +46 -0
  559. package/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.ts +36 -0
  560. package/src/cli/cli-commands/common/harness/$resolveInstalledHarnessVersion.ts +2 -2
  561. package/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.ts +100 -0
  562. package/src/cli/cli-commands/common/harness/HarnessDefinition.ts +40 -0
  563. package/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.ts +44 -0
  564. package/src/cli/cli-commands/common/harness/HarnessInstallationStatus.ts +9 -2
  565. package/src/cli/cli-commands/common/harness/HarnessUpdatePlan.ts +27 -0
  566. package/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.ts +6 -2
  567. package/src/cli/cli-commands/common/harness/formatHarnessInstallationWarning.ts +28 -6
  568. package/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.ts +41 -0
  569. package/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.ts +111 -0
  570. package/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.ts +47 -0
  571. package/src/cli/cli-commands/common/harnessUpdateCliOptions.ts +46 -0
  572. package/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.ts → npm/$askForNpmPackageInstallationApproval.ts} +3 -3
  573. package/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.ts +49 -0
  574. package/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.ts +51 -0
  575. package/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.ts +28 -0
  576. package/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.ts +25 -0
  577. package/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.ts +165 -0
  578. package/src/cli/cli-commands/common/projectInitialization.ts +10 -1
  579. package/src/cli/cli-commands/common/promptRunnerCliOptions.ts +38 -12
  580. package/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.ts +69 -0
  581. package/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.ts +117 -0
  582. package/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.ts +259 -0
  583. package/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.ts +55 -0
  584. package/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.ts +76 -0
  585. package/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.ts +32 -0
  586. package/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.ts +13 -0
  587. package/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.ts +45 -0
  588. package/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.ts +47 -3
  589. package/src/commands/FORMAT/formatCommandParser.ts +4 -2
  590. package/src/commitments/ACTION/ACTION.ts +3 -3
  591. package/src/commitments/FROM/FROM.ts +13 -0
  592. package/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.ts +1 -1
  593. package/src/commitments/META_FULLNAME/META_FULLNAME.ts +70 -0
  594. package/src/commitments/META_ID/META_ID.ts +78 -0
  595. package/src/commitments/WRITING_RULES/WRITING_RULES.ts +16 -8
  596. package/src/commitments/_common/getAllCommitmentsToolFunctionsForNode.ts +1 -49
  597. package/src/commitments/index.ts +8 -25
  598. package/src/executables/platforms/locateAppOnWindows.ts +12 -9
  599. package/src/llm-providers/agent/Agent.ts +1 -1
  600. package/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.ts +2 -2
  601. package/src/llm-providers/openai/utils/buildToolInvocationScript.ts +21 -18
  602. package/src/other/templates/getTemplatesPipelineCollection.ts +1022 -697
  603. package/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.ts +8 -9
  604. package/src/utils/agent-message-runtime/AgentMessageProjectChange.ts +183 -0
  605. package/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.ts +80 -0
  606. package/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.ts +108 -0
  607. package/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.ts +78 -75
  608. package/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.ts +341 -0
  609. package/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.ts +147 -0
  610. package/src/utils/agents/terminalAgentAvatarVisual.ts +31 -3
  611. package/src/utils/ascii-art/convertImageDataToAsciiArt.ts +9 -109
  612. package/src/utils/ascii-art/createAnsiColorCode.ts +132 -0
  613. package/src/utils/misc/debounce.ts +26 -5
  614. package/src/utils/misc/emojis.ts +3 -3
  615. package/src/utils/random/$generateBookBoilerplate.ts +1 -1
  616. package/src/version.ts +2 -2
  617. package/src/versions.txt +25 -0
  618. package/umd/apps/agents-server/src/constants/federatedAgentImport.d.ts +6 -0
  619. package/umd/index.umd.js +9413 -8275
  620. package/umd/index.umd.js.map +1 -1
  621. package/umd/scripts/run-agent-messages/git/commitAgentProjectChanges.d.ts +15 -0
  622. package/umd/scripts/run-agent-messages/git/commitAnsweredMessageProjectChanges.d.ts +24 -0
  623. package/umd/scripts/run-agent-messages/git/ensureAgentProjectGitRepository.d.ts +20 -0
  624. package/umd/scripts/run-agent-messages/git/readAgentProjectCommitChange.d.ts +11 -0
  625. package/umd/scripts/run-agent-messages/git/runAgentProjectGitCommand.d.ts +29 -0
  626. package/umd/scripts/run-agent-messages/messages/buildAgentGoalChatPromptSection.d.ts +26 -0
  627. package/umd/scripts/run-agent-messages/messages/buildAgentMessagePrompt.d.ts +12 -1
  628. package/umd/scripts/run-agent-messages/messages/buildAgentProjectsPromptSection.d.ts +2 -14
  629. package/umd/scripts/run-agent-messages/messages/buildAgentTeamPromptSection.d.ts +12 -0
  630. package/umd/scripts/run-agent-messages/messages/finalizeAgentTeamConversationWorkspace.d.ts +16 -0
  631. package/umd/scripts/run-agent-messages/messages/listAgentProjectDirectoryNames.d.ts +7 -0
  632. package/umd/scripts/run-agent-messages/messages/loadAgentPlannedMessagesSidecar.d.ts +10 -0
  633. package/umd/scripts/run-agent-messages/messages/loadAgentTeamConversationWorkspace.d.ts +6 -0
  634. package/umd/scripts/run-agent-messages/messages/resolveAnsweredMessageTouches.d.ts +29 -0
  635. package/umd/scripts/run-codex-prompts/common/CoderRunControlFeedback.d.ts +54 -0
  636. package/umd/scripts/run-codex-prompts/common/applyCoderRunControlKey.d.ts +14 -0
  637. package/umd/scripts/run-codex-prompts/common/buildCoderRunControlKeyBadge.d.ts +7 -0
  638. package/umd/scripts/run-codex-prompts/common/createCoderRunStepTracker.d.ts +48 -0
  639. package/umd/scripts/run-codex-prompts/common/formatCoderRunControlFeedback.d.ts +13 -0
  640. package/umd/scripts/run-codex-prompts/common/listenForCoderRunControls.d.ts +17 -0
  641. package/umd/scripts/run-codex-prompts/common/normalizeLineEndingsInChangedFiles.d.ts +2 -3
  642. package/umd/scripts/run-codex-prompts/common/runGoScript/$spawnLoggedBashScript.d.ts +25 -0
  643. package/umd/scripts/run-codex-prompts/common/runGoScript/$terminateLoggedBashProcessTree.d.ts +11 -0
  644. package/umd/scripts/run-codex-prompts/common/runGoScript/scriptExecutionLog.d.ts +4 -0
  645. package/umd/scripts/run-codex-prompts/common/waitForPause.d.ts +0 -8
  646. package/umd/scripts/run-codex-prompts/common/waitForSkippableWorldTimeDeadline.d.ts +15 -0
  647. package/umd/scripts/run-codex-prompts/git/coderCommitScope.d.ts +31 -0
  648. package/umd/scripts/run-codex-prompts/git/coderGitSync.d.ts +15 -2
  649. package/umd/scripts/run-codex-prompts/git/commitChanges.d.ts +9 -3
  650. package/umd/scripts/run-codex-prompts/git/workingTreeChanges.d.ts +40 -0
  651. package/umd/scripts/run-codex-prompts/ping/pingCoderHarnessPeriodically.d.ts +22 -0
  652. package/umd/scripts/run-codex-prompts/prompts/buildPromptLabel.d.ts +6 -0
  653. package/umd/scripts/run-codex-prompts/prompts/buildPromptStatusDetails.d.ts +51 -0
  654. package/umd/scripts/run-codex-prompts/prompts/formatCoderRunSteps.d.ts +6 -3
  655. package/umd/scripts/run-codex-prompts/prompts/isPromptSectionUnfinished.d.ts +8 -0
  656. package/umd/scripts/run-codex-prompts/prompts/listPromptsByStatus.d.ts +7 -0
  657. package/umd/scripts/run-codex-prompts/prompts/markPromptDone.d.ts +15 -4
  658. package/umd/scripts/run-codex-prompts/prompts/markPromptFailed.d.ts +35 -1
  659. package/umd/scripts/run-codex-prompts/prompts/markPromptInProgress.d.ts +27 -0
  660. package/umd/scripts/run-codex-prompts/prompts/promptRunnerAttribution.d.ts +30 -0
  661. package/umd/scripts/run-codex-prompts/prompts/resolveInterruptedPrompt.d.ts +9 -0
  662. package/umd/scripts/run-codex-prompts/prompts/resolvePromptStatusLine.d.ts +19 -0
  663. package/umd/scripts/run-codex-prompts/prompts/writePromptStatusLine.d.ts +9 -0
  664. package/umd/scripts/run-codex-prompts/runners/claude-code/ClaudeCodeRunner.d.ts +15 -0
  665. package/umd/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeOutputEvents.d.ts +3 -0
  666. package/umd/scripts/run-codex-prompts/runners/claude-code/parseClaudeCodeSubscriptionUsage.d.ts +11 -0
  667. package/umd/scripts/run-codex-prompts/runners/common/estimateUsageFromTextLength.d.ts +33 -0
  668. package/umd/scripts/run-codex-prompts/runners/common/modelPricing.d.ts +41 -0
  669. package/umd/scripts/run-codex-prompts/runners/gemini/gemini-pricing.d.ts +5 -18
  670. package/umd/scripts/run-codex-prompts/runners/openai-codex/OpenAiCodexRunner.d.ts +8 -0
  671. package/umd/scripts/run-codex-prompts/runners/openai-codex/buildCodexUsageFromOutput.d.ts +4 -1
  672. package/umd/scripts/run-codex-prompts/runners/openai-codex/getCodexSubscriptionUsage.d.ts +19 -0
  673. package/umd/scripts/run-codex-prompts/runners/qwen-code/QwenCodeRunner.d.ts +23 -0
  674. package/umd/scripts/run-codex-prompts/runners/qwen-code/buildQwenCodeScript.d.ts +8 -0
  675. package/umd/scripts/run-codex-prompts/runners/qwen-code/parseQwenCodeUsageFromOutput.d.ts +9 -0
  676. package/umd/scripts/run-codex-prompts/runners/qwen-code/qwen-code-pricing.d.ts +30 -0
  677. package/umd/scripts/run-codex-prompts/runners/types/HarnessSubscriptionUsage.d.ts +43 -0
  678. package/umd/scripts/run-codex-prompts/server/buildCoderServerPromptResponse.d.ts +1 -1
  679. package/umd/scripts/run-codex-prompts/server/coderServerHtml.d.ts +1 -1
  680. package/umd/scripts/run-codex-prompts/server/updatePromptSection.d.ts +1 -1
  681. package/umd/scripts/run-codex-prompts/testing/runPromptWithTestFeedback.d.ts +6 -0
  682. package/umd/scripts/run-codex-prompts/ui/CoderRunUiState.d.ts +21 -1
  683. package/umd/scripts/run-codex-prompts/ui/buildCoderRunAgentVisual.d.ts +5 -5
  684. package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiFrame.d.ts +8 -1
  685. package/umd/scripts/run-codex-prompts/ui/buildCoderRunUiTerminalFrameUpdate.d.ts +27 -0
  686. package/umd/scripts/run-codex-prompts/ui/buildRunUiFrameShared.d.ts +11 -0
  687. package/umd/scripts/run-codex-prompts/ui/buildSubscriptionUsageSessionRows.d.ts +11 -0
  688. package/umd/scripts/run-codex-prompts/ui/refreshCoderRunUiSubscriptionUsage.d.ts +14 -0
  689. package/umd/scripts/utils/emojiTags/validSinglePictogramEmojis.d.ts +17 -0
  690. package/umd/scripts/verify-prompts/$orderPromptFiles.d.ts +9 -0
  691. package/umd/scripts/verify-prompts/VerifyPromptsOrder.d.ts +26 -0
  692. package/umd/scripts/verify-prompts/verify-prompts.d.ts +3 -2
  693. package/umd/src/_packages/components.index.d.ts +4 -0
  694. package/umd/src/_packages/types.index.d.ts +4 -0
  695. package/umd/src/avatars/renderAvatarVisualTerminalText.d.ts +80 -0
  696. package/umd/src/avatars/renderAvatarVisualTerminalText.test.d.ts +1 -0
  697. package/umd/src/avatars/types/AvatarVisualDefinition.d.ts +54 -0
  698. package/umd/src/book-2.0/agent-source/AgentBasicInformation.d.ts +3 -3
  699. package/umd/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +5 -0
  700. package/umd/src/book-2.0/agent-source/ParsedUnknownCommitment.d.ts +26 -0
  701. package/umd/src/book-2.0/agent-source/createAgentModelRequirements.commitmentAggregation.test.d.ts +1 -0
  702. package/umd/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.unknown.test.d.ts +1 -0
  703. package/umd/src/book-2.0/agent-source/getBookCommitmentLineType.d.ts +19 -0
  704. package/umd/src/book-2.0/agent-source/parseAgentSourceWithCommitments.unknown.test.d.ts +1 -0
  705. package/umd/src/book-3.0/AgentMessageRunReport.d.ts +46 -0
  706. package/umd/src/book-3.0/AgentPlannedMessagesSidecar.d.ts +127 -0
  707. package/umd/src/book-3.0/AgentPlannedMessagesSidecar.test.d.ts +1 -0
  708. package/umd/src/book-3.0/AgentTeamConversationWorkspace.d.ts +85 -0
  709. package/umd/src/book-3.0/cliAgentEnv.d.ts +3 -3
  710. package/umd/src/book-3.0/createAgentMessageSidecarBaseName.d.ts +13 -0
  711. package/umd/src/book-3.0/describeAgentPlannedMessageSchedule.d.ts +31 -0
  712. package/umd/src/book-components/BookEditor/createDeprecatedCommitmentDiagnostics.browser.d.ts +1 -9
  713. package/umd/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.d.ts +28 -0
  714. package/umd/src/book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.test.d.ts +1 -0
  715. package/umd/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.d.ts +28 -0
  716. package/umd/src/book-components/BookEditor/createUnknownCommitmentDiagnostics.test.d.ts +1 -0
  717. package/umd/src/book-components/Chat/Chat/ChatProps.d.ts +3 -2
  718. package/umd/src/book-components/Chat/Chat/renderAgentProjectDiff.d.ts +13 -0
  719. package/umd/src/book-components/Chat/Chat/renderAgentProjectToolCallDetails.d.ts +16 -0
  720. package/umd/src/book-components/Chat/utils/agentProjectToolCall.d.ts +85 -0
  721. package/umd/src/book-components/Chat/utils/agentProjectToolCall.test.d.ts +1 -0
  722. package/umd/src/book-components/Chat/utils/externalSourceToolCall.d.ts +38 -0
  723. package/umd/src/book-components/Chat/utils/renderMarkdown.d.ts +68 -3
  724. package/umd/src/book-components/Chat/utils/timeoutToolCallPresentation.d.ts +30 -0
  725. package/umd/src/cli/cli-commands/coder/GitChangesMode.d.ts +28 -0
  726. package/umd/src/cli/cli-commands/coder/boilerplateCount.d.ts +52 -0
  727. package/umd/src/cli/cli-commands/coder/boilerplateCount.test.d.ts +1 -0
  728. package/umd/src/cli/cli-commands/coder/generate-boilerplates.d.ts +4 -3
  729. package/umd/src/cli/cli-commands/coder/generate-boilerplates.test.d.ts +1 -0
  730. package/umd/src/cli/cli-commands/coder/verify.d.ts +1 -1
  731. package/umd/src/cli/cli-commands/coder/waitOptions.d.ts +12 -0
  732. package/umd/src/cli/cli-commands/common/harness/$applyHarnessInstallationStatus.d.ts +1 -1
  733. package/umd/src/cli/cli-commands/common/harness/$checkHarnessInstallation.d.ts +3 -3
  734. package/umd/src/cli/cli-commands/common/harness/$checkHarnessInstallation.test.d.ts +1 -0
  735. package/umd/src/cli/cli-commands/common/harness/$ensureHarnessInstallations.d.ts +3 -3
  736. package/umd/src/cli/cli-commands/common/harness/$resolveHarnessCommandPath.d.ts +14 -0
  737. package/umd/src/cli/cli-commands/common/harness/$resolveHarnessInstallationOrigin.d.ts +10 -0
  738. package/umd/src/cli/cli-commands/common/harness/$runHarnessInstallationCommand.d.ts +43 -0
  739. package/umd/src/cli/cli-commands/common/harness/HarnessDefinition.d.ts +26 -0
  740. package/umd/src/cli/cli-commands/common/harness/HarnessInstallationOrigin.d.ts +36 -0
  741. package/umd/src/cli/cli-commands/common/harness/HarnessInstallationStatus.d.ts +8 -2
  742. package/umd/src/cli/cli-commands/common/harness/HarnessUpdatePlan.d.ts +23 -0
  743. package/umd/src/cli/cli-commands/common/harness/buildHarnessInstallCommand.d.ts +4 -1
  744. package/umd/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.d.ts +8 -0
  745. package/umd/src/cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.test.d.ts +1 -0
  746. package/umd/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.d.ts +31 -0
  747. package/umd/src/cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.test.d.ts +1 -0
  748. package/umd/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.d.ts +12 -0
  749. package/umd/src/cli/cli-commands/common/harness/resolveHarnessUpdatePlan.test.d.ts +1 -0
  750. package/umd/src/cli/cli-commands/common/harnessUpdateCliOptions.d.ts +29 -0
  751. package/umd/src/cli/cli-commands/common/harnessUpdateCliOptions.test.d.ts +1 -0
  752. package/umd/src/cli/cli-commands/common/{harness/$askForHarnessInstallationApproval.d.ts → npm/$askForNpmPackageInstallationApproval.d.ts} +2 -2
  753. package/umd/src/cli/cli-commands/common/{harness/$resolveLatestHarnessVersion.d.ts → npm/$resolveLatestNpmPackageVersion.d.ts} +2 -3
  754. package/umd/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.test.d.ts +1 -0
  755. package/umd/src/cli/cli-commands/common/npm/$resolveNpmGlobalPrefixPath.d.ts +9 -0
  756. package/umd/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.d.ts +12 -0
  757. package/umd/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.test.d.ts +1 -0
  758. package/umd/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.d.ts +12 -0
  759. package/umd/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.test.d.ts +1 -0
  760. package/umd/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.d.ts +12 -0
  761. package/umd/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.test.d.ts +1 -0
  762. package/umd/src/cli/cli-commands/common/promptRunnerCliOptions.d.ts +17 -4
  763. package/umd/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.d.ts +9 -0
  764. package/umd/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.test.d.ts +1 -0
  765. package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.d.ts +14 -0
  766. package/umd/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.test.d.ts +1 -0
  767. package/umd/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.d.ts +12 -0
  768. package/umd/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.test.d.ts +1 -0
  769. package/umd/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.d.ts +10 -0
  770. package/umd/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.test.d.ts +1 -0
  771. package/umd/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallation.d.ts +66 -0
  772. package/umd/src/cli/cli-commands/common/promptbook-cli/PromptbookCliInstallationStatus.d.ts +26 -0
  773. package/umd/src/cli/cli-commands/common/promptbook-cli/buildPromptbookCliInstallCommand.d.ts +7 -0
  774. package/umd/src/cli/cli-commands/common/promptbook-cli/formatPromptbookCliInstallationWarning.d.ts +7 -0
  775. package/umd/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +15 -0
  776. package/umd/src/commitments/{COMPONENT/COMPONENT.d.ts → META_FULLNAME/META_FULLNAME.d.ts} +8 -5
  777. package/umd/src/commitments/META_ID/META_ID.d.ts +32 -0
  778. package/umd/src/commitments/WRITING_RULES/WRITING_RULES.d.ts +14 -7
  779. package/umd/src/commitments/index.d.ts +4 -12
  780. package/umd/src/executables/platforms/locateAppOnWindows.d.ts +1 -1
  781. package/umd/src/executables/platforms/locateAppOnWindows.test.d.ts +1 -0
  782. package/umd/src/llm-providers/agent/Agent.d.ts +1 -1
  783. package/umd/src/llm-providers/openai/OpenAiAgentKitExecutionToolsToolBuilder.d.ts +1 -1
  784. package/umd/src/{commitments/USE_BROWSER → scrapers/_common/utils}/fetchUrlContent.d.ts +2 -3
  785. package/umd/src/utils/agent-message-runtime/AgentMessageProjectChange.d.ts +76 -0
  786. package/umd/src/utils/agent-message-runtime/AgentMessageTouchedExternalSource.d.ts +45 -0
  787. package/umd/src/utils/agent-message-runtime/parseAgentMessageRuntimeLogEvents.d.ts +62 -0
  788. package/umd/src/utils/agent-message-runtime/resolveAgentMessageRuntimeActivity.d.ts +3 -3
  789. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.d.ts +18 -0
  790. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.test.d.ts +1 -0
  791. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.d.ts +19 -0
  792. package/umd/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.test.d.ts +1 -0
  793. package/umd/src/utils/agents/terminalAgentAvatarVisual.d.ts +5 -2
  794. package/umd/src/utils/ascii-art/convertImageDataToAsciiArt.d.ts +6 -0
  795. package/umd/src/utils/ascii-art/createAnsiColorCode.d.ts +46 -0
  796. package/umd/src/utils/misc/debounce.d.ts +4 -2
  797. package/umd/src/utils/misc/debounce.test.d.ts +1 -0
  798. package/umd/src/utils/misc/emojis.d.ts +3 -2
  799. package/umd/src/utils/random/$generateBookBoilerplate.test.d.ts +1 -0
  800. package/umd/src/version.d.ts +1 -1
  801. package/apps/agents-server/scripts/ignore-kill-eperm.js +0 -31
  802. package/apps/agents-server/src/app/admin/task-manager/TaskManagerScopeTabs.tsx +0 -74
  803. package/apps/agents-server/src/app/agents/[agentName]/api/timeouts/actions/route.ts +0 -103
  804. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsClient.tsx +0 -43
  805. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsEditDialog.tsx +0 -98
  806. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsFiltersCard.tsx +0 -75
  807. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsHeader.tsx +0 -53
  808. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsSummaryMetrics.tsx +0 -70
  809. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsTableCard.tsx +0 -58
  810. package/apps/agents-server/src/app/agents/[agentName]/timeouts/AgentTimeoutsTableRow.tsx +0 -242
  811. package/apps/agents-server/src/app/agents/[agentName]/timeouts/loading.tsx +0 -15
  812. package/apps/agents-server/src/app/agents/[agentName]/timeouts/page.tsx +0 -28
  813. package/apps/agents-server/src/app/agents/[agentName]/timeouts/useAgentTimeoutsClientState.ts +0 -769
  814. package/apps/agents-server/src/components/AgentProjectDnsInstructions/AgentProjectDnsInstructions.tsx +0 -182
  815. package/apps/agents-server/src/tools/configureTimeoutToolRuntimeAdapterForServer.ts +0 -381
  816. package/apps/agents-server/src/utils/emails/extractUseEmailConfigurationFromAgentSource.ts +0 -42
  817. package/apps/agents-server/src/utils/userChatClient/runAgentUserTimeoutBulkAction.ts +0 -24
  818. package/apps/agents-server/src/utils/userChatClient/updateAgentUserTimeout.ts +0 -25
  819. package/esm/apps/agents-server/src/database/sqlite/$provideAgentsServerSqliteDatabase.d.ts +0 -69
  820. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/ensureTable.d.ts +0 -7
  821. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteSql.d.ts +0 -30
  822. package/esm/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteTableSchema.d.ts +0 -76
  823. package/esm/apps/agents-server/src/database/sqlite/resolveAgentsServerSqliteDatabasePath.d.ts +0 -4
  824. package/esm/apps/agents-server/src/database/sqlite/resolveServerSqliteDatabasePath.d.ts +0 -28
  825. package/esm/apps/agents-server/src/database/sqlite/standaloneServerRegistryStore.d.ts +0 -110
  826. package/esm/scripts/find-fresh-emoji-tags/utils/emojis.d.ts +0 -16
  827. package/esm/scripts/run-codex-prompts/prompts/replacePromptTodoStatusLine.d.ts +0 -7
  828. package/esm/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +0 -13
  829. package/esm/src/cli/cli-commands/common/harness/$installHarness.d.ts +0 -13
  830. package/esm/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.d.ts +0 -11
  831. package/esm/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.d.ts +0 -9
  832. package/esm/src/commitments/MEMORY/MEMORY.d.ts +0 -48
  833. package/esm/src/commitments/MEMORY/MemoryToolNames.d.ts +0 -11
  834. package/esm/src/commitments/MEMORY/MemoryToolRuntimeAdapter.d.ts +0 -149
  835. package/esm/src/commitments/MEMORY/createMemorySystemMessage.d.ts +0 -6
  836. package/esm/src/commitments/MEMORY/createMemoryToolFunctions.d.ts +0 -8
  837. package/esm/src/commitments/MEMORY/createMemoryTools.d.ts +0 -14
  838. package/esm/src/commitments/MEMORY/getMemoryCommitmentDocumentation.d.ts +0 -6
  839. package/esm/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  840. package/esm/src/commitments/MEMORY/getMemoryToolTitles.d.ts +0 -7
  841. package/esm/src/commitments/MEMORY/parseMemoryToolArgs.d.ts +0 -61
  842. package/esm/src/commitments/MEMORY/resolveMemoryRuntimeContext.d.ts +0 -8
  843. package/esm/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.d.ts +0 -13
  844. package/esm/src/commitments/META/META.d.ts +0 -65
  845. package/esm/src/commitments/USE/aggregateUseCommitmentSystemMessages.d.ts +0 -32
  846. package/esm/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +0 -58
  847. package/esm/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +0 -13
  848. package/esm/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.d.ts +0 -10
  849. package/esm/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.d.ts +0 -47
  850. package/esm/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +0 -38
  851. package/esm/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.d.ts +0 -21
  852. package/esm/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +0 -11
  853. package/esm/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +0 -13
  854. package/esm/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +0 -46
  855. package/esm/src/commitments/USE_SPAWN/USE_SPAWN.d.ts +0 -38
  856. package/esm/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.d.ts +0 -9
  857. package/esm/src/commitments/USE_SPAWN/spawnAgentViaBrowser.d.ts +0 -12
  858. package/esm/src/commitments/USE_TIME/USE_TIME.d.ts +0 -43
  859. package/esm/src/commitments/USE_TIMEOUT/TimeoutToolNames.d.ts +0 -11
  860. package/esm/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.d.ts +0 -212
  861. package/esm/src/commitments/USE_TIMEOUT/USE_TIMEOUT.d.ts +0 -38
  862. package/esm/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.d.ts +0 -6
  863. package/esm/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.d.ts +0 -8
  864. package/esm/src/commitments/USE_TIMEOUT/createTimeoutTools.d.ts +0 -7
  865. package/esm/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  866. package/esm/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.d.ts +0 -78
  867. package/esm/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.d.ts +0 -8
  868. package/esm/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.d.ts +0 -13
  869. package/esm/src/commitments/WALLET/WALLET.d.ts +0 -21
  870. package/esm/src/commitments/WALLET/WalletToolNames.d.ts +0 -12
  871. package/esm/src/commitments/WALLET/WalletToolRuntimeAdapter.d.ts +0 -163
  872. package/esm/src/commitments/WALLET/createWalletSystemMessage.d.ts +0 -6
  873. package/esm/src/commitments/WALLET/createWalletToolFunctions.d.ts +0 -8
  874. package/esm/src/commitments/WALLET/createWalletTools.d.ts +0 -7
  875. package/esm/src/commitments/WALLET/getWalletCommitmentDocumentation.d.ts +0 -6
  876. package/esm/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.d.ts +0 -16
  877. package/esm/src/commitments/WALLET/getWalletToolTitles.d.ts +0 -7
  878. package/esm/src/commitments/WALLET/parseWalletToolArgs.d.ts +0 -51
  879. package/esm/src/commitments/WALLET/resolveWalletRuntimeContext.d.ts +0 -8
  880. package/esm/src/commitments/WALLET/setWalletToolRuntimeAdapter.d.ts +0 -13
  881. package/esm/src/commitments/_common/createSerpSearchToolFunction.d.ts +0 -12
  882. package/src/cli/cli-commands/common/harness/$installHarness.ts +0 -56
  883. package/src/cli/cli-commands/common/harness/$resolveLatestHarnessVersion.ts +0 -34
  884. package/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.ts +0 -28
  885. package/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.ts +0 -39
  886. package/src/commitments/COMPONENT/COMPONENT.ts +0 -70
  887. package/src/commitments/MEMORY/MEMORY.ts +0 -94
  888. package/src/commitments/MEMORY/MemoryToolNames.ts +0 -13
  889. package/src/commitments/MEMORY/MemoryToolRuntimeAdapter.ts +0 -180
  890. package/src/commitments/MEMORY/createMemorySystemMessage.ts +0 -27
  891. package/src/commitments/MEMORY/createMemoryToolFunctions.ts +0 -134
  892. package/src/commitments/MEMORY/createMemoryTools.ts +0 -115
  893. package/src/commitments/MEMORY/getMemoryCommitmentDocumentation.ts +0 -47
  894. package/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.ts +0 -104
  895. package/src/commitments/MEMORY/getMemoryToolTitles.ts +0 -16
  896. package/src/commitments/MEMORY/parseMemoryToolArgs.ts +0 -126
  897. package/src/commitments/MEMORY/resolveMemoryRuntimeContext.ts +0 -23
  898. package/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.ts +0 -26
  899. package/src/commitments/META/META.ts +0 -168
  900. package/src/commitments/USE/TODO.txt +0 -1
  901. package/src/commitments/USE/aggregateUseCommitmentSystemMessages.ts +0 -219
  902. package/src/commitments/USE_BROWSER/TODO.txt +0 -1
  903. package/src/commitments/USE_BROWSER/USE_BROWSER.ts +0 -257
  904. package/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.ts +0 -45
  905. package/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.ts +0 -83
  906. package/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.ts +0 -146
  907. package/src/commitments/USE_EMAIL/USE_EMAIL.ts +0 -201
  908. package/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.ts +0 -75
  909. package/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.ts +0 -44
  910. package/src/commitments/USE_EMAIL/sendEmailViaBrowser.ts +0 -47
  911. package/src/commitments/USE_SEARCH_ENGINE/TODO.txt +0 -1
  912. package/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.ts +0 -171
  913. package/src/commitments/USE_SPAWN/USE_SPAWN.ts +0 -150
  914. package/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.ts +0 -42
  915. package/src/commitments/USE_SPAWN/spawnAgentViaBrowser.ts +0 -50
  916. package/src/commitments/USE_TIME/USE_TIME.ts +0 -177
  917. package/src/commitments/USE_TIMEOUT/TimeoutToolNames.ts +0 -13
  918. package/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.ts +0 -255
  919. package/src/commitments/USE_TIMEOUT/USE_TIMEOUT.ts +0 -117
  920. package/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.ts +0 -22
  921. package/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.ts +0 -361
  922. package/src/commitments/USE_TIMEOUT/createTimeoutTools.ts +0 -127
  923. package/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.ts +0 -67
  924. package/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.ts +0 -460
  925. package/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.ts +0 -36
  926. package/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.ts +0 -26
  927. package/src/commitments/WALLET/WALLET.ts +0 -71
  928. package/src/commitments/WALLET/WalletToolNames.ts +0 -14
  929. package/src/commitments/WALLET/WalletToolRuntimeAdapter.ts +0 -180
  930. package/src/commitments/WALLET/createWalletSystemMessage.ts +0 -22
  931. package/src/commitments/WALLET/createWalletToolFunctions.ts +0 -145
  932. package/src/commitments/WALLET/createWalletTools.ts +0 -129
  933. package/src/commitments/WALLET/getWalletCommitmentDocumentation.ts +0 -14
  934. package/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.ts +0 -64
  935. package/src/commitments/WALLET/getWalletToolTitles.ts +0 -17
  936. package/src/commitments/WALLET/parseWalletToolArgs.ts +0 -231
  937. package/src/commitments/WALLET/resolveWalletRuntimeContext.ts +0 -23
  938. package/src/commitments/WALLET/setWalletToolRuntimeAdapter.ts +0 -26
  939. package/src/commitments/_common/createSerpSearchToolFunction.ts +0 -46
  940. package/umd/apps/agents-server/src/database/sqlite/$provideAgentsServerSqliteDatabase.d.ts +0 -69
  941. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/ensureTable.d.ts +0 -7
  942. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteSql.d.ts +0 -30
  943. package/umd/apps/agents-server/src/database/sqlite/localSqliteSupabase/localSqliteTableSchema.d.ts +0 -76
  944. package/umd/apps/agents-server/src/database/sqlite/resolveAgentsServerSqliteDatabasePath.d.ts +0 -4
  945. package/umd/apps/agents-server/src/database/sqlite/resolveServerSqliteDatabasePath.d.ts +0 -28
  946. package/umd/apps/agents-server/src/database/sqlite/standaloneServerRegistryStore.d.ts +0 -110
  947. package/umd/scripts/find-fresh-emoji-tags/utils/emojis.d.ts +0 -16
  948. package/umd/scripts/run-codex-prompts/prompts/replacePromptTodoStatusLine.d.ts +0 -7
  949. package/umd/scripts/run-codex-prompts/ui/buildCoderRunOctopusVisual.d.ts +0 -13
  950. package/umd/src/cli/cli-commands/common/harness/$installHarness.d.ts +0 -13
  951. package/umd/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.d.ts +0 -11
  952. package/umd/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.d.ts +0 -9
  953. package/umd/src/commitments/MEMORY/MEMORY.d.ts +0 -48
  954. package/umd/src/commitments/MEMORY/MemoryToolNames.d.ts +0 -11
  955. package/umd/src/commitments/MEMORY/MemoryToolRuntimeAdapter.d.ts +0 -149
  956. package/umd/src/commitments/MEMORY/createMemorySystemMessage.d.ts +0 -6
  957. package/umd/src/commitments/MEMORY/createMemoryToolFunctions.d.ts +0 -8
  958. package/umd/src/commitments/MEMORY/createMemoryTools.d.ts +0 -14
  959. package/umd/src/commitments/MEMORY/getMemoryCommitmentDocumentation.d.ts +0 -6
  960. package/umd/src/commitments/MEMORY/getMemoryToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  961. package/umd/src/commitments/MEMORY/getMemoryToolTitles.d.ts +0 -7
  962. package/umd/src/commitments/MEMORY/parseMemoryToolArgs.d.ts +0 -61
  963. package/umd/src/commitments/MEMORY/resolveMemoryRuntimeContext.d.ts +0 -8
  964. package/umd/src/commitments/MEMORY/setMemoryToolRuntimeAdapter.d.ts +0 -13
  965. package/umd/src/commitments/META/META.d.ts +0 -65
  966. package/umd/src/commitments/USE/aggregateUseCommitmentSystemMessages.d.ts +0 -32
  967. package/umd/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +0 -58
  968. package/umd/src/commitments/USE_BROWSER/fetchUrlContentViaBrowser.d.ts +0 -13
  969. package/umd/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.d.ts +0 -10
  970. package/umd/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.d.ts +0 -47
  971. package/umd/src/commitments/USE_EMAIL/USE_EMAIL.d.ts +0 -38
  972. package/umd/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.d.ts +0 -21
  973. package/umd/src/commitments/USE_EMAIL/resolveSendEmailToolForNode.d.ts +0 -11
  974. package/umd/src/commitments/USE_EMAIL/sendEmailViaBrowser.d.ts +0 -13
  975. package/umd/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +0 -46
  976. package/umd/src/commitments/USE_SPAWN/USE_SPAWN.d.ts +0 -38
  977. package/umd/src/commitments/USE_SPAWN/resolveSpawnAgentToolForNode.d.ts +0 -9
  978. package/umd/src/commitments/USE_SPAWN/spawnAgentViaBrowser.d.ts +0 -12
  979. package/umd/src/commitments/USE_TIME/USE_TIME.d.ts +0 -43
  980. package/umd/src/commitments/USE_TIMEOUT/TimeoutToolNames.d.ts +0 -11
  981. package/umd/src/commitments/USE_TIMEOUT/TimeoutToolRuntimeAdapter.d.ts +0 -212
  982. package/umd/src/commitments/USE_TIMEOUT/USE_TIMEOUT.d.ts +0 -38
  983. package/umd/src/commitments/USE_TIMEOUT/createTimeoutSystemMessage.d.ts +0 -6
  984. package/umd/src/commitments/USE_TIMEOUT/createTimeoutToolFunctions.d.ts +0 -8
  985. package/umd/src/commitments/USE_TIMEOUT/createTimeoutTools.d.ts +0 -7
  986. package/umd/src/commitments/USE_TIMEOUT/getTimeoutToolRuntimeAdapterOrDisabledResult.d.ts +0 -17
  987. package/umd/src/commitments/USE_TIMEOUT/parseTimeoutToolArgs.d.ts +0 -78
  988. package/umd/src/commitments/USE_TIMEOUT/resolveTimeoutRuntimeContext.d.ts +0 -8
  989. package/umd/src/commitments/USE_TIMEOUT/setTimeoutToolRuntimeAdapter.d.ts +0 -13
  990. package/umd/src/commitments/WALLET/WALLET.d.ts +0 -21
  991. package/umd/src/commitments/WALLET/WalletToolNames.d.ts +0 -12
  992. package/umd/src/commitments/WALLET/WalletToolRuntimeAdapter.d.ts +0 -163
  993. package/umd/src/commitments/WALLET/createWalletSystemMessage.d.ts +0 -6
  994. package/umd/src/commitments/WALLET/createWalletToolFunctions.d.ts +0 -8
  995. package/umd/src/commitments/WALLET/createWalletTools.d.ts +0 -7
  996. package/umd/src/commitments/WALLET/getWalletCommitmentDocumentation.d.ts +0 -6
  997. package/umd/src/commitments/WALLET/getWalletToolRuntimeAdapterOrDisabledResult.d.ts +0 -16
  998. package/umd/src/commitments/WALLET/getWalletToolTitles.d.ts +0 -7
  999. package/umd/src/commitments/WALLET/parseWalletToolArgs.d.ts +0 -51
  1000. package/umd/src/commitments/WALLET/resolveWalletRuntimeContext.d.ts +0 -8
  1001. package/umd/src/commitments/WALLET/setWalletToolRuntimeAdapter.d.ts +0 -13
  1002. package/umd/src/commitments/_common/createSerpSearchToolFunction.d.ts +0 -12
  1003. /package/esm/src/{book-2.0/agent-source/createAgentModelRequirements.useCommitmentAggregation.test.d.ts → avatars/renderAvatarVisualTerminalText.test.d.ts} +0 -0
  1004. /package/esm/src/{cli/cli-commands/common/harness/extractHarnessVersionFromOutput.test.d.ts → book-2.0/agent-source/createAgentModelRequirements.commitmentAggregation.test.d.ts} +0 -0
  1005. /package/esm/src/{cli/cli-commands/common/harness/isHarnessVersionOutdated.test.d.ts → book-2.0/agent-source/createAgentModelRequirementsWithCommitments.unknown.test.d.ts} +0 -0
  1006. /package/esm/src/{commitments/MEMORY/MEMORY.test.d.ts → book-2.0/agent-source/parseAgentSourceWithCommitments.unknown.test.d.ts} +0 -0
  1007. /package/esm/src/{commitments/USE_BROWSER/USE_BROWSER.test.d.ts → book-3.0/AgentPlannedMessagesSidecar.test.d.ts} +0 -0
  1008. /package/esm/src/{commitments/USE_BROWSER/resolveRunBrowserToolForNode.test.d.ts → book-components/BookEditor/createDuplicateFromCommitmentDiagnostics.test.d.ts} +0 -0
  1009. /package/esm/src/{commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.test.d.ts → book-components/BookEditor/createUnknownCommitmentDiagnostics.test.d.ts} +0 -0
  1010. /package/esm/src/{commitments/USE_EMAIL/USE_EMAIL.test.d.ts → book-components/Chat/utils/agentProjectToolCall.test.d.ts} +0 -0
  1011. /package/esm/src/{commitments/USE_EMAIL/parseUseEmailCommitmentContent.test.d.ts → cli/cli-commands/coder/boilerplateCount.test.d.ts} +0 -0
  1012. /package/esm/src/{commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts → cli/cli-commands/coder/generate-boilerplates.test.d.ts} +0 -0
  1013. /package/esm/src/{commitments/USE_SPAWN/USE_SPAWN.test.d.ts → cli/cli-commands/common/harness/$checkHarnessInstallation.test.d.ts} +0 -0
  1014. /package/esm/src/{commitments/USE_TIME/USE_TIME.test.d.ts → cli/cli-commands/common/harness/formatHarnessManualUpdateInstruction.test.d.ts} +0 -0
  1015. /package/esm/src/{commitments/USE_TIMEOUT/USE_TIMEOUT.test.d.ts → cli/cli-commands/common/harness/resolveHarnessInstallationMethodFromPaths.test.d.ts} +0 -0
  1016. /package/esm/src/{commitments/WALLET/WALLET.test.d.ts → cli/cli-commands/common/harness/resolveHarnessUpdatePlan.test.d.ts} +0 -0
  1017. /package/{umd/src/book-2.0/agent-source/createAgentModelRequirements.useCommitmentAggregation.test.d.ts → esm/src/cli/cli-commands/common/harnessUpdateCliOptions.test.d.ts} +0 -0
  1018. /package/{umd/src/cli/cli-commands/common/harness/extractHarnessVersionFromOutput.test.d.ts → esm/src/cli/cli-commands/common/npm/$resolveLatestNpmPackageVersion.test.d.ts} +0 -0
  1019. /package/{umd/src/cli/cli-commands/common/harness/isHarnessVersionOutdated.test.d.ts → esm/src/cli/cli-commands/common/npm/buildNpmPackageInstallCommand.test.d.ts} +0 -0
  1020. /package/{umd/src/commitments/MEMORY/MEMORY.test.d.ts → esm/src/cli/cli-commands/common/npm/extractNpmPackageVersionFromOutput.test.d.ts} +0 -0
  1021. /package/{umd/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts → esm/src/cli/cli-commands/common/npm/isNpmPackageVersionOutdated.test.d.ts} +0 -0
  1022. /package/{umd/src/commitments/USE_BROWSER/resolveRunBrowserToolForNode.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$checkPromptbookCliInstallations.test.d.ts} +0 -0
  1023. /package/{umd/src/commitments/USE_DEEPSEARCH/USE_DEEPSEARCH.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$ensurePromptbookCliInstallations.test.d.ts} +0 -0
  1024. /package/{umd/src/commitments/USE_EMAIL/USE_EMAIL.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$resolvePromptbookCliInstallations.test.d.ts} +0 -0
  1025. /package/{umd/src/commitments/USE_EMAIL/parseUseEmailCommitmentContent.test.d.ts → esm/src/cli/cli-commands/common/promptbook-cli/$updatePromptbookCliInstallation.test.d.ts} +0 -0
  1026. /package/esm/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.d.ts +0 -0
  1027. /package/{umd/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.test.d.ts → esm/src/executables/platforms/locateAppOnWindows.test.d.ts} +0 -0
  1028. /package/{umd/src/commitments/USE_SPAWN/USE_SPAWN.test.d.ts → esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedExternalSources.test.d.ts} +0 -0
  1029. /package/{umd/src/commitments/USE_TIME/USE_TIME.test.d.ts → esm/src/utils/agent-message-runtime/resolveAgentMessageTouchedProjectNames.test.d.ts} +0 -0
  1030. /package/{umd/src/commitments/USE_TIMEOUT/USE_TIMEOUT.test.d.ts → esm/src/utils/misc/debounce.test.d.ts} +0 -0
  1031. /package/{umd/src/commitments/WALLET/WALLET.test.d.ts → esm/src/utils/random/$generateBookBoilerplate.test.d.ts} +0 -0
  1032. /package/umd/src/commitments/{META → META_DESCRIPTION}/META_DESCRIPTION.d.ts +0 -0
@@ -1,9 +1,9 @@
1
1
  import { spaceTrim } from 'spacetrim';
2
- import type { LlmExecutionTools } from '../../execution/LlmExecutionTools';
3
- import { $provideFilesystemForNode } from '../../scrapers/_common/register/$provideFilesystemForNode';
4
- import type { ScraperSourceHandler } from '../../scrapers/_common/Scraper';
5
- import { promptbookFetch } from '../../scrapers/_common/utils/promptbookFetch';
6
- import { WebsiteScraper } from '../../scrapers/website/WebsiteScraper';
2
+ import type { LlmExecutionTools } from '../../../execution/LlmExecutionTools';
3
+ import { $provideFilesystemForNode } from '../register/$provideFilesystemForNode';
4
+ import type { ScraperSourceHandler } from '../Scraper';
5
+ import { WebsiteScraper } from '../../website/WebsiteScraper';
6
+ import { promptbookFetch } from './promptbookFetch';
7
7
 
8
8
  /**
9
9
  * Fetches and scrapes content from a URL (SERVER-SIDE ONLY)
@@ -15,13 +15,12 @@ import { WebsiteScraper } from '../../scrapers/website/WebsiteScraper';
15
15
  * 4. Returns the scraped markdown content
16
16
  *
17
17
  * WARNING: This function should NOT be used directly in browser environments.
18
- * For browser environments, use fetchUrlContentViaBrowser which proxies through
19
- * the Agents Server API endpoint at /api/scrape
18
+ * For browser environments, proxy the request through the Agents Server API endpoint at /api/scrape
20
19
  *
21
20
  * @param url The URL to fetch and scrape
22
21
  * @returns Markdown content from the URL
23
22
  *
24
- * @private internal utility for USE BROWSER commitment
23
+ * @private internal scraping utility
25
24
  */
26
25
  export async function fetchUrlContent(url: string): Promise<string> {
27
26
  try {
@@ -137,4 +136,4 @@ export async function fetchUrlContent(url: string): Promise<string> {
137
136
  }
138
137
  }
139
138
 
140
- // Note: [🟢] Code for Node browser-fetch helper [fetchUrlContent](src/commitments/USE_BROWSER/fetchUrlContent.ts) should never be published into packages that could be imported into browser environment
139
+ // Note: [🟢] Code for Node fetch-and-scrape helper [fetchUrlContent](src/scrapers/_common/utils/fetchUrlContent.ts) should never be published into packages that could be imported into browser environment
@@ -0,0 +1,183 @@
1
+ /**
2
+ * One file an answered agent message created, edited or deleted inside one project.
3
+ *
4
+ * Note: [🚉] This is fully serializable as JSON
5
+ *
6
+ * @private internal type of the agent-message runtime
7
+ */
8
+ export type AgentMessageProjectChangedFile = {
9
+ /**
10
+ * Path of the file relative to the project root, using `/` separators.
11
+ */
12
+ readonly path: string;
13
+
14
+ /**
15
+ * Count of lines added to the file.
16
+ */
17
+ readonly insertionCount: number;
18
+
19
+ /**
20
+ * Count of lines removed from the file.
21
+ */
22
+ readonly deletionCount: number;
23
+ };
24
+
25
+ /**
26
+ * Everything answering one single message changed inside one agent project.
27
+ *
28
+ * Each agent project is a git repository and every answer which modifies it is committed there
29
+ * automatically, so this describes exactly one such commit — the trace of what one message really
30
+ * did to one project, which a chat can show below the answer that did it.
31
+ *
32
+ * Note: [🚉] This is fully serializable as JSON
33
+ *
34
+ * @private internal type of the agent-message runtime
35
+ */
36
+ export type AgentMessageProjectChange = {
37
+ /**
38
+ * Directory name of the changed project inside the agent `projects/` folder.
39
+ */
40
+ readonly projectName: string;
41
+
42
+ /**
43
+ * Full hash of the commit holding the changes of this message.
44
+ */
45
+ readonly commitHash: string;
46
+
47
+ /**
48
+ * ISO 8601 timestamp when the changes were committed.
49
+ */
50
+ readonly committedAt: string;
51
+
52
+ /**
53
+ * Files the message changed, ordered as git reports them.
54
+ */
55
+ readonly changedFiles: ReadonlyArray<AgentMessageProjectChangedFile>;
56
+
57
+ /**
58
+ * Count of lines added across all changed files.
59
+ */
60
+ readonly insertionCount: number;
61
+
62
+ /**
63
+ * Count of lines removed across all changed files.
64
+ */
65
+ readonly deletionCount: number;
66
+
67
+ /**
68
+ * Unified diff of the commit, shortened when the change is too large to carry into a chat.
69
+ */
70
+ readonly diff: string;
71
+
72
+ /**
73
+ * Whether `diff` holds only the beginning of the real diff.
74
+ */
75
+ readonly isDiffTruncated: boolean;
76
+ };
77
+
78
+ /**
79
+ * Validates one already-parsed JSON value as a project change.
80
+ *
81
+ * @param value - Raw serialized project change.
82
+ * @returns The typed project change, or `null` when the value does not match the expected shape,
83
+ * so consumers can silently skip foreign or malformed entries.
84
+ *
85
+ * @private internal utility of the agent-message runtime
86
+ */
87
+ export function normalizeAgentMessageProjectChange(value: unknown): AgentMessageProjectChange | null {
88
+ if (!value || typeof value !== 'object' || Array.isArray(value)) {
89
+ return null;
90
+ }
91
+
92
+ const candidate = value as Partial<AgentMessageProjectChange>;
93
+ if (!isNonEmptyString(candidate.projectName) || !isNonEmptyString(candidate.commitHash)) {
94
+ return null;
95
+ }
96
+
97
+ if (!isNonEmptyString(candidate.committedAt) || !Number.isFinite(Date.parse(candidate.committedAt))) {
98
+ return null;
99
+ }
100
+
101
+ if (!Array.isArray(candidate.changedFiles)) {
102
+ return null;
103
+ }
104
+
105
+ const changedFiles = candidate.changedFiles.map((changedFile) =>
106
+ normalizeAgentMessageProjectChangedFile(changedFile),
107
+ );
108
+ if (changedFiles.some((changedFile) => changedFile === null)) {
109
+ return null;
110
+ }
111
+
112
+ if (!isChangeCount(candidate.insertionCount) || !isChangeCount(candidate.deletionCount)) {
113
+ return null;
114
+ }
115
+
116
+ if (typeof candidate.diff !== 'string' || typeof candidate.isDiffTruncated !== 'boolean') {
117
+ return null;
118
+ }
119
+
120
+ return {
121
+ projectName: candidate.projectName.trim(),
122
+ commitHash: candidate.commitHash.trim(),
123
+ committedAt: candidate.committedAt,
124
+ changedFiles: changedFiles as ReadonlyArray<AgentMessageProjectChangedFile>,
125
+ insertionCount: candidate.insertionCount,
126
+ deletionCount: candidate.deletionCount,
127
+ diff: candidate.diff,
128
+ isDiffTruncated: candidate.isDiffTruncated,
129
+ };
130
+ }
131
+
132
+ /**
133
+ * Validates one already-parsed JSON value as a changed project file.
134
+ *
135
+ * @param value - Raw serialized changed file.
136
+ * @returns The typed changed file, or `null` when the value does not match the expected shape.
137
+ *
138
+ * @private internal helper of `normalizeAgentMessageProjectChange`
139
+ */
140
+ function normalizeAgentMessageProjectChangedFile(value: unknown): AgentMessageProjectChangedFile | null {
141
+ if (!value || typeof value !== 'object' || Array.isArray(value)) {
142
+ return null;
143
+ }
144
+
145
+ const candidate = value as Partial<AgentMessageProjectChangedFile>;
146
+ if (!isNonEmptyString(candidate.path)) {
147
+ return null;
148
+ }
149
+
150
+ if (!isChangeCount(candidate.insertionCount) || !isChangeCount(candidate.deletionCount)) {
151
+ return null;
152
+ }
153
+
154
+ return {
155
+ path: candidate.path.trim(),
156
+ insertionCount: candidate.insertionCount,
157
+ deletionCount: candidate.deletionCount,
158
+ };
159
+ }
160
+
161
+ /**
162
+ * Checks that one value is a usable non-empty string.
163
+ *
164
+ * @param value - Raw serialized value.
165
+ * @returns Whether the value is a string carrying content.
166
+ *
167
+ * @private internal helper of `normalizeAgentMessageProjectChange`
168
+ */
169
+ function isNonEmptyString(value: unknown): value is string {
170
+ return typeof value === 'string' && value.trim().length > 0;
171
+ }
172
+
173
+ /**
174
+ * Checks that one value is a line count git could have reported.
175
+ *
176
+ * @param value - Raw serialized value.
177
+ * @returns Whether the value is a non-negative finite number.
178
+ *
179
+ * @private internal helper of `normalizeAgentMessageProjectChange`
180
+ */
181
+ function isChangeCount(value: unknown): value is number {
182
+ return typeof value === 'number' && Number.isFinite(value) && value >= 0;
183
+ }
@@ -0,0 +1,80 @@
1
+ /**
2
+ * Category of one external source an answered agent message touched.
3
+ *
4
+ * - `integration` is a third-party service reached through an integration, for example Gmail.
5
+ * - `website` is a concrete web address the agent fetched or browsed.
6
+ * - `search` is a lookup the agent ran against a web search engine.
7
+ *
8
+ * @private internal type of the agent-message runtime
9
+ */
10
+ export type AgentMessageTouchedExternalSourceKind = 'integration' | 'website' | 'search';
11
+
12
+ /**
13
+ * One source outside the agent itself which answering a single message viewed or edited.
14
+ *
15
+ * Everything the agent does inside its own folder stays internal and is never described here;
16
+ * this records only the reach beyond it, so a chat can tell which outside services and websites
17
+ * one answer really involved.
18
+ *
19
+ * Note: [🚉] This is fully serializable as JSON
20
+ *
21
+ * @private internal type of the agent-message runtime
22
+ */
23
+ export type AgentMessageTouchedExternalSource = {
24
+ /**
25
+ * Category of the touched source.
26
+ */
27
+ readonly kind: AgentMessageTouchedExternalSourceKind;
28
+
29
+ /**
30
+ * User-facing name of the source, for example `Gmail`, `example.com` or the search query.
31
+ */
32
+ readonly name: string;
33
+
34
+ /**
35
+ * Address of the source, when the touch names a concrete one.
36
+ */
37
+ readonly url?: string;
38
+ };
39
+
40
+ /**
41
+ * Validates one already-parsed JSON value as a touched external source.
42
+ *
43
+ * @param value - Raw serialized source.
44
+ * @returns The typed source, or `null` when the value does not match the expected shape, so
45
+ * consumers can silently skip foreign or malformed entries.
46
+ *
47
+ * @private internal utility of the agent-message runtime
48
+ */
49
+ export function normalizeAgentMessageTouchedExternalSource(value: unknown): AgentMessageTouchedExternalSource | null {
50
+ if (!value || typeof value !== 'object' || Array.isArray(value)) {
51
+ return null;
52
+ }
53
+
54
+ const candidate = value as Partial<AgentMessageTouchedExternalSource>;
55
+ if (!isAgentMessageTouchedExternalSourceKind(candidate.kind)) {
56
+ return null;
57
+ }
58
+
59
+ if (typeof candidate.name !== 'string' || candidate.name.trim().length === 0) {
60
+ return null;
61
+ }
62
+
63
+ return {
64
+ kind: candidate.kind,
65
+ name: candidate.name.trim(),
66
+ ...(typeof candidate.url === 'string' && candidate.url.trim().length > 0 ? { url: candidate.url.trim() } : {}),
67
+ };
68
+ }
69
+
70
+ /**
71
+ * Checks that one value is a known external source category.
72
+ *
73
+ * @param value - Raw serialized kind.
74
+ * @returns Whether the value names one of the supported categories.
75
+ *
76
+ * @private internal helper of `normalizeAgentMessageTouchedExternalSource`
77
+ */
78
+ function isAgentMessageTouchedExternalSourceKind(value: unknown): value is AgentMessageTouchedExternalSourceKind {
79
+ return value === 'integration' || value === 'website' || value === 'search';
80
+ }
@@ -0,0 +1,108 @@
1
+ /**
2
+ * One string-keyed payload of a coding-harness tool invocation.
3
+ *
4
+ * @private internal type of agent-message runtime logs
5
+ */
6
+ type RuntimeLogToolInput = Record<string, unknown>;
7
+
8
+ /**
9
+ * One content block of a Claude Code `stream-json` assistant event.
10
+ *
11
+ * @private internal type of agent-message runtime logs
12
+ */
13
+ export type AgentMessageRuntimeLogContentBlock = {
14
+ readonly type?: string;
15
+ readonly text?: string;
16
+ readonly name?: string;
17
+ readonly input?: RuntimeLogToolInput;
18
+ };
19
+
20
+ /**
21
+ * One file path touched by a Codex `file_change` item.
22
+ *
23
+ * @private internal type of agent-message runtime logs
24
+ */
25
+ export type AgentMessageRuntimeLogFileChange = {
26
+ readonly path?: string;
27
+ };
28
+
29
+ /**
30
+ * Minimal shape of one coding-harness runtime log event.
31
+ *
32
+ * The runtime log mixes two harness formats — Claude Code `stream-json` (`type`/`message`) and
33
+ * Codex JSONL (`type`/`item`) — so both are described by one permissive structure and every
34
+ * consumer reads only the fields it understands.
35
+ *
36
+ * @private internal type of agent-message runtime logs
37
+ */
38
+ export type AgentMessageRuntimeLogEvent = {
39
+ readonly type?: string;
40
+ readonly message?: {
41
+ readonly content?: ReadonlyArray<AgentMessageRuntimeLogContentBlock>;
42
+ };
43
+ readonly item?: {
44
+ readonly type?: string;
45
+ readonly command?: string;
46
+ readonly exit_code?: number | null;
47
+ readonly changes?: ReadonlyArray<AgentMessageRuntimeLogFileChange>;
48
+ readonly server?: string;
49
+ readonly tool?: string;
50
+ readonly query?: string;
51
+ };
52
+ };
53
+
54
+ /**
55
+ * Parses every structured event out of one coding-harness runtime log.
56
+ *
57
+ * The local agent runner streams the answering harness output into a live runtime log file, one
58
+ * JSON event per line, optionally prefixed by shell noise. Lines without a usable JSON object are
59
+ * skipped so a partially written or interleaved log never breaks its consumers.
60
+ *
61
+ * @param logText - Raw runtime log content.
62
+ * @returns Structured events in the order they were streamed.
63
+ * @private internal utility of the agent-message runtime
64
+ */
65
+ export function parseAgentMessageRuntimeLogEvents(
66
+ logText: string | null | undefined,
67
+ ): ReadonlyArray<AgentMessageRuntimeLogEvent> {
68
+ if (!logText) {
69
+ return [];
70
+ }
71
+
72
+ const events: Array<AgentMessageRuntimeLogEvent> = [];
73
+
74
+ for (const line of logText.split(/\r?\n/u)) {
75
+ const event = parseAgentMessageRuntimeLogEvent(line);
76
+
77
+ if (event) {
78
+ events.push(event);
79
+ }
80
+ }
81
+
82
+ return events;
83
+ }
84
+
85
+ /**
86
+ * Parses one runtime log line into a structured event when it embeds JSON.
87
+ *
88
+ * @param line - One raw runtime log line.
89
+ * @returns Structured event, or `null` when the line carries no JSON object.
90
+ * @private internal helper of `parseAgentMessageRuntimeLogEvents`
91
+ */
92
+ function parseAgentMessageRuntimeLogEvent(line: string): AgentMessageRuntimeLogEvent | null {
93
+ const jsonStartIndex = line.indexOf('{');
94
+ if (jsonStartIndex === -1) {
95
+ return null;
96
+ }
97
+
98
+ try {
99
+ const parsedEvent = JSON.parse(line.slice(jsonStartIndex).trim()) as unknown;
100
+ if (typeof parsedEvent !== 'object' || parsedEvent === null || Array.isArray(parsedEvent)) {
101
+ return null;
102
+ }
103
+
104
+ return parsedEvent as AgentMessageRuntimeLogEvent;
105
+ } catch {
106
+ return null;
107
+ }
108
+ }
@@ -1,3 +1,6 @@
1
+ import type { AgentMessageRuntimeLogEvent } from './parseAgentMessageRuntimeLogEvents';
2
+ import { parseAgentMessageRuntimeLogEvents } from './parseAgentMessageRuntimeLogEvents';
3
+
1
4
  /**
2
5
  * Maximum length of one user-facing progress activity snippet.
3
6
  *
@@ -6,28 +9,69 @@
6
9
  const MAX_RUNTIME_ACTIVITY_LENGTH = 160;
7
10
 
8
11
  /**
9
- * Minimal shape of one coding-harness `stream-json` event relevant to progress extraction.
10
- *
11
- * Only the natural-language assistant narration is read; every other field is ignored so raw
12
- * tool payloads and technical envelopes never reach the user-facing progress card.
12
+ * One safe, concrete category of a command emitted by the Codex runtime.
13
13
  *
14
14
  * @private internal type of agent-message runtime activity
15
15
  */
16
- type RuntimeLogEvent = {
17
- readonly type?: string;
18
- readonly message?: {
19
- readonly content?: ReadonlyArray<{
20
- readonly type?: string;
21
- readonly text?: string;
22
- }>;
23
- };
24
- readonly item?: {
25
- readonly type?: string;
26
- readonly command?: string;
27
- readonly exit_code?: number | null;
28
- };
16
+ type CodexCommandActivity = {
17
+ readonly pattern: RegExp;
18
+ readonly running: string;
19
+ readonly completed: string;
29
20
  };
30
21
 
22
+ /**
23
+ * Ordered command categories that can be described truthfully without showing raw commands,
24
+ * arguments, file names, or other private runtime details.
25
+ *
26
+ * The local runner can execute on either Unix or Windows. Keeping the variants together here
27
+ * ensures that equivalent shell commands yield the same concise status in the chat.
28
+ *
29
+ * @private internal constant of agent-message runtime activity
30
+ */
31
+ const CODEX_COMMAND_ACTIVITIES: ReadonlyArray<CodexCommandActivity> = [
32
+ {
33
+ pattern: /(^|\s)(npm\s+(?:run\s+)?test|pnpm\s+(?:run\s+)?test|yarn\s+test|jest|vitest|pytest)\b/u,
34
+ running: 'Running tests.',
35
+ completed: 'Finished running tests.',
36
+ },
37
+ {
38
+ pattern: /(^|\s)(npm\s+run\s+build|pnpm\s+(?:run\s+)?build|yarn\s+build|next\s+build)\b/u,
39
+ running: 'Building the project.',
40
+ completed: 'Finished building the project.',
41
+ },
42
+ {
43
+ pattern: /(^|\s)(npm|pnpm|yarn)\s+(?:install|add)\b/u,
44
+ running: 'Installing dependencies.',
45
+ completed: 'Finished installing dependencies.',
46
+ },
47
+ {
48
+ pattern: /(^|\s)(npm\s+(?:run\s+)?lint|pnpm\s+(?:run\s+)?lint|yarn\s+lint|eslint|prettier)\b/u,
49
+ running: 'Checking the implementation.',
50
+ completed: 'Finished checking the implementation.',
51
+ },
52
+ {
53
+ pattern: /(^|\s)git\s+(?:status|diff|log|show)\b/u,
54
+ running: 'Reviewing changes.',
55
+ completed: 'Finished reviewing changes.',
56
+ },
57
+ {
58
+ pattern: /(^|\s)(apply_patch|set-content|add-content|out-file|new-item|copy-item|move-item|set-item)\b/u,
59
+ running: 'Updating relevant files.',
60
+ completed: 'Finished updating relevant files.',
61
+ },
62
+ {
63
+ pattern:
64
+ /(^|\s)(ls|find|rg|grep|sed|cat|head|tail|get-content|get-childitem|get-item|select-string|findstr|type)\b/u,
65
+ running: 'Inspecting relevant files.',
66
+ completed: 'Finished inspecting relevant files.',
67
+ },
68
+ {
69
+ pattern: /(^|\s)(curl|wget|invoke-webrequest)\b/u,
70
+ running: 'Looking up information.',
71
+ completed: 'Finished looking up information.',
72
+ },
73
+ ];
74
+
31
75
  /**
32
76
  * Resolves the latest user-friendly activity snippet from a coding-harness runtime log.
33
77
  *
@@ -35,9 +79,9 @@ type RuntimeLogEvent = {
35
79
  * Claude Code `--output-format stream-json`) into a live runtime log file next to the queued
36
80
  * message. This helper extracts the most recent natural-language assistant narration so the
37
81
  * durable chat can show what the agent is doing right now instead of a generic thinking
38
- * placeholder. Only plain assistant text is surfaced; raw tool payloads, JSON envelopes and
39
- * other technical details are intentionally ignored, and harnesses that do not stream
40
- * structured text simply resolve to `null` so the caller keeps its existing behavior.
82
+ * placeholder. Only concrete, safe activity is surfaced; raw tool payloads, JSON envelopes,
83
+ * and private reasoning are intentionally ignored. When no concrete activity is known, this
84
+ * resolves to `null` so the caller keeps the browser's rotating generic thinking state.
41
85
  *
42
86
  * @param logText - Raw runtime log content.
43
87
  * @returns Latest human-readable activity snippet, or `null` when none can be resolved.
@@ -50,12 +94,7 @@ export function resolveAgentMessageRuntimeActivity(logText: string | null | unde
50
94
 
51
95
  let latestActivity: string | null = null;
52
96
 
53
- for (const line of logText.split(/\r?\n/u)) {
54
- const event = parseRuntimeLogEvent(line);
55
- if (!event) {
56
- continue;
57
- }
58
-
97
+ for (const event of parseAgentMessageRuntimeLogEvents(logText)) {
59
98
  const activity = resolveRuntimeLogEventActivity(event);
60
99
  if (activity) {
61
100
  latestActivity = activity;
@@ -65,35 +104,12 @@ export function resolveAgentMessageRuntimeActivity(logText: string | null | unde
65
104
  return latestActivity === null ? null : truncateRuntimeActivity(latestActivity);
66
105
  }
67
106
 
68
- /**
69
- * Parses one runtime log line into a structured event when it embeds JSON.
70
- *
71
- * @private internal helper of `resolveAgentMessageRuntimeActivity`
72
- */
73
- function parseRuntimeLogEvent(line: string): RuntimeLogEvent | null {
74
- const jsonStartIndex = line.indexOf('{');
75
- if (jsonStartIndex === -1) {
76
- return null;
77
- }
78
-
79
- try {
80
- const parsed = JSON.parse(line.slice(jsonStartIndex).trim()) as unknown;
81
- if (typeof parsed !== 'object' || parsed === null || Array.isArray(parsed)) {
82
- return null;
83
- }
84
-
85
- return parsed as RuntimeLogEvent;
86
- } catch {
87
- return null;
88
- }
89
- }
90
-
91
107
  /**
92
108
  * Resolves the natural-language assistant narration from one complete assistant event.
93
109
  *
94
110
  * @private internal helper of `resolveAgentMessageRuntimeActivity`
95
111
  */
96
- function resolveRuntimeLogEventActivity(event: RuntimeLogEvent): string | null {
112
+ function resolveRuntimeLogEventActivity(event: AgentMessageRuntimeLogEvent): string | null {
97
113
  const codexActivity = resolveCodexRuntimeLogEventActivity(event);
98
114
  if (codexActivity) {
99
115
  return codexActivity;
@@ -118,10 +134,13 @@ function resolveRuntimeLogEventActivity(event: RuntimeLogEvent): string | null {
118
134
  *
119
135
  * Codex reasoning and raw command text deliberately remain private. The event type tells us
120
136
  * enough to report a useful action without exposing the internal trace or a command payload.
137
+ * Reasoning events are intentionally not a progress update: while they are the only signal,
138
+ * the chat retains its configured generic thinking rotation. Once a concrete action arrives,
139
+ * it becomes the latest user-facing status instead.
121
140
  *
122
141
  * @private internal helper of `resolveAgentMessageRuntimeActivity`
123
142
  */
124
- function resolveCodexRuntimeLogEventActivity(event: RuntimeLogEvent): string | null {
143
+ function resolveCodexRuntimeLogEventActivity(event: AgentMessageRuntimeLogEvent): string | null {
125
144
  if (!event.item || !isCodexItemEvent(event.type)) {
126
145
  return null;
127
146
  }
@@ -130,7 +149,7 @@ function resolveCodexRuntimeLogEventActivity(event: RuntimeLogEvent): string | n
130
149
 
131
150
  switch (event.item.type) {
132
151
  case 'reasoning':
133
- return isCompleted ? 'Considered the request.' : 'Considering the request.';
152
+ return null;
134
153
  case 'command_execution':
135
154
  return resolveCodexCommandActivity(event.item.command, isCompleted, event.item.exit_code);
136
155
  case 'file_change':
@@ -164,12 +183,16 @@ function resolveCodexCommandActivity(
164
183
  command: string | undefined,
165
184
  isCompleted: boolean,
166
185
  exitCode: number | null | undefined,
167
- ): string {
186
+ ): string | null {
168
187
  if (isCompleted && exitCode !== undefined && exitCode !== null && exitCode !== 0) {
169
188
  return 'A command needs attention.';
170
189
  }
171
190
 
172
191
  const activity = resolveCodexCommandActivityLabel(command);
192
+ if (!activity) {
193
+ return null;
194
+ }
195
+
173
196
  return isCompleted ? activity.completed : activity.running;
174
197
  }
175
198
 
@@ -178,30 +201,10 @@ function resolveCodexCommandActivity(
178
201
  *
179
202
  * @private internal helper of `resolveAgentMessageRuntimeActivity`
180
203
  */
181
- function resolveCodexCommandActivityLabel(command: string | undefined): { running: string; completed: string } {
204
+ function resolveCodexCommandActivityLabel(command: string | undefined): CodexCommandActivity | null {
182
205
  const normalizedCommand = command?.toLowerCase() || '';
183
206
 
184
- if (/(^|\s)(npm\s+(?:run\s+)?test|pnpm\s+(?:run\s+)?test|yarn\s+test|jest|vitest|pytest)\b/u.test(normalizedCommand)) {
185
- return { running: 'Running tests.', completed: 'Finished running tests.' };
186
- }
187
-
188
- if (/(^|\s)(npm\s+run\s+build|pnpm\s+(?:run\s+)?build|yarn\s+build|next\s+build)\b/u.test(normalizedCommand)) {
189
- return { running: 'Building the project.', completed: 'Finished building the project.' };
190
- }
191
-
192
- if (/(^|\s)(npm|pnpm|yarn)\s+(?:install|add)\b/u.test(normalizedCommand)) {
193
- return { running: 'Installing dependencies.', completed: 'Finished installing dependencies.' };
194
- }
195
-
196
- if (/(^|\s)git\s+(?:status|diff|log|show)\b/u.test(normalizedCommand)) {
197
- return { running: 'Reviewing changes.', completed: 'Finished reviewing changes.' };
198
- }
199
-
200
- if (/(^|\s)(ls|find|rg|grep|sed|cat|head|tail)\b/u.test(normalizedCommand)) {
201
- return { running: 'Inspecting relevant files.', completed: 'Finished inspecting relevant files.' };
202
- }
203
-
204
- return { running: 'Running a task.', completed: 'Finished a task.' };
207
+ return CODEX_COMMAND_ACTIVITIES.find((activity) => activity.pattern.test(normalizedCommand)) ?? null;
205
208
  }
206
209
 
207
210
  /**