@elizaos/ui 2.0.0-alpha.43 → 2.0.0-alpha.430

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 (5649) hide show
  1. package/apps/app-companion/src/character-catalog.d.ts +10 -0
  2. package/apps/app-companion/src/character-catalog.d.ts.map +1 -0
  3. package/apps/app-companion/src/character-catalog.js +32 -0
  4. package/apps/app-companion/src/components/avatar/MathEnvironment.d.ts +38 -0
  5. package/apps/app-companion/src/components/avatar/MathEnvironment.d.ts.map +1 -0
  6. package/apps/app-companion/src/components/avatar/MathEnvironment.js +295 -0
  7. package/apps/app-companion/src/components/avatar/SceneOverlayManager.d.ts +36 -0
  8. package/apps/app-companion/src/components/avatar/SceneOverlayManager.d.ts.map +1 -0
  9. package/apps/app-companion/src/components/avatar/SceneOverlayManager.js +305 -0
  10. package/apps/app-companion/src/components/avatar/VrmAnimationLoader.d.ts +30 -0
  11. package/apps/app-companion/src/components/avatar/VrmAnimationLoader.d.ts.map +1 -0
  12. package/apps/app-companion/src/components/avatar/VrmAnimationLoader.js +99 -0
  13. package/apps/app-companion/src/components/avatar/VrmBlinkController.d.ts +37 -0
  14. package/apps/app-companion/src/components/avatar/VrmBlinkController.d.ts.map +1 -0
  15. package/apps/app-companion/src/components/avatar/VrmBlinkController.js +98 -0
  16. package/apps/app-companion/src/components/avatar/VrmCameraManager.d.ts +57 -0
  17. package/apps/app-companion/src/components/avatar/VrmCameraManager.d.ts.map +1 -0
  18. package/apps/app-companion/src/components/avatar/VrmCameraManager.js +256 -0
  19. package/apps/app-companion/src/components/avatar/VrmEngine.d.ts +283 -0
  20. package/apps/app-companion/src/components/avatar/VrmEngine.d.ts.map +1 -0
  21. package/apps/app-companion/src/components/avatar/VrmEngine.js +2003 -0
  22. package/apps/app-companion/src/components/avatar/VrmFootShadow.d.ts +18 -0
  23. package/apps/app-companion/src/components/avatar/VrmFootShadow.d.ts.map +1 -0
  24. package/apps/app-companion/src/components/avatar/VrmFootShadow.js +83 -0
  25. package/apps/app-companion/src/components/avatar/VrmTeleportEffect.d.ts +49 -0
  26. package/apps/app-companion/src/components/avatar/VrmTeleportEffect.d.ts.map +1 -0
  27. package/apps/app-companion/src/components/avatar/VrmTeleportEffect.js +390 -0
  28. package/apps/app-companion/src/components/avatar/VrmViewer.d.ts +64 -0
  29. package/apps/app-companion/src/components/avatar/VrmViewer.d.ts.map +1 -0
  30. package/apps/app-companion/src/components/avatar/VrmViewer.js +437 -0
  31. package/apps/app-companion/src/components/avatar/mixamoVRMRigMap.d.ts +3 -0
  32. package/apps/app-companion/src/components/avatar/mixamoVRMRigMap.d.ts.map +1 -0
  33. package/apps/app-companion/src/components/avatar/mixamoVRMRigMap.js +56 -0
  34. package/apps/app-companion/src/components/avatar/retargetMixamoFbxToVrm.d.ts +9 -0
  35. package/apps/app-companion/src/components/avatar/retargetMixamoFbxToVrm.d.ts.map +1 -0
  36. package/apps/app-companion/src/components/avatar/retargetMixamoFbxToVrm.js +127 -0
  37. package/apps/app-companion/src/components/avatar/retargetMixamoGltfToVrm.d.ts +11 -0
  38. package/apps/app-companion/src/components/avatar/retargetMixamoGltfToVrm.d.ts.map +1 -0
  39. package/apps/app-companion/src/components/avatar/retargetMixamoGltfToVrm.js +97 -0
  40. package/apps/app-companion/src/components/avatar/scene-overlay-renderer.d.ts +37 -0
  41. package/apps/app-companion/src/components/avatar/scene-overlay-renderer.d.ts.map +1 -0
  42. package/apps/app-companion/src/components/avatar/scene-overlay-renderer.js +337 -0
  43. package/apps/app-companion/src/components/avatar/scene-theme-tokens.d.ts +26 -0
  44. package/apps/app-companion/src/components/avatar/scene-theme-tokens.d.ts.map +1 -0
  45. package/apps/app-companion/src/components/avatar/scene-theme-tokens.js +48 -0
  46. package/apps/app-companion/src/components/avatar/vector-browser-three.d.ts +9 -0
  47. package/apps/app-companion/src/components/avatar/vector-browser-three.d.ts.map +1 -0
  48. package/apps/app-companion/src/components/avatar/vector-browser-three.js +21 -0
  49. package/apps/app-companion/src/components/avatar/vector-browser-utils.d.ts +52 -0
  50. package/apps/app-companion/src/components/avatar/vector-browser-utils.d.ts.map +1 -0
  51. package/apps/app-companion/src/components/avatar/vector-browser-utils.js +245 -0
  52. package/apps/app-companion/src/components/avatar/vrm-desktop-energy.d.ts +40 -0
  53. package/apps/app-companion/src/components/avatar/vrm-desktop-energy.d.ts.map +1 -0
  54. package/apps/app-companion/src/components/avatar/vrm-desktop-energy.js +74 -0
  55. package/apps/app-companion/src/components/chat/ChatAvatar.d.ts +3 -0
  56. package/apps/app-companion/src/components/chat/ChatAvatar.d.ts.map +1 -0
  57. package/apps/app-companion/src/components/chat/ChatAvatar.js +80 -0
  58. package/apps/app-companion/src/components/companion/CompanionAppView.d.ts +9 -0
  59. package/apps/app-companion/src/components/companion/CompanionAppView.d.ts.map +1 -0
  60. package/apps/app-companion/src/components/companion/CompanionAppView.js +117 -0
  61. package/apps/app-companion/src/components/companion/CompanionHeader.d.ts +25 -0
  62. package/apps/app-companion/src/components/companion/CompanionHeader.d.ts.map +1 -0
  63. package/apps/app-companion/src/components/companion/CompanionHeader.js +61 -0
  64. package/apps/app-companion/src/components/companion/CompanionSceneHost.d.ts +15 -0
  65. package/apps/app-companion/src/components/companion/CompanionSceneHost.d.ts.map +1 -0
  66. package/apps/app-companion/src/components/companion/CompanionSceneHost.js +476 -0
  67. package/apps/app-companion/src/components/companion/CompanionShell.d.ts +8 -0
  68. package/apps/app-companion/src/components/companion/CompanionShell.d.ts.map +1 -0
  69. package/apps/app-companion/src/components/companion/CompanionShell.js +9 -0
  70. package/apps/app-companion/src/components/companion/CompanionView.d.ts +7 -0
  71. package/apps/app-companion/src/components/companion/CompanionView.d.ts.map +1 -0
  72. package/apps/app-companion/src/components/companion/CompanionView.js +122 -0
  73. package/apps/app-companion/src/components/companion/EmotePicker.d.ts +2 -0
  74. package/apps/app-companion/src/components/companion/EmotePicker.d.ts.map +1 -0
  75. package/apps/app-companion/src/components/companion/EmotePicker.js +351 -0
  76. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.d.ts +2 -0
  77. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.d.ts.map +1 -0
  78. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.js +113 -0
  79. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.d.ts +9 -0
  80. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.d.ts.map +1 -0
  81. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.js +16 -0
  82. package/apps/app-companion/src/components/companion/VrmStage.d.ts +27 -0
  83. package/apps/app-companion/src/components/companion/VrmStage.d.ts.map +1 -0
  84. package/apps/app-companion/src/components/companion/VrmStage.js +179 -0
  85. package/apps/app-companion/src/components/companion/companion-app.d.ts +6 -0
  86. package/apps/app-companion/src/components/companion/companion-app.d.ts.map +1 -0
  87. package/apps/app-companion/src/components/companion/companion-app.js +15 -0
  88. package/apps/app-companion/src/components/companion/companion-scene-status-context.d.ts +7 -0
  89. package/apps/app-companion/src/components/companion/companion-scene-status-context.d.ts.map +1 -0
  90. package/apps/app-companion/src/components/companion/companion-scene-status-context.js +8 -0
  91. package/apps/app-companion/src/components/companion/companion-shell-styles.d.ts +38 -0
  92. package/apps/app-companion/src/components/companion/companion-shell-styles.d.ts.map +1 -0
  93. package/apps/app-companion/src/components/companion/companion-shell-styles.js +237 -0
  94. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.d.ts +19 -0
  95. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.d.ts.map +1 -0
  96. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.js +31 -0
  97. package/apps/app-companion/src/components/companion/scene-overlay-bridge.d.ts +6 -0
  98. package/apps/app-companion/src/components/companion/scene-overlay-bridge.d.ts.map +1 -0
  99. package/apps/app-companion/src/components/companion/scene-overlay-bridge.js +83 -0
  100. package/apps/app-companion/src/components/companion/shared-companion-scene-context.d.ts +3 -0
  101. package/apps/app-companion/src/components/companion/shared-companion-scene-context.d.ts.map +1 -0
  102. package/apps/app-companion/src/components/companion/shared-companion-scene-context.js +13 -0
  103. package/apps/app-companion/src/components/companion/walletUtils.d.ts +91 -0
  104. package/apps/app-companion/src/components/companion/walletUtils.d.ts.map +1 -0
  105. package/apps/app-companion/src/components/companion/walletUtils.js +152 -0
  106. package/apps/app-companion/src/emotes/catalog.d.ts +31 -0
  107. package/apps/app-companion/src/emotes/catalog.d.ts.map +1 -0
  108. package/apps/app-companion/src/emotes/catalog.js +402 -0
  109. package/apps/app-companion/src/emotes/index.d.ts +2 -0
  110. package/apps/app-companion/src/emotes/index.d.ts.map +1 -0
  111. package/apps/app-companion/src/emotes/index.js +1 -0
  112. package/apps/app-companion/src/index.d.ts +38 -0
  113. package/apps/app-companion/src/index.d.ts.map +1 -0
  114. package/apps/app-companion/src/index.js +37 -0
  115. package/apps/app-companion/src/vrm-assets.d.ts +10 -0
  116. package/apps/app-companion/src/vrm-assets.d.ts.map +1 -0
  117. package/apps/app-companion/src/vrm-assets.js +70 -0
  118. package/apps/app-elizamaker/src/drop-routes.d.ts +22 -0
  119. package/apps/app-elizamaker/src/drop-routes.d.ts.map +1 -0
  120. package/apps/app-elizamaker/src/drop-routes.js +155 -0
  121. package/apps/app-elizamaker/src/drop-service-registry.d.ts +4 -0
  122. package/apps/app-elizamaker/src/drop-service-registry.d.ts.map +1 -0
  123. package/apps/app-elizamaker/src/drop-service-registry.js +7 -0
  124. package/apps/app-elizamaker/src/drop-service.d.ts +26 -0
  125. package/apps/app-elizamaker/src/drop-service.d.ts.map +1 -0
  126. package/apps/app-elizamaker/src/drop-service.js +134 -0
  127. package/apps/app-elizamaker/src/index.d.ts +10 -0
  128. package/apps/app-elizamaker/src/index.d.ts.map +1 -0
  129. package/apps/app-elizamaker/src/index.js +7 -0
  130. package/apps/app-elizamaker/src/merkle-tree.d.ts +90 -0
  131. package/apps/app-elizamaker/src/merkle-tree.d.ts.map +1 -0
  132. package/apps/app-elizamaker/src/merkle-tree.js +174 -0
  133. package/apps/app-elizamaker/src/og-tracker.d.ts +28 -0
  134. package/apps/app-elizamaker/src/og-tracker.d.ts.map +1 -0
  135. package/apps/app-elizamaker/src/og-tracker.js +60 -0
  136. package/apps/app-elizamaker/src/plugin.d.ts +4 -0
  137. package/apps/app-elizamaker/src/plugin.d.ts.map +1 -0
  138. package/apps/app-elizamaker/src/plugin.js +80 -0
  139. package/apps/app-elizamaker/src/twitter-verify.d.ts +25 -0
  140. package/apps/app-elizamaker/src/twitter-verify.d.ts.map +1 -0
  141. package/apps/app-elizamaker/src/twitter-verify.js +167 -0
  142. package/apps/app-lifeops/src/actions/website-blocker.d.ts +8 -0
  143. package/apps/app-lifeops/src/actions/website-blocker.d.ts.map +1 -0
  144. package/apps/app-lifeops/src/actions/website-blocker.js +830 -0
  145. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.d.ts +28 -0
  146. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.d.ts.map +1 -0
  147. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.js +62 -0
  148. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.d.ts +52 -0
  149. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.d.ts.map +1 -0
  150. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.js +129 -0
  151. package/apps/app-lifeops/src/activity-profile/profile-metadata.d.ts +10 -0
  152. package/apps/app-lifeops/src/activity-profile/profile-metadata.d.ts.map +1 -0
  153. package/apps/app-lifeops/src/activity-profile/profile-metadata.js +25 -0
  154. package/apps/app-lifeops/src/activity-profile/redactor.d.ts +18 -0
  155. package/apps/app-lifeops/src/activity-profile/redactor.d.ts.map +1 -0
  156. package/apps/app-lifeops/src/activity-profile/redactor.js +39 -0
  157. package/apps/app-lifeops/src/activity-profile/system-inactivity-apps.d.ts +8 -0
  158. package/apps/app-lifeops/src/activity-profile/system-inactivity-apps.d.ts.map +1 -0
  159. package/apps/app-lifeops/src/activity-profile/system-inactivity-apps.js +75 -0
  160. package/apps/app-lifeops/src/activity-profile/types.d.ts +89 -0
  161. package/apps/app-lifeops/src/activity-profile/types.d.ts.map +1 -0
  162. package/apps/app-lifeops/src/activity-profile/types.js +29 -0
  163. package/apps/app-lifeops/src/api/client-lifeops.d.ts +444 -0
  164. package/apps/app-lifeops/src/api/client-lifeops.d.ts.map +1 -0
  165. package/apps/app-lifeops/src/api/client-lifeops.js +951 -0
  166. package/apps/app-lifeops/src/components/AppBlockerSettingsCard.d.ts +3 -0
  167. package/apps/app-lifeops/src/components/AppBlockerSettingsCard.d.ts.map +1 -0
  168. package/apps/app-lifeops/src/components/AppBlockerSettingsCard.js +189 -0
  169. package/apps/app-lifeops/src/components/BrowserBridgeSetupPanel.d.ts +2 -0
  170. package/apps/app-lifeops/src/components/BrowserBridgeSetupPanel.d.ts.map +1 -0
  171. package/apps/app-lifeops/src/components/BrowserBridgeSetupPanel.js +1065 -0
  172. package/apps/app-lifeops/src/components/BrowserBridgeStatusChip.d.ts +7 -0
  173. package/apps/app-lifeops/src/components/BrowserBridgeStatusChip.d.ts.map +1 -0
  174. package/apps/app-lifeops/src/components/BrowserBridgeStatusChip.js +71 -0
  175. package/apps/app-lifeops/src/components/DataSourcesStrip.d.ts +14 -0
  176. package/apps/app-lifeops/src/components/DataSourcesStrip.d.ts.map +1 -0
  177. package/apps/app-lifeops/src/components/DataSourcesStrip.js +36 -0
  178. package/apps/app-lifeops/src/components/EventEditorDrawer.d.ts +23 -0
  179. package/apps/app-lifeops/src/components/EventEditorDrawer.d.ts.map +1 -0
  180. package/apps/app-lifeops/src/components/EventEditorDrawer.js +514 -0
  181. package/apps/app-lifeops/src/components/LifeOpsActivitySignalsEffect.d.ts +2 -0
  182. package/apps/app-lifeops/src/components/LifeOpsActivitySignalsEffect.d.ts.map +1 -0
  183. package/apps/app-lifeops/src/components/LifeOpsActivitySignalsEffect.js +10 -0
  184. package/apps/app-lifeops/src/components/LifeOpsCalendarSection.d.ts +15 -0
  185. package/apps/app-lifeops/src/components/LifeOpsCalendarSection.d.ts.map +1 -0
  186. package/apps/app-lifeops/src/components/LifeOpsCalendarSection.js +515 -0
  187. package/apps/app-lifeops/src/components/LifeOpsChatAdapter.d.ts +34 -0
  188. package/apps/app-lifeops/src/components/LifeOpsChatAdapter.d.ts.map +1 -0
  189. package/apps/app-lifeops/src/components/LifeOpsChatAdapter.js +175 -0
  190. package/apps/app-lifeops/src/components/LifeOpsFeatureTogglesSection.d.ts +2 -0
  191. package/apps/app-lifeops/src/components/LifeOpsFeatureTogglesSection.d.ts.map +1 -0
  192. package/apps/app-lifeops/src/components/LifeOpsFeatureTogglesSection.js +99 -0
  193. package/apps/app-lifeops/src/components/LifeOpsHabitVisuals.d.ts +37 -0
  194. package/apps/app-lifeops/src/components/LifeOpsHabitVisuals.d.ts.map +1 -0
  195. package/apps/app-lifeops/src/components/LifeOpsHabitVisuals.js +88 -0
  196. package/apps/app-lifeops/src/components/LifeOpsInboxSection.d.ts +13 -0
  197. package/apps/app-lifeops/src/components/LifeOpsInboxSection.d.ts.map +1 -0
  198. package/apps/app-lifeops/src/components/LifeOpsInboxSection.js +490 -0
  199. package/apps/app-lifeops/src/components/LifeOpsLinkBankButton.d.ts +12 -0
  200. package/apps/app-lifeops/src/components/LifeOpsLinkBankButton.d.ts.map +1 -0
  201. package/apps/app-lifeops/src/components/LifeOpsLinkBankButton.js +92 -0
  202. package/apps/app-lifeops/src/components/LifeOpsLinkPaypalButton.d.ts +12 -0
  203. package/apps/app-lifeops/src/components/LifeOpsLinkPaypalButton.d.ts.map +1 -0
  204. package/apps/app-lifeops/src/components/LifeOpsLinkPaypalButton.js +160 -0
  205. package/apps/app-lifeops/src/components/LifeOpsMoneySection.d.ts +3 -0
  206. package/apps/app-lifeops/src/components/LifeOpsMoneySection.d.ts.map +1 -0
  207. package/apps/app-lifeops/src/components/LifeOpsMoneySection.js +373 -0
  208. package/apps/app-lifeops/src/components/LifeOpsNavRail.d.ts +9 -0
  209. package/apps/app-lifeops/src/components/LifeOpsNavRail.d.ts.map +1 -0
  210. package/apps/app-lifeops/src/components/LifeOpsNavRail.js +93 -0
  211. package/apps/app-lifeops/src/components/LifeOpsOperationalPanels.d.ts +4 -0
  212. package/apps/app-lifeops/src/components/LifeOpsOperationalPanels.d.ts.map +1 -0
  213. package/apps/app-lifeops/src/components/LifeOpsOperationalPanels.js +274 -0
  214. package/apps/app-lifeops/src/components/LifeOpsOverviewSection.d.ts +7 -0
  215. package/apps/app-lifeops/src/components/LifeOpsOverviewSection.d.ts.map +1 -0
  216. package/apps/app-lifeops/src/components/LifeOpsOverviewSection.js +657 -0
  217. package/apps/app-lifeops/src/components/LifeOpsPageSections.d.ts +42 -0
  218. package/apps/app-lifeops/src/components/LifeOpsPageSections.d.ts.map +1 -0
  219. package/apps/app-lifeops/src/components/LifeOpsPageSections.js +166 -0
  220. package/apps/app-lifeops/src/components/LifeOpsPageView.d.ts +2 -0
  221. package/apps/app-lifeops/src/components/LifeOpsPageView.d.ts.map +1 -0
  222. package/apps/app-lifeops/src/components/LifeOpsPageView.js +566 -0
  223. package/apps/app-lifeops/src/components/LifeOpsRemindersSection.d.ts +2 -0
  224. package/apps/app-lifeops/src/components/LifeOpsRemindersSection.d.ts.map +1 -0
  225. package/apps/app-lifeops/src/components/LifeOpsRemindersSection.js +749 -0
  226. package/apps/app-lifeops/src/components/LifeOpsResizableSidebar.d.ts +27 -0
  227. package/apps/app-lifeops/src/components/LifeOpsResizableSidebar.d.ts.map +1 -0
  228. package/apps/app-lifeops/src/components/LifeOpsResizableSidebar.js +106 -0
  229. package/apps/app-lifeops/src/components/LifeOpsScreenTimeSection.d.ts +2 -0
  230. package/apps/app-lifeops/src/components/LifeOpsScreenTimeSection.d.ts.map +1 -0
  231. package/apps/app-lifeops/src/components/LifeOpsScreenTimeSection.js +373 -0
  232. package/apps/app-lifeops/src/components/LifeOpsSectionContent.d.ts +10 -0
  233. package/apps/app-lifeops/src/components/LifeOpsSectionContent.d.ts.map +1 -0
  234. package/apps/app-lifeops/src/components/LifeOpsSectionContent.js +30 -0
  235. package/apps/app-lifeops/src/components/LifeOpsSelectionContext.d.ts +21 -0
  236. package/apps/app-lifeops/src/components/LifeOpsSelectionContext.d.ts.map +1 -0
  237. package/apps/app-lifeops/src/components/LifeOpsSelectionContext.js +30 -0
  238. package/apps/app-lifeops/src/components/LifeOpsSettingsSection.d.ts +20 -0
  239. package/apps/app-lifeops/src/components/LifeOpsSettingsSection.d.ts.map +1 -0
  240. package/apps/app-lifeops/src/components/LifeOpsSettingsSection.js +597 -0
  241. package/apps/app-lifeops/src/components/LifeOpsSetupGate.d.ts +13 -0
  242. package/apps/app-lifeops/src/components/LifeOpsSetupGate.d.ts.map +1 -0
  243. package/apps/app-lifeops/src/components/LifeOpsSetupGate.js +134 -0
  244. package/apps/app-lifeops/src/components/LifeOpsSleepSection.d.ts +10 -0
  245. package/apps/app-lifeops/src/components/LifeOpsSleepSection.d.ts.map +1 -0
  246. package/apps/app-lifeops/src/components/LifeOpsSleepSection.js +425 -0
  247. package/apps/app-lifeops/src/components/LifeOpsWorkspaceShell.d.ts +11 -0
  248. package/apps/app-lifeops/src/components/LifeOpsWorkspaceShell.d.ts.map +1 -0
  249. package/apps/app-lifeops/src/components/LifeOpsWorkspaceShell.js +49 -0
  250. package/apps/app-lifeops/src/components/LifeOpsWorkspaceView.d.ts +2 -0
  251. package/apps/app-lifeops/src/components/LifeOpsWorkspaceView.d.ts.map +1 -0
  252. package/apps/app-lifeops/src/components/LifeOpsWorkspaceView.js +1041 -0
  253. package/apps/app-lifeops/src/components/MessagingConnectorCards.d.ts +7 -0
  254. package/apps/app-lifeops/src/components/MessagingConnectorCards.d.ts.map +1 -0
  255. package/apps/app-lifeops/src/components/MessagingConnectorCards.js +643 -0
  256. package/apps/app-lifeops/src/components/MissingSourceCard.d.ts +9 -0
  257. package/apps/app-lifeops/src/components/MissingSourceCard.d.ts.map +1 -0
  258. package/apps/app-lifeops/src/components/MissingSourceCard.js +5 -0
  259. package/apps/app-lifeops/src/components/MobileSignalsSetupCard.d.ts +2 -0
  260. package/apps/app-lifeops/src/components/MobileSignalsSetupCard.d.ts.map +1 -0
  261. package/apps/app-lifeops/src/components/MobileSignalsSetupCard.js +163 -0
  262. package/apps/app-lifeops/src/components/SleepInspectionPanel.d.ts +8 -0
  263. package/apps/app-lifeops/src/components/SleepInspectionPanel.d.ts.map +1 -0
  264. package/apps/app-lifeops/src/components/SleepInspectionPanel.js +59 -0
  265. package/apps/app-lifeops/src/components/WebsiteBlockerSettingsCard.d.ts +3 -0
  266. package/apps/app-lifeops/src/components/WebsiteBlockerSettingsCard.d.ts.map +1 -0
  267. package/apps/app-lifeops/src/components/WebsiteBlockerSettingsCard.js +75 -0
  268. package/apps/app-lifeops/src/components/WhatsAppQrOverlay.d.ts +8 -0
  269. package/apps/app-lifeops/src/components/WhatsAppQrOverlay.d.ts.map +1 -0
  270. package/apps/app-lifeops/src/components/WhatsAppQrOverlay.js +48 -0
  271. package/apps/app-lifeops/src/components/lifeops-labels.d.ts +2 -0
  272. package/apps/app-lifeops/src/components/lifeops-labels.d.ts.map +1 -0
  273. package/apps/app-lifeops/src/components/lifeops-labels.js +5 -0
  274. package/apps/app-lifeops/src/contracts/index.d.ts +3 -0
  275. package/apps/app-lifeops/src/contracts/index.d.ts.map +1 -0
  276. package/apps/app-lifeops/src/contracts/index.js +2 -0
  277. package/apps/app-lifeops/src/events/index.d.ts +34 -0
  278. package/apps/app-lifeops/src/events/index.d.ts.map +1 -0
  279. package/apps/app-lifeops/src/events/index.js +23 -0
  280. package/apps/app-lifeops/src/hooks/useCalendarWeek.d.ts +28 -0
  281. package/apps/app-lifeops/src/hooks/useCalendarWeek.d.ts.map +1 -0
  282. package/apps/app-lifeops/src/hooks/useCalendarWeek.js +93 -0
  283. package/apps/app-lifeops/src/hooks/useDiscordConnector.d.ts +14 -0
  284. package/apps/app-lifeops/src/hooks/useDiscordConnector.d.ts.map +1 -0
  285. package/apps/app-lifeops/src/hooks/useDiscordConnector.js +126 -0
  286. package/apps/app-lifeops/src/hooks/useGoogleLifeOpsConnector.d.ts +29 -0
  287. package/apps/app-lifeops/src/hooks/useGoogleLifeOpsConnector.d.ts.map +1 -0
  288. package/apps/app-lifeops/src/hooks/useGoogleLifeOpsConnector.js +481 -0
  289. package/apps/app-lifeops/src/hooks/useIMessageConnector.d.ts +10 -0
  290. package/apps/app-lifeops/src/hooks/useIMessageConnector.d.ts.map +1 -0
  291. package/apps/app-lifeops/src/hooks/useIMessageConnector.js +50 -0
  292. package/apps/app-lifeops/src/hooks/useInbox.d.ts +34 -0
  293. package/apps/app-lifeops/src/hooks/useInbox.d.ts.map +1 -0
  294. package/apps/app-lifeops/src/hooks/useInbox.js +98 -0
  295. package/apps/app-lifeops/src/hooks/useLifeOpsActivitySignals.d.ts +2 -0
  296. package/apps/app-lifeops/src/hooks/useLifeOpsActivitySignals.d.ts.map +1 -0
  297. package/apps/app-lifeops/src/hooks/useLifeOpsActivitySignals.js +383 -0
  298. package/apps/app-lifeops/src/hooks/useLifeOpsAppState.d.ts +9 -0
  299. package/apps/app-lifeops/src/hooks/useLifeOpsAppState.d.ts.map +1 -0
  300. package/apps/app-lifeops/src/hooks/useLifeOpsAppState.js +83 -0
  301. package/apps/app-lifeops/src/hooks/useLifeOpsCapabilitiesStatus.d.ts +8 -0
  302. package/apps/app-lifeops/src/hooks/useLifeOpsCapabilitiesStatus.d.ts.map +1 -0
  303. package/apps/app-lifeops/src/hooks/useLifeOpsCapabilitiesStatus.js +60 -0
  304. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleInspection.d.ts +18 -0
  305. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleInspection.d.ts.map +1 -0
  306. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleInspection.js +66 -0
  307. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleState.d.ts +14 -0
  308. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleState.d.ts.map +1 -0
  309. package/apps/app-lifeops/src/hooks/useLifeOpsScheduleState.js +79 -0
  310. package/apps/app-lifeops/src/hooks/useLifeOpsSection.d.ts +18 -0
  311. package/apps/app-lifeops/src/hooks/useLifeOpsSection.d.ts.map +1 -0
  312. package/apps/app-lifeops/src/hooks/useLifeOpsSection.js +78 -0
  313. package/apps/app-lifeops/src/hooks/useLifeOpsXConnector.d.ts +14 -0
  314. package/apps/app-lifeops/src/hooks/useLifeOpsXConnector.d.ts.map +1 -0
  315. package/apps/app-lifeops/src/hooks/useLifeOpsXConnector.js +160 -0
  316. package/apps/app-lifeops/src/hooks/useSignalConnector.d.ts +16 -0
  317. package/apps/app-lifeops/src/hooks/useSignalConnector.d.ts.map +1 -0
  318. package/apps/app-lifeops/src/hooks/useSignalConnector.js +198 -0
  319. package/apps/app-lifeops/src/hooks/useTelegramConnector.d.ts +21 -0
  320. package/apps/app-lifeops/src/hooks/useTelegramConnector.d.ts.map +1 -0
  321. package/apps/app-lifeops/src/hooks/useTelegramConnector.js +177 -0
  322. package/apps/app-lifeops/src/hooks/useWhatsAppConnector.d.ts +8 -0
  323. package/apps/app-lifeops/src/hooks/useWhatsAppConnector.d.ts.map +1 -0
  324. package/apps/app-lifeops/src/hooks/useWhatsAppConnector.js +58 -0
  325. package/apps/app-lifeops/src/hooks/useWhatsAppPairing.d.ts +12 -0
  326. package/apps/app-lifeops/src/hooks/useWhatsAppPairing.d.ts.map +1 -0
  327. package/apps/app-lifeops/src/hooks/useWhatsAppPairing.js +152 -0
  328. package/apps/app-lifeops/src/inbox/channel-deep-links.d.ts +9 -0
  329. package/apps/app-lifeops/src/inbox/channel-deep-links.d.ts.map +1 -0
  330. package/apps/app-lifeops/src/inbox/channel-deep-links.js +138 -0
  331. package/apps/app-lifeops/src/inbox/message-fetcher.d.ts +47 -0
  332. package/apps/app-lifeops/src/inbox/message-fetcher.d.ts.map +1 -0
  333. package/apps/app-lifeops/src/inbox/message-fetcher.js +342 -0
  334. package/apps/app-lifeops/src/inbox/types.d.ts +118 -0
  335. package/apps/app-lifeops/src/inbox/types.d.ts.map +1 -0
  336. package/apps/app-lifeops/src/inbox/types.js +1 -0
  337. package/apps/app-lifeops/src/lifeops/app-state.d.ts +22 -0
  338. package/apps/app-lifeops/src/lifeops/app-state.d.ts.map +1 -0
  339. package/apps/app-lifeops/src/lifeops/app-state.js +72 -0
  340. package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts +58 -0
  341. package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts.map +1 -0
  342. package/apps/app-lifeops/src/lifeops/apple-reminders.js +325 -0
  343. package/apps/app-lifeops/src/lifeops/awake-probability.d.ts +11 -0
  344. package/apps/app-lifeops/src/lifeops/awake-probability.d.ts.map +1 -0
  345. package/apps/app-lifeops/src/lifeops/awake-probability.js +169 -0
  346. package/apps/app-lifeops/src/lifeops/bill-extraction.d.ts +47 -0
  347. package/apps/app-lifeops/src/lifeops/bill-extraction.d.ts.map +1 -0
  348. package/apps/app-lifeops/src/lifeops/bill-extraction.js +355 -0
  349. package/apps/app-lifeops/src/lifeops/browser-extension-store.d.ts +61 -0
  350. package/apps/app-lifeops/src/lifeops/browser-extension-store.d.ts.map +1 -0
  351. package/apps/app-lifeops/src/lifeops/browser-extension-store.js +181 -0
  352. package/apps/app-lifeops/src/lifeops/browser-session-lifecycle.d.ts +57 -0
  353. package/apps/app-lifeops/src/lifeops/browser-session-lifecycle.d.ts.map +1 -0
  354. package/apps/app-lifeops/src/lifeops/browser-session-lifecycle.js +267 -0
  355. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.d.ts +61 -0
  356. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.d.ts.map +1 -0
  357. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.js +975 -0
  358. package/apps/app-lifeops/src/lifeops/checkin/sleep-cycle-dispatch.d.ts +18 -0
  359. package/apps/app-lifeops/src/lifeops/checkin/sleep-cycle-dispatch.d.ts.map +1 -0
  360. package/apps/app-lifeops/src/lifeops/checkin/sleep-cycle-dispatch.js +26 -0
  361. package/apps/app-lifeops/src/lifeops/checkin/types.d.ts +78 -0
  362. package/apps/app-lifeops/src/lifeops/checkin/types.d.ts.map +1 -0
  363. package/apps/app-lifeops/src/lifeops/checkin/types.js +7 -0
  364. package/apps/app-lifeops/src/lifeops/circadian-rules.d.ts +45 -0
  365. package/apps/app-lifeops/src/lifeops/circadian-rules.d.ts.map +1 -0
  366. package/apps/app-lifeops/src/lifeops/circadian-rules.js +291 -0
  367. package/apps/app-lifeops/src/lifeops/continuity-probe.d.ts +31 -0
  368. package/apps/app-lifeops/src/lifeops/continuity-probe.d.ts.map +1 -0
  369. package/apps/app-lifeops/src/lifeops/continuity-probe.js +187 -0
  370. package/apps/app-lifeops/src/lifeops/defaults.d.ts +24 -0
  371. package/apps/app-lifeops/src/lifeops/defaults.d.ts.map +1 -0
  372. package/apps/app-lifeops/src/lifeops/defaults.js +212 -0
  373. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.d.ts +108 -0
  374. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.d.ts.map +1 -0
  375. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.js +500 -0
  376. package/apps/app-lifeops/src/lifeops/discord-desktop-cdp.d.ts +17 -0
  377. package/apps/app-lifeops/src/lifeops/discord-desktop-cdp.d.ts.map +1 -0
  378. package/apps/app-lifeops/src/lifeops/discord-desktop-cdp.js +305 -0
  379. package/apps/app-lifeops/src/lifeops/email-classifier.d.ts +57 -0
  380. package/apps/app-lifeops/src/lifeops/email-classifier.d.ts.map +1 -0
  381. package/apps/app-lifeops/src/lifeops/email-classifier.js +337 -0
  382. package/apps/app-lifeops/src/lifeops/email-unsubscribe-gmail.d.ts +64 -0
  383. package/apps/app-lifeops/src/lifeops/email-unsubscribe-gmail.d.ts.map +1 -0
  384. package/apps/app-lifeops/src/lifeops/email-unsubscribe-gmail.js +268 -0
  385. package/apps/app-lifeops/src/lifeops/email-unsubscribe-types.d.ts +67 -0
  386. package/apps/app-lifeops/src/lifeops/email-unsubscribe-types.d.ts.map +1 -0
  387. package/apps/app-lifeops/src/lifeops/email-unsubscribe-types.js +1 -0
  388. package/apps/app-lifeops/src/lifeops/enforcement-windows.d.ts +34 -0
  389. package/apps/app-lifeops/src/lifeops/enforcement-windows.d.ts.map +1 -0
  390. package/apps/app-lifeops/src/lifeops/enforcement-windows.js +103 -0
  391. package/apps/app-lifeops/src/lifeops/engine.d.ts +8 -0
  392. package/apps/app-lifeops/src/lifeops/engine.d.ts.map +1 -0
  393. package/apps/app-lifeops/src/lifeops/engine.js +393 -0
  394. package/apps/app-lifeops/src/lifeops/fda-probe.d.ts +23 -0
  395. package/apps/app-lifeops/src/lifeops/fda-probe.d.ts.map +1 -0
  396. package/apps/app-lifeops/src/lifeops/fda-probe.js +70 -0
  397. package/apps/app-lifeops/src/lifeops/feature-flags.d.ts +20 -0
  398. package/apps/app-lifeops/src/lifeops/feature-flags.d.ts.map +1 -0
  399. package/apps/app-lifeops/src/lifeops/feature-flags.js +241 -0
  400. package/apps/app-lifeops/src/lifeops/feature-flags.types.d.ts +144 -0
  401. package/apps/app-lifeops/src/lifeops/feature-flags.types.d.ts.map +1 -0
  402. package/apps/app-lifeops/src/lifeops/feature-flags.types.js +178 -0
  403. package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts +54 -0
  404. package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts.map +1 -0
  405. package/apps/app-lifeops/src/lifeops/goal-grounding.js +151 -0
  406. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts +12 -0
  407. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts.map +1 -0
  408. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.js +160 -0
  409. package/apps/app-lifeops/src/lifeops/google-api-error.d.ts +7 -0
  410. package/apps/app-lifeops/src/lifeops/google-api-error.d.ts.map +1 -0
  411. package/apps/app-lifeops/src/lifeops/google-api-error.js +35 -0
  412. package/apps/app-lifeops/src/lifeops/google-calendar.d.ts +67 -0
  413. package/apps/app-lifeops/src/lifeops/google-calendar.d.ts.map +1 -0
  414. package/apps/app-lifeops/src/lifeops/google-calendar.js +306 -0
  415. package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts +32 -0
  416. package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts.map +1 -0
  417. package/apps/app-lifeops/src/lifeops/google-connector-gateway.js +88 -0
  418. package/apps/app-lifeops/src/lifeops/google-drive.d.ts +103 -0
  419. package/apps/app-lifeops/src/lifeops/google-drive.d.ts.map +1 -0
  420. package/apps/app-lifeops/src/lifeops/google-drive.js +265 -0
  421. package/apps/app-lifeops/src/lifeops/google-fetch.d.ts +16 -0
  422. package/apps/app-lifeops/src/lifeops/google-fetch.d.ts.map +1 -0
  423. package/apps/app-lifeops/src/lifeops/google-fetch.js +124 -0
  424. package/apps/app-lifeops/src/lifeops/google-gmail.d.ts +76 -0
  425. package/apps/app-lifeops/src/lifeops/google-gmail.d.ts.map +1 -0
  426. package/apps/app-lifeops/src/lifeops/google-gmail.js +675 -0
  427. package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts +172 -0
  428. package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts.map +1 -0
  429. package/apps/app-lifeops/src/lifeops/google-managed-client.js +351 -0
  430. package/apps/app-lifeops/src/lifeops/google-oauth.d.ts +65 -0
  431. package/apps/app-lifeops/src/lifeops/google-oauth.d.ts.map +1 -0
  432. package/apps/app-lifeops/src/lifeops/google-oauth.js +614 -0
  433. package/apps/app-lifeops/src/lifeops/google-scopes.d.ts +15 -0
  434. package/apps/app-lifeops/src/lifeops/google-scopes.d.ts.map +1 -0
  435. package/apps/app-lifeops/src/lifeops/google-scopes.js +107 -0
  436. package/apps/app-lifeops/src/lifeops/health-bridge.d.ts +57 -0
  437. package/apps/app-lifeops/src/lifeops/health-bridge.d.ts.map +1 -0
  438. package/apps/app-lifeops/src/lifeops/health-bridge.js +513 -0
  439. package/apps/app-lifeops/src/lifeops/imessage-bridge.d.ts +98 -0
  440. package/apps/app-lifeops/src/lifeops/imessage-bridge.d.ts.map +1 -0
  441. package/apps/app-lifeops/src/lifeops/imessage-bridge.js +551 -0
  442. package/apps/app-lifeops/src/lifeops/imessage-outbound-probe.d.ts +7 -0
  443. package/apps/app-lifeops/src/lifeops/imessage-outbound-probe.d.ts.map +1 -0
  444. package/apps/app-lifeops/src/lifeops/imessage-outbound-probe.js +67 -0
  445. package/apps/app-lifeops/src/lifeops/owner-profile.d.ts +61 -0
  446. package/apps/app-lifeops/src/lifeops/owner-profile.d.ts.map +1 -0
  447. package/apps/app-lifeops/src/lifeops/owner-profile.js +426 -0
  448. package/apps/app-lifeops/src/lifeops/payment-csv-import.d.ts +23 -0
  449. package/apps/app-lifeops/src/lifeops/payment-csv-import.d.ts.map +1 -0
  450. package/apps/app-lifeops/src/lifeops/payment-csv-import.js +248 -0
  451. package/apps/app-lifeops/src/lifeops/payment-recurrence.d.ts +14 -0
  452. package/apps/app-lifeops/src/lifeops/payment-recurrence.d.ts.map +1 -0
  453. package/apps/app-lifeops/src/lifeops/payment-recurrence.js +217 -0
  454. package/apps/app-lifeops/src/lifeops/payment-types.d.ts +157 -0
  455. package/apps/app-lifeops/src/lifeops/payment-types.d.ts.map +1 -0
  456. package/apps/app-lifeops/src/lifeops/payment-types.js +1 -0
  457. package/apps/app-lifeops/src/lifeops/paypal-managed-client.d.ts +110 -0
  458. package/apps/app-lifeops/src/lifeops/paypal-managed-client.d.ts.map +1 -0
  459. package/apps/app-lifeops/src/lifeops/paypal-managed-client.js +148 -0
  460. package/apps/app-lifeops/src/lifeops/plaid-managed-client.d.ts +86 -0
  461. package/apps/app-lifeops/src/lifeops/plaid-managed-client.d.ts.map +1 -0
  462. package/apps/app-lifeops/src/lifeops/plaid-managed-client.js +134 -0
  463. package/apps/app-lifeops/src/lifeops/priority-scoring.d.ts +51 -0
  464. package/apps/app-lifeops/src/lifeops/priority-scoring.d.ts.map +1 -0
  465. package/apps/app-lifeops/src/lifeops/priority-scoring.js +220 -0
  466. package/apps/app-lifeops/src/lifeops/redact-sensitive-data.d.ts +32 -0
  467. package/apps/app-lifeops/src/lifeops/redact-sensitive-data.d.ts.map +1 -0
  468. package/apps/app-lifeops/src/lifeops/redact-sensitive-data.js +123 -0
  469. package/apps/app-lifeops/src/lifeops/relative-schedule-resolver.d.ts +13 -0
  470. package/apps/app-lifeops/src/lifeops/relative-schedule-resolver.d.ts.map +1 -0
  471. package/apps/app-lifeops/src/lifeops/relative-schedule-resolver.js +111 -0
  472. package/apps/app-lifeops/src/lifeops/relative-time.d.ts +15 -0
  473. package/apps/app-lifeops/src/lifeops/relative-time.d.ts.map +1 -0
  474. package/apps/app-lifeops/src/lifeops/relative-time.js +233 -0
  475. package/apps/app-lifeops/src/lifeops/repository.d.ts +470 -0
  476. package/apps/app-lifeops/src/lifeops/repository.d.ts.map +1 -0
  477. package/apps/app-lifeops/src/lifeops/repository.js +4586 -0
  478. package/apps/app-lifeops/src/lifeops/schedule-insight.d.ts +133 -0
  479. package/apps/app-lifeops/src/lifeops/schedule-insight.d.ts.map +1 -0
  480. package/apps/app-lifeops/src/lifeops/schedule-insight.js +770 -0
  481. package/apps/app-lifeops/src/lifeops/schedule-state.d.ts +39 -0
  482. package/apps/app-lifeops/src/lifeops/schedule-state.d.ts.map +1 -0
  483. package/apps/app-lifeops/src/lifeops/schedule-state.js +651 -0
  484. package/apps/app-lifeops/src/lifeops/schedule-sync-client.d.ts +35 -0
  485. package/apps/app-lifeops/src/lifeops/schedule-sync-client.d.ts.map +1 -0
  486. package/apps/app-lifeops/src/lifeops/schedule-sync-client.js +184 -0
  487. package/apps/app-lifeops/src/lifeops/schedule-sync-contracts.d.ts +89 -0
  488. package/apps/app-lifeops/src/lifeops/schedule-sync-contracts.d.ts.map +1 -0
  489. package/apps/app-lifeops/src/lifeops/schedule-sync-contracts.js +13 -0
  490. package/apps/app-lifeops/src/lifeops/scheduler-task.d.ts +11 -0
  491. package/apps/app-lifeops/src/lifeops/scheduler-task.d.ts.map +1 -0
  492. package/apps/app-lifeops/src/lifeops/scheduler-task.js +165 -0
  493. package/apps/app-lifeops/src/lifeops/schema.d.ts +25986 -0
  494. package/apps/app-lifeops/src/lifeops/schema.d.ts.map +1 -0
  495. package/apps/app-lifeops/src/lifeops/schema.js +1061 -0
  496. package/apps/app-lifeops/src/lifeops/seed-routines.d.ts +20 -0
  497. package/apps/app-lifeops/src/lifeops/seed-routines.d.ts.map +1 -0
  498. package/apps/app-lifeops/src/lifeops/seed-routines.js +128 -0
  499. package/apps/app-lifeops/src/lifeops/service-constants.d.ts +53 -0
  500. package/apps/app-lifeops/src/lifeops/service-constants.d.ts.map +1 -0
  501. package/apps/app-lifeops/src/lifeops/service-constants.js +112 -0
  502. package/apps/app-lifeops/src/lifeops/service-helpers-browser.d.ts +41 -0
  503. package/apps/app-lifeops/src/lifeops/service-helpers-browser.d.ts.map +1 -0
  504. package/apps/app-lifeops/src/lifeops/service-helpers-browser.js +296 -0
  505. package/apps/app-lifeops/src/lifeops/service-helpers-misc.d.ts +68 -0
  506. package/apps/app-lifeops/src/lifeops/service-helpers-misc.d.ts.map +1 -0
  507. package/apps/app-lifeops/src/lifeops/service-helpers-misc.js +493 -0
  508. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.d.ts +23 -0
  509. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.d.ts.map +1 -0
  510. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.js +240 -0
  511. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.d.ts +29 -0
  512. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.d.ts.map +1 -0
  513. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.js +202 -0
  514. package/apps/app-lifeops/src/lifeops/service-mixin-browser.d.ts +26 -0
  515. package/apps/app-lifeops/src/lifeops/service-mixin-browser.d.ts.map +1 -0
  516. package/apps/app-lifeops/src/lifeops/service-mixin-browser.js +686 -0
  517. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.d.ts +44 -0
  518. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.d.ts.map +1 -0
  519. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.js +744 -0
  520. package/apps/app-lifeops/src/lifeops/service-mixin-core.d.ts +55 -0
  521. package/apps/app-lifeops/src/lifeops/service-mixin-core.d.ts.map +1 -0
  522. package/apps/app-lifeops/src/lifeops/service-mixin-core.js +440 -0
  523. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.d.ts +21 -0
  524. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.d.ts.map +1 -0
  525. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.js +374 -0
  526. package/apps/app-lifeops/src/lifeops/service-mixin-discord.d.ts +2 -0
  527. package/apps/app-lifeops/src/lifeops/service-mixin-discord.d.ts.map +1 -0
  528. package/apps/app-lifeops/src/lifeops/service-mixin-discord.js +910 -0
  529. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.d.ts +2 -0
  530. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.d.ts.map +1 -0
  531. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.js +262 -0
  532. package/apps/app-lifeops/src/lifeops/service-mixin-drive.d.ts +12 -0
  533. package/apps/app-lifeops/src/lifeops/service-mixin-drive.d.ts.map +1 -0
  534. package/apps/app-lifeops/src/lifeops/service-mixin-drive.js +230 -0
  535. package/apps/app-lifeops/src/lifeops/service-mixin-email-unsubscribe.d.ts +2 -0
  536. package/apps/app-lifeops/src/lifeops/service-mixin-email-unsubscribe.d.ts.map +1 -0
  537. package/apps/app-lifeops/src/lifeops/service-mixin-email-unsubscribe.js +365 -0
  538. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.d.ts +42 -0
  539. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.d.ts.map +1 -0
  540. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.js +1515 -0
  541. package/apps/app-lifeops/src/lifeops/service-mixin-goals.d.ts +22 -0
  542. package/apps/app-lifeops/src/lifeops/service-mixin-goals.d.ts.map +1 -0
  543. package/apps/app-lifeops/src/lifeops/service-mixin-goals.js +897 -0
  544. package/apps/app-lifeops/src/lifeops/service-mixin-google.d.ts +10 -0
  545. package/apps/app-lifeops/src/lifeops/service-mixin-google.d.ts.map +1 -0
  546. package/apps/app-lifeops/src/lifeops/service-mixin-google.js +853 -0
  547. package/apps/app-lifeops/src/lifeops/service-mixin-health.d.ts +2 -0
  548. package/apps/app-lifeops/src/lifeops/service-mixin-health.d.ts.map +1 -0
  549. package/apps/app-lifeops/src/lifeops/service-mixin-health.js +55 -0
  550. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.d.ts +3 -0
  551. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.d.ts.map +1 -0
  552. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.js +335 -0
  553. package/apps/app-lifeops/src/lifeops/service-mixin-inbox.d.ts +46 -0
  554. package/apps/app-lifeops/src/lifeops/service-mixin-inbox.d.ts.map +1 -0
  555. package/apps/app-lifeops/src/lifeops/service-mixin-inbox.js +599 -0
  556. package/apps/app-lifeops/src/lifeops/service-mixin-payments.d.ts +3 -0
  557. package/apps/app-lifeops/src/lifeops/service-mixin-payments.d.ts.map +1 -0
  558. package/apps/app-lifeops/src/lifeops/service-mixin-payments.js +980 -0
  559. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.d.ts +2 -0
  560. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.d.ts.map +1 -0
  561. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.js +109 -0
  562. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.d.ts +78 -0
  563. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.d.ts.map +1 -0
  564. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.js +3006 -0
  565. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.d.ts +2 -0
  566. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.d.ts.map +1 -0
  567. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.js +340 -0
  568. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.d.ts +2 -0
  569. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.d.ts.map +1 -0
  570. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.js +511 -0
  571. package/apps/app-lifeops/src/lifeops/service-mixin-signal.d.ts +2 -0
  572. package/apps/app-lifeops/src/lifeops/service-mixin-signal.d.ts.map +1 -0
  573. package/apps/app-lifeops/src/lifeops/service-mixin-signal.js +281 -0
  574. package/apps/app-lifeops/src/lifeops/service-mixin-sleep.d.ts +2 -0
  575. package/apps/app-lifeops/src/lifeops/service-mixin-sleep.d.ts.map +1 -0
  576. package/apps/app-lifeops/src/lifeops/service-mixin-sleep.js +144 -0
  577. package/apps/app-lifeops/src/lifeops/service-mixin-status.d.ts +26 -0
  578. package/apps/app-lifeops/src/lifeops/service-mixin-status.d.ts.map +1 -0
  579. package/apps/app-lifeops/src/lifeops/service-mixin-status.js +364 -0
  580. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.d.ts +2 -0
  581. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.d.ts.map +1 -0
  582. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.js +826 -0
  583. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.d.ts +2 -0
  584. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.d.ts.map +1 -0
  585. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.js +271 -0
  586. package/apps/app-lifeops/src/lifeops/service-mixin-travel.d.ts +33 -0
  587. package/apps/app-lifeops/src/lifeops/service-mixin-travel.d.ts.map +1 -0
  588. package/apps/app-lifeops/src/lifeops/service-mixin-travel.js +274 -0
  589. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.d.ts +2 -0
  590. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.d.ts.map +1 -0
  591. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.js +79 -0
  592. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.d.ts +15 -0
  593. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.d.ts.map +1 -0
  594. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.js +772 -0
  595. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.d.ts +2 -0
  596. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.d.ts.map +1 -0
  597. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.js +350 -0
  598. package/apps/app-lifeops/src/lifeops/service-mixin-x.d.ts +65 -0
  599. package/apps/app-lifeops/src/lifeops/service-mixin-x.d.ts.map +1 -0
  600. package/apps/app-lifeops/src/lifeops/service-mixin-x.js +569 -0
  601. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.d.ts +43 -0
  602. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.d.ts.map +1 -0
  603. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.js +305 -0
  604. package/apps/app-lifeops/src/lifeops/service-normalize-connector.d.ts +19 -0
  605. package/apps/app-lifeops/src/lifeops/service-normalize-connector.d.ts.map +1 -0
  606. package/apps/app-lifeops/src/lifeops/service-normalize-connector.js +601 -0
  607. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.d.ts +93 -0
  608. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.d.ts.map +1 -0
  609. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.js +975 -0
  610. package/apps/app-lifeops/src/lifeops/service-normalize-health.d.ts +3 -0
  611. package/apps/app-lifeops/src/lifeops/service-normalize-health.d.ts.map +1 -0
  612. package/apps/app-lifeops/src/lifeops/service-normalize-health.js +55 -0
  613. package/apps/app-lifeops/src/lifeops/service-normalize-task.d.ts +9 -0
  614. package/apps/app-lifeops/src/lifeops/service-normalize-task.d.ts.map +1 -0
  615. package/apps/app-lifeops/src/lifeops/service-normalize-task.js +352 -0
  616. package/apps/app-lifeops/src/lifeops/service-normalize.d.ts +27 -0
  617. package/apps/app-lifeops/src/lifeops/service-normalize.d.ts.map +1 -0
  618. package/apps/app-lifeops/src/lifeops/service-normalize.js +193 -0
  619. package/apps/app-lifeops/src/lifeops/service-types.d.ts +59 -0
  620. package/apps/app-lifeops/src/lifeops/service-types.d.ts.map +1 -0
  621. package/apps/app-lifeops/src/lifeops/service-types.js +8 -0
  622. package/apps/app-lifeops/src/lifeops/service.d.ts +1416 -0
  623. package/apps/app-lifeops/src/lifeops/service.d.ts.map +1 -0
  624. package/apps/app-lifeops/src/lifeops/service.js +64 -0
  625. package/apps/app-lifeops/src/lifeops/signal-auth.d.ts +29 -0
  626. package/apps/app-lifeops/src/lifeops/signal-auth.d.ts.map +1 -0
  627. package/apps/app-lifeops/src/lifeops/signal-auth.js +304 -0
  628. package/apps/app-lifeops/src/lifeops/signal-local-client.d.ts +61 -0
  629. package/apps/app-lifeops/src/lifeops/signal-local-client.d.ts.map +1 -0
  630. package/apps/app-lifeops/src/lifeops/signal-local-client.js +120 -0
  631. package/apps/app-lifeops/src/lifeops/signal-runtime-config.d.ts +13 -0
  632. package/apps/app-lifeops/src/lifeops/signal-runtime-config.d.ts.map +1 -0
  633. package/apps/app-lifeops/src/lifeops/signal-runtime-config.js +42 -0
  634. package/apps/app-lifeops/src/lifeops/sleep-cycle.d.ts +32 -0
  635. package/apps/app-lifeops/src/lifeops/sleep-cycle.d.ts.map +1 -0
  636. package/apps/app-lifeops/src/lifeops/sleep-cycle.js +438 -0
  637. package/apps/app-lifeops/src/lifeops/sleep-episode-store.d.ts +24 -0
  638. package/apps/app-lifeops/src/lifeops/sleep-episode-store.d.ts.map +1 -0
  639. package/apps/app-lifeops/src/lifeops/sleep-episode-store.js +50 -0
  640. package/apps/app-lifeops/src/lifeops/sleep-regularity.d.ts +19 -0
  641. package/apps/app-lifeops/src/lifeops/sleep-regularity.d.ts.map +1 -0
  642. package/apps/app-lifeops/src/lifeops/sleep-regularity.js +221 -0
  643. package/apps/app-lifeops/src/lifeops/sleep-wake-events.d.ts +48 -0
  644. package/apps/app-lifeops/src/lifeops/sleep-wake-events.d.ts.map +1 -0
  645. package/apps/app-lifeops/src/lifeops/sleep-wake-events.js +150 -0
  646. package/apps/app-lifeops/src/lifeops/social-taxonomy.d.ts +21 -0
  647. package/apps/app-lifeops/src/lifeops/social-taxonomy.d.ts.map +1 -0
  648. package/apps/app-lifeops/src/lifeops/social-taxonomy.js +221 -0
  649. package/apps/app-lifeops/src/lifeops/source-reliability.d.ts +38 -0
  650. package/apps/app-lifeops/src/lifeops/source-reliability.d.ts.map +1 -0
  651. package/apps/app-lifeops/src/lifeops/source-reliability.js +66 -0
  652. package/apps/app-lifeops/src/lifeops/sql.d.ts +26 -0
  653. package/apps/app-lifeops/src/lifeops/sql.d.ts.map +1 -0
  654. package/apps/app-lifeops/src/lifeops/sql.js +140 -0
  655. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.d.ts +79 -0
  656. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.d.ts.map +1 -0
  657. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.js +842 -0
  658. package/apps/app-lifeops/src/lifeops/subscriptions-types.d.ts +80 -0
  659. package/apps/app-lifeops/src/lifeops/subscriptions-types.d.ts.map +1 -0
  660. package/apps/app-lifeops/src/lifeops/subscriptions-types.js +1 -0
  661. package/apps/app-lifeops/src/lifeops/telegram-auth.d.ts +62 -0
  662. package/apps/app-lifeops/src/lifeops/telegram-auth.d.ts.map +1 -0
  663. package/apps/app-lifeops/src/lifeops/telegram-auth.js +538 -0
  664. package/apps/app-lifeops/src/lifeops/telegram-local-client.d.ts +118 -0
  665. package/apps/app-lifeops/src/lifeops/telegram-local-client.d.ts.map +1 -0
  666. package/apps/app-lifeops/src/lifeops/telegram-local-client.js +384 -0
  667. package/apps/app-lifeops/src/lifeops/telemetry-mapping.d.ts +14 -0
  668. package/apps/app-lifeops/src/lifeops/telemetry-mapping.d.ts.map +1 -0
  669. package/apps/app-lifeops/src/lifeops/telemetry-mapping.js +139 -0
  670. package/apps/app-lifeops/src/lifeops/telemetry-retention.d.ts +21 -0
  671. package/apps/app-lifeops/src/lifeops/telemetry-retention.d.ts.map +1 -0
  672. package/apps/app-lifeops/src/lifeops/telemetry-retention.js +19 -0
  673. package/apps/app-lifeops/src/lifeops/time-util.d.ts +10 -0
  674. package/apps/app-lifeops/src/lifeops/time-util.d.ts.map +1 -0
  675. package/apps/app-lifeops/src/lifeops/time-util.js +18 -0
  676. package/apps/app-lifeops/src/lifeops/time.d.ts +17 -0
  677. package/apps/app-lifeops/src/lifeops/time.d.ts.map +1 -0
  678. package/apps/app-lifeops/src/lifeops/time.js +132 -0
  679. package/apps/app-lifeops/src/lifeops/token-encryption.d.ts +49 -0
  680. package/apps/app-lifeops/src/lifeops/token-encryption.d.ts.map +1 -0
  681. package/apps/app-lifeops/src/lifeops/token-encryption.js +123 -0
  682. package/apps/app-lifeops/src/lifeops/travel-adapters/duffel.d.ts +181 -0
  683. package/apps/app-lifeops/src/lifeops/travel-adapters/duffel.d.ts.map +1 -0
  684. package/apps/app-lifeops/src/lifeops/travel-adapters/duffel.js +422 -0
  685. package/apps/app-lifeops/src/lifeops/travel-booking.types.d.ts +46 -0
  686. package/apps/app-lifeops/src/lifeops/travel-booking.types.d.ts.map +1 -0
  687. package/apps/app-lifeops/src/lifeops/travel-booking.types.js +1 -0
  688. package/apps/app-lifeops/src/lifeops/twilio.d.ts +34 -0
  689. package/apps/app-lifeops/src/lifeops/twilio.d.ts.map +1 -0
  690. package/apps/app-lifeops/src/lifeops/twilio.js +198 -0
  691. package/apps/app-lifeops/src/lifeops/whatsapp-client.d.ts +47 -0
  692. package/apps/app-lifeops/src/lifeops/whatsapp-client.d.ts.map +1 -0
  693. package/apps/app-lifeops/src/lifeops/whatsapp-client.js +200 -0
  694. package/apps/app-lifeops/src/lifeops/x-managed-client.d.ts +124 -0
  695. package/apps/app-lifeops/src/lifeops/x-managed-client.d.ts.map +1 -0
  696. package/apps/app-lifeops/src/lifeops/x-managed-client.js +238 -0
  697. package/apps/app-lifeops/src/lifeops/x-poster.d.ts +41 -0
  698. package/apps/app-lifeops/src/lifeops/x-poster.d.ts.map +1 -0
  699. package/apps/app-lifeops/src/lifeops/x-poster.js +332 -0
  700. package/apps/app-lifeops/src/lifeops/x-reader.d.ts +70 -0
  701. package/apps/app-lifeops/src/lifeops/x-reader.d.ts.map +1 -0
  702. package/apps/app-lifeops/src/lifeops/x-reader.js +262 -0
  703. package/apps/app-lifeops/src/lifeops/x402-payment-handler.d.ts +85 -0
  704. package/apps/app-lifeops/src/lifeops/x402-payment-handler.d.ts.map +1 -0
  705. package/apps/app-lifeops/src/lifeops/x402-payment-handler.js +142 -0
  706. package/apps/app-lifeops/src/lifeops-route.d.ts +74 -0
  707. package/apps/app-lifeops/src/lifeops-route.d.ts.map +1 -0
  708. package/apps/app-lifeops/src/lifeops-route.js +204 -0
  709. package/apps/app-lifeops/src/platform/lifeops-github.d.ts +15 -0
  710. package/apps/app-lifeops/src/platform/lifeops-github.d.ts.map +1 -0
  711. package/apps/app-lifeops/src/platform/lifeops-github.js +135 -0
  712. package/apps/app-lifeops/src/providers/website-blocker.d.ts +3 -0
  713. package/apps/app-lifeops/src/providers/website-blocker.d.ts.map +1 -0
  714. package/apps/app-lifeops/src/providers/website-blocker.js +116 -0
  715. package/apps/app-lifeops/src/public.d.ts +4 -0
  716. package/apps/app-lifeops/src/public.d.ts.map +1 -0
  717. package/apps/app-lifeops/src/public.js +3 -0
  718. package/apps/app-lifeops/src/routes/cloud-features-routes.d.ts +9 -0
  719. package/apps/app-lifeops/src/routes/cloud-features-routes.d.ts.map +1 -0
  720. package/apps/app-lifeops/src/routes/cloud-features-routes.js +171 -0
  721. package/apps/app-lifeops/src/routes/lifeops-routes.d.ts +20 -0
  722. package/apps/app-lifeops/src/routes/lifeops-routes.d.ts.map +1 -0
  723. package/apps/app-lifeops/src/routes/lifeops-routes.js +2176 -0
  724. package/apps/app-lifeops/src/routes/plugin.d.ts +3 -0
  725. package/apps/app-lifeops/src/routes/plugin.d.ts.map +1 -0
  726. package/apps/app-lifeops/src/routes/plugin.js +386 -0
  727. package/apps/app-lifeops/src/routes/sleep-routes.d.ts +3 -0
  728. package/apps/app-lifeops/src/routes/sleep-routes.d.ts.map +1 -0
  729. package/apps/app-lifeops/src/routes/sleep-routes.js +109 -0
  730. package/apps/app-lifeops/src/routes/travel-provider-relay-routes.d.ts +9 -0
  731. package/apps/app-lifeops/src/routes/travel-provider-relay-routes.d.ts.map +1 -0
  732. package/apps/app-lifeops/src/routes/travel-provider-relay-routes.js +144 -0
  733. package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts +7 -0
  734. package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts.map +1 -0
  735. package/apps/app-lifeops/src/routes/website-blocker-routes.js +169 -0
  736. package/apps/app-lifeops/src/types/app-blocker-settings-card.d.ts +2 -0
  737. package/apps/app-lifeops/src/types/app-blocker-settings-card.d.ts.map +1 -0
  738. package/apps/app-lifeops/src/types/app-blocker-settings-card.js +1 -0
  739. package/apps/app-lifeops/src/types/index.d.ts +3 -0
  740. package/apps/app-lifeops/src/types/index.d.ts.map +1 -0
  741. package/apps/app-lifeops/src/types/index.js +1 -0
  742. package/apps/app-lifeops/src/types/website-blocker-settings-card.d.ts +2 -0
  743. package/apps/app-lifeops/src/types/website-blocker-settings-card.d.ts.map +1 -0
  744. package/apps/app-lifeops/src/types/website-blocker-settings-card.js +1 -0
  745. package/apps/app-lifeops/src/ui.d.ts +11 -0
  746. package/apps/app-lifeops/src/ui.d.ts.map +1 -0
  747. package/apps/app-lifeops/src/ui.js +9 -0
  748. package/apps/app-lifeops/src/utils/lifeops-url.d.ts +5 -0
  749. package/apps/app-lifeops/src/utils/lifeops-url.d.ts.map +1 -0
  750. package/apps/app-lifeops/src/utils/lifeops-url.js +35 -0
  751. package/apps/app-lifeops/src/website-blocker/access.d.ts +8 -0
  752. package/apps/app-lifeops/src/website-blocker/access.d.ts.map +1 -0
  753. package/apps/app-lifeops/src/website-blocker/access.js +41 -0
  754. package/apps/app-lifeops/src/website-blocker/engine.d.ts +137 -0
  755. package/apps/app-lifeops/src/website-blocker/engine.d.ts.map +1 -0
  756. package/apps/app-lifeops/src/website-blocker/engine.js +1235 -0
  757. package/apps/app-lifeops/src/website-blocker/permissions.d.ts +9 -0
  758. package/apps/app-lifeops/src/website-blocker/permissions.d.ts.map +1 -0
  759. package/apps/app-lifeops/src/website-blocker/permissions.js +1 -0
  760. package/apps/app-lifeops/src/website-blocker/public.d.ts +13 -0
  761. package/apps/app-lifeops/src/website-blocker/public.d.ts.map +1 -0
  762. package/apps/app-lifeops/src/website-blocker/public.js +10 -0
  763. package/apps/app-lifeops/src/website-blocker/roles.d.ts +13 -0
  764. package/apps/app-lifeops/src/website-blocker/roles.d.ts.map +1 -0
  765. package/apps/app-lifeops/src/website-blocker/roles.js +20 -0
  766. package/apps/app-lifeops/src/website-blocker/service.d.ts +21 -0
  767. package/apps/app-lifeops/src/website-blocker/service.d.ts.map +1 -0
  768. package/apps/app-lifeops/src/website-blocker/service.js +268 -0
  769. package/apps/app-steward/src/ApprovalQueue.d.ts +18 -0
  770. package/apps/app-steward/src/ApprovalQueue.d.ts.map +1 -0
  771. package/apps/app-steward/src/ApprovalQueue.js +141 -0
  772. package/apps/app-steward/src/StewardLogo.d.ts +11 -0
  773. package/apps/app-steward/src/StewardLogo.d.ts.map +1 -0
  774. package/apps/app-steward/src/StewardLogo.js +4 -0
  775. package/apps/app-steward/src/StewardView.d.ts +6 -0
  776. package/apps/app-steward/src/StewardView.d.ts.map +1 -0
  777. package/apps/app-steward/src/StewardView.js +45 -0
  778. package/apps/app-steward/src/TransactionHistory.d.ts +22 -0
  779. package/apps/app-steward/src/TransactionHistory.d.ts.map +1 -0
  780. package/apps/app-steward/src/TransactionHistory.js +100 -0
  781. package/apps/app-steward/src/actions/check-balance.d.ts +17 -0
  782. package/apps/app-steward/src/actions/check-balance.d.ts.map +1 -0
  783. package/apps/app-steward/src/actions/check-balance.js +168 -0
  784. package/apps/app-steward/src/actions/execute-trade.d.ts +17 -0
  785. package/apps/app-steward/src/actions/execute-trade.d.ts.map +1 -0
  786. package/apps/app-steward/src/actions/execute-trade.js +307 -0
  787. package/apps/app-steward/src/actions/get-receive-address.d.ts +13 -0
  788. package/apps/app-steward/src/actions/get-receive-address.d.ts.map +1 -0
  789. package/apps/app-steward/src/actions/get-receive-address.js +127 -0
  790. package/apps/app-steward/src/actions/prepare-swap.d.ts +13 -0
  791. package/apps/app-steward/src/actions/prepare-swap.d.ts.map +1 -0
  792. package/apps/app-steward/src/actions/prepare-swap.js +303 -0
  793. package/apps/app-steward/src/actions/prepare-transfer.d.ts +14 -0
  794. package/apps/app-steward/src/actions/prepare-transfer.d.ts.map +1 -0
  795. package/apps/app-steward/src/actions/prepare-transfer.js +217 -0
  796. package/apps/app-steward/src/actions/transfer-token.d.ts +17 -0
  797. package/apps/app-steward/src/actions/transfer-token.d.ts.map +1 -0
  798. package/apps/app-steward/src/actions/transfer-token.js +479 -0
  799. package/apps/app-steward/src/actions/wallet-action-shared.d.ts +15 -0
  800. package/apps/app-steward/src/actions/wallet-action-shared.d.ts.map +1 -0
  801. package/apps/app-steward/src/actions/wallet-action-shared.js +24 -0
  802. package/apps/app-steward/src/api/bsc-trade.d.ts +36 -0
  803. package/apps/app-steward/src/api/bsc-trade.d.ts.map +1 -0
  804. package/apps/app-steward/src/api/bsc-trade.js +782 -0
  805. package/apps/app-steward/src/api/tx-service.d.ts +53 -0
  806. package/apps/app-steward/src/api/tx-service.d.ts.map +1 -0
  807. package/apps/app-steward/src/api/tx-service.js +217 -0
  808. package/apps/app-steward/src/api/wallet-bsc-routes.d.ts +63 -0
  809. package/apps/app-steward/src/api/wallet-bsc-routes.d.ts.map +1 -0
  810. package/apps/app-steward/src/api/wallet-bsc-routes.js +318 -0
  811. package/apps/app-steward/src/api/wallet-capability.d.ts +2 -0
  812. package/apps/app-steward/src/api/wallet-capability.d.ts.map +1 -0
  813. package/apps/app-steward/src/api/wallet-capability.js +1 -0
  814. package/apps/app-steward/src/api/wallet-dex-prices.d.ts +43 -0
  815. package/apps/app-steward/src/api/wallet-dex-prices.d.ts.map +1 -0
  816. package/apps/app-steward/src/api/wallet-dex-prices.js +149 -0
  817. package/apps/app-steward/src/api/wallet-evm-balance.d.ts +66 -0
  818. package/apps/app-steward/src/api/wallet-evm-balance.d.ts.map +1 -0
  819. package/apps/app-steward/src/api/wallet-evm-balance.js +666 -0
  820. package/apps/app-steward/src/api/wallet-routes.d.ts +28 -0
  821. package/apps/app-steward/src/api/wallet-routes.d.ts.map +1 -0
  822. package/apps/app-steward/src/api/wallet-routes.js +525 -0
  823. package/apps/app-steward/src/api/wallet-rpc.d.ts +67 -0
  824. package/apps/app-steward/src/api/wallet-rpc.d.ts.map +1 -0
  825. package/apps/app-steward/src/api/wallet-rpc.js +452 -0
  826. package/apps/app-steward/src/api/wallet-trading-profile.d.ts +31 -0
  827. package/apps/app-steward/src/api/wallet-trading-profile.d.ts.map +1 -0
  828. package/apps/app-steward/src/api/wallet-trading-profile.js +560 -0
  829. package/apps/app-steward/src/api/wallet.d.ts +60 -0
  830. package/apps/app-steward/src/api/wallet.d.ts.map +1 -0
  831. package/apps/app-steward/src/api/wallet.js +641 -0
  832. package/apps/app-steward/src/browser-workspace-wallet.d.ts +66 -0
  833. package/apps/app-steward/src/browser-workspace-wallet.d.ts.map +1 -0
  834. package/apps/app-steward/src/browser-workspace-wallet.js +129 -0
  835. package/apps/app-steward/src/chain-utils.d.ts +10 -0
  836. package/apps/app-steward/src/chain-utils.d.ts.map +1 -0
  837. package/apps/app-steward/src/chain-utils.js +83 -0
  838. package/apps/app-steward/src/index.d.ts +20 -0
  839. package/apps/app-steward/src/index.d.ts.map +1 -0
  840. package/apps/app-steward/src/index.js +19 -0
  841. package/apps/app-steward/src/plugin.d.ts +21 -0
  842. package/apps/app-steward/src/plugin.d.ts.map +1 -0
  843. package/apps/app-steward/src/plugin.js +325 -0
  844. package/apps/app-steward/src/routes/server-wallet-trade.d.ts +27 -0
  845. package/apps/app-steward/src/routes/server-wallet-trade.d.ts.map +1 -0
  846. package/apps/app-steward/src/routes/server-wallet-trade.js +56 -0
  847. package/apps/app-steward/src/routes/steward-bridge.d.ts +202 -0
  848. package/apps/app-steward/src/routes/steward-bridge.d.ts.map +1 -0
  849. package/apps/app-steward/src/routes/steward-bridge.js +858 -0
  850. package/apps/app-steward/src/routes/steward-compat-routes.d.ts +21 -0
  851. package/apps/app-steward/src/routes/steward-compat-routes.d.ts.map +1 -0
  852. package/apps/app-steward/src/routes/steward-compat-routes.js +372 -0
  853. package/apps/app-steward/src/routes/wallet-browser-compat-routes.d.ts +4 -0
  854. package/apps/app-steward/src/routes/wallet-browser-compat-routes.d.ts.map +1 -0
  855. package/apps/app-steward/src/routes/wallet-browser-compat-routes.js +300 -0
  856. package/apps/app-steward/src/routes/wallet-bsc-core-routes.d.ts +15 -0
  857. package/apps/app-steward/src/routes/wallet-bsc-core-routes.d.ts.map +1 -0
  858. package/apps/app-steward/src/routes/wallet-bsc-core-routes.js +42 -0
  859. package/apps/app-steward/src/routes/wallet-compat-routes.d.ts +13 -0
  860. package/apps/app-steward/src/routes/wallet-compat-routes.d.ts.map +1 -0
  861. package/apps/app-steward/src/routes/wallet-compat-routes.js +200 -0
  862. package/apps/app-steward/src/routes/wallet-core-routes.d.ts +16 -0
  863. package/apps/app-steward/src/routes/wallet-core-routes.d.ts.map +1 -0
  864. package/apps/app-steward/src/routes/wallet-core-routes.js +57 -0
  865. package/apps/app-steward/src/routes/wallet-export-guard.d.ts +44 -0
  866. package/apps/app-steward/src/routes/wallet-export-guard.d.ts.map +1 -0
  867. package/apps/app-steward/src/routes/wallet-export-guard.js +248 -0
  868. package/apps/app-steward/src/routes/wallet-trade-compat-routes.d.ts +11 -0
  869. package/apps/app-steward/src/routes/wallet-trade-compat-routes.d.ts.map +1 -0
  870. package/apps/app-steward/src/routes/wallet-trade-compat-routes.js +528 -0
  871. package/apps/app-steward/src/security/hydrate-wallet-keys-from-platform-store.d.ts +7 -0
  872. package/apps/app-steward/src/security/hydrate-wallet-keys-from-platform-store.d.ts.map +1 -0
  873. package/apps/app-steward/src/security/hydrate-wallet-keys-from-platform-store.js +40 -0
  874. package/apps/app-steward/src/security/wallet-os-store-actions.d.ts +14 -0
  875. package/apps/app-steward/src/security/wallet-os-store-actions.d.ts.map +1 -0
  876. package/apps/app-steward/src/security/wallet-os-store-actions.js +70 -0
  877. package/apps/app-steward/src/services/privy-wallets.d.ts +18 -0
  878. package/apps/app-steward/src/services/privy-wallets.d.ts.map +1 -0
  879. package/apps/app-steward/src/services/privy-wallets.js +225 -0
  880. package/apps/app-steward/src/services/steward-credentials.d.ts +37 -0
  881. package/apps/app-steward/src/services/steward-credentials.d.ts.map +1 -0
  882. package/apps/app-steward/src/services/steward-credentials.js +91 -0
  883. package/apps/app-steward/src/services/steward-evm-account.d.ts +67 -0
  884. package/apps/app-steward/src/services/steward-evm-account.d.ts.map +1 -0
  885. package/apps/app-steward/src/services/steward-evm-account.js +309 -0
  886. package/apps/app-steward/src/services/steward-evm-bridge.d.ts +35 -0
  887. package/apps/app-steward/src/services/steward-evm-bridge.d.ts.map +1 -0
  888. package/apps/app-steward/src/services/steward-evm-bridge.js +101 -0
  889. package/apps/app-steward/src/services/steward-sidecar/health-check.d.ts +9 -0
  890. package/apps/app-steward/src/services/steward-sidecar/health-check.d.ts.map +1 -0
  891. package/apps/app-steward/src/services/steward-sidecar/health-check.js +34 -0
  892. package/apps/app-steward/src/services/steward-sidecar/helpers.d.ts +21 -0
  893. package/apps/app-steward/src/services/steward-sidecar/helpers.d.ts.map +1 -0
  894. package/apps/app-steward/src/services/steward-sidecar/helpers.js +71 -0
  895. package/apps/app-steward/src/services/steward-sidecar/process-management.d.ts +9 -0
  896. package/apps/app-steward/src/services/steward-sidecar/process-management.d.ts.map +1 -0
  897. package/apps/app-steward/src/services/steward-sidecar/process-management.js +53 -0
  898. package/apps/app-steward/src/services/steward-sidecar/types.d.ts +60 -0
  899. package/apps/app-steward/src/services/steward-sidecar/types.d.ts.map +1 -0
  900. package/apps/app-steward/src/services/steward-sidecar/types.js +17 -0
  901. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.d.ts +9 -0
  902. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.d.ts.map +1 -0
  903. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.js +114 -0
  904. package/apps/app-steward/src/services/steward-sidecar.d.ts +69 -0
  905. package/apps/app-steward/src/services/steward-sidecar.d.ts.map +1 -0
  906. package/apps/app-steward/src/services/steward-sidecar.js +383 -0
  907. package/apps/app-steward/src/services/steward-wallet.d.ts +25 -0
  908. package/apps/app-steward/src/services/steward-wallet.d.ts.map +1 -0
  909. package/apps/app-steward/src/services/steward-wallet.js +332 -0
  910. package/apps/app-steward/src/types/bsc-trade.d.ts +181 -0
  911. package/apps/app-steward/src/types/bsc-trade.d.ts.map +1 -0
  912. package/apps/app-steward/src/types/bsc-trade.js +8 -0
  913. package/apps/app-steward/src/types/index.d.ts +3 -0
  914. package/apps/app-steward/src/types/index.d.ts.map +1 -0
  915. package/apps/app-steward/src/types/index.js +2 -0
  916. package/apps/app-steward/src/types/steward.d.ts +85 -0
  917. package/apps/app-steward/src/types/steward.d.ts.map +1 -0
  918. package/apps/app-steward/src/types/steward.js +9 -0
  919. package/apps/app-task-coordinator/src/AgentTabsSection.d.ts +16 -0
  920. package/apps/app-task-coordinator/src/AgentTabsSection.d.ts.map +1 -0
  921. package/apps/app-task-coordinator/src/AgentTabsSection.js +57 -0
  922. package/apps/app-task-coordinator/src/CodingAgentControlChip.d.ts +6 -0
  923. package/apps/app-task-coordinator/src/CodingAgentControlChip.d.ts.map +1 -0
  924. package/apps/app-task-coordinator/src/CodingAgentControlChip.js +26 -0
  925. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.d.ts +2 -0
  926. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.d.ts.map +1 -0
  927. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.js +343 -0
  928. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.d.ts +4 -0
  929. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.d.ts.map +1 -0
  930. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.js +417 -0
  931. package/apps/app-task-coordinator/src/GlobalPrefsSection.d.ts +10 -0
  932. package/apps/app-task-coordinator/src/GlobalPrefsSection.d.ts.map +1 -0
  933. package/apps/app-task-coordinator/src/GlobalPrefsSection.js +40 -0
  934. package/apps/app-task-coordinator/src/LlmProviderSection.d.ts +10 -0
  935. package/apps/app-task-coordinator/src/LlmProviderSection.d.ts.map +1 -0
  936. package/apps/app-task-coordinator/src/LlmProviderSection.js +47 -0
  937. package/apps/app-task-coordinator/src/ModelConfigSection.d.ts +16 -0
  938. package/apps/app-task-coordinator/src/ModelConfigSection.d.ts.map +1 -0
  939. package/apps/app-task-coordinator/src/ModelConfigSection.js +12 -0
  940. package/apps/app-task-coordinator/src/PtyConsoleBase.d.ts +15 -0
  941. package/apps/app-task-coordinator/src/PtyConsoleBase.d.ts.map +1 -0
  942. package/apps/app-task-coordinator/src/PtyConsoleBase.js +37 -0
  943. package/apps/app-task-coordinator/src/PtyConsoleDrawer.d.ts +16 -0
  944. package/apps/app-task-coordinator/src/PtyConsoleDrawer.d.ts.map +1 -0
  945. package/apps/app-task-coordinator/src/PtyConsoleDrawer.js +28 -0
  946. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.d.ts +9 -0
  947. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.d.ts.map +1 -0
  948. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.js +10 -0
  949. package/apps/app-task-coordinator/src/PtyTerminalPane.d.ts +10 -0
  950. package/apps/app-task-coordinator/src/PtyTerminalPane.d.ts.map +1 -0
  951. package/apps/app-task-coordinator/src/PtyTerminalPane.js +178 -0
  952. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.d.ts +23 -0
  953. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.d.ts.map +1 -0
  954. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.js +39 -0
  955. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.d.ts +29 -0
  956. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.d.ts.map +1 -0
  957. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.js +45 -0
  958. package/apps/app-task-coordinator/src/api/coordinator-types.d.ts +47 -0
  959. package/apps/app-task-coordinator/src/api/coordinator-types.d.ts.map +1 -0
  960. package/apps/app-task-coordinator/src/api/coordinator-types.js +1 -0
  961. package/apps/app-task-coordinator/src/api/coordinator-wiring.d.ts +46 -0
  962. package/apps/app-task-coordinator/src/api/coordinator-wiring.d.ts.map +1 -0
  963. package/apps/app-task-coordinator/src/api/coordinator-wiring.js +108 -0
  964. package/apps/app-task-coordinator/src/coding-agent-settings-shared.d.ts +38 -0
  965. package/apps/app-task-coordinator/src/coding-agent-settings-shared.d.ts.map +1 -0
  966. package/apps/app-task-coordinator/src/coding-agent-settings-shared.js +92 -0
  967. package/apps/app-task-coordinator/src/index.d.ts +17 -0
  968. package/apps/app-task-coordinator/src/index.d.ts.map +1 -0
  969. package/apps/app-task-coordinator/src/index.js +16 -0
  970. package/apps/app-task-coordinator/src/pty-status-dots.d.ts +2 -0
  971. package/apps/app-task-coordinator/src/pty-status-dots.d.ts.map +1 -0
  972. package/apps/app-task-coordinator/src/pty-status-dots.js +1 -0
  973. package/apps/app-task-coordinator/src/session-hydration.d.ts +2 -0
  974. package/apps/app-task-coordinator/src/session-hydration.d.ts.map +1 -0
  975. package/apps/app-task-coordinator/src/session-hydration.js +1 -0
  976. package/apps/app-training/src/backends/atropos.d.ts +31 -0
  977. package/apps/app-training/src/backends/atropos.d.ts.map +1 -0
  978. package/apps/app-training/src/backends/atropos.js +61 -0
  979. package/apps/app-training/src/backends/native.d.ts +50 -0
  980. package/apps/app-training/src/backends/native.d.ts.map +1 -0
  981. package/apps/app-training/src/backends/native.js +130 -0
  982. package/apps/app-training/src/backends/tinker.d.ts +27 -0
  983. package/apps/app-training/src/backends/tinker.d.ts.map +1 -0
  984. package/apps/app-training/src/backends/tinker.js +56 -0
  985. package/apps/app-training/src/core/context-audit.d.ts +51 -0
  986. package/apps/app-training/src/core/context-audit.d.ts.map +1 -0
  987. package/apps/app-training/src/core/context-audit.js +141 -0
  988. package/apps/app-training/src/core/context-catalog.d.ts +47 -0
  989. package/apps/app-training/src/core/context-catalog.d.ts.map +1 -0
  990. package/apps/app-training/src/core/context-catalog.js +265 -0
  991. package/apps/app-training/src/core/context-types.d.ts +3 -0
  992. package/apps/app-training/src/core/context-types.d.ts.map +1 -0
  993. package/apps/app-training/src/core/context-types.js +11 -0
  994. package/apps/app-training/src/core/dataset-generator.d.ts +125 -0
  995. package/apps/app-training/src/core/dataset-generator.d.ts.map +1 -0
  996. package/apps/app-training/src/core/dataset-generator.js +703 -0
  997. package/apps/app-training/src/core/index.d.ts +13 -0
  998. package/apps/app-training/src/core/index.d.ts.map +1 -0
  999. package/apps/app-training/src/core/index.js +12 -0
  1000. package/apps/app-training/src/core/privacy-filter.d.ts +73 -0
  1001. package/apps/app-training/src/core/privacy-filter.d.ts.map +1 -0
  1002. package/apps/app-training/src/core/privacy-filter.js +169 -0
  1003. package/apps/app-training/src/core/replay-validator.d.ts +136 -0
  1004. package/apps/app-training/src/core/replay-validator.d.ts.map +1 -0
  1005. package/apps/app-training/src/core/replay-validator.js +305 -0
  1006. package/apps/app-training/src/core/roleplay-executor.d.ts +123 -0
  1007. package/apps/app-training/src/core/roleplay-executor.d.ts.map +1 -0
  1008. package/apps/app-training/src/core/roleplay-executor.js +645 -0
  1009. package/apps/app-training/src/core/roleplay-trajectories.d.ts +54 -0
  1010. package/apps/app-training/src/core/roleplay-trajectories.d.ts.map +1 -0
  1011. package/apps/app-training/src/core/roleplay-trajectories.js +73 -0
  1012. package/apps/app-training/src/core/scenario-blueprints.d.ts +62 -0
  1013. package/apps/app-training/src/core/scenario-blueprints.d.ts.map +1 -0
  1014. package/apps/app-training/src/core/scenario-blueprints.js +790 -0
  1015. package/apps/app-training/src/core/training-config.d.ts +52 -0
  1016. package/apps/app-training/src/core/training-config.d.ts.map +1 -0
  1017. package/apps/app-training/src/core/training-config.js +135 -0
  1018. package/apps/app-training/src/core/training-orchestrator.d.ts +107 -0
  1019. package/apps/app-training/src/core/training-orchestrator.d.ts.map +1 -0
  1020. package/apps/app-training/src/core/training-orchestrator.js +413 -0
  1021. package/apps/app-training/src/core/trajectory-task-datasets.d.ts +38 -0
  1022. package/apps/app-training/src/core/trajectory-task-datasets.d.ts.map +1 -0
  1023. package/apps/app-training/src/core/trajectory-task-datasets.js +287 -0
  1024. package/apps/app-training/src/core/vertex-tuning.d.ts +139 -0
  1025. package/apps/app-training/src/core/vertex-tuning.d.ts.map +1 -0
  1026. package/apps/app-training/src/core/vertex-tuning.js +268 -0
  1027. package/apps/app-training/src/index.d.ts +4 -0
  1028. package/apps/app-training/src/index.d.ts.map +1 -0
  1029. package/apps/app-training/src/index.js +3 -0
  1030. package/apps/app-training/src/optimizers/bootstrap-fewshot.d.ts +42 -0
  1031. package/apps/app-training/src/optimizers/bootstrap-fewshot.d.ts.map +1 -0
  1032. package/apps/app-training/src/optimizers/bootstrap-fewshot.js +90 -0
  1033. package/apps/app-training/src/optimizers/index.d.ts +6 -0
  1034. package/apps/app-training/src/optimizers/index.d.ts.map +1 -0
  1035. package/apps/app-training/src/optimizers/index.js +4 -0
  1036. package/apps/app-training/src/optimizers/instruction-search.d.ts +39 -0
  1037. package/apps/app-training/src/optimizers/instruction-search.d.ts.map +1 -0
  1038. package/apps/app-training/src/optimizers/instruction-search.js +82 -0
  1039. package/apps/app-training/src/optimizers/prompt-evolution.d.ts +39 -0
  1040. package/apps/app-training/src/optimizers/prompt-evolution.d.ts.map +1 -0
  1041. package/apps/app-training/src/optimizers/prompt-evolution.js +111 -0
  1042. package/apps/app-training/src/optimizers/scoring.d.ts +82 -0
  1043. package/apps/app-training/src/optimizers/scoring.d.ts.map +1 -0
  1044. package/apps/app-training/src/optimizers/scoring.js +151 -0
  1045. package/apps/app-training/src/optimizers/types.d.ts +105 -0
  1046. package/apps/app-training/src/optimizers/types.d.ts.map +1 -0
  1047. package/apps/app-training/src/optimizers/types.js +17 -0
  1048. package/apps/app-training/src/routes/index.d.ts +3 -0
  1049. package/apps/app-training/src/routes/index.d.ts.map +1 -0
  1050. package/apps/app-training/src/routes/index.js +2 -0
  1051. package/apps/app-training/src/routes/training-routes.d.ts +11 -0
  1052. package/apps/app-training/src/routes/training-routes.d.ts.map +1 -0
  1053. package/apps/app-training/src/routes/training-routes.js +777 -0
  1054. package/apps/app-training/src/routes/trajectory-routes.d.ts +19 -0
  1055. package/apps/app-training/src/routes/trajectory-routes.d.ts.map +1 -0
  1056. package/apps/app-training/src/routes/trajectory-routes.js +912 -0
  1057. package/apps/app-training/src/services/index.d.ts +5 -0
  1058. package/apps/app-training/src/services/index.d.ts.map +1 -0
  1059. package/apps/app-training/src/services/index.js +3 -0
  1060. package/apps/app-training/src/services/training-backend-check.d.ts +8 -0
  1061. package/apps/app-training/src/services/training-backend-check.d.ts.map +1 -0
  1062. package/apps/app-training/src/services/training-backend-check.js +28 -0
  1063. package/apps/app-training/src/services/training-service-like.d.ts +39 -0
  1064. package/apps/app-training/src/services/training-service-like.d.ts.map +1 -0
  1065. package/apps/app-training/src/services/training-service-like.js +1 -0
  1066. package/apps/app-training/src/services/training-service.d.ts +46 -0
  1067. package/apps/app-training/src/services/training-service.d.ts.map +1 -0
  1068. package/apps/app-training/src/services/training-service.js +109 -0
  1069. package/apps/app-training/src/services/training-trigger.d.ts +180 -0
  1070. package/apps/app-training/src/services/training-trigger.d.ts.map +1 -0
  1071. package/apps/app-training/src/services/training-trigger.js +385 -0
  1072. package/apps/app-vincent/src/client.d.ts +17 -0
  1073. package/apps/app-vincent/src/client.d.ts.map +1 -0
  1074. package/apps/app-vincent/src/client.js +38 -0
  1075. package/apps/app-vincent/src/vincent-contracts.d.ts +52 -0
  1076. package/apps/app-vincent/src/vincent-contracts.d.ts.map +1 -0
  1077. package/apps/app-vincent/src/vincent-contracts.js +4 -0
  1078. package/package.json +78 -51
  1079. package/packages/agent/src/actions/agent-inbox.d.ts +14 -0
  1080. package/packages/agent/src/actions/agent-inbox.d.ts.map +1 -0
  1081. package/packages/agent/src/actions/agent-inbox.js +124 -0
  1082. package/packages/agent/src/actions/browser-session.d.ts +3 -0
  1083. package/packages/agent/src/actions/browser-session.d.ts.map +1 -0
  1084. package/packages/agent/src/actions/browser-session.js +237 -0
  1085. package/packages/agent/src/actions/configure-plugin.d.ts +11 -0
  1086. package/packages/agent/src/actions/configure-plugin.d.ts.map +1 -0
  1087. package/packages/agent/src/actions/configure-plugin.js +137 -0
  1088. package/packages/agent/src/actions/connector-control.d.ts +24 -0
  1089. package/packages/agent/src/actions/connector-control.d.ts.map +1 -0
  1090. package/packages/agent/src/actions/connector-control.js +479 -0
  1091. package/packages/agent/src/actions/connector-resolver.d.ts +75 -0
  1092. package/packages/agent/src/actions/connector-resolver.d.ts.map +1 -0
  1093. package/packages/agent/src/actions/connector-resolver.js +256 -0
  1094. package/packages/agent/src/actions/context-signal-lexicon.d.ts +17 -0
  1095. package/packages/agent/src/actions/context-signal-lexicon.d.ts.map +1 -0
  1096. package/packages/agent/src/actions/context-signal-lexicon.js +212 -0
  1097. package/packages/agent/src/actions/context-signal.d.ts +46 -0
  1098. package/packages/agent/src/actions/context-signal.d.ts.map +1 -0
  1099. package/packages/agent/src/actions/context-signal.js +134 -0
  1100. package/packages/agent/src/actions/database.d.ts +15 -0
  1101. package/packages/agent/src/actions/database.d.ts.map +1 -0
  1102. package/packages/agent/src/actions/database.js +473 -0
  1103. package/packages/agent/src/actions/eject-plugin.d.ts +3 -0
  1104. package/packages/agent/src/actions/eject-plugin.d.ts.map +1 -0
  1105. package/packages/agent/src/actions/eject-plugin.js +80 -0
  1106. package/packages/agent/src/actions/entity-actions.d.ts +7 -0
  1107. package/packages/agent/src/actions/entity-actions.d.ts.map +1 -0
  1108. package/packages/agent/src/actions/entity-actions.js +1016 -0
  1109. package/packages/agent/src/actions/extract-page.d.ts +3 -0
  1110. package/packages/agent/src/actions/extract-page.d.ts.map +1 -0
  1111. package/packages/agent/src/actions/extract-page.js +154 -0
  1112. package/packages/agent/src/actions/extract-params.d.ts +87 -0
  1113. package/packages/agent/src/actions/extract-params.d.ts.map +1 -0
  1114. package/packages/agent/src/actions/extract-params.js +194 -0
  1115. package/packages/agent/src/actions/get-self-status.d.ts +13 -0
  1116. package/packages/agent/src/actions/get-self-status.d.ts.map +1 -0
  1117. package/packages/agent/src/actions/get-self-status.js +107 -0
  1118. package/packages/agent/src/actions/grounded-action-reply.d.ts +22 -0
  1119. package/packages/agent/src/actions/grounded-action-reply.d.ts.map +1 -0
  1120. package/packages/agent/src/actions/grounded-action-reply.js +288 -0
  1121. package/packages/agent/src/actions/index.d.ts +26 -0
  1122. package/packages/agent/src/actions/index.d.ts.map +1 -0
  1123. package/packages/agent/src/actions/index.js +25 -0
  1124. package/packages/agent/src/actions/install-plugin.d.ts +3 -0
  1125. package/packages/agent/src/actions/install-plugin.d.ts.map +1 -0
  1126. package/packages/agent/src/actions/install-plugin.js +97 -0
  1127. package/packages/agent/src/actions/list-ejected.d.ts +3 -0
  1128. package/packages/agent/src/actions/list-ejected.d.ts.map +1 -0
  1129. package/packages/agent/src/actions/list-ejected.js +79 -0
  1130. package/packages/agent/src/actions/list-installed-plugins.d.ts +11 -0
  1131. package/packages/agent/src/actions/list-installed-plugins.d.ts.map +1 -0
  1132. package/packages/agent/src/actions/list-installed-plugins.js +142 -0
  1133. package/packages/agent/src/actions/log-level.d.ts +3 -0
  1134. package/packages/agent/src/actions/log-level.d.ts.map +1 -0
  1135. package/packages/agent/src/actions/log-level.js +126 -0
  1136. package/packages/agent/src/actions/logs.d.ts +12 -0
  1137. package/packages/agent/src/actions/logs.d.ts.map +1 -0
  1138. package/packages/agent/src/actions/logs.js +300 -0
  1139. package/packages/agent/src/actions/manage-tasks.d.ts +8 -0
  1140. package/packages/agent/src/actions/manage-tasks.d.ts.map +1 -0
  1141. package/packages/agent/src/actions/manage-tasks.js +268 -0
  1142. package/packages/agent/src/actions/media.d.ts +21 -0
  1143. package/packages/agent/src/actions/media.d.ts.map +1 -0
  1144. package/packages/agent/src/actions/media.js +504 -0
  1145. package/packages/agent/src/actions/memories.d.ts +12 -0
  1146. package/packages/agent/src/actions/memories.d.ts.map +1 -0
  1147. package/packages/agent/src/actions/memories.js +310 -0
  1148. package/packages/agent/src/actions/read-channel.d.ts +3 -0
  1149. package/packages/agent/src/actions/read-channel.d.ts.map +1 -0
  1150. package/packages/agent/src/actions/read-channel.js +265 -0
  1151. package/packages/agent/src/actions/read-messages.d.ts +14 -0
  1152. package/packages/agent/src/actions/read-messages.d.ts.map +1 -0
  1153. package/packages/agent/src/actions/read-messages.js +269 -0
  1154. package/packages/agent/src/actions/recent-conversation-texts.d.ts +9 -0
  1155. package/packages/agent/src/actions/recent-conversation-texts.d.ts.map +1 -0
  1156. package/packages/agent/src/actions/recent-conversation-texts.js +76 -0
  1157. package/packages/agent/src/actions/reinject-plugin.d.ts +3 -0
  1158. package/packages/agent/src/actions/reinject-plugin.d.ts.map +1 -0
  1159. package/packages/agent/src/actions/reinject-plugin.js +79 -0
  1160. package/packages/agent/src/actions/restart.d.ts +19 -0
  1161. package/packages/agent/src/actions/restart.d.ts.map +1 -0
  1162. package/packages/agent/src/actions/restart.js +139 -0
  1163. package/packages/agent/src/actions/runtime.d.ts +14 -0
  1164. package/packages/agent/src/actions/runtime.d.ts.map +1 -0
  1165. package/packages/agent/src/actions/runtime.js +287 -0
  1166. package/packages/agent/src/actions/scratchpad.d.ts +7 -0
  1167. package/packages/agent/src/actions/scratchpad.d.ts.map +1 -0
  1168. package/packages/agent/src/actions/scratchpad.js +394 -0
  1169. package/packages/agent/src/actions/search-conversations.d.ts +3 -0
  1170. package/packages/agent/src/actions/search-conversations.d.ts.map +1 -0
  1171. package/packages/agent/src/actions/search-conversations.js +222 -0
  1172. package/packages/agent/src/actions/send-admin-message.d.ts +3 -0
  1173. package/packages/agent/src/actions/send-admin-message.d.ts.map +1 -0
  1174. package/packages/agent/src/actions/send-admin-message.js +136 -0
  1175. package/packages/agent/src/actions/send-message.d.ts +4 -0
  1176. package/packages/agent/src/actions/send-message.d.ts.map +1 -0
  1177. package/packages/agent/src/actions/send-message.js +410 -0
  1178. package/packages/agent/src/actions/set-user-name.d.ts +13 -0
  1179. package/packages/agent/src/actions/set-user-name.d.ts.map +1 -0
  1180. package/packages/agent/src/actions/set-user-name.js +106 -0
  1181. package/packages/agent/src/actions/settings-actions.d.ts +28 -0
  1182. package/packages/agent/src/actions/settings-actions.d.ts.map +1 -0
  1183. package/packages/agent/src/actions/settings-actions.js +564 -0
  1184. package/packages/agent/src/actions/skill-command.d.ts +20 -0
  1185. package/packages/agent/src/actions/skill-command.d.ts.map +1 -0
  1186. package/packages/agent/src/actions/skill-command.js +142 -0
  1187. package/packages/agent/src/actions/stream-control.d.ts +11 -0
  1188. package/packages/agent/src/actions/stream-control.d.ts.map +1 -0
  1189. package/packages/agent/src/actions/stream-control.js +182 -0
  1190. package/packages/agent/src/actions/sync-plugin.d.ts +3 -0
  1191. package/packages/agent/src/actions/sync-plugin.d.ts.map +1 -0
  1192. package/packages/agent/src/actions/sync-plugin.js +76 -0
  1193. package/packages/agent/src/actions/tasks-coding.d.ts +10 -0
  1194. package/packages/agent/src/actions/tasks-coding.d.ts.map +1 -0
  1195. package/packages/agent/src/actions/tasks-coding.js +171 -0
  1196. package/packages/agent/src/actions/terminal.d.ts +15 -0
  1197. package/packages/agent/src/actions/terminal.d.ts.map +1 -0
  1198. package/packages/agent/src/actions/terminal.js +360 -0
  1199. package/packages/agent/src/actions/toggle-plugin.d.ts +11 -0
  1200. package/packages/agent/src/actions/toggle-plugin.d.ts.map +1 -0
  1201. package/packages/agent/src/actions/toggle-plugin.js +125 -0
  1202. package/packages/agent/src/actions/trajectories.d.ts +12 -0
  1203. package/packages/agent/src/actions/trajectories.d.ts.map +1 -0
  1204. package/packages/agent/src/actions/trajectories.js +347 -0
  1205. package/packages/agent/src/actions/uninstall-plugin.d.ts +12 -0
  1206. package/packages/agent/src/actions/uninstall-plugin.d.ts.map +1 -0
  1207. package/packages/agent/src/actions/uninstall-plugin.js +110 -0
  1208. package/packages/agent/src/actions/update-owner-name.d.ts +12 -0
  1209. package/packages/agent/src/actions/update-owner-name.d.ts.map +1 -0
  1210. package/packages/agent/src/actions/update-owner-name.js +83 -0
  1211. package/packages/agent/src/actions/update-plugin.d.ts +10 -0
  1212. package/packages/agent/src/actions/update-plugin.d.ts.map +1 -0
  1213. package/packages/agent/src/actions/update-plugin.js +131 -0
  1214. package/packages/agent/src/actions/web-search.d.ts +10 -0
  1215. package/packages/agent/src/actions/web-search.d.ts.map +1 -0
  1216. package/packages/agent/src/actions/web-search.js +274 -0
  1217. package/packages/agent/src/actions/workflow/api.d.ts +24 -0
  1218. package/packages/agent/src/actions/workflow/api.d.ts.map +1 -0
  1219. package/packages/agent/src/actions/workflow/api.js +42 -0
  1220. package/packages/agent/src/actions/workflow/create-workflow.d.ts +11 -0
  1221. package/packages/agent/src/actions/workflow/create-workflow.d.ts.map +1 -0
  1222. package/packages/agent/src/actions/workflow/create-workflow.js +120 -0
  1223. package/packages/agent/src/actions/workflow/delete-workflow.d.ts +11 -0
  1224. package/packages/agent/src/actions/workflow/delete-workflow.d.ts.map +1 -0
  1225. package/packages/agent/src/actions/workflow/delete-workflow.js +100 -0
  1226. package/packages/agent/src/actions/workflow/index.d.ts +5 -0
  1227. package/packages/agent/src/actions/workflow/index.d.ts.map +1 -0
  1228. package/packages/agent/src/actions/workflow/index.js +4 -0
  1229. package/packages/agent/src/actions/workflow/promote-task-to-workflow.d.ts +12 -0
  1230. package/packages/agent/src/actions/workflow/promote-task-to-workflow.d.ts.map +1 -0
  1231. package/packages/agent/src/actions/workflow/promote-task-to-workflow.js +154 -0
  1232. package/packages/agent/src/actions/workflow/toggle-workflow-active.d.ts +10 -0
  1233. package/packages/agent/src/actions/workflow/toggle-workflow-active.d.ts.map +1 -0
  1234. package/packages/agent/src/actions/workflow/toggle-workflow-active.js +132 -0
  1235. package/packages/agent/src/api/accounts-routes.d.ts +39 -0
  1236. package/packages/agent/src/api/accounts-routes.d.ts.map +1 -0
  1237. package/packages/agent/src/api/accounts-routes.js +703 -0
  1238. package/packages/agent/src/api/agent-admin-routes.d.ts +39 -0
  1239. package/packages/agent/src/api/agent-admin-routes.d.ts.map +1 -0
  1240. package/packages/agent/src/api/agent-admin-routes.js +155 -0
  1241. package/packages/agent/src/api/agent-lifecycle-routes.d.ts +16 -0
  1242. package/packages/agent/src/api/agent-lifecycle-routes.d.ts.map +1 -0
  1243. package/packages/agent/src/api/agent-lifecycle-routes.js +94 -0
  1244. package/packages/agent/src/api/agent-model.d.ts +5 -0
  1245. package/packages/agent/src/api/agent-model.d.ts.map +1 -0
  1246. package/packages/agent/src/api/agent-model.js +154 -0
  1247. package/packages/agent/src/api/agent-status-routes.d.ts +96 -0
  1248. package/packages/agent/src/api/agent-status-routes.d.ts.map +1 -0
  1249. package/packages/agent/src/api/agent-status-routes.js +274 -0
  1250. package/packages/agent/src/api/agent-transfer-routes.d.ts +16 -0
  1251. package/packages/agent/src/api/agent-transfer-routes.d.ts.map +1 -0
  1252. package/packages/agent/src/api/agent-transfer-routes.js +124 -0
  1253. package/packages/agent/src/api/app-package-routes.d.ts +7 -0
  1254. package/packages/agent/src/api/app-package-routes.d.ts.map +1 -0
  1255. package/packages/agent/src/api/app-package-routes.js +59 -0
  1256. package/packages/agent/src/api/apps-routes.d.ts +32 -0
  1257. package/packages/agent/src/api/apps-routes.d.ts.map +1 -0
  1258. package/packages/agent/src/api/apps-routes.js +982 -0
  1259. package/packages/agent/src/api/auth-routes.d.ts +11 -0
  1260. package/packages/agent/src/api/auth-routes.d.ts.map +1 -0
  1261. package/packages/agent/src/api/auth-routes.js +74 -0
  1262. package/packages/agent/src/api/avatar-routes.d.ts +11 -0
  1263. package/packages/agent/src/api/avatar-routes.d.ts.map +1 -0
  1264. package/packages/agent/src/api/avatar-routes.js +205 -0
  1265. package/packages/agent/src/api/binance-skill-helpers.d.ts +26 -0
  1266. package/packages/agent/src/api/binance-skill-helpers.d.ts.map +1 -0
  1267. package/packages/agent/src/api/binance-skill-helpers.js +785 -0
  1268. package/packages/agent/src/api/bluebubbles-routes.d.ts +10 -0
  1269. package/packages/agent/src/api/bluebubbles-routes.d.ts.map +1 -0
  1270. package/packages/agent/src/api/bluebubbles-routes.js +129 -0
  1271. package/packages/agent/src/api/browser-workspace-routes.d.ts +5 -0
  1272. package/packages/agent/src/api/browser-workspace-routes.d.ts.map +1 -0
  1273. package/packages/agent/src/api/browser-workspace-routes.js +100 -0
  1274. package/packages/agent/src/api/bug-report-routes.d.ts +10 -0
  1275. package/packages/agent/src/api/bug-report-routes.d.ts.map +1 -0
  1276. package/packages/agent/src/api/bug-report-routes.js +271 -0
  1277. package/packages/agent/src/api/character-routes.d.ts +52 -0
  1278. package/packages/agent/src/api/character-routes.d.ts.map +1 -0
  1279. package/packages/agent/src/api/character-routes.js +377 -0
  1280. package/packages/agent/src/api/chat-augmentation.d.ts +70 -0
  1281. package/packages/agent/src/api/chat-augmentation.d.ts.map +1 -0
  1282. package/packages/agent/src/api/chat-augmentation.js +453 -0
  1283. package/packages/agent/src/api/chat-routes.d.ts +110 -0
  1284. package/packages/agent/src/api/chat-routes.d.ts.map +1 -0
  1285. package/packages/agent/src/api/chat-routes.js +1516 -0
  1286. package/packages/agent/src/api/chat-text-helpers.d.ts +11 -0
  1287. package/packages/agent/src/api/chat-text-helpers.d.ts.map +1 -0
  1288. package/packages/agent/src/api/chat-text-helpers.js +184 -0
  1289. package/packages/agent/src/api/client-chat-admin.d.ts +19 -0
  1290. package/packages/agent/src/api/client-chat-admin.d.ts.map +1 -0
  1291. package/packages/agent/src/api/client-chat-admin.js +27 -0
  1292. package/packages/agent/src/api/cloud-billing-routes.d.ts +9 -0
  1293. package/packages/agent/src/api/cloud-billing-routes.d.ts.map +1 -0
  1294. package/packages/agent/src/api/cloud-billing-routes.js +388 -0
  1295. package/packages/agent/src/api/cloud-compat-routes.d.ts +10 -0
  1296. package/packages/agent/src/api/cloud-compat-routes.d.ts.map +1 -0
  1297. package/packages/agent/src/api/cloud-compat-routes.js +212 -0
  1298. package/packages/agent/src/api/cloud-provisioning.d.ts +14 -0
  1299. package/packages/agent/src/api/cloud-provisioning.d.ts.map +1 -0
  1300. package/packages/agent/src/api/cloud-provisioning.js +30 -0
  1301. package/packages/agent/src/api/cloud-relay-routes.d.ts +22 -0
  1302. package/packages/agent/src/api/cloud-relay-routes.d.ts.map +1 -0
  1303. package/packages/agent/src/api/cloud-relay-routes.js +52 -0
  1304. package/packages/agent/src/api/cloud-routes.d.ts +80 -0
  1305. package/packages/agent/src/api/cloud-routes.d.ts.map +1 -0
  1306. package/packages/agent/src/api/cloud-routes.js +582 -0
  1307. package/packages/agent/src/api/cloud-status-routes.d.ts +15 -0
  1308. package/packages/agent/src/api/cloud-status-routes.d.ts.map +1 -0
  1309. package/packages/agent/src/api/cloud-status-routes.js +142 -0
  1310. package/packages/agent/src/api/coding-agents-fallback-routes.d.ts +12 -0
  1311. package/packages/agent/src/api/coding-agents-fallback-routes.d.ts.map +1 -0
  1312. package/packages/agent/src/api/coding-agents-fallback-routes.js +523 -0
  1313. package/packages/agent/src/api/compat-utils.d.ts +49 -0
  1314. package/packages/agent/src/api/compat-utils.d.ts.map +1 -0
  1315. package/packages/agent/src/api/compat-utils.js +122 -0
  1316. package/packages/agent/src/api/config-env.d.ts +43 -0
  1317. package/packages/agent/src/api/config-env.d.ts.map +1 -0
  1318. package/packages/agent/src/api/config-env.js +284 -0
  1319. package/packages/agent/src/api/config-routes.d.ts +40 -0
  1320. package/packages/agent/src/api/config-routes.d.ts.map +1 -0
  1321. package/packages/agent/src/api/config-routes.js +433 -0
  1322. package/packages/agent/src/api/connector-health.d.ts +42 -0
  1323. package/packages/agent/src/api/connector-health.d.ts.map +1 -0
  1324. package/packages/agent/src/api/connector-health.js +132 -0
  1325. package/packages/agent/src/api/connector-routes.d.ts +21 -0
  1326. package/packages/agent/src/api/connector-routes.d.ts.map +1 -0
  1327. package/packages/agent/src/api/connector-routes.js +113 -0
  1328. package/packages/agent/src/api/conversation-metadata.d.ts +10 -0
  1329. package/packages/agent/src/api/conversation-metadata.d.ts.map +1 -0
  1330. package/packages/agent/src/api/conversation-metadata.js +107 -0
  1331. package/packages/agent/src/api/conversation-routes.d.ts +43 -0
  1332. package/packages/agent/src/api/conversation-routes.d.ts.map +1 -0
  1333. package/packages/agent/src/api/conversation-routes.js +1198 -0
  1334. package/packages/agent/src/api/credit-detection.d.ts +9 -0
  1335. package/packages/agent/src/api/credit-detection.d.ts.map +1 -0
  1336. package/packages/agent/src/api/credit-detection.js +47 -0
  1337. package/packages/agent/src/api/curated-skills-routes.d.ts +22 -0
  1338. package/packages/agent/src/api/curated-skills-routes.d.ts.map +1 -0
  1339. package/packages/agent/src/api/curated-skills-routes.js +295 -0
  1340. package/packages/agent/src/api/database.d.ts +35 -0
  1341. package/packages/agent/src/api/database.d.ts.map +1 -0
  1342. package/packages/agent/src/api/database.js +1141 -0
  1343. package/packages/agent/src/api/diagnostics-routes.d.ts +60 -0
  1344. package/packages/agent/src/api/diagnostics-routes.d.ts.map +1 -0
  1345. package/packages/agent/src/api/diagnostics-routes.js +365 -0
  1346. package/packages/agent/src/api/discord-avatar-cache.d.ts +10 -0
  1347. package/packages/agent/src/api/discord-avatar-cache.d.ts.map +1 -0
  1348. package/packages/agent/src/api/discord-avatar-cache.js +149 -0
  1349. package/packages/agent/src/api/discord-profiles.d.ts +26 -0
  1350. package/packages/agent/src/api/discord-profiles.d.ts.map +1 -0
  1351. package/packages/agent/src/api/discord-profiles.js +279 -0
  1352. package/packages/agent/src/api/early-logs.d.ts +29 -0
  1353. package/packages/agent/src/api/early-logs.d.ts.map +1 -0
  1354. package/packages/agent/src/api/early-logs.js +96 -0
  1355. package/packages/agent/src/api/experience-routes.d.ts +8 -0
  1356. package/packages/agent/src/api/experience-routes.d.ts.map +1 -0
  1357. package/packages/agent/src/api/experience-routes.js +376 -0
  1358. package/packages/agent/src/api/health-routes.d.ts +44 -0
  1359. package/packages/agent/src/api/health-routes.d.ts.map +1 -0
  1360. package/packages/agent/src/api/health-routes.js +449 -0
  1361. package/packages/agent/src/api/http-helpers.d.ts +50 -0
  1362. package/packages/agent/src/api/http-helpers.d.ts.map +1 -0
  1363. package/packages/agent/src/api/http-helpers.js +167 -0
  1364. package/packages/agent/src/api/inbox-routes.d.ts +48 -0
  1365. package/packages/agent/src/api/inbox-routes.d.ts.map +1 -0
  1366. package/packages/agent/src/api/inbox-routes.js +1577 -0
  1367. package/packages/agent/src/api/index.d.ts +58 -0
  1368. package/packages/agent/src/api/index.d.ts.map +1 -0
  1369. package/packages/agent/src/api/index.js +61 -0
  1370. package/packages/agent/src/api/knowledge-routes.d.ts +2 -0
  1371. package/packages/agent/src/api/knowledge-routes.d.ts.map +1 -0
  1372. package/packages/agent/src/api/knowledge-routes.js +2 -0
  1373. package/packages/agent/src/api/knowledge-service-loader.d.ts +2 -0
  1374. package/packages/agent/src/api/knowledge-service-loader.d.ts.map +1 -0
  1375. package/packages/agent/src/api/knowledge-service-loader.js +2 -0
  1376. package/packages/agent/src/api/mcp-routes.d.ts +33 -0
  1377. package/packages/agent/src/api/mcp-routes.d.ts.map +1 -0
  1378. package/packages/agent/src/api/mcp-routes.js +186 -0
  1379. package/packages/agent/src/api/memory-bounds.d.ts +51 -0
  1380. package/packages/agent/src/api/memory-bounds.d.ts.map +1 -0
  1381. package/packages/agent/src/api/memory-bounds.js +81 -0
  1382. package/packages/agent/src/api/memory-routes.d.ts +9 -0
  1383. package/packages/agent/src/api/memory-routes.d.ts.map +1 -0
  1384. package/packages/agent/src/api/memory-routes.js +483 -0
  1385. package/packages/agent/src/api/misc-routes.d.ts +64 -0
  1386. package/packages/agent/src/api/misc-routes.d.ts.map +1 -0
  1387. package/packages/agent/src/api/misc-routes.js +589 -0
  1388. package/packages/agent/src/api/model-provider-helpers.d.ts +84 -0
  1389. package/packages/agent/src/api/model-provider-helpers.d.ts.map +1 -0
  1390. package/packages/agent/src/api/model-provider-helpers.js +588 -0
  1391. package/packages/agent/src/api/models-routes.d.ts +14 -0
  1392. package/packages/agent/src/api/models-routes.d.ts.map +1 -0
  1393. package/packages/agent/src/api/models-routes.js +37 -0
  1394. package/packages/agent/src/api/music-player-route-fallback.d.ts +16 -0
  1395. package/packages/agent/src/api/music-player-route-fallback.d.ts.map +1 -0
  1396. package/packages/agent/src/api/music-player-route-fallback.js +65 -0
  1397. package/packages/agent/src/api/nfa-routes.d.ts +5 -0
  1398. package/packages/agent/src/api/nfa-routes.d.ts.map +1 -0
  1399. package/packages/agent/src/api/nfa-routes.js +133 -0
  1400. package/packages/agent/src/api/onboarding-routes.d.ts +50 -0
  1401. package/packages/agent/src/api/onboarding-routes.d.ts.map +1 -0
  1402. package/packages/agent/src/api/onboarding-routes.js +590 -0
  1403. package/packages/agent/src/api/owner-contact-helpers.d.ts +39 -0
  1404. package/packages/agent/src/api/owner-contact-helpers.d.ts.map +1 -0
  1405. package/packages/agent/src/api/owner-contact-helpers.js +47 -0
  1406. package/packages/agent/src/api/parse-action-block.d.ts +35 -0
  1407. package/packages/agent/src/api/parse-action-block.d.ts.map +1 -0
  1408. package/packages/agent/src/api/parse-action-block.js +113 -0
  1409. package/packages/agent/src/api/permissions-routes-extra.d.ts +30 -0
  1410. package/packages/agent/src/api/permissions-routes-extra.d.ts.map +1 -0
  1411. package/packages/agent/src/api/permissions-routes-extra.js +78 -0
  1412. package/packages/agent/src/api/permissions-routes.d.ts +28 -0
  1413. package/packages/agent/src/api/permissions-routes.d.ts.map +1 -0
  1414. package/packages/agent/src/api/permissions-routes.js +180 -0
  1415. package/packages/agent/src/api/plugin-discovery-helpers.d.ts +147 -0
  1416. package/packages/agent/src/api/plugin-discovery-helpers.d.ts.map +1 -0
  1417. package/packages/agent/src/api/plugin-discovery-helpers.js +1017 -0
  1418. package/packages/agent/src/api/plugin-routes.d.ts +127 -0
  1419. package/packages/agent/src/api/plugin-routes.d.ts.map +1 -0
  1420. package/packages/agent/src/api/plugin-routes.js +1250 -0
  1421. package/packages/agent/src/api/plugin-runtime-apply.d.ts +31 -0
  1422. package/packages/agent/src/api/plugin-runtime-apply.d.ts.map +1 -0
  1423. package/packages/agent/src/api/plugin-runtime-apply.js +217 -0
  1424. package/packages/agent/src/api/plugin-validation.d.ts +86 -0
  1425. package/packages/agent/src/api/plugin-validation.d.ts.map +1 -0
  1426. package/packages/agent/src/api/plugin-validation.js +259 -0
  1427. package/packages/agent/src/api/provider-switch-config.d.ts +60 -0
  1428. package/packages/agent/src/api/provider-switch-config.d.ts.map +1 -0
  1429. package/packages/agent/src/api/provider-switch-config.js +714 -0
  1430. package/packages/agent/src/api/provider-switch-routes.d.ts +22 -0
  1431. package/packages/agent/src/api/provider-switch-routes.d.ts.map +1 -0
  1432. package/packages/agent/src/api/provider-switch-routes.js +92 -0
  1433. package/packages/agent/src/api/rate-limiter.d.ts +29 -0
  1434. package/packages/agent/src/api/rate-limiter.d.ts.map +1 -0
  1435. package/packages/agent/src/api/rate-limiter.js +57 -0
  1436. package/packages/agent/src/api/registry-routes.d.ts +29 -0
  1437. package/packages/agent/src/api/registry-routes.d.ts.map +1 -0
  1438. package/packages/agent/src/api/registry-routes.js +98 -0
  1439. package/packages/agent/src/api/registry-service.d.ts +77 -0
  1440. package/packages/agent/src/api/registry-service.d.ts.map +1 -0
  1441. package/packages/agent/src/api/registry-service.js +190 -0
  1442. package/packages/agent/src/api/relationships-routes.d.ts +7 -0
  1443. package/packages/agent/src/api/relationships-routes.d.ts.map +1 -0
  1444. package/packages/agent/src/api/relationships-routes.js +275 -0
  1445. package/packages/agent/src/api/route-helpers.d.ts +16 -0
  1446. package/packages/agent/src/api/route-helpers.d.ts.map +1 -0
  1447. package/packages/agent/src/api/route-helpers.js +1 -0
  1448. package/packages/agent/src/api/runtime-plugin-routes.d.ts +21 -0
  1449. package/packages/agent/src/api/runtime-plugin-routes.d.ts.map +1 -0
  1450. package/packages/agent/src/api/runtime-plugin-routes.js +183 -0
  1451. package/packages/agent/src/api/sandbox-routes.d.ts +12 -0
  1452. package/packages/agent/src/api/sandbox-routes.d.ts.map +1 -0
  1453. package/packages/agent/src/api/sandbox-routes.js +1334 -0
  1454. package/packages/agent/src/api/server-auth.d.ts +46 -0
  1455. package/packages/agent/src/api/server-auth.d.ts.map +1 -0
  1456. package/packages/agent/src/api/server-auth.js +509 -0
  1457. package/packages/agent/src/api/server-helpers-auth.d.ts +40 -0
  1458. package/packages/agent/src/api/server-helpers-auth.d.ts.map +1 -0
  1459. package/packages/agent/src/api/server-helpers-auth.js +602 -0
  1460. package/packages/agent/src/api/server-helpers-config.d.ts +37 -0
  1461. package/packages/agent/src/api/server-helpers-config.d.ts.map +1 -0
  1462. package/packages/agent/src/api/server-helpers-config.js +295 -0
  1463. package/packages/agent/src/api/server-helpers-fetch.d.ts +15 -0
  1464. package/packages/agent/src/api/server-helpers-fetch.d.ts.map +1 -0
  1465. package/packages/agent/src/api/server-helpers-fetch.js +149 -0
  1466. package/packages/agent/src/api/server-helpers-mcp.d.ts +12 -0
  1467. package/packages/agent/src/api/server-helpers-mcp.d.ts.map +1 -0
  1468. package/packages/agent/src/api/server-helpers-mcp.js +315 -0
  1469. package/packages/agent/src/api/server-helpers-plugin.d.ts +13 -0
  1470. package/packages/agent/src/api/server-helpers-plugin.d.ts.map +1 -0
  1471. package/packages/agent/src/api/server-helpers-plugin.js +158 -0
  1472. package/packages/agent/src/api/server-helpers-swarm.d.ts +59 -0
  1473. package/packages/agent/src/api/server-helpers-swarm.d.ts.map +1 -0
  1474. package/packages/agent/src/api/server-helpers-swarm.js +416 -0
  1475. package/packages/agent/src/api/server-helpers-wallet.d.ts +18 -0
  1476. package/packages/agent/src/api/server-helpers-wallet.d.ts.map +1 -0
  1477. package/packages/agent/src/api/server-helpers-wallet.js +178 -0
  1478. package/packages/agent/src/api/server-helpers.d.ts +96 -0
  1479. package/packages/agent/src/api/server-helpers.d.ts.map +1 -0
  1480. package/packages/agent/src/api/server-helpers.js +601 -0
  1481. package/packages/agent/src/api/server-types.d.ts +238 -0
  1482. package/packages/agent/src/api/server-types.d.ts.map +1 -0
  1483. package/packages/agent/src/api/server-types.js +6 -0
  1484. package/packages/agent/src/api/server.d.ts +61 -0
  1485. package/packages/agent/src/api/server.d.ts.map +1 -0
  1486. package/packages/agent/src/api/server.js +3165 -0
  1487. package/packages/agent/src/api/signal-routes.d.ts +42 -0
  1488. package/packages/agent/src/api/signal-routes.d.ts.map +1 -0
  1489. package/packages/agent/src/api/signal-routes.js +231 -0
  1490. package/packages/agent/src/api/skill-discovery-helpers.d.ts +80 -0
  1491. package/packages/agent/src/api/skill-discovery-helpers.d.ts.map +1 -0
  1492. package/packages/agent/src/api/skill-discovery-helpers.js +383 -0
  1493. package/packages/agent/src/api/skills-routes.d.ts +32 -0
  1494. package/packages/agent/src/api/skills-routes.d.ts.map +1 -0
  1495. package/packages/agent/src/api/skills-routes.js +975 -0
  1496. package/packages/agent/src/api/static-file-server.d.ts +19 -0
  1497. package/packages/agent/src/api/static-file-server.d.ts.map +1 -0
  1498. package/packages/agent/src/api/static-file-server.js +233 -0
  1499. package/packages/agent/src/api/stream-persistence.d.ts +64 -0
  1500. package/packages/agent/src/api/stream-persistence.d.ts.map +1 -0
  1501. package/packages/agent/src/api/stream-persistence.js +231 -0
  1502. package/packages/agent/src/api/stream-route-state.d.ts +56 -0
  1503. package/packages/agent/src/api/stream-route-state.d.ts.map +1 -0
  1504. package/packages/agent/src/api/stream-route-state.js +1 -0
  1505. package/packages/agent/src/api/stream-routes.d.ts +24 -0
  1506. package/packages/agent/src/api/stream-routes.d.ts.map +1 -0
  1507. package/packages/agent/src/api/stream-routes.js +728 -0
  1508. package/packages/agent/src/api/streaming-text.d.ts +9 -0
  1509. package/packages/agent/src/api/streaming-text.d.ts.map +1 -0
  1510. package/packages/agent/src/api/streaming-text.js +85 -0
  1511. package/packages/agent/src/api/streaming-types.d.ts +30 -0
  1512. package/packages/agent/src/api/streaming-types.d.ts.map +1 -0
  1513. package/packages/agent/src/api/streaming-types.js +1 -0
  1514. package/packages/agent/src/api/subscription-routes.d.ts +20 -0
  1515. package/packages/agent/src/api/subscription-routes.d.ts.map +1 -0
  1516. package/packages/agent/src/api/subscription-routes.js +264 -0
  1517. package/packages/agent/src/api/task-agent-message-routing.d.ts +10 -0
  1518. package/packages/agent/src/api/task-agent-message-routing.d.ts.map +1 -0
  1519. package/packages/agent/src/api/task-agent-message-routing.js +62 -0
  1520. package/packages/agent/src/api/telegram-account-routes.d.ts +26 -0
  1521. package/packages/agent/src/api/telegram-account-routes.d.ts.map +1 -0
  1522. package/packages/agent/src/api/telegram-account-routes.js +229 -0
  1523. package/packages/agent/src/api/terminal-run-limits.d.ts +5 -0
  1524. package/packages/agent/src/api/terminal-run-limits.d.ts.map +1 -0
  1525. package/packages/agent/src/api/terminal-run-limits.js +22 -0
  1526. package/packages/agent/src/api/trade-safety.d.ts +35 -0
  1527. package/packages/agent/src/api/trade-safety.d.ts.map +1 -0
  1528. package/packages/agent/src/api/trade-safety.js +62 -0
  1529. package/packages/agent/src/api/training-backend-check.d.ts +2 -0
  1530. package/packages/agent/src/api/training-backend-check.d.ts.map +1 -0
  1531. package/packages/agent/src/api/training-backend-check.js +2 -0
  1532. package/packages/agent/src/api/training-routes.d.ts +2 -0
  1533. package/packages/agent/src/api/training-routes.d.ts.map +1 -0
  1534. package/packages/agent/src/api/training-routes.js +2 -0
  1535. package/packages/agent/src/api/training-service-like.d.ts +2 -0
  1536. package/packages/agent/src/api/training-service-like.d.ts.map +1 -0
  1537. package/packages/agent/src/api/training-service-like.js +1 -0
  1538. package/packages/agent/src/api/trajectory-routes.d.ts +3 -0
  1539. package/packages/agent/src/api/trajectory-routes.d.ts.map +1 -0
  1540. package/packages/agent/src/api/trajectory-routes.js +2 -0
  1541. package/packages/agent/src/api/trigger-routes.d.ts +64 -0
  1542. package/packages/agent/src/api/trigger-routes.d.ts.map +1 -0
  1543. package/packages/agent/src/api/trigger-routes.js +431 -0
  1544. package/packages/agent/src/api/tts-routes.d.ts +24 -0
  1545. package/packages/agent/src/api/tts-routes.d.ts.map +1 -0
  1546. package/packages/agent/src/api/tts-routes.js +200 -0
  1547. package/packages/agent/src/api/tx-service.d.ts +53 -0
  1548. package/packages/agent/src/api/tx-service.d.ts.map +1 -0
  1549. package/packages/agent/src/api/tx-service.js +217 -0
  1550. package/packages/agent/src/api/update-routes.d.ts +19 -0
  1551. package/packages/agent/src/api/update-routes.d.ts.map +1 -0
  1552. package/packages/agent/src/api/update-routes.js +54 -0
  1553. package/packages/agent/src/api/wallet-capability.d.ts +32 -0
  1554. package/packages/agent/src/api/wallet-capability.d.ts.map +1 -0
  1555. package/packages/agent/src/api/wallet-capability.js +189 -0
  1556. package/packages/agent/src/api/wallet-env-sync.d.ts +2 -0
  1557. package/packages/agent/src/api/wallet-env-sync.d.ts.map +1 -0
  1558. package/packages/agent/src/api/wallet-env-sync.js +108 -0
  1559. package/packages/agent/src/api/wallet-evm-balance.d.ts +72 -0
  1560. package/packages/agent/src/api/wallet-evm-balance.d.ts.map +1 -0
  1561. package/packages/agent/src/api/wallet-evm-balance.js +663 -0
  1562. package/packages/agent/src/api/wallet-routes.d.ts +42 -0
  1563. package/packages/agent/src/api/wallet-routes.d.ts.map +1 -0
  1564. package/packages/agent/src/api/wallet-routes.js +863 -0
  1565. package/packages/agent/src/api/wallet-rpc.d.ts +73 -0
  1566. package/packages/agent/src/api/wallet-rpc.d.ts.map +1 -0
  1567. package/packages/agent/src/api/wallet-rpc.js +471 -0
  1568. package/packages/agent/src/api/wallet-trading-profile.d.ts +31 -0
  1569. package/packages/agent/src/api/wallet-trading-profile.d.ts.map +1 -0
  1570. package/packages/agent/src/api/wallet-trading-profile.js +565 -0
  1571. package/packages/agent/src/api/wallet.d.ts +64 -0
  1572. package/packages/agent/src/api/wallet.d.ts.map +1 -0
  1573. package/packages/agent/src/api/wallet.js +782 -0
  1574. package/packages/agent/src/api/whatsapp-routes.d.ts +39 -0
  1575. package/packages/agent/src/api/whatsapp-routes.d.ts.map +1 -0
  1576. package/packages/agent/src/api/whatsapp-routes.js +229 -0
  1577. package/packages/agent/src/api/workbench-helpers.d.ts +39 -0
  1578. package/packages/agent/src/api/workbench-helpers.d.ts.map +1 -0
  1579. package/packages/agent/src/api/workbench-helpers.js +141 -0
  1580. package/packages/agent/src/api/workbench-routes.d.ts +53 -0
  1581. package/packages/agent/src/api/workbench-routes.d.ts.map +1 -0
  1582. package/packages/agent/src/api/workbench-routes.js +391 -0
  1583. package/packages/agent/src/api/x-relay-routes.d.ts +27 -0
  1584. package/packages/agent/src/api/x-relay-routes.d.ts.map +1 -0
  1585. package/packages/agent/src/api/x-relay-routes.js +135 -0
  1586. package/packages/agent/src/api/zip-utils.d.ts +8 -0
  1587. package/packages/agent/src/api/zip-utils.d.ts.map +1 -0
  1588. package/packages/agent/src/api/zip-utils.js +115 -0
  1589. package/packages/agent/src/auth/account-storage.d.ts +48 -0
  1590. package/packages/agent/src/auth/account-storage.d.ts.map +1 -0
  1591. package/packages/agent/src/auth/account-storage.js +238 -0
  1592. package/packages/agent/src/auth/anthropic.d.ts +24 -0
  1593. package/packages/agent/src/auth/anthropic.d.ts.map +1 -0
  1594. package/packages/agent/src/auth/anthropic.js +38 -0
  1595. package/packages/agent/src/auth/claude-code-stealth.d.ts +2 -0
  1596. package/packages/agent/src/auth/claude-code-stealth.d.ts.map +1 -0
  1597. package/packages/agent/src/auth/claude-code-stealth.js +114 -0
  1598. package/packages/agent/src/auth/credentials.d.ts +95 -0
  1599. package/packages/agent/src/auth/credentials.d.ts.map +1 -0
  1600. package/packages/agent/src/auth/credentials.js +440 -0
  1601. package/packages/agent/src/auth/index.d.ts +8 -0
  1602. package/packages/agent/src/auth/index.d.ts.map +1 -0
  1603. package/packages/agent/src/auth/index.js +7 -0
  1604. package/packages/agent/src/auth/oauth-flow.d.ts +106 -0
  1605. package/packages/agent/src/auth/oauth-flow.d.ts.map +1 -0
  1606. package/packages/agent/src/auth/oauth-flow.js +349 -0
  1607. package/packages/agent/src/auth/openai-codex.d.ts +27 -0
  1608. package/packages/agent/src/auth/openai-codex.d.ts.map +1 -0
  1609. package/packages/agent/src/auth/openai-codex.js +76 -0
  1610. package/packages/agent/src/auth/refresh-mutex.d.ts +19 -0
  1611. package/packages/agent/src/auth/refresh-mutex.d.ts.map +1 -0
  1612. package/packages/agent/src/auth/refresh-mutex.js +33 -0
  1613. package/packages/agent/src/auth/types.d.ts +18 -0
  1614. package/packages/agent/src/auth/types.d.ts.map +1 -0
  1615. package/packages/agent/src/auth/types.js +8 -0
  1616. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts +48 -0
  1617. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts.map +1 -0
  1618. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.js +113 -0
  1619. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts +26 -0
  1620. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts.map +1 -0
  1621. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.js +342 -0
  1622. package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts +9 -0
  1623. package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts.map +1 -0
  1624. package/packages/agent/src/auth/vendor/pi-oauth/pkce.js +21 -0
  1625. package/packages/agent/src/awareness/index.d.ts +2 -0
  1626. package/packages/agent/src/awareness/index.d.ts.map +1 -0
  1627. package/packages/agent/src/awareness/index.js +1 -0
  1628. package/packages/agent/src/awareness/registry.d.ts +27 -0
  1629. package/packages/agent/src/awareness/registry.d.ts.map +1 -0
  1630. package/packages/agent/src/awareness/registry.js +161 -0
  1631. package/packages/agent/src/cli/parse-duration.d.ts +5 -0
  1632. package/packages/agent/src/cli/parse-duration.d.ts.map +1 -0
  1633. package/packages/agent/src/cli/parse-duration.js +27 -0
  1634. package/packages/agent/src/cloud/auth.d.ts +19 -0
  1635. package/packages/agent/src/cloud/auth.d.ts.map +1 -0
  1636. package/packages/agent/src/cloud/auth.js +110 -0
  1637. package/packages/agent/src/cloud/backup.d.ts +18 -0
  1638. package/packages/agent/src/cloud/backup.d.ts.map +1 -0
  1639. package/packages/agent/src/cloud/backup.js +42 -0
  1640. package/packages/agent/src/cloud/base-url.d.ts +3 -0
  1641. package/packages/agent/src/cloud/base-url.d.ts.map +1 -0
  1642. package/packages/agent/src/cloud/base-url.js +53 -0
  1643. package/packages/agent/src/cloud/bridge-client.d.ts +126 -0
  1644. package/packages/agent/src/cloud/bridge-client.d.ts.map +1 -0
  1645. package/packages/agent/src/cloud/bridge-client.js +380 -0
  1646. package/packages/agent/src/cloud/cloud-manager.d.ts +32 -0
  1647. package/packages/agent/src/cloud/cloud-manager.d.ts.map +1 -0
  1648. package/packages/agent/src/cloud/cloud-manager.js +121 -0
  1649. package/packages/agent/src/cloud/cloud-proxy.d.ts +20 -0
  1650. package/packages/agent/src/cloud/cloud-proxy.d.ts.map +1 -0
  1651. package/packages/agent/src/cloud/cloud-proxy.js +34 -0
  1652. package/packages/agent/src/cloud/cloud-wallet.d.ts +92 -0
  1653. package/packages/agent/src/cloud/cloud-wallet.d.ts.map +1 -0
  1654. package/packages/agent/src/cloud/cloud-wallet.js +199 -0
  1655. package/packages/agent/src/cloud/index.d.ts +9 -0
  1656. package/packages/agent/src/cloud/index.d.ts.map +1 -0
  1657. package/packages/agent/src/cloud/index.js +8 -0
  1658. package/packages/agent/src/cloud/reconnect.d.ts +26 -0
  1659. package/packages/agent/src/cloud/reconnect.d.ts.map +1 -0
  1660. package/packages/agent/src/cloud/reconnect.js +89 -0
  1661. package/packages/agent/src/cloud/validate-url.d.ts +2 -0
  1662. package/packages/agent/src/cloud/validate-url.d.ts.map +1 -0
  1663. package/packages/agent/src/cloud/validate-url.js +162 -0
  1664. package/packages/agent/src/config/character-schema.d.ts +25 -0
  1665. package/packages/agent/src/config/character-schema.d.ts.map +1 -0
  1666. package/packages/agent/src/config/character-schema.js +39 -0
  1667. package/packages/agent/src/config/config.d.ts +6 -0
  1668. package/packages/agent/src/config/config.d.ts.map +1 -0
  1669. package/packages/agent/src/config/config.js +279 -0
  1670. package/packages/agent/src/config/env-vars.d.ts +9 -0
  1671. package/packages/agent/src/config/env-vars.d.ts.map +1 -0
  1672. package/packages/agent/src/config/env-vars.js +284 -0
  1673. package/packages/agent/src/config/feature-flags.d.ts +17 -0
  1674. package/packages/agent/src/config/feature-flags.d.ts.map +1 -0
  1675. package/packages/agent/src/config/feature-flags.js +37 -0
  1676. package/packages/agent/src/config/includes.d.ts +26 -0
  1677. package/packages/agent/src/config/includes.d.ts.map +1 -0
  1678. package/packages/agent/src/config/includes.js +148 -0
  1679. package/packages/agent/src/config/index.d.ts +20 -0
  1680. package/packages/agent/src/config/index.d.ts.map +1 -0
  1681. package/packages/agent/src/config/index.js +19 -0
  1682. package/packages/agent/src/config/model-metadata.d.ts +20 -0
  1683. package/packages/agent/src/config/model-metadata.d.ts.map +1 -0
  1684. package/packages/agent/src/config/model-metadata.js +133 -0
  1685. package/packages/agent/src/config/object-utils.d.ts +2 -0
  1686. package/packages/agent/src/config/object-utils.d.ts.map +1 -0
  1687. package/packages/agent/src/config/object-utils.js +6 -0
  1688. package/packages/agent/src/config/owner-contacts.d.ts +42 -0
  1689. package/packages/agent/src/config/owner-contacts.d.ts.map +1 -0
  1690. package/packages/agent/src/config/owner-contacts.js +223 -0
  1691. package/packages/agent/src/config/paths.d.ts +19 -0
  1692. package/packages/agent/src/config/paths.d.ts.map +1 -0
  1693. package/packages/agent/src/config/paths.js +115 -0
  1694. package/packages/agent/src/config/plugin-auto-enable.d.ts +44 -0
  1695. package/packages/agent/src/config/plugin-auto-enable.d.ts.map +1 -0
  1696. package/packages/agent/src/config/plugin-auto-enable.js +557 -0
  1697. package/packages/agent/src/config/plugin-widgets.d.ts +29 -0
  1698. package/packages/agent/src/config/plugin-widgets.d.ts.map +1 -0
  1699. package/packages/agent/src/config/plugin-widgets.js +61 -0
  1700. package/packages/agent/src/config/schema.d.ts +87 -0
  1701. package/packages/agent/src/config/schema.d.ts.map +1 -0
  1702. package/packages/agent/src/config/schema.js +922 -0
  1703. package/packages/agent/src/config/telegram-custom-commands.d.ts +25 -0
  1704. package/packages/agent/src/config/telegram-custom-commands.d.ts.map +1 -0
  1705. package/packages/agent/src/config/telegram-custom-commands.js +71 -0
  1706. package/packages/agent/src/config/types.agent-defaults.d.ts +363 -0
  1707. package/packages/agent/src/config/types.agent-defaults.d.ts.map +1 -0
  1708. package/packages/agent/src/config/types.agent-defaults.js +1 -0
  1709. package/packages/agent/src/config/types.agents.d.ts +114 -0
  1710. package/packages/agent/src/config/types.agents.d.ts.map +1 -0
  1711. package/packages/agent/src/config/types.agents.js +1 -0
  1712. package/packages/agent/src/config/types.d.ts +8 -0
  1713. package/packages/agent/src/config/types.d.ts.map +1 -0
  1714. package/packages/agent/src/config/types.eliza.d.ts +716 -0
  1715. package/packages/agent/src/config/types.eliza.d.ts.map +1 -0
  1716. package/packages/agent/src/config/types.eliza.js +1 -0
  1717. package/packages/agent/src/config/types.gateway.d.ts +216 -0
  1718. package/packages/agent/src/config/types.gateway.d.ts.map +1 -0
  1719. package/packages/agent/src/config/types.gateway.js +1 -0
  1720. package/packages/agent/src/config/types.hooks.d.ts +107 -0
  1721. package/packages/agent/src/config/types.hooks.d.ts.map +1 -0
  1722. package/packages/agent/src/config/types.hooks.js +1 -0
  1723. package/packages/agent/src/config/types.js +7 -0
  1724. package/packages/agent/src/config/types.messages.d.ts +176 -0
  1725. package/packages/agent/src/config/types.messages.d.ts.map +1 -0
  1726. package/packages/agent/src/config/types.messages.js +1 -0
  1727. package/packages/agent/src/config/types.tools.d.ts +400 -0
  1728. package/packages/agent/src/config/types.tools.d.ts.map +1 -0
  1729. package/packages/agent/src/config/types.tools.js +1 -0
  1730. package/packages/agent/src/config/zod-schema.agent-runtime.d.ts +1137 -0
  1731. package/packages/agent/src/config/zod-schema.agent-runtime.d.ts.map +1 -0
  1732. package/packages/agent/src/config/zod-schema.agent-runtime.js +782 -0
  1733. package/packages/agent/src/config/zod-schema.core.d.ts +1021 -0
  1734. package/packages/agent/src/config/zod-schema.core.d.ts.map +1 -0
  1735. package/packages/agent/src/config/zod-schema.core.js +701 -0
  1736. package/packages/agent/src/config/zod-schema.d.ts +3185 -0
  1737. package/packages/agent/src/config/zod-schema.d.ts.map +1 -0
  1738. package/packages/agent/src/config/zod-schema.hooks.d.ts +88 -0
  1739. package/packages/agent/src/config/zod-schema.hooks.d.ts.map +1 -0
  1740. package/packages/agent/src/config/zod-schema.hooks.js +133 -0
  1741. package/packages/agent/src/config/zod-schema.js +850 -0
  1742. package/packages/agent/src/config/zod-schema.providers-core.d.ts +2746 -0
  1743. package/packages/agent/src/config/zod-schema.providers-core.d.ts.map +1 -0
  1744. package/packages/agent/src/config/zod-schema.providers-core.js +961 -0
  1745. package/packages/agent/src/config/zod-schema.session.d.ts +183 -0
  1746. package/packages/agent/src/config/zod-schema.session.d.ts.map +1 -0
  1747. package/packages/agent/src/config/zod-schema.session.js +86 -0
  1748. package/packages/agent/src/contracts/apps.d.ts +2 -0
  1749. package/packages/agent/src/contracts/apps.d.ts.map +1 -0
  1750. package/packages/agent/src/contracts/apps.js +1 -0
  1751. package/packages/agent/src/contracts/awareness.d.ts +38 -0
  1752. package/packages/agent/src/contracts/awareness.d.ts.map +1 -0
  1753. package/packages/agent/src/contracts/awareness.js +7 -0
  1754. package/packages/agent/src/contracts/config.d.ts +160 -0
  1755. package/packages/agent/src/contracts/config.d.ts.map +1 -0
  1756. package/packages/agent/src/contracts/config.js +4 -0
  1757. package/packages/agent/src/contracts/onboarding.d.ts +2 -0
  1758. package/packages/agent/src/contracts/onboarding.d.ts.map +1 -0
  1759. package/packages/agent/src/contracts/onboarding.js +1 -0
  1760. package/packages/agent/src/contracts/service-routing.d.ts +2 -0
  1761. package/packages/agent/src/contracts/service-routing.d.ts.map +1 -0
  1762. package/packages/agent/src/contracts/service-routing.js +1 -0
  1763. package/packages/agent/src/contracts/wallet.d.ts +2 -0
  1764. package/packages/agent/src/contracts/wallet.d.ts.map +1 -0
  1765. package/packages/agent/src/contracts/wallet.js +1 -0
  1766. package/packages/agent/src/diagnostics/integration-observability.d.ts +40 -0
  1767. package/packages/agent/src/diagnostics/integration-observability.d.ts.map +1 -0
  1768. package/packages/agent/src/diagnostics/integration-observability.js +78 -0
  1769. package/packages/agent/src/evaluators/late-join-whitelist.d.ts +16 -0
  1770. package/packages/agent/src/evaluators/late-join-whitelist.d.ts.map +1 -0
  1771. package/packages/agent/src/evaluators/late-join-whitelist.js +67 -0
  1772. package/packages/agent/src/hooks/discovery.d.ts +13 -0
  1773. package/packages/agent/src/hooks/discovery.d.ts.map +1 -0
  1774. package/packages/agent/src/hooks/discovery.js +191 -0
  1775. package/packages/agent/src/hooks/eligibility.d.ts +12 -0
  1776. package/packages/agent/src/hooks/eligibility.d.ts.map +1 -0
  1777. package/packages/agent/src/hooks/eligibility.js +105 -0
  1778. package/packages/agent/src/hooks/index.d.ts +3 -0
  1779. package/packages/agent/src/hooks/index.d.ts.map +1 -0
  1780. package/packages/agent/src/hooks/index.js +2 -0
  1781. package/packages/agent/src/hooks/loader.d.ts +34 -0
  1782. package/packages/agent/src/hooks/loader.d.ts.map +1 -0
  1783. package/packages/agent/src/hooks/loader.js +214 -0
  1784. package/packages/agent/src/hooks/registry.d.ts +11 -0
  1785. package/packages/agent/src/hooks/registry.d.ts.map +1 -0
  1786. package/packages/agent/src/hooks/registry.js +58 -0
  1787. package/packages/agent/src/hooks/types.d.ts +104 -0
  1788. package/packages/agent/src/hooks/types.d.ts.map +1 -0
  1789. package/packages/agent/src/hooks/types.js +8 -0
  1790. package/packages/agent/src/index.d.ts +57 -0
  1791. package/packages/agent/src/index.d.ts.map +1 -0
  1792. package/packages/agent/src/index.js +64 -0
  1793. package/packages/agent/src/middleware/x402/payment-config.d.ts +251 -0
  1794. package/packages/agent/src/middleware/x402/payment-config.d.ts.map +1 -0
  1795. package/packages/agent/src/middleware/x402/payment-config.js +568 -0
  1796. package/packages/agent/src/middleware/x402/payment-wrapper.d.ts +42 -0
  1797. package/packages/agent/src/middleware/x402/payment-wrapper.d.ts.map +1 -0
  1798. package/packages/agent/src/middleware/x402/payment-wrapper.js +1342 -0
  1799. package/packages/agent/src/middleware/x402/startup-validator.d.ts +28 -0
  1800. package/packages/agent/src/middleware/x402/startup-validator.d.ts.map +1 -0
  1801. package/packages/agent/src/middleware/x402/startup-validator.js +225 -0
  1802. package/packages/agent/src/middleware/x402/types.d.ts +158 -0
  1803. package/packages/agent/src/middleware/x402/types.d.ts.map +1 -0
  1804. package/packages/agent/src/middleware/x402/types.js +5 -0
  1805. package/packages/agent/src/middleware/x402/x402-facilitator-binding.d.ts +9 -0
  1806. package/packages/agent/src/middleware/x402/x402-facilitator-binding.d.ts.map +1 -0
  1807. package/packages/agent/src/middleware/x402/x402-facilitator-binding.js +74 -0
  1808. package/packages/agent/src/middleware/x402/x402-replay-durable.d.ts +30 -0
  1809. package/packages/agent/src/middleware/x402/x402-replay-durable.d.ts.map +1 -0
  1810. package/packages/agent/src/middleware/x402/x402-replay-durable.js +202 -0
  1811. package/packages/agent/src/middleware/x402/x402-replay-guard.d.ts +28 -0
  1812. package/packages/agent/src/middleware/x402/x402-replay-guard.d.ts.map +1 -0
  1813. package/packages/agent/src/middleware/x402/x402-replay-guard.js +134 -0
  1814. package/packages/agent/src/middleware/x402/x402-replay-keys.d.ts +21 -0
  1815. package/packages/agent/src/middleware/x402/x402-replay-keys.d.ts.map +1 -0
  1816. package/packages/agent/src/middleware/x402/x402-replay-keys.js +141 -0
  1817. package/packages/agent/src/middleware/x402/x402-resolve.d.ts +6 -0
  1818. package/packages/agent/src/middleware/x402/x402-resolve.d.ts.map +1 -0
  1819. package/packages/agent/src/middleware/x402/x402-resolve.js +31 -0
  1820. package/packages/agent/src/middleware/x402/x402-standard-payment.d.ts +130 -0
  1821. package/packages/agent/src/middleware/x402/x402-standard-payment.d.ts.map +1 -0
  1822. package/packages/agent/src/middleware/x402/x402-standard-payment.js +387 -0
  1823. package/packages/agent/src/middleware/x402/x402-types.d.ts +130 -0
  1824. package/packages/agent/src/middleware/x402/x402-types.d.ts.map +1 -0
  1825. package/packages/agent/src/middleware/x402/x402-types.js +189 -0
  1826. package/packages/agent/src/plugins/custom-rtmp/index.d.ts +12 -0
  1827. package/packages/agent/src/plugins/custom-rtmp/index.d.ts.map +1 -0
  1828. package/packages/agent/src/plugins/custom-rtmp/index.js +26 -0
  1829. package/packages/agent/src/providers/admin-panel.d.ts +4 -0
  1830. package/packages/agent/src/providers/admin-panel.d.ts.map +1 -0
  1831. package/packages/agent/src/providers/admin-panel.js +83 -0
  1832. package/packages/agent/src/providers/admin-trust.d.ts +4 -0
  1833. package/packages/agent/src/providers/admin-trust.d.ts.map +1 -0
  1834. package/packages/agent/src/providers/admin-trust.js +34 -0
  1835. package/packages/agent/src/providers/automation-terminal-bridge.d.ts +3 -0
  1836. package/packages/agent/src/providers/automation-terminal-bridge.d.ts.map +1 -0
  1837. package/packages/agent/src/providers/automation-terminal-bridge.js +71 -0
  1838. package/packages/agent/src/providers/conversation-utils.d.ts +11 -0
  1839. package/packages/agent/src/providers/conversation-utils.d.ts.map +1 -0
  1840. package/packages/agent/src/providers/conversation-utils.js +69 -0
  1841. package/packages/agent/src/providers/escalation-trigger.d.ts +15 -0
  1842. package/packages/agent/src/providers/escalation-trigger.d.ts.map +1 -0
  1843. package/packages/agent/src/providers/escalation-trigger.js +165 -0
  1844. package/packages/agent/src/providers/media-provider.d.ts +192 -0
  1845. package/packages/agent/src/providers/media-provider.d.ts.map +1 -0
  1846. package/packages/agent/src/providers/media-provider.js +1088 -0
  1847. package/packages/agent/src/providers/page-scoped-context.d.ts +3 -0
  1848. package/packages/agent/src/providers/page-scoped-context.d.ts.map +1 -0
  1849. package/packages/agent/src/providers/page-scoped-context.js +493 -0
  1850. package/packages/agent/src/providers/recent-conversations.d.ts +3 -0
  1851. package/packages/agent/src/providers/recent-conversations.d.ts.map +1 -0
  1852. package/packages/agent/src/providers/recent-conversations.js +94 -0
  1853. package/packages/agent/src/providers/relevant-conversations.d.ts +3 -0
  1854. package/packages/agent/src/providers/relevant-conversations.d.ts.map +1 -0
  1855. package/packages/agent/src/providers/relevant-conversations.js +93 -0
  1856. package/packages/agent/src/providers/role-backfill.d.ts +18 -0
  1857. package/packages/agent/src/providers/role-backfill.d.ts.map +1 -0
  1858. package/packages/agent/src/providers/role-backfill.js +84 -0
  1859. package/packages/agent/src/providers/rolodex.d.ts +3 -0
  1860. package/packages/agent/src/providers/rolodex.d.ts.map +1 -0
  1861. package/packages/agent/src/providers/rolodex.js +78 -0
  1862. package/packages/agent/src/providers/session-bridge.d.ts +24 -0
  1863. package/packages/agent/src/providers/session-bridge.d.ts.map +1 -0
  1864. package/packages/agent/src/providers/session-bridge.js +85 -0
  1865. package/packages/agent/src/providers/session-utils.d.ts +20 -0
  1866. package/packages/agent/src/providers/session-utils.d.ts.map +1 -0
  1867. package/packages/agent/src/providers/session-utils.js +33 -0
  1868. package/packages/agent/src/providers/simple-mode.d.ts +4 -0
  1869. package/packages/agent/src/providers/simple-mode.d.ts.map +1 -0
  1870. package/packages/agent/src/providers/simple-mode.js +85 -0
  1871. package/packages/agent/src/providers/skill-provider.d.ts +16 -0
  1872. package/packages/agent/src/providers/skill-provider.d.ts.map +1 -0
  1873. package/packages/agent/src/providers/skill-provider.js +331 -0
  1874. package/packages/agent/src/providers/tasks.d.ts +9 -0
  1875. package/packages/agent/src/providers/tasks.d.ts.map +1 -0
  1876. package/packages/agent/src/providers/tasks.js +113 -0
  1877. package/packages/agent/src/providers/ui-catalog.d.ts +3 -0
  1878. package/packages/agent/src/providers/ui-catalog.d.ts.map +1 -0
  1879. package/packages/agent/src/providers/ui-catalog.js +95 -0
  1880. package/packages/agent/src/providers/user-name.d.ts +11 -0
  1881. package/packages/agent/src/providers/user-name.d.ts.map +1 -0
  1882. package/packages/agent/src/providers/user-name.js +40 -0
  1883. package/packages/agent/src/providers/workspace-provider.d.ts +14 -0
  1884. package/packages/agent/src/providers/workspace-provider.d.ts.map +1 -0
  1885. package/packages/agent/src/providers/workspace-provider.js +177 -0
  1886. package/packages/agent/src/providers/workspace.d.ts +55 -0
  1887. package/packages/agent/src/providers/workspace.d.ts.map +1 -0
  1888. package/packages/agent/src/providers/workspace.js +484 -0
  1889. package/packages/agent/src/runtime/advanced-capabilities-config.d.ts +8 -0
  1890. package/packages/agent/src/runtime/advanced-capabilities-config.d.ts.map +1 -0
  1891. package/packages/agent/src/runtime/advanced-capabilities-config.js +42 -0
  1892. package/packages/agent/src/runtime/agent-event-service.d.ts +35 -0
  1893. package/packages/agent/src/runtime/agent-event-service.d.ts.map +1 -0
  1894. package/packages/agent/src/runtime/agent-event-service.js +16 -0
  1895. package/packages/agent/src/runtime/cloud-onboarding.d.ts +35 -0
  1896. package/packages/agent/src/runtime/cloud-onboarding.d.ts.map +1 -0
  1897. package/packages/agent/src/runtime/cloud-onboarding.js +279 -0
  1898. package/packages/agent/src/runtime/core-plugins.d.ts +19 -0
  1899. package/packages/agent/src/runtime/core-plugins.d.ts.map +1 -0
  1900. package/packages/agent/src/runtime/core-plugins.js +65 -0
  1901. package/packages/agent/src/runtime/custom-actions.d.ts +43 -0
  1902. package/packages/agent/src/runtime/custom-actions.d.ts.map +1 -0
  1903. package/packages/agent/src/runtime/custom-actions.js +507 -0
  1904. package/packages/agent/src/runtime/default-knowledge.d.ts +20 -0
  1905. package/packages/agent/src/runtime/default-knowledge.d.ts.map +1 -0
  1906. package/packages/agent/src/runtime/default-knowledge.js +256 -0
  1907. package/packages/agent/src/runtime/discord-local-plugin.d.ts +86 -0
  1908. package/packages/agent/src/runtime/discord-local-plugin.d.ts.map +1 -0
  1909. package/packages/agent/src/runtime/discord-local-plugin.js +1080 -0
  1910. package/packages/agent/src/runtime/eliza-plugin.d.ts +16 -0
  1911. package/packages/agent/src/runtime/eliza-plugin.d.ts.map +1 -0
  1912. package/packages/agent/src/runtime/eliza-plugin.js +226 -0
  1913. package/packages/agent/src/runtime/eliza.d.ts +91 -0
  1914. package/packages/agent/src/runtime/eliza.d.ts.map +1 -0
  1915. package/packages/agent/src/runtime/eliza.js +3432 -0
  1916. package/packages/agent/src/runtime/embedding-presets.d.ts +19 -0
  1917. package/packages/agent/src/runtime/embedding-presets.d.ts.map +1 -0
  1918. package/packages/agent/src/runtime/embedding-presets.js +60 -0
  1919. package/packages/agent/src/runtime/first-time-setup.d.ts +45 -0
  1920. package/packages/agent/src/runtime/first-time-setup.d.ts.map +1 -0
  1921. package/packages/agent/src/runtime/first-time-setup.js +692 -0
  1922. package/packages/agent/src/runtime/native-runtime-features.d.ts +4 -0
  1923. package/packages/agent/src/runtime/native-runtime-features.d.ts.map +1 -0
  1924. package/packages/agent/src/runtime/native-runtime-features.js +10 -0
  1925. package/packages/agent/src/runtime/onboarding-names.d.ts +11 -0
  1926. package/packages/agent/src/runtime/onboarding-names.d.ts.map +1 -0
  1927. package/packages/agent/src/runtime/onboarding-names.js +81 -0
  1928. package/packages/agent/src/runtime/owner-entity.d.ts +4 -0
  1929. package/packages/agent/src/runtime/owner-entity.d.ts.map +1 -0
  1930. package/packages/agent/src/runtime/owner-entity.js +30 -0
  1931. package/packages/agent/src/runtime/pglite-error-compat.d.ts +28 -0
  1932. package/packages/agent/src/runtime/pglite-error-compat.d.ts.map +1 -0
  1933. package/packages/agent/src/runtime/pglite-error-compat.js +54 -0
  1934. package/packages/agent/src/runtime/plugin-collector.d.ts +26 -0
  1935. package/packages/agent/src/runtime/plugin-collector.d.ts.map +1 -0
  1936. package/packages/agent/src/runtime/plugin-collector.js +403 -0
  1937. package/packages/agent/src/runtime/plugin-lifecycle.d.ts +44 -0
  1938. package/packages/agent/src/runtime/plugin-lifecycle.d.ts.map +1 -0
  1939. package/packages/agent/src/runtime/plugin-lifecycle.js +578 -0
  1940. package/packages/agent/src/runtime/plugin-resolver.d.ts +32 -0
  1941. package/packages/agent/src/runtime/plugin-resolver.d.ts.map +1 -0
  1942. package/packages/agent/src/runtime/plugin-resolver.js +971 -0
  1943. package/packages/agent/src/runtime/plugin-role-gating.d.ts +34 -0
  1944. package/packages/agent/src/runtime/plugin-role-gating.d.ts.map +1 -0
  1945. package/packages/agent/src/runtime/plugin-role-gating.js +234 -0
  1946. package/packages/agent/src/runtime/plugin-types.d.ts +65 -0
  1947. package/packages/agent/src/runtime/plugin-types.d.ts.map +1 -0
  1948. package/packages/agent/src/runtime/plugin-types.js +331 -0
  1949. package/packages/agent/src/runtime/prompt-compaction.d.ts +80 -0
  1950. package/packages/agent/src/runtime/prompt-compaction.d.ts.map +1 -0
  1951. package/packages/agent/src/runtime/prompt-compaction.js +307 -0
  1952. package/packages/agent/src/runtime/prompt-optimization.d.ts +34 -0
  1953. package/packages/agent/src/runtime/prompt-optimization.d.ts.map +1 -0
  1954. package/packages/agent/src/runtime/prompt-optimization.js +686 -0
  1955. package/packages/agent/src/runtime/release-plugin-policy.d.ts +20 -0
  1956. package/packages/agent/src/runtime/release-plugin-policy.d.ts.map +1 -0
  1957. package/packages/agent/src/runtime/release-plugin-policy.js +85 -0
  1958. package/packages/agent/src/runtime/restart.d.ts +45 -0
  1959. package/packages/agent/src/runtime/restart.d.ts.map +1 -0
  1960. package/packages/agent/src/runtime/restart.js +45 -0
  1961. package/packages/agent/src/runtime/roles/src/action.d.ts +11 -0
  1962. package/packages/agent/src/runtime/roles/src/action.d.ts.map +1 -0
  1963. package/packages/agent/src/runtime/roles/src/action.js +665 -0
  1964. package/packages/agent/src/runtime/roles/src/index.d.ts +24 -0
  1965. package/packages/agent/src/runtime/roles/src/index.d.ts.map +1 -0
  1966. package/packages/agent/src/runtime/roles/src/index.js +243 -0
  1967. package/packages/agent/src/runtime/roles/src/intent.d.ts +18 -0
  1968. package/packages/agent/src/runtime/roles/src/intent.d.ts.map +1 -0
  1969. package/packages/agent/src/runtime/roles/src/intent.js +293 -0
  1970. package/packages/agent/src/runtime/roles/src/provider.d.ts +7 -0
  1971. package/packages/agent/src/runtime/roles/src/provider.d.ts.map +1 -0
  1972. package/packages/agent/src/runtime/roles/src/provider.js +133 -0
  1973. package/packages/agent/src/runtime/roles/src/types.d.ts +3 -0
  1974. package/packages/agent/src/runtime/roles/src/types.d.ts.map +1 -0
  1975. package/packages/agent/src/runtime/roles/src/types.js +1 -0
  1976. package/packages/agent/src/runtime/roles/src/utils.d.ts +2 -0
  1977. package/packages/agent/src/runtime/roles/src/utils.d.ts.map +1 -0
  1978. package/packages/agent/src/runtime/roles/src/utils.js +1 -0
  1979. package/packages/agent/src/runtime/roles.d.ts +3 -0
  1980. package/packages/agent/src/runtime/roles.d.ts.map +1 -0
  1981. package/packages/agent/src/runtime/roles.js +5 -0
  1982. package/packages/agent/src/runtime/trajectory-internals.d.ts +226 -0
  1983. package/packages/agent/src/runtime/trajectory-internals.d.ts.map +1 -0
  1984. package/packages/agent/src/runtime/trajectory-internals.js +1327 -0
  1985. package/packages/agent/src/runtime/trajectory-persistence.d.ts +15 -0
  1986. package/packages/agent/src/runtime/trajectory-persistence.d.ts.map +1 -0
  1987. package/packages/agent/src/runtime/trajectory-persistence.js +29 -0
  1988. package/packages/agent/src/runtime/trajectory-query.d.ts +8 -0
  1989. package/packages/agent/src/runtime/trajectory-query.d.ts.map +1 -0
  1990. package/packages/agent/src/runtime/trajectory-query.js +27 -0
  1991. package/packages/agent/src/runtime/trajectory-storage.d.ts +91 -0
  1992. package/packages/agent/src/runtime/trajectory-storage.d.ts.map +1 -0
  1993. package/packages/agent/src/runtime/trajectory-storage.js +1155 -0
  1994. package/packages/agent/src/runtime/version.d.ts +2 -0
  1995. package/packages/agent/src/runtime/version.d.ts.map +1 -0
  1996. package/packages/agent/src/runtime/version.js +5 -0
  1997. package/packages/agent/src/runtime/web-search-tools.d.ts +22 -0
  1998. package/packages/agent/src/runtime/web-search-tools.d.ts.map +1 -0
  1999. package/packages/agent/src/runtime/web-search-tools.js +149 -0
  2000. package/packages/agent/src/security/access.d.ts +17 -0
  2001. package/packages/agent/src/security/access.d.ts.map +1 -0
  2002. package/packages/agent/src/security/access.js +129 -0
  2003. package/packages/agent/src/security/audit-log.d.ts +47 -0
  2004. package/packages/agent/src/security/audit-log.d.ts.map +1 -0
  2005. package/packages/agent/src/security/audit-log.js +161 -0
  2006. package/packages/agent/src/security/index.d.ts +4 -0
  2007. package/packages/agent/src/security/index.d.ts.map +1 -0
  2008. package/packages/agent/src/security/index.js +3 -0
  2009. package/packages/agent/src/security/network-policy.d.ts +6 -0
  2010. package/packages/agent/src/security/network-policy.d.ts.map +1 -0
  2011. package/packages/agent/src/security/network-policy.js +85 -0
  2012. package/packages/agent/src/services/agent-export.d.ts +100 -0
  2013. package/packages/agent/src/services/agent-export.d.ts.map +1 -0
  2014. package/packages/agent/src/services/agent-export.js +729 -0
  2015. package/packages/agent/src/services/app-manager.d.ts +108 -0
  2016. package/packages/agent/src/services/app-manager.d.ts.map +1 -0
  2017. package/packages/agent/src/services/app-manager.js +1623 -0
  2018. package/packages/agent/src/services/app-package-modules.d.ts +22 -0
  2019. package/packages/agent/src/services/app-package-modules.d.ts.map +1 -0
  2020. package/packages/agent/src/services/app-package-modules.js +388 -0
  2021. package/packages/agent/src/services/app-run-store.d.ts +6 -0
  2022. package/packages/agent/src/services/app-run-store.d.ts.map +1 -0
  2023. package/packages/agent/src/services/app-run-store.js +490 -0
  2024. package/packages/agent/src/services/app-session-gate.d.ts +15 -0
  2025. package/packages/agent/src/services/app-session-gate.d.ts.map +1 -0
  2026. package/packages/agent/src/services/app-session-gate.js +71 -0
  2027. package/packages/agent/src/services/browser-capture.d.ts +41 -0
  2028. package/packages/agent/src/services/browser-capture.d.ts.map +1 -0
  2029. package/packages/agent/src/services/browser-capture.js +173 -0
  2030. package/packages/agent/src/services/browser-workspace-desktop.d.ts +22 -0
  2031. package/packages/agent/src/services/browser-workspace-desktop.d.ts.map +1 -0
  2032. package/packages/agent/src/services/browser-workspace-desktop.js +1383 -0
  2033. package/packages/agent/src/services/browser-workspace-elements.d.ts +42 -0
  2034. package/packages/agent/src/services/browser-workspace-elements.d.ts.map +1 -0
  2035. package/packages/agent/src/services/browser-workspace-elements.js +508 -0
  2036. package/packages/agent/src/services/browser-workspace-forms.d.ts +19 -0
  2037. package/packages/agent/src/services/browser-workspace-forms.d.ts.map +1 -0
  2038. package/packages/agent/src/services/browser-workspace-forms.js +245 -0
  2039. package/packages/agent/src/services/browser-workspace-helpers.d.ts +20 -0
  2040. package/packages/agent/src/services/browser-workspace-helpers.d.ts.map +1 -0
  2041. package/packages/agent/src/services/browser-workspace-helpers.js +121 -0
  2042. package/packages/agent/src/services/browser-workspace-jsdom.d.ts +16 -0
  2043. package/packages/agent/src/services/browser-workspace-jsdom.d.ts.map +1 -0
  2044. package/packages/agent/src/services/browser-workspace-jsdom.js +223 -0
  2045. package/packages/agent/src/services/browser-workspace-network.d.ts +7 -0
  2046. package/packages/agent/src/services/browser-workspace-network.d.ts.map +1 -0
  2047. package/packages/agent/src/services/browser-workspace-network.js +137 -0
  2048. package/packages/agent/src/services/browser-workspace-snapshots.d.ts +14 -0
  2049. package/packages/agent/src/services/browser-workspace-snapshots.d.ts.map +1 -0
  2050. package/packages/agent/src/services/browser-workspace-snapshots.js +144 -0
  2051. package/packages/agent/src/services/browser-workspace-state.d.ts +22 -0
  2052. package/packages/agent/src/services/browser-workspace-state.d.ts.map +1 -0
  2053. package/packages/agent/src/services/browser-workspace-state.js +129 -0
  2054. package/packages/agent/src/services/browser-workspace-types.d.ts +273 -0
  2055. package/packages/agent/src/services/browser-workspace-types.d.ts.map +1 -0
  2056. package/packages/agent/src/services/browser-workspace-types.js +1 -0
  2057. package/packages/agent/src/services/browser-workspace-web.d.ts +8 -0
  2058. package/packages/agent/src/services/browser-workspace-web.d.ts.map +1 -0
  2059. package/packages/agent/src/services/browser-workspace-web.js +1152 -0
  2060. package/packages/agent/src/services/browser-workspace.d.ts +36 -0
  2061. package/packages/agent/src/services/browser-workspace.d.ts.map +1 -0
  2062. package/packages/agent/src/services/browser-workspace.js +632 -0
  2063. package/packages/agent/src/services/character-history.d.ts +69 -0
  2064. package/packages/agent/src/services/character-history.d.ts.map +1 -0
  2065. package/packages/agent/src/services/character-history.js +280 -0
  2066. package/packages/agent/src/services/character-persistence.d.ts +25 -0
  2067. package/packages/agent/src/services/character-persistence.d.ts.map +1 -0
  2068. package/packages/agent/src/services/character-persistence.js +167 -0
  2069. package/packages/agent/src/services/client-chat-sender.d.ts +19 -0
  2070. package/packages/agent/src/services/client-chat-sender.d.ts.map +1 -0
  2071. package/packages/agent/src/services/client-chat-sender.js +88 -0
  2072. package/packages/agent/src/services/coding-agent-context.d.ts +310 -0
  2073. package/packages/agent/src/services/coding-agent-context.d.ts.map +1 -0
  2074. package/packages/agent/src/services/coding-agent-context.js +281 -0
  2075. package/packages/agent/src/services/coding-task-executor.d.ts +14 -0
  2076. package/packages/agent/src/services/coding-task-executor.d.ts.map +1 -0
  2077. package/packages/agent/src/services/coding-task-executor.js +109 -0
  2078. package/packages/agent/src/services/config-plugin-manager.d.ts +6 -0
  2079. package/packages/agent/src/services/config-plugin-manager.d.ts.map +1 -0
  2080. package/packages/agent/src/services/config-plugin-manager.js +53 -0
  2081. package/packages/agent/src/services/connector-setup-service.d.ts +48 -0
  2082. package/packages/agent/src/services/connector-setup-service.d.ts.map +1 -0
  2083. package/packages/agent/src/services/connector-setup-service.js +60 -0
  2084. package/packages/agent/src/services/conversation-proximity.d.ts +27 -0
  2085. package/packages/agent/src/services/conversation-proximity.d.ts.map +1 -0
  2086. package/packages/agent/src/services/conversation-proximity.js +124 -0
  2087. package/packages/agent/src/services/escalation.d.ts +35 -0
  2088. package/packages/agent/src/services/escalation.d.ts.map +1 -0
  2089. package/packages/agent/src/services/escalation.js +376 -0
  2090. package/packages/agent/src/services/evm-signing-capability.d.ts +38 -0
  2091. package/packages/agent/src/services/evm-signing-capability.d.ts.map +1 -0
  2092. package/packages/agent/src/services/evm-signing-capability.js +60 -0
  2093. package/packages/agent/src/services/executor-registry.d.ts +4 -0
  2094. package/packages/agent/src/services/executor-registry.d.ts.map +1 -0
  2095. package/packages/agent/src/services/executor-registry.js +10 -0
  2096. package/packages/agent/src/services/hosted-tools.d.ts +70 -0
  2097. package/packages/agent/src/services/hosted-tools.d.ts.map +1 -0
  2098. package/packages/agent/src/services/hosted-tools.js +87 -0
  2099. package/packages/agent/src/services/index.d.ts +27 -0
  2100. package/packages/agent/src/services/index.d.ts.map +1 -0
  2101. package/packages/agent/src/services/index.js +33 -0
  2102. package/packages/agent/src/services/mcp-marketplace.d.ts +89 -0
  2103. package/packages/agent/src/services/mcp-marketplace.d.ts.map +1 -0
  2104. package/packages/agent/src/services/mcp-marketplace.js +200 -0
  2105. package/packages/agent/src/services/overlay-app-presence.d.ts +9 -0
  2106. package/packages/agent/src/services/overlay-app-presence.d.ts.map +1 -0
  2107. package/packages/agent/src/services/overlay-app-presence.js +18 -0
  2108. package/packages/agent/src/services/owner-name.d.ts +4 -0
  2109. package/packages/agent/src/services/owner-name.d.ts.map +1 -0
  2110. package/packages/agent/src/services/owner-name.js +46 -0
  2111. package/packages/agent/src/services/plugin-manager-types.d.ts +114 -0
  2112. package/packages/agent/src/services/plugin-manager-types.d.ts.map +1 -0
  2113. package/packages/agent/src/services/plugin-manager-types.js +18 -0
  2114. package/packages/agent/src/services/registry-client-app-meta.d.ts +6 -0
  2115. package/packages/agent/src/services/registry-client-app-meta.d.ts.map +1 -0
  2116. package/packages/agent/src/services/registry-client-app-meta.js +165 -0
  2117. package/packages/agent/src/services/registry-client-endpoints.d.ts +7 -0
  2118. package/packages/agent/src/services/registry-client-endpoints.d.ts.map +1 -0
  2119. package/packages/agent/src/services/registry-client-endpoints.js +190 -0
  2120. package/packages/agent/src/services/registry-client-local.d.ts +4 -0
  2121. package/packages/agent/src/services/registry-client-local.d.ts.map +1 -0
  2122. package/packages/agent/src/services/registry-client-local.js +546 -0
  2123. package/packages/agent/src/services/registry-client-network.d.ts +9 -0
  2124. package/packages/agent/src/services/registry-client-network.d.ts.map +1 -0
  2125. package/packages/agent/src/services/registry-client-network.js +120 -0
  2126. package/packages/agent/src/services/registry-client-queries.d.ts +26 -0
  2127. package/packages/agent/src/services/registry-client-queries.d.ts.map +1 -0
  2128. package/packages/agent/src/services/registry-client-queries.js +194 -0
  2129. package/packages/agent/src/services/registry-client-types.d.ts +92 -0
  2130. package/packages/agent/src/services/registry-client-types.d.ts.map +1 -0
  2131. package/packages/agent/src/services/registry-client-types.js +1 -0
  2132. package/packages/agent/src/services/registry-client.d.ts +39 -0
  2133. package/packages/agent/src/services/registry-client.d.ts.map +1 -0
  2134. package/packages/agent/src/services/registry-client.js +332 -0
  2135. package/packages/agent/src/services/relationships-graph.d.ts +240 -0
  2136. package/packages/agent/src/services/relationships-graph.d.ts.map +1 -0
  2137. package/packages/agent/src/services/relationships-graph.js +1642 -0
  2138. package/packages/agent/src/services/remote-signing-service.d.ts +58 -0
  2139. package/packages/agent/src/services/remote-signing-service.d.ts.map +1 -0
  2140. package/packages/agent/src/services/remote-signing-service.js +185 -0
  2141. package/packages/agent/src/services/research-task-executor.d.ts +14 -0
  2142. package/packages/agent/src/services/research-task-executor.d.ts.map +1 -0
  2143. package/packages/agent/src/services/research-task-executor.js +136 -0
  2144. package/packages/agent/src/services/sandbox-engine.d.ts +96 -0
  2145. package/packages/agent/src/services/sandbox-engine.d.ts.map +1 -0
  2146. package/packages/agent/src/services/sandbox-engine.js +604 -0
  2147. package/packages/agent/src/services/sandbox-manager.d.ts +106 -0
  2148. package/packages/agent/src/services/sandbox-manager.d.ts.map +1 -0
  2149. package/packages/agent/src/services/sandbox-manager.js +380 -0
  2150. package/packages/agent/src/services/self-updater.d.ts +21 -0
  2151. package/packages/agent/src/services/self-updater.d.ts.map +1 -0
  2152. package/packages/agent/src/services/self-updater.js +162 -0
  2153. package/packages/agent/src/services/send-handler-availability.d.ts +5 -0
  2154. package/packages/agent/src/services/send-handler-availability.d.ts.map +1 -0
  2155. package/packages/agent/src/services/send-handler-availability.js +20 -0
  2156. package/packages/agent/src/services/signal-pairing.d.ts +73 -0
  2157. package/packages/agent/src/services/signal-pairing.d.ts.map +1 -0
  2158. package/packages/agent/src/services/signal-pairing.js +514 -0
  2159. package/packages/agent/src/services/signing-policy.d.ts +44 -0
  2160. package/packages/agent/src/services/signing-policy.d.ts.map +1 -0
  2161. package/packages/agent/src/services/signing-policy.js +165 -0
  2162. package/packages/agent/src/services/skill-catalog-client.d.ts +47 -0
  2163. package/packages/agent/src/services/skill-catalog-client.d.ts.map +1 -0
  2164. package/packages/agent/src/services/skill-catalog-client.js +130 -0
  2165. package/packages/agent/src/services/skill-marketplace.d.ts +42 -0
  2166. package/packages/agent/src/services/skill-marketplace.d.ts.map +1 -0
  2167. package/packages/agent/src/services/skill-marketplace.js +693 -0
  2168. package/packages/agent/src/services/stream-manager.d.ts +121 -0
  2169. package/packages/agent/src/services/stream-manager.d.ts.map +1 -0
  2170. package/packages/agent/src/services/stream-manager.js +609 -0
  2171. package/packages/agent/src/services/task-executor.d.ts +47 -0
  2172. package/packages/agent/src/services/task-executor.d.ts.map +1 -0
  2173. package/packages/agent/src/services/task-executor.js +31 -0
  2174. package/packages/agent/src/services/telegram-account-auth.d.ts +99 -0
  2175. package/packages/agent/src/services/telegram-account-auth.d.ts.map +1 -0
  2176. package/packages/agent/src/services/telegram-account-auth.js +611 -0
  2177. package/packages/agent/src/services/tts-stream-bridge.d.ts +83 -0
  2178. package/packages/agent/src/services/tts-stream-bridge.d.ts.map +1 -0
  2179. package/packages/agent/src/services/tts-stream-bridge.js +360 -0
  2180. package/packages/agent/src/services/update-checker.d.ts +29 -0
  2181. package/packages/agent/src/services/update-checker.d.ts.map +1 -0
  2182. package/packages/agent/src/services/update-checker.js +134 -0
  2183. package/packages/agent/src/services/version-compat.d.ts +99 -0
  2184. package/packages/agent/src/services/version-compat.d.ts.map +1 -0
  2185. package/packages/agent/src/services/version-compat.js +203 -0
  2186. package/packages/agent/src/services/whatsapp-pairing.d.ts +41 -0
  2187. package/packages/agent/src/services/whatsapp-pairing.d.ts.map +1 -0
  2188. package/packages/agent/src/services/whatsapp-pairing.js +209 -0
  2189. package/packages/agent/src/shared/ui-catalog-prompt.d.ts +52 -0
  2190. package/packages/agent/src/shared/ui-catalog-prompt.d.ts.map +1 -0
  2191. package/packages/agent/src/shared/ui-catalog-prompt.js +1028 -0
  2192. package/packages/agent/src/test-support/index.d.ts +4 -0
  2193. package/packages/agent/src/test-support/index.d.ts.map +1 -0
  2194. package/packages/agent/src/test-support/index.js +3 -0
  2195. package/packages/agent/src/test-support/process-helpers.d.ts +13 -0
  2196. package/packages/agent/src/test-support/process-helpers.d.ts.map +1 -0
  2197. package/packages/agent/src/test-support/process-helpers.js +23 -0
  2198. package/packages/agent/src/test-support/route-test-helpers.d.ts +37 -0
  2199. package/packages/agent/src/test-support/route-test-helpers.d.ts.map +1 -0
  2200. package/packages/agent/src/test-support/route-test-helpers.js +54 -0
  2201. package/packages/agent/src/test-support/test-helpers.d.ts +77 -0
  2202. package/packages/agent/src/test-support/test-helpers.d.ts.map +1 -0
  2203. package/packages/agent/src/test-support/test-helpers.js +217 -0
  2204. package/packages/agent/src/test-utils/sqlite-compat.d.ts +23 -0
  2205. package/packages/agent/src/test-utils/sqlite-compat.d.ts.map +1 -0
  2206. package/packages/agent/src/test-utils/sqlite-compat.js +214 -0
  2207. package/packages/agent/src/triggers/action.d.ts +4 -0
  2208. package/packages/agent/src/triggers/action.d.ts.map +1 -0
  2209. package/packages/agent/src/triggers/action.js +336 -0
  2210. package/packages/agent/src/triggers/delete-trigger.d.ts +10 -0
  2211. package/packages/agent/src/triggers/delete-trigger.d.ts.map +1 -0
  2212. package/packages/agent/src/triggers/delete-trigger.js +158 -0
  2213. package/packages/agent/src/triggers/run-trigger.d.ts +11 -0
  2214. package/packages/agent/src/triggers/run-trigger.d.ts.map +1 -0
  2215. package/packages/agent/src/triggers/run-trigger.js +142 -0
  2216. package/packages/agent/src/triggers/runtime.d.ts +30 -0
  2217. package/packages/agent/src/triggers/runtime.d.ts.map +1 -0
  2218. package/packages/agent/src/triggers/runtime.js +530 -0
  2219. package/packages/agent/src/triggers/scheduling.d.ts +78 -0
  2220. package/packages/agent/src/triggers/scheduling.d.ts.map +1 -0
  2221. package/packages/agent/src/triggers/scheduling.js +433 -0
  2222. package/packages/agent/src/triggers/types.d.ts +96 -0
  2223. package/packages/agent/src/triggers/types.d.ts.map +1 -0
  2224. package/packages/agent/src/triggers/types.js +1 -0
  2225. package/packages/agent/src/triggers/update-trigger.d.ts +10 -0
  2226. package/packages/agent/src/triggers/update-trigger.d.ts.map +1 -0
  2227. package/packages/agent/src/triggers/update-trigger.js +309 -0
  2228. package/packages/agent/src/types/agent-skills.d.ts +19 -0
  2229. package/packages/agent/src/types/agent-skills.d.ts.map +1 -0
  2230. package/packages/agent/src/types/agent-skills.js +7 -0
  2231. package/packages/agent/src/types/config-like.d.ts +17 -0
  2232. package/packages/agent/src/types/config-like.d.ts.map +1 -0
  2233. package/packages/agent/src/types/config-like.js +7 -0
  2234. package/packages/agent/src/types/index.d.ts +4 -0
  2235. package/packages/agent/src/types/index.d.ts.map +1 -0
  2236. package/packages/agent/src/types/index.js +3 -0
  2237. package/packages/agent/src/types/trajectory.d.ts +147 -0
  2238. package/packages/agent/src/types/trajectory.d.ts.map +1 -0
  2239. package/packages/agent/src/types/trajectory.js +8 -0
  2240. package/packages/agent/src/utils/exec-safety.d.ts +2 -0
  2241. package/packages/agent/src/utils/exec-safety.d.ts.map +1 -0
  2242. package/packages/agent/src/utils/exec-safety.js +21 -0
  2243. package/packages/agent/src/utils/number-parsing.d.ts +26 -0
  2244. package/packages/agent/src/utils/number-parsing.d.ts.map +1 -0
  2245. package/packages/agent/src/utils/number-parsing.js +51 -0
  2246. package/packages/agent/src/version-resolver.d.ts +2 -0
  2247. package/packages/agent/src/version-resolver.d.ts.map +1 -0
  2248. package/packages/agent/src/version-resolver.js +50 -0
  2249. package/packages/app-core/src/App.d.ts +6 -0
  2250. package/packages/app-core/src/App.d.ts.map +1 -0
  2251. package/packages/app-core/src/App.js +518 -0
  2252. package/packages/app-core/src/api/auth/audit.d.ts +52 -0
  2253. package/packages/app-core/src/api/auth/audit.d.ts.map +1 -0
  2254. package/packages/app-core/src/api/auth/audit.js +126 -0
  2255. package/packages/app-core/src/api/auth/legacy-bearer.d.ts +75 -0
  2256. package/packages/app-core/src/api/auth/legacy-bearer.d.ts.map +1 -0
  2257. package/packages/app-core/src/api/auth/legacy-bearer.js +126 -0
  2258. package/packages/app-core/src/api/auth/sessions.d.ts +152 -0
  2259. package/packages/app-core/src/api/auth/sessions.d.ts.map +1 -0
  2260. package/packages/app-core/src/api/auth/sessions.js +298 -0
  2261. package/packages/app-core/src/api/auth-client.d.ts +130 -0
  2262. package/packages/app-core/src/api/auth-client.d.ts.map +1 -0
  2263. package/packages/app-core/src/api/auth-client.js +301 -0
  2264. package/packages/app-core/src/api/auth.d.ts +157 -0
  2265. package/packages/app-core/src/api/auth.d.ts.map +1 -0
  2266. package/packages/app-core/src/api/auth.js +340 -0
  2267. package/packages/app-core/src/api/client-agent.d.ts +616 -0
  2268. package/packages/app-core/src/api/client-agent.d.ts.map +1 -0
  2269. package/packages/app-core/src/api/client-agent.js +1369 -0
  2270. package/packages/app-core/src/api/client-automations.d.ts +8 -0
  2271. package/packages/app-core/src/api/client-automations.d.ts.map +1 -0
  2272. package/packages/app-core/src/api/client-automations.js +7 -0
  2273. package/packages/app-core/src/api/client-base.d.ts +82 -0
  2274. package/packages/app-core/src/api/client-base.d.ts.map +1 -0
  2275. package/packages/app-core/src/api/client-base.js +697 -0
  2276. package/packages/app-core/src/api/client-browser-workspace.d.ts +25 -0
  2277. package/packages/app-core/src/api/client-browser-workspace.d.ts.map +1 -0
  2278. package/packages/app-core/src/api/client-browser-workspace.js +98 -0
  2279. package/packages/app-core/src/api/client-chat.d.ts +355 -0
  2280. package/packages/app-core/src/api/client-chat.d.ts.map +1 -0
  2281. package/packages/app-core/src/api/client-chat.js +582 -0
  2282. package/packages/app-core/src/api/client-cloud.d.ts +282 -0
  2283. package/packages/app-core/src/api/client-cloud.d.ts.map +1 -0
  2284. package/packages/app-core/src/api/client-cloud.js +403 -0
  2285. package/packages/app-core/src/api/client-computeruse.d.ts +32 -0
  2286. package/packages/app-core/src/api/client-computeruse.d.ts.map +1 -0
  2287. package/packages/app-core/src/api/client-computeruse.js +16 -0
  2288. package/packages/app-core/src/api/client-imessage.d.ts +68 -0
  2289. package/packages/app-core/src/api/client-imessage.d.ts.map +1 -0
  2290. package/packages/app-core/src/api/client-imessage.js +74 -0
  2291. package/packages/app-core/src/api/client-local-inference.d.ts +62 -0
  2292. package/packages/app-core/src/api/client-local-inference.d.ts.map +1 -0
  2293. package/packages/app-core/src/api/client-local-inference.js +87 -0
  2294. package/packages/app-core/src/api/client-n8n.d.ts +27 -0
  2295. package/packages/app-core/src/api/client-n8n.d.ts.map +1 -0
  2296. package/packages/app-core/src/api/client-n8n.js +61 -0
  2297. package/packages/app-core/src/api/client-skills.d.ts +461 -0
  2298. package/packages/app-core/src/api/client-skills.d.ts.map +1 -0
  2299. package/packages/app-core/src/api/client-skills.js +604 -0
  2300. package/packages/app-core/src/api/client-types-babylon.d.ts +254 -0
  2301. package/packages/app-core/src/api/client-types-babylon.d.ts.map +1 -0
  2302. package/packages/app-core/src/api/client-types-babylon.js +2 -0
  2303. package/packages/app-core/src/api/client-types-character.d.ts +39 -0
  2304. package/packages/app-core/src/api/client-types-character.d.ts.map +1 -0
  2305. package/packages/app-core/src/api/client-types-character.js +1 -0
  2306. package/packages/app-core/src/api/client-types-chat.d.ts +420 -0
  2307. package/packages/app-core/src/api/client-types-chat.d.ts.map +1 -0
  2308. package/packages/app-core/src/api/client-types-chat.js +9 -0
  2309. package/packages/app-core/src/api/client-types-cloud.d.ts +803 -0
  2310. package/packages/app-core/src/api/client-types-cloud.d.ts.map +1 -0
  2311. package/packages/app-core/src/api/client-types-cloud.js +57 -0
  2312. package/packages/app-core/src/api/client-types-config.d.ts +586 -0
  2313. package/packages/app-core/src/api/client-types-config.d.ts.map +1 -0
  2314. package/packages/app-core/src/api/client-types-config.js +5 -0
  2315. package/packages/app-core/src/api/client-types-core.d.ts +337 -0
  2316. package/packages/app-core/src/api/client-types-core.d.ts.map +1 -0
  2317. package/packages/app-core/src/api/client-types-core.js +22 -0
  2318. package/packages/app-core/src/api/client-types-experience.d.ts +47 -0
  2319. package/packages/app-core/src/api/client-types-experience.d.ts.map +1 -0
  2320. package/packages/app-core/src/api/client-types-experience.js +1 -0
  2321. package/packages/app-core/src/api/client-types-relationships.d.ts +181 -0
  2322. package/packages/app-core/src/api/client-types-relationships.d.ts.map +1 -0
  2323. package/packages/app-core/src/api/client-types-relationships.js +1 -0
  2324. package/packages/app-core/src/api/client-types.d.ts +9 -0
  2325. package/packages/app-core/src/api/client-types.d.ts.map +1 -0
  2326. package/packages/app-core/src/api/client-types.js +12 -0
  2327. package/packages/app-core/src/api/client-wallet.d.ts +123 -0
  2328. package/packages/app-core/src/api/client-wallet.d.ts.map +1 -0
  2329. package/packages/app-core/src/api/client-wallet.js +222 -0
  2330. package/packages/app-core/src/api/client.d.ts +38 -0
  2331. package/packages/app-core/src/api/client.d.ts.map +1 -0
  2332. package/packages/app-core/src/api/client.js +38 -0
  2333. package/packages/app-core/src/api/cloud-secrets.d.ts +23 -0
  2334. package/packages/app-core/src/api/cloud-secrets.d.ts.map +1 -0
  2335. package/packages/app-core/src/api/cloud-secrets.js +50 -0
  2336. package/packages/app-core/src/api/compat-route-shared.d.ts +29 -0
  2337. package/packages/app-core/src/api/compat-route-shared.d.ts.map +1 -0
  2338. package/packages/app-core/src/api/compat-route-shared.js +284 -0
  2339. package/packages/app-core/src/api/csrf-client.d.ts +29 -0
  2340. package/packages/app-core/src/api/csrf-client.d.ts.map +1 -0
  2341. package/packages/app-core/src/api/csrf-client.js +54 -0
  2342. package/packages/app-core/src/api/index.d.ts +2 -0
  2343. package/packages/app-core/src/api/index.d.ts.map +1 -0
  2344. package/packages/app-core/src/api/index.js +1 -0
  2345. package/packages/app-core/src/api/response.d.ts +12 -0
  2346. package/packages/app-core/src/api/response.d.ts.map +1 -0
  2347. package/packages/app-core/src/api/response.js +36 -0
  2348. package/packages/app-core/src/api/server-cloud-tts.d.ts +41 -0
  2349. package/packages/app-core/src/api/server-cloud-tts.d.ts.map +1 -0
  2350. package/packages/app-core/src/api/server-cloud-tts.js +471 -0
  2351. package/packages/app-core/src/app-shell/task-coordinator-slots.d.ts +38 -0
  2352. package/packages/app-core/src/app-shell/task-coordinator-slots.d.ts.map +1 -0
  2353. package/packages/app-core/src/app-shell/task-coordinator-slots.js +21 -0
  2354. package/packages/app-core/src/autonomy/index.d.ts +48 -0
  2355. package/packages/app-core/src/autonomy/index.d.ts.map +1 -0
  2356. package/packages/app-core/src/autonomy/index.js +336 -0
  2357. package/packages/app-core/src/bridge/capacitor-bridge.d.ts +153 -0
  2358. package/packages/app-core/src/bridge/capacitor-bridge.d.ts.map +1 -0
  2359. package/packages/app-core/src/bridge/capacitor-bridge.js +195 -0
  2360. package/packages/app-core/src/bridge/electrobun-rpc.d.ts +57 -0
  2361. package/packages/app-core/src/bridge/electrobun-rpc.d.ts.map +1 -0
  2362. package/packages/app-core/src/bridge/electrobun-rpc.js +87 -0
  2363. package/packages/app-core/src/bridge/electrobun-runtime.d.ts +3 -0
  2364. package/packages/app-core/src/bridge/electrobun-runtime.d.ts.map +1 -0
  2365. package/packages/app-core/src/bridge/electrobun-runtime.js +34 -0
  2366. package/packages/app-core/src/bridge/gateway-discovery.d.ts +17 -0
  2367. package/packages/app-core/src/bridge/gateway-discovery.d.ts.map +1 -0
  2368. package/packages/app-core/src/bridge/gateway-discovery.js +49 -0
  2369. package/packages/app-core/src/bridge/index.d.ts +7 -0
  2370. package/packages/app-core/src/bridge/index.d.ts.map +1 -0
  2371. package/packages/app-core/src/bridge/index.js +6 -0
  2372. package/packages/app-core/src/bridge/native-plugins.d.ts +504 -0
  2373. package/packages/app-core/src/bridge/native-plugins.d.ts.map +1 -0
  2374. package/packages/app-core/src/bridge/native-plugins.js +67 -0
  2375. package/packages/app-core/src/bridge/plugin-bridge.d.ts +133 -0
  2376. package/packages/app-core/src/bridge/plugin-bridge.d.ts.map +1 -0
  2377. package/packages/app-core/src/bridge/plugin-bridge.js +241 -0
  2378. package/packages/app-core/src/bridge/storage-bridge.d.ts +39 -0
  2379. package/packages/app-core/src/bridge/storage-bridge.d.ts.map +1 -0
  2380. package/packages/app-core/src/bridge/storage-bridge.js +142 -0
  2381. package/packages/app-core/src/character/character-draft-helpers.d.ts +35 -0
  2382. package/packages/app-core/src/character/character-draft-helpers.d.ts.map +1 -0
  2383. package/packages/app-core/src/character/character-draft-helpers.js +270 -0
  2384. package/packages/app-core/src/chat/coding-agent-session-state.d.ts +16 -0
  2385. package/packages/app-core/src/chat/coding-agent-session-state.d.ts.map +1 -0
  2386. package/packages/app-core/src/chat/coding-agent-session-state.js +27 -0
  2387. package/packages/app-core/src/chat/index.d.ts +65 -0
  2388. package/packages/app-core/src/chat/index.d.ts.map +1 -0
  2389. package/packages/app-core/src/chat/index.js +225 -0
  2390. package/packages/app-core/src/components/accounts/AccountCard.d.ts +30 -0
  2391. package/packages/app-core/src/components/accounts/AccountCard.d.ts.map +1 -0
  2392. package/packages/app-core/src/components/accounts/AccountCard.js +183 -0
  2393. package/packages/app-core/src/components/accounts/AccountList.d.ts +15 -0
  2394. package/packages/app-core/src/components/accounts/AccountList.d.ts.map +1 -0
  2395. package/packages/app-core/src/components/accounts/AccountList.js +97 -0
  2396. package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts +33 -0
  2397. package/packages/app-core/src/components/accounts/AddAccountDialog.d.ts.map +1 -0
  2398. package/packages/app-core/src/components/accounts/AddAccountDialog.js +343 -0
  2399. package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts +16 -0
  2400. package/packages/app-core/src/components/accounts/RotationStrategyPicker.d.ts.map +1 -0
  2401. package/packages/app-core/src/components/accounts/RotationStrategyPicker.js +50 -0
  2402. package/packages/app-core/src/components/apps/AppsCatalogGrid.d.ts +14 -0
  2403. package/packages/app-core/src/components/apps/AppsCatalogGrid.d.ts.map +1 -0
  2404. package/packages/app-core/src/components/apps/AppsCatalogGrid.js +208 -0
  2405. package/packages/app-core/src/components/apps/AppsSidebar.d.ts +22 -0
  2406. package/packages/app-core/src/components/apps/AppsSidebar.d.ts.map +1 -0
  2407. package/packages/app-core/src/components/apps/AppsSidebar.js +98 -0
  2408. package/packages/app-core/src/components/apps/GameView.d.ts +18 -0
  2409. package/packages/app-core/src/components/apps/GameView.d.ts.map +1 -0
  2410. package/packages/app-core/src/components/apps/GameView.js +1133 -0
  2411. package/packages/app-core/src/components/apps/GameViewOverlay.d.ts +2 -0
  2412. package/packages/app-core/src/components/apps/GameViewOverlay.d.ts.map +1 -0
  2413. package/packages/app-core/src/components/apps/GameViewOverlay.js +120 -0
  2414. package/packages/app-core/src/components/apps/RunningAppsRow.d.ts +12 -0
  2415. package/packages/app-core/src/components/apps/RunningAppsRow.d.ts.map +1 -0
  2416. package/packages/app-core/src/components/apps/RunningAppsRow.js +35 -0
  2417. package/packages/app-core/src/components/apps/app-identity.d.ts +24 -0
  2418. package/packages/app-core/src/components/apps/app-identity.d.ts.map +1 -0
  2419. package/packages/app-core/src/components/apps/app-identity.js +161 -0
  2420. package/packages/app-core/src/components/apps/catalog-loader.d.ts +7 -0
  2421. package/packages/app-core/src/components/apps/catalog-loader.d.ts.map +1 -0
  2422. package/packages/app-core/src/components/apps/catalog-loader.js +21 -0
  2423. package/packages/app-core/src/components/apps/extensions/registry.d.ts +12 -0
  2424. package/packages/app-core/src/components/apps/extensions/registry.d.ts.map +1 -0
  2425. package/packages/app-core/src/components/apps/extensions/registry.js +23 -0
  2426. package/packages/app-core/src/components/apps/extensions/surface.d.ts +34 -0
  2427. package/packages/app-core/src/components/apps/extensions/surface.d.ts.map +1 -0
  2428. package/packages/app-core/src/components/apps/extensions/surface.js +96 -0
  2429. package/packages/app-core/src/components/apps/extensions/types.d.ts +7 -0
  2430. package/packages/app-core/src/components/apps/extensions/types.d.ts.map +1 -0
  2431. package/packages/app-core/src/components/apps/extensions/types.js +1 -0
  2432. package/packages/app-core/src/components/apps/helpers.d.ts +50 -0
  2433. package/packages/app-core/src/components/apps/helpers.d.ts.map +1 -0
  2434. package/packages/app-core/src/components/apps/helpers.js +353 -0
  2435. package/packages/app-core/src/components/apps/internal-tool-apps.d.ts +18 -0
  2436. package/packages/app-core/src/components/apps/internal-tool-apps.d.ts.map +1 -0
  2437. package/packages/app-core/src/components/apps/internal-tool-apps.js +173 -0
  2438. package/packages/app-core/src/components/apps/launch-history.d.ts +16 -0
  2439. package/packages/app-core/src/components/apps/launch-history.d.ts.map +1 -0
  2440. package/packages/app-core/src/components/apps/launch-history.js +77 -0
  2441. package/packages/app-core/src/components/apps/overlay-app-api.d.ts +55 -0
  2442. package/packages/app-core/src/components/apps/overlay-app-api.d.ts.map +1 -0
  2443. package/packages/app-core/src/components/apps/overlay-app-api.js +8 -0
  2444. package/packages/app-core/src/components/apps/overlay-app-registry.d.ts +19 -0
  2445. package/packages/app-core/src/components/apps/overlay-app-registry.d.ts.map +1 -0
  2446. package/packages/app-core/src/components/apps/overlay-app-registry.js +47 -0
  2447. package/packages/app-core/src/components/apps/per-app-config.d.ts +19 -0
  2448. package/packages/app-core/src/components/apps/per-app-config.d.ts.map +1 -0
  2449. package/packages/app-core/src/components/apps/per-app-config.js +99 -0
  2450. package/packages/app-core/src/components/apps/run-attention.d.ts +3 -0
  2451. package/packages/app-core/src/components/apps/run-attention.d.ts.map +1 -0
  2452. package/packages/app-core/src/components/apps/run-attention.js +77 -0
  2453. package/packages/app-core/src/components/apps/surfaces/GameOperatorShell.d.ts +47 -0
  2454. package/packages/app-core/src/components/apps/surfaces/GameOperatorShell.d.ts.map +1 -0
  2455. package/packages/app-core/src/components/apps/surfaces/GameOperatorShell.js +42 -0
  2456. package/packages/app-core/src/components/apps/surfaces/registry.d.ts +11 -0
  2457. package/packages/app-core/src/components/apps/surfaces/registry.d.ts.map +1 -0
  2458. package/packages/app-core/src/components/apps/surfaces/registry.js +23 -0
  2459. package/packages/app-core/src/components/apps/surfaces/types.d.ts +10 -0
  2460. package/packages/app-core/src/components/apps/surfaces/types.d.ts.map +1 -0
  2461. package/packages/app-core/src/components/apps/surfaces/types.js +1 -0
  2462. package/packages/app-core/src/components/apps/useRegistryCatalog.d.ts +14 -0
  2463. package/packages/app-core/src/components/apps/useRegistryCatalog.d.ts.map +1 -0
  2464. package/packages/app-core/src/components/apps/useRegistryCatalog.js +52 -0
  2465. package/packages/app-core/src/components/apps/viewer-auth.d.ts +7 -0
  2466. package/packages/app-core/src/components/apps/viewer-auth.d.ts.map +1 -0
  2467. package/packages/app-core/src/components/apps/viewer-auth.js +55 -0
  2468. package/packages/app-core/src/components/auth/LoginView.d.ts +17 -0
  2469. package/packages/app-core/src/components/auth/LoginView.d.ts.map +1 -0
  2470. package/packages/app-core/src/components/auth/LoginView.js +62 -0
  2471. package/packages/app-core/src/components/character/CharacterEditor.d.ts +12 -0
  2472. package/packages/app-core/src/components/character/CharacterEditor.d.ts.map +1 -0
  2473. package/packages/app-core/src/components/character/CharacterEditor.js +885 -0
  2474. package/packages/app-core/src/components/character/CharacterEditorPanels.d.ts +35 -0
  2475. package/packages/app-core/src/components/character/CharacterEditorPanels.d.ts.map +1 -0
  2476. package/packages/app-core/src/components/character/CharacterEditorPanels.js +250 -0
  2477. package/packages/app-core/src/components/character/CharacterExperienceWorkspace.d.ts +11 -0
  2478. package/packages/app-core/src/components/character/CharacterExperienceWorkspace.d.ts.map +1 -0
  2479. package/packages/app-core/src/components/character/CharacterExperienceWorkspace.js +236 -0
  2480. package/packages/app-core/src/components/character/CharacterHubView.d.ts +22 -0
  2481. package/packages/app-core/src/components/character/CharacterHubView.d.ts.map +1 -0
  2482. package/packages/app-core/src/components/character/CharacterHubView.js +688 -0
  2483. package/packages/app-core/src/components/character/CharacterLearnedSkillsSection.d.ts +2 -0
  2484. package/packages/app-core/src/components/character/CharacterLearnedSkillsSection.d.ts.map +1 -0
  2485. package/packages/app-core/src/components/character/CharacterLearnedSkillsSection.js +76 -0
  2486. package/packages/app-core/src/components/character/CharacterOverviewSection.d.ts +27 -0
  2487. package/packages/app-core/src/components/character/CharacterOverviewSection.d.ts.map +1 -0
  2488. package/packages/app-core/src/components/character/CharacterOverviewSection.js +36 -0
  2489. package/packages/app-core/src/components/character/CharacterRelationshipsSection.d.ts +7 -0
  2490. package/packages/app-core/src/components/character/CharacterRelationshipsSection.d.ts.map +1 -0
  2491. package/packages/app-core/src/components/character/CharacterRelationshipsSection.js +4 -0
  2492. package/packages/app-core/src/components/character/CharacterRoster.d.ts +32 -0
  2493. package/packages/app-core/src/components/character/CharacterRoster.d.ts.map +1 -0
  2494. package/packages/app-core/src/components/character/CharacterRoster.js +111 -0
  2495. package/packages/app-core/src/components/character/MusicLibraryCharacterWidget.d.ts +3 -0
  2496. package/packages/app-core/src/components/character/MusicLibraryCharacterWidget.d.ts.map +1 -0
  2497. package/packages/app-core/src/components/character/MusicLibraryCharacterWidget.js +27 -0
  2498. package/packages/app-core/src/components/character/character-editor-helpers.d.ts +42 -0
  2499. package/packages/app-core/src/components/character/character-editor-helpers.d.ts.map +1 -0
  2500. package/packages/app-core/src/components/character/character-editor-helpers.js +58 -0
  2501. package/packages/app-core/src/components/character/character-greeting.d.ts +5 -0
  2502. package/packages/app-core/src/components/character/character-greeting.d.ts.map +1 -0
  2503. package/packages/app-core/src/components/character/character-greeting.js +22 -0
  2504. package/packages/app-core/src/components/character/character-hub-helpers.d.ts +14 -0
  2505. package/packages/app-core/src/components/character/character-hub-helpers.d.ts.map +1 -0
  2506. package/packages/app-core/src/components/character/character-hub-helpers.js +136 -0
  2507. package/packages/app-core/src/components/character/character-hub-types.d.ts +56 -0
  2508. package/packages/app-core/src/components/character/character-hub-types.d.ts.map +1 -0
  2509. package/packages/app-core/src/components/character/character-hub-types.js +1 -0
  2510. package/packages/app-core/src/components/character/character-voice-config.d.ts +33 -0
  2511. package/packages/app-core/src/components/character/character-voice-config.d.ts.map +1 -0
  2512. package/packages/app-core/src/components/character/character-voice-config.js +95 -0
  2513. package/packages/app-core/src/components/chat/AgentActivityBox.d.ts +8 -0
  2514. package/packages/app-core/src/components/chat/AgentActivityBox.d.ts.map +1 -0
  2515. package/packages/app-core/src/components/chat/AgentActivityBox.js +33 -0
  2516. package/packages/app-core/src/components/chat/AppsSection.d.ts +13 -0
  2517. package/packages/app-core/src/components/chat/AppsSection.d.ts.map +1 -0
  2518. package/packages/app-core/src/components/chat/AppsSection.js +175 -0
  2519. package/packages/app-core/src/components/chat/MessageContent.d.ts +41 -0
  2520. package/packages/app-core/src/components/chat/MessageContent.d.ts.map +1 -0
  2521. package/packages/app-core/src/components/chat/MessageContent.js +691 -0
  2522. package/packages/app-core/src/components/chat/SaveCommandModal.d.ts +9 -0
  2523. package/packages/app-core/src/components/chat/SaveCommandModal.d.ts.map +1 -0
  2524. package/packages/app-core/src/components/chat/SaveCommandModal.js +59 -0
  2525. package/packages/app-core/src/components/chat/TasksEventsPanel.d.ts +30 -0
  2526. package/packages/app-core/src/components/chat/TasksEventsPanel.d.ts.map +1 -0
  2527. package/packages/app-core/src/components/chat/TasksEventsPanel.js +139 -0
  2528. package/packages/app-core/src/components/chat/WidgetVisibilityPanel.d.ts +25 -0
  2529. package/packages/app-core/src/components/chat/WidgetVisibilityPanel.d.ts.map +1 -0
  2530. package/packages/app-core/src/components/chat/WidgetVisibilityPanel.js +30 -0
  2531. package/packages/app-core/src/components/chat/chat-source-registration.d.ts +1 -0
  2532. package/packages/app-core/src/components/chat/chat-source-registration.d.ts.map +1 -0
  2533. package/packages/app-core/src/components/chat/chat-source-registration.js +1 -0
  2534. package/packages/app-core/src/components/chat/message-choice-parser.d.ts +20 -0
  2535. package/packages/app-core/src/components/chat/message-choice-parser.d.ts.map +1 -0
  2536. package/packages/app-core/src/components/chat/message-choice-parser.js +53 -0
  2537. package/packages/app-core/src/components/chat/widgets/ChoiceWidget.d.ts +24 -0
  2538. package/packages/app-core/src/components/chat/widgets/ChoiceWidget.d.ts.map +1 -0
  2539. package/packages/app-core/src/components/chat/widgets/ChoiceWidget.js +38 -0
  2540. package/packages/app-core/src/components/chat/widgets/agent-orchestrator.d.ts +20 -0
  2541. package/packages/app-core/src/components/chat/widgets/agent-orchestrator.d.ts.map +1 -0
  2542. package/packages/app-core/src/components/chat/widgets/agent-orchestrator.js +273 -0
  2543. package/packages/app-core/src/components/chat/widgets/browser-status.d.ts +14 -0
  2544. package/packages/app-core/src/components/chat/widgets/browser-status.d.ts.map +1 -0
  2545. package/packages/app-core/src/components/chat/widgets/browser-status.js +109 -0
  2546. package/packages/app-core/src/components/chat/widgets/music-player.d.ts +4 -0
  2547. package/packages/app-core/src/components/chat/widgets/music-player.d.ts.map +1 -0
  2548. package/packages/app-core/src/components/chat/widgets/music-player.js +132 -0
  2549. package/packages/app-core/src/components/chat/widgets/registry.d.ts +8 -0
  2550. package/packages/app-core/src/components/chat/widgets/registry.d.ts.map +1 -0
  2551. package/packages/app-core/src/components/chat/widgets/registry.js +7 -0
  2552. package/packages/app-core/src/components/chat/widgets/shared.d.ts +17 -0
  2553. package/packages/app-core/src/components/chat/widgets/shared.d.ts.map +1 -0
  2554. package/packages/app-core/src/components/chat/widgets/shared.js +8 -0
  2555. package/packages/app-core/src/components/chat/widgets/todo.d.ts +3 -0
  2556. package/packages/app-core/src/components/chat/widgets/todo.d.ts.map +1 -0
  2557. package/packages/app-core/src/components/chat/widgets/todo.js +109 -0
  2558. package/packages/app-core/src/components/chat/widgets/types.d.ts +16 -0
  2559. package/packages/app-core/src/components/chat/widgets/types.d.ts.map +1 -0
  2560. package/packages/app-core/src/components/chat/widgets/types.js +1 -0
  2561. package/packages/app-core/src/components/chat/widgets/wallet-status.d.ts +4 -0
  2562. package/packages/app-core/src/components/chat/widgets/wallet-status.d.ts.map +1 -0
  2563. package/packages/app-core/src/components/chat/widgets/wallet-status.js +190 -0
  2564. package/packages/app-core/src/components/cloud/CloudSourceControls.d.ts +13 -0
  2565. package/packages/app-core/src/components/cloud/CloudSourceControls.d.ts.map +1 -0
  2566. package/packages/app-core/src/components/cloud/CloudSourceControls.js +19 -0
  2567. package/packages/app-core/src/components/cloud/CloudStatusBadge.d.ts +33 -0
  2568. package/packages/app-core/src/components/cloud/CloudStatusBadge.d.ts.map +1 -0
  2569. package/packages/app-core/src/components/cloud/CloudStatusBadge.js +98 -0
  2570. package/packages/app-core/src/components/cloud/FlaminaGuide.d.ts +10 -0
  2571. package/packages/app-core/src/components/cloud/FlaminaGuide.d.ts.map +1 -0
  2572. package/packages/app-core/src/components/cloud/FlaminaGuide.js +86 -0
  2573. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.d.ts +24 -0
  2574. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.d.ts.map +1 -0
  2575. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.js +101 -0
  2576. package/packages/app-core/src/components/companion/injected.d.ts +10 -0
  2577. package/packages/app-core/src/components/companion/injected.d.ts.map +1 -0
  2578. package/packages/app-core/src/components/companion/injected.js +25 -0
  2579. package/packages/app-core/src/components/config-ui/config-control-primitives.d.ts +14 -0
  2580. package/packages/app-core/src/components/config-ui/config-control-primitives.d.ts.map +1 -0
  2581. package/packages/app-core/src/components/config-ui/config-control-primitives.js +22 -0
  2582. package/packages/app-core/src/components/config-ui/config-field.d.ts +58 -0
  2583. package/packages/app-core/src/components/config-ui/config-field.d.ts.map +1 -0
  2584. package/packages/app-core/src/components/config-ui/config-field.js +874 -0
  2585. package/packages/app-core/src/components/config-ui/config-renderer.d.ts +164 -0
  2586. package/packages/app-core/src/components/config-ui/config-renderer.d.ts.map +1 -0
  2587. package/packages/app-core/src/components/config-ui/config-renderer.js +397 -0
  2588. package/packages/app-core/src/components/config-ui/index.d.ts +5 -0
  2589. package/packages/app-core/src/components/config-ui/index.d.ts.map +1 -0
  2590. package/packages/app-core/src/components/config-ui/index.js +4 -0
  2591. package/packages/app-core/src/components/config-ui/ui-renderer.d.ts +15 -0
  2592. package/packages/app-core/src/components/config-ui/ui-renderer.d.ts.map +1 -0
  2593. package/packages/app-core/src/components/config-ui/ui-renderer.js +826 -0
  2594. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.d.ts +2 -0
  2595. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.d.ts.map +1 -0
  2596. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.js +61 -0
  2597. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.d.ts +12 -0
  2598. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.d.ts.map +1 -0
  2599. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.js +92 -0
  2600. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.d.ts +2 -0
  2601. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.d.ts.map +1 -0
  2602. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.js +249 -0
  2603. package/packages/app-core/src/components/connectors/IMessageStatusPanel.d.ts +2 -0
  2604. package/packages/app-core/src/components/connectors/IMessageStatusPanel.d.ts.map +1 -0
  2605. package/packages/app-core/src/components/connectors/IMessageStatusPanel.js +63 -0
  2606. package/packages/app-core/src/components/connectors/SignalQrOverlay.d.ts +7 -0
  2607. package/packages/app-core/src/components/connectors/SignalQrOverlay.d.ts.map +1 -0
  2608. package/packages/app-core/src/components/connectors/SignalQrOverlay.js +63 -0
  2609. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.d.ts +2 -0
  2610. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.d.ts.map +1 -0
  2611. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.js +202 -0
  2612. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.d.ts +2 -0
  2613. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.d.ts.map +1 -0
  2614. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.js +81 -0
  2615. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.d.ts +9 -0
  2616. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.d.ts.map +1 -0
  2617. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.js +53 -0
  2618. package/packages/app-core/src/components/conversations/ConversationRenameDialog.d.ts +9 -0
  2619. package/packages/app-core/src/components/conversations/ConversationRenameDialog.d.ts.map +1 -0
  2620. package/packages/app-core/src/components/conversations/ConversationRenameDialog.js +46 -0
  2621. package/packages/app-core/src/components/conversations/ConversationsSidebar.d.ts +9 -0
  2622. package/packages/app-core/src/components/conversations/ConversationsSidebar.d.ts.map +1 -0
  2623. package/packages/app-core/src/components/conversations/ConversationsSidebar.js +555 -0
  2624. package/packages/app-core/src/components/conversations/brand-icons.d.ts +12 -0
  2625. package/packages/app-core/src/components/conversations/brand-icons.d.ts.map +1 -0
  2626. package/packages/app-core/src/components/conversations/brand-icons.js +49 -0
  2627. package/packages/app-core/src/components/conversations/conversation-sidebar-model.d.ts +66 -0
  2628. package/packages/app-core/src/components/conversations/conversation-sidebar-model.d.ts.map +1 -0
  2629. package/packages/app-core/src/components/conversations/conversation-sidebar-model.js +340 -0
  2630. package/packages/app-core/src/components/conversations/conversation-utils.d.ts +9 -0
  2631. package/packages/app-core/src/components/conversations/conversation-utils.d.ts.map +1 -0
  2632. package/packages/app-core/src/components/conversations/conversation-utils.js +142 -0
  2633. package/packages/app-core/src/components/custom-actions/CustomActionEditor.d.ts +10 -0
  2634. package/packages/app-core/src/components/custom-actions/CustomActionEditor.d.ts.map +1 -0
  2635. package/packages/app-core/src/components/custom-actions/CustomActionEditor.js +385 -0
  2636. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.d.ts +9 -0
  2637. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.d.ts.map +1 -0
  2638. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.js +158 -0
  2639. package/packages/app-core/src/components/custom-actions/CustomActionsView.d.ts +2 -0
  2640. package/packages/app-core/src/components/custom-actions/CustomActionsView.d.ts.map +1 -0
  2641. package/packages/app-core/src/components/custom-actions/CustomActionsView.js +144 -0
  2642. package/packages/app-core/src/components/custom-actions/custom-action-form.d.ts +44 -0
  2643. package/packages/app-core/src/components/custom-actions/custom-action-form.d.ts.map +1 -0
  2644. package/packages/app-core/src/components/custom-actions/custom-action-form.js +237 -0
  2645. package/packages/app-core/src/components/index.d.ts +100 -0
  2646. package/packages/app-core/src/components/index.d.ts.map +1 -0
  2647. package/packages/app-core/src/components/index.js +101 -0
  2648. package/packages/app-core/src/components/inventory/ChainIcon.d.ts +9 -0
  2649. package/packages/app-core/src/components/inventory/ChainIcon.d.ts.map +1 -0
  2650. package/packages/app-core/src/components/inventory/ChainIcon.js +58 -0
  2651. package/packages/app-core/src/components/inventory/TokenLogo.d.ts +9 -0
  2652. package/packages/app-core/src/components/inventory/TokenLogo.d.ts.map +1 -0
  2653. package/packages/app-core/src/components/inventory/TokenLogo.js +26 -0
  2654. package/packages/app-core/src/components/inventory/chainConfig.d.ts +89 -0
  2655. package/packages/app-core/src/components/inventory/chainConfig.d.ts.map +1 -0
  2656. package/packages/app-core/src/components/inventory/chainConfig.js +285 -0
  2657. package/packages/app-core/src/components/inventory/constants.d.ts +30 -0
  2658. package/packages/app-core/src/components/inventory/constants.d.ts.map +1 -0
  2659. package/packages/app-core/src/components/inventory/constants.js +57 -0
  2660. package/packages/app-core/src/components/inventory/inventory-chain-filters.d.ts +11 -0
  2661. package/packages/app-core/src/components/inventory/inventory-chain-filters.d.ts.map +1 -0
  2662. package/packages/app-core/src/components/inventory/inventory-chain-filters.js +41 -0
  2663. package/packages/app-core/src/components/inventory/media-url.d.ts +6 -0
  2664. package/packages/app-core/src/components/inventory/media-url.d.ts.map +1 -0
  2665. package/packages/app-core/src/components/inventory/media-url.js +28 -0
  2666. package/packages/app-core/src/components/inventory/useInventoryData.d.ts +38 -0
  2667. package/packages/app-core/src/components/inventory/useInventoryData.d.ts.map +1 -0
  2668. package/packages/app-core/src/components/inventory/useInventoryData.js +278 -0
  2669. package/packages/app-core/src/components/local-inference/ActiveModelBar.d.ts +10 -0
  2670. package/packages/app-core/src/components/local-inference/ActiveModelBar.d.ts.map +1 -0
  2671. package/packages/app-core/src/components/local-inference/ActiveModelBar.js +19 -0
  2672. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.d.ts +2 -0
  2673. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.d.ts.map +1 -0
  2674. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.js +39 -0
  2675. package/packages/app-core/src/components/local-inference/DevicesPanel.d.ts +8 -0
  2676. package/packages/app-core/src/components/local-inference/DevicesPanel.d.ts.map +1 -0
  2677. package/packages/app-core/src/components/local-inference/DevicesPanel.js +44 -0
  2678. package/packages/app-core/src/components/local-inference/DownloadProgress.d.ts +7 -0
  2679. package/packages/app-core/src/components/local-inference/DownloadProgress.d.ts.map +1 -0
  2680. package/packages/app-core/src/components/local-inference/DownloadProgress.js +8 -0
  2681. package/packages/app-core/src/components/local-inference/DownloadQueue.d.ts +15 -0
  2682. package/packages/app-core/src/components/local-inference/DownloadQueue.d.ts.map +1 -0
  2683. package/packages/app-core/src/components/local-inference/DownloadQueue.js +21 -0
  2684. package/packages/app-core/src/components/local-inference/FirstRunOffer.d.ts +11 -0
  2685. package/packages/app-core/src/components/local-inference/FirstRunOffer.d.ts.map +1 -0
  2686. package/packages/app-core/src/components/local-inference/FirstRunOffer.js +49 -0
  2687. package/packages/app-core/src/components/local-inference/HardwareBadge.d.ts +7 -0
  2688. package/packages/app-core/src/components/local-inference/HardwareBadge.d.ts.map +1 -0
  2689. package/packages/app-core/src/components/local-inference/HardwareBadge.js +10 -0
  2690. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.d.ts +22 -0
  2691. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.d.ts.map +1 -0
  2692. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.js +68 -0
  2693. package/packages/app-core/src/components/local-inference/LocalInferencePanel.d.ts +5 -0
  2694. package/packages/app-core/src/components/local-inference/LocalInferencePanel.d.ts.map +1 -0
  2695. package/packages/app-core/src/components/local-inference/LocalInferencePanel.js +227 -0
  2696. package/packages/app-core/src/components/local-inference/ModelCard.d.ts +20 -0
  2697. package/packages/app-core/src/components/local-inference/ModelCard.d.ts.map +1 -0
  2698. package/packages/app-core/src/components/local-inference/ModelCard.js +21 -0
  2699. package/packages/app-core/src/components/local-inference/ModelHubView.d.ts +18 -0
  2700. package/packages/app-core/src/components/local-inference/ModelHubView.d.ts.map +1 -0
  2701. package/packages/app-core/src/components/local-inference/ModelHubView.js +40 -0
  2702. package/packages/app-core/src/components/local-inference/ProvidersList.d.ts +15 -0
  2703. package/packages/app-core/src/components/local-inference/ProvidersList.d.ts.map +1 -0
  2704. package/packages/app-core/src/components/local-inference/ProvidersList.js +62 -0
  2705. package/packages/app-core/src/components/local-inference/RoutingMatrix.d.ts +13 -0
  2706. package/packages/app-core/src/components/local-inference/RoutingMatrix.d.ts.map +1 -0
  2707. package/packages/app-core/src/components/local-inference/RoutingMatrix.js +105 -0
  2708. package/packages/app-core/src/components/local-inference/SlotAssignments.d.ts +15 -0
  2709. package/packages/app-core/src/components/local-inference/SlotAssignments.d.ts.map +1 -0
  2710. package/packages/app-core/src/components/local-inference/SlotAssignments.js +58 -0
  2711. package/packages/app-core/src/components/local-inference/hub-utils.d.ts +27 -0
  2712. package/packages/app-core/src/components/local-inference/hub-utils.d.ts.map +1 -0
  2713. package/packages/app-core/src/components/local-inference/hub-utils.js +86 -0
  2714. package/packages/app-core/src/components/onboarding/BootstrapStep.d.ts +32 -0
  2715. package/packages/app-core/src/components/onboarding/BootstrapStep.d.ts.map +1 -0
  2716. package/packages/app-core/src/components/onboarding/BootstrapStep.js +102 -0
  2717. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.d.ts +54 -0
  2718. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.d.ts.map +1 -0
  2719. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.js +55 -0
  2720. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.d.ts +40 -0
  2721. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.d.ts.map +1 -0
  2722. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.js +74 -0
  2723. package/packages/app-core/src/components/pages/AdvancedPageView.d.ts +4 -0
  2724. package/packages/app-core/src/components/pages/AdvancedPageView.d.ts.map +1 -0
  2725. package/packages/app-core/src/components/pages/AdvancedPageView.js +72 -0
  2726. package/packages/app-core/src/components/pages/AppDetailsView.d.ts +36 -0
  2727. package/packages/app-core/src/components/pages/AppDetailsView.d.ts.map +1 -0
  2728. package/packages/app-core/src/components/pages/AppDetailsView.js +289 -0
  2729. package/packages/app-core/src/components/pages/AppsPageView.d.ts +12 -0
  2730. package/packages/app-core/src/components/pages/AppsPageView.d.ts.map +1 -0
  2731. package/packages/app-core/src/components/pages/AppsPageView.js +58 -0
  2732. package/packages/app-core/src/components/pages/AppsView.d.ts +3 -0
  2733. package/packages/app-core/src/components/pages/AppsView.d.ts.map +1 -0
  2734. package/packages/app-core/src/components/pages/AppsView.js +903 -0
  2735. package/packages/app-core/src/components/pages/AutomationsView.d.ts +6 -0
  2736. package/packages/app-core/src/components/pages/AutomationsView.d.ts.map +1 -0
  2737. package/packages/app-core/src/components/pages/AutomationsView.js +2528 -0
  2738. package/packages/app-core/src/components/pages/BrowserWorkspaceView.d.ts +3 -0
  2739. package/packages/app-core/src/components/pages/BrowserWorkspaceView.d.ts.map +1 -0
  2740. package/packages/app-core/src/components/pages/BrowserWorkspaceView.js +909 -0
  2741. package/packages/app-core/src/components/pages/ChatModalView.d.ts +13 -0
  2742. package/packages/app-core/src/components/pages/ChatModalView.d.ts.map +1 -0
  2743. package/packages/app-core/src/components/pages/ChatModalView.js +17 -0
  2744. package/packages/app-core/src/components/pages/ChatView.d.ts +24 -0
  2745. package/packages/app-core/src/components/pages/ChatView.d.ts.map +1 -0
  2746. package/packages/app-core/src/components/pages/ChatView.js +534 -0
  2747. package/packages/app-core/src/components/pages/ConfigPageView.d.ts +12 -0
  2748. package/packages/app-core/src/components/pages/ConfigPageView.d.ts.map +1 -0
  2749. package/packages/app-core/src/components/pages/ConfigPageView.js +263 -0
  2750. package/packages/app-core/src/components/pages/ConnectorsPageView.d.ts +8 -0
  2751. package/packages/app-core/src/components/pages/ConnectorsPageView.d.ts.map +1 -0
  2752. package/packages/app-core/src/components/pages/ConnectorsPageView.js +8 -0
  2753. package/packages/app-core/src/components/pages/DatabasePageView.d.ts +5 -0
  2754. package/packages/app-core/src/components/pages/DatabasePageView.d.ts.map +1 -0
  2755. package/packages/app-core/src/components/pages/DatabasePageView.js +33 -0
  2756. package/packages/app-core/src/components/pages/DatabaseView.d.ts +6 -0
  2757. package/packages/app-core/src/components/pages/DatabaseView.d.ts.map +1 -0
  2758. package/packages/app-core/src/components/pages/DatabaseView.js +247 -0
  2759. package/packages/app-core/src/components/pages/ElizaCloudDashboard.d.ts +2 -0
  2760. package/packages/app-core/src/components/pages/ElizaCloudDashboard.d.ts.map +1 -0
  2761. package/packages/app-core/src/components/pages/ElizaCloudDashboard.js +380 -0
  2762. package/packages/app-core/src/components/pages/HeartbeatForm.d.ts +56 -0
  2763. package/packages/app-core/src/components/pages/HeartbeatForm.d.ts.map +1 -0
  2764. package/packages/app-core/src/components/pages/HeartbeatForm.js +215 -0
  2765. package/packages/app-core/src/components/pages/HeartbeatsView.d.ts +3 -0
  2766. package/packages/app-core/src/components/pages/HeartbeatsView.d.ts.map +1 -0
  2767. package/packages/app-core/src/components/pages/HeartbeatsView.js +399 -0
  2768. package/packages/app-core/src/components/pages/InventoryView.d.ts +2 -0
  2769. package/packages/app-core/src/components/pages/InventoryView.d.ts.map +1 -0
  2770. package/packages/app-core/src/components/pages/InventoryView.js +837 -0
  2771. package/packages/app-core/src/components/pages/KnowledgeView.d.ts +12 -0
  2772. package/packages/app-core/src/components/pages/KnowledgeView.d.ts.map +1 -0
  2773. package/packages/app-core/src/components/pages/KnowledgeView.js +546 -0
  2774. package/packages/app-core/src/components/pages/LogsPageView.d.ts +6 -0
  2775. package/packages/app-core/src/components/pages/LogsPageView.d.ts.map +1 -0
  2776. package/packages/app-core/src/components/pages/LogsPageView.js +6 -0
  2777. package/packages/app-core/src/components/pages/LogsView.d.ts +2 -0
  2778. package/packages/app-core/src/components/pages/LogsView.d.ts.map +1 -0
  2779. package/packages/app-core/src/components/pages/LogsView.js +85 -0
  2780. package/packages/app-core/src/components/pages/MediaGalleryView.d.ts +6 -0
  2781. package/packages/app-core/src/components/pages/MediaGalleryView.d.ts.map +1 -0
  2782. package/packages/app-core/src/components/pages/MediaGalleryView.js +273 -0
  2783. package/packages/app-core/src/components/pages/MemoryDetailPanel.d.ts +5 -0
  2784. package/packages/app-core/src/components/pages/MemoryDetailPanel.d.ts.map +1 -0
  2785. package/packages/app-core/src/components/pages/MemoryDetailPanel.js +17 -0
  2786. package/packages/app-core/src/components/pages/MemoryViewerView.d.ts +5 -0
  2787. package/packages/app-core/src/components/pages/MemoryViewerView.d.ts.map +1 -0
  2788. package/packages/app-core/src/components/pages/MemoryViewerView.js +234 -0
  2789. package/packages/app-core/src/components/pages/MiladyOsAppsView.d.ts +4 -0
  2790. package/packages/app-core/src/components/pages/MiladyOsAppsView.d.ts.map +1 -0
  2791. package/packages/app-core/src/components/pages/MiladyOsAppsView.js +618 -0
  2792. package/packages/app-core/src/components/pages/PageScopedChatPane.d.ts +48 -0
  2793. package/packages/app-core/src/components/pages/PageScopedChatPane.d.ts.map +1 -0
  2794. package/packages/app-core/src/components/pages/PageScopedChatPane.js +503 -0
  2795. package/packages/app-core/src/components/pages/PluginCard.d.ts +36 -0
  2796. package/packages/app-core/src/components/pages/PluginCard.d.ts.map +1 -0
  2797. package/packages/app-core/src/components/pages/PluginCard.js +128 -0
  2798. package/packages/app-core/src/components/pages/PluginConfigForm.d.ts +29 -0
  2799. package/packages/app-core/src/components/pages/PluginConfigForm.d.ts.map +1 -0
  2800. package/packages/app-core/src/components/pages/PluginConfigForm.js +133 -0
  2801. package/packages/app-core/src/components/pages/PluginsPageView.d.ts +9 -0
  2802. package/packages/app-core/src/components/pages/PluginsPageView.d.ts.map +1 -0
  2803. package/packages/app-core/src/components/pages/PluginsPageView.js +5 -0
  2804. package/packages/app-core/src/components/pages/PluginsView.d.ts +11 -0
  2805. package/packages/app-core/src/components/pages/PluginsView.d.ts.map +1 -0
  2806. package/packages/app-core/src/components/pages/PluginsView.js +813 -0
  2807. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.d.ts +8 -0
  2808. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.d.ts.map +1 -0
  2809. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.js +696 -0
  2810. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.d.ts +5 -0
  2811. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.d.ts.map +1 -0
  2812. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.js +17 -0
  2813. package/packages/app-core/src/components/pages/RelationshipsView.d.ts +5 -0
  2814. package/packages/app-core/src/components/pages/RelationshipsView.d.ts.map +1 -0
  2815. package/packages/app-core/src/components/pages/RelationshipsView.js +5 -0
  2816. package/packages/app-core/src/components/pages/ReleaseCenterView.d.ts +2 -0
  2817. package/packages/app-core/src/components/pages/ReleaseCenterView.d.ts.map +1 -0
  2818. package/packages/app-core/src/components/pages/ReleaseCenterView.js +216 -0
  2819. package/packages/app-core/src/components/pages/RuntimeView.d.ts +5 -0
  2820. package/packages/app-core/src/components/pages/RuntimeView.d.ts.map +1 -0
  2821. package/packages/app-core/src/components/pages/RuntimeView.js +283 -0
  2822. package/packages/app-core/src/components/pages/ScratchpadView.d.ts +2 -0
  2823. package/packages/app-core/src/components/pages/ScratchpadView.d.ts.map +1 -0
  2824. package/packages/app-core/src/components/pages/ScratchpadView.js +364 -0
  2825. package/packages/app-core/src/components/pages/SecretsView.d.ts +5 -0
  2826. package/packages/app-core/src/components/pages/SecretsView.d.ts.map +1 -0
  2827. package/packages/app-core/src/components/pages/SecretsView.js +245 -0
  2828. package/packages/app-core/src/components/pages/SettingsView.d.ts +6 -0
  2829. package/packages/app-core/src/components/pages/SettingsView.d.ts.map +1 -0
  2830. package/packages/app-core/src/components/pages/SettingsView.js +598 -0
  2831. package/packages/app-core/src/components/pages/SkillsView.d.ts +6 -0
  2832. package/packages/app-core/src/components/pages/SkillsView.d.ts.map +1 -0
  2833. package/packages/app-core/src/components/pages/SkillsView.js +205 -0
  2834. package/packages/app-core/src/components/pages/SqlEditorPanel.d.ts +13 -0
  2835. package/packages/app-core/src/components/pages/SqlEditorPanel.d.ts.map +1 -0
  2836. package/packages/app-core/src/components/pages/SqlEditorPanel.js +19 -0
  2837. package/packages/app-core/src/components/pages/StreamView.d.ts +4 -0
  2838. package/packages/app-core/src/components/pages/StreamView.d.ts.map +1 -0
  2839. package/packages/app-core/src/components/pages/StreamView.js +113 -0
  2840. package/packages/app-core/src/components/pages/TasksPageView.d.ts +2 -0
  2841. package/packages/app-core/src/components/pages/TasksPageView.d.ts.map +1 -0
  2842. package/packages/app-core/src/components/pages/TasksPageView.js +10 -0
  2843. package/packages/app-core/src/components/pages/TrajectoriesView.d.ts +9 -0
  2844. package/packages/app-core/src/components/pages/TrajectoriesView.d.ts.map +1 -0
  2845. package/packages/app-core/src/components/pages/TrajectoriesView.js +278 -0
  2846. package/packages/app-core/src/components/pages/TrajectoryDetailView.d.ts +7 -0
  2847. package/packages/app-core/src/components/pages/TrajectoryDetailView.d.ts.map +1 -0
  2848. package/packages/app-core/src/components/pages/TrajectoryDetailView.js +173 -0
  2849. package/packages/app-core/src/components/pages/TriggersView.d.ts +3 -0
  2850. package/packages/app-core/src/components/pages/TriggersView.d.ts.map +1 -0
  2851. package/packages/app-core/src/components/pages/TriggersView.js +2 -0
  2852. package/packages/app-core/src/components/pages/VectorBrowserView.d.ts +13 -0
  2853. package/packages/app-core/src/components/pages/VectorBrowserView.d.ts.map +1 -0
  2854. package/packages/app-core/src/components/pages/VectorBrowserView.js +846 -0
  2855. package/packages/app-core/src/components/pages/WorkflowGraphViewer.d.ts +15 -0
  2856. package/packages/app-core/src/components/pages/WorkflowGraphViewer.d.ts.map +1 -0
  2857. package/packages/app-core/src/components/pages/WorkflowGraphViewer.js +403 -0
  2858. package/packages/app-core/src/components/pages/automation-conversations.d.ts +16 -0
  2859. package/packages/app-core/src/components/pages/automation-conversations.d.ts.map +1 -0
  2860. package/packages/app-core/src/components/pages/automation-conversations.js +204 -0
  2861. package/packages/app-core/src/components/pages/chat-view-hooks.d.ts +63 -0
  2862. package/packages/app-core/src/components/pages/chat-view-hooks.d.ts.map +1 -0
  2863. package/packages/app-core/src/components/pages/chat-view-hooks.js +531 -0
  2864. package/packages/app-core/src/components/pages/cloud-dashboard-utils.d.ts +91 -0
  2865. package/packages/app-core/src/components/pages/cloud-dashboard-utils.d.ts.map +1 -0
  2866. package/packages/app-core/src/components/pages/cloud-dashboard-utils.js +284 -0
  2867. package/packages/app-core/src/components/pages/config-page-sections.d.ts +86 -0
  2868. package/packages/app-core/src/components/pages/config-page-sections.d.ts.map +1 -0
  2869. package/packages/app-core/src/components/pages/config-page-sections.js +205 -0
  2870. package/packages/app-core/src/components/pages/database-utils.d.ts +30 -0
  2871. package/packages/app-core/src/components/pages/database-utils.d.ts.map +1 -0
  2872. package/packages/app-core/src/components/pages/database-utils.js +133 -0
  2873. package/packages/app-core/src/components/pages/heartbeat-utils.d.ts +105 -0
  2874. package/packages/app-core/src/components/pages/heartbeat-utils.d.ts.map +1 -0
  2875. package/packages/app-core/src/components/pages/heartbeat-utils.js +368 -0
  2876. package/packages/app-core/src/components/pages/knowledge-detail.d.ts +9 -0
  2877. package/packages/app-core/src/components/pages/knowledge-detail.d.ts.map +1 -0
  2878. package/packages/app-core/src/components/pages/knowledge-detail.js +149 -0
  2879. package/packages/app-core/src/components/pages/knowledge-upload.d.ts +27 -0
  2880. package/packages/app-core/src/components/pages/knowledge-upload.d.ts.map +1 -0
  2881. package/packages/app-core/src/components/pages/knowledge-upload.js +125 -0
  2882. package/packages/app-core/src/components/pages/page-scoped-conversations.d.ts +62 -0
  2883. package/packages/app-core/src/components/pages/page-scoped-conversations.d.ts.map +1 -0
  2884. package/packages/app-core/src/components/pages/page-scoped-conversations.js +211 -0
  2885. package/packages/app-core/src/components/pages/plugin-list-utils.d.ts +67 -0
  2886. package/packages/app-core/src/components/pages/plugin-list-utils.d.ts.map +1 -0
  2887. package/packages/app-core/src/components/pages/plugin-list-utils.js +666 -0
  2888. package/packages/app-core/src/components/pages/plugin-view-connectors.d.ts +57 -0
  2889. package/packages/app-core/src/components/pages/plugin-view-connectors.d.ts.map +1 -0
  2890. package/packages/app-core/src/components/pages/plugin-view-connectors.js +267 -0
  2891. package/packages/app-core/src/components/pages/plugin-view-dialogs.d.ts +36 -0
  2892. package/packages/app-core/src/components/pages/plugin-view-dialogs.d.ts.map +1 -0
  2893. package/packages/app-core/src/components/pages/plugin-view-dialogs.js +63 -0
  2894. package/packages/app-core/src/components/pages/plugin-view-modal.d.ts +34 -0
  2895. package/packages/app-core/src/components/pages/plugin-view-modal.d.ts.map +1 -0
  2896. package/packages/app-core/src/components/pages/plugin-view-modal.js +29 -0
  2897. package/packages/app-core/src/components/pages/plugin-view-sidebar.d.ts +36 -0
  2898. package/packages/app-core/src/components/pages/plugin-view-sidebar.d.ts.map +1 -0
  2899. package/packages/app-core/src/components/pages/plugin-view-sidebar.js +42 -0
  2900. package/packages/app-core/src/components/pages/relationships/RelationshipsActivityFeed.d.ts +2 -0
  2901. package/packages/app-core/src/components/pages/relationships/RelationshipsActivityFeed.d.ts.map +1 -0
  2902. package/packages/app-core/src/components/pages/relationships/RelationshipsActivityFeed.js +85 -0
  2903. package/packages/app-core/src/components/pages/relationships/RelationshipsCandidateMergesPanel.d.ts +6 -0
  2904. package/packages/app-core/src/components/pages/relationships/RelationshipsCandidateMergesPanel.d.ts.map +1 -0
  2905. package/packages/app-core/src/components/pages/relationships/RelationshipsCandidateMergesPanel.js +73 -0
  2906. package/packages/app-core/src/components/pages/relationships/RelationshipsPersonPanels.d.ts +27 -0
  2907. package/packages/app-core/src/components/pages/relationships/RelationshipsPersonPanels.d.ts.map +1 -0
  2908. package/packages/app-core/src/components/pages/relationships/RelationshipsPersonPanels.js +241 -0
  2909. package/packages/app-core/src/components/pages/relationships/RelationshipsSidebar.d.ts +10 -0
  2910. package/packages/app-core/src/components/pages/relationships/RelationshipsSidebar.d.ts.map +1 -0
  2911. package/packages/app-core/src/components/pages/relationships/RelationshipsSidebar.js +16 -0
  2912. package/packages/app-core/src/components/pages/relationships/RelationshipsWorkspaceView.d.ts +7 -0
  2913. package/packages/app-core/src/components/pages/relationships/RelationshipsWorkspaceView.d.ts.map +1 -0
  2914. package/packages/app-core/src/components/pages/relationships/RelationshipsWorkspaceView.js +130 -0
  2915. package/packages/app-core/src/components/pages/relationships/relationships-utils.d.ts +16 -0
  2916. package/packages/app-core/src/components/pages/relationships/relationships-utils.d.ts.map +1 -0
  2917. package/packages/app-core/src/components/pages/relationships/relationships-utils.js +105 -0
  2918. package/packages/app-core/src/components/pages/settings/IdentitySettingsSection.d.ts +2 -0
  2919. package/packages/app-core/src/components/pages/settings/IdentitySettingsSection.d.ts.map +1 -0
  2920. package/packages/app-core/src/components/pages/settings/IdentitySettingsSection.js +310 -0
  2921. package/packages/app-core/src/components/pages/skill-detail-panel.d.ts +13 -0
  2922. package/packages/app-core/src/components/pages/skill-detail-panel.d.ts.map +1 -0
  2923. package/packages/app-core/src/components/pages/skill-detail-panel.js +161 -0
  2924. package/packages/app-core/src/components/pages/skill-marketplace.d.ts +38 -0
  2925. package/packages/app-core/src/components/pages/skill-marketplace.d.ts.map +1 -0
  2926. package/packages/app-core/src/components/pages/skill-marketplace.js +114 -0
  2927. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.d.ts +43 -0
  2928. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.d.ts.map +1 -0
  2929. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.js +321 -0
  2930. package/packages/app-core/src/components/pages/vector-browser-utils.d.ts +2 -0
  2931. package/packages/app-core/src/components/pages/vector-browser-utils.d.ts.map +1 -0
  2932. package/packages/app-core/src/components/pages/vector-browser-utils.js +1 -0
  2933. package/packages/app-core/src/components/pages/workflow-graph-events.d.ts +6 -0
  2934. package/packages/app-core/src/components/pages/workflow-graph-events.d.ts.map +1 -0
  2935. package/packages/app-core/src/components/pages/workflow-graph-events.js +7 -0
  2936. package/packages/app-core/src/components/permissions/PermissionIcon.d.ts +4 -0
  2937. package/packages/app-core/src/components/permissions/PermissionIcon.d.ts.map +1 -0
  2938. package/packages/app-core/src/components/permissions/PermissionIcon.js +13 -0
  2939. package/packages/app-core/src/components/permissions/StreamingPermissions.d.ts +21 -0
  2940. package/packages/app-core/src/components/permissions/StreamingPermissions.d.ts.map +1 -0
  2941. package/packages/app-core/src/components/permissions/StreamingPermissions.js +284 -0
  2942. package/packages/app-core/src/components/phone-companion/Chat.d.ts +15 -0
  2943. package/packages/app-core/src/components/phone-companion/Chat.d.ts.map +1 -0
  2944. package/packages/app-core/src/components/phone-companion/Chat.js +76 -0
  2945. package/packages/app-core/src/components/phone-companion/Pairing.d.ts +9 -0
  2946. package/packages/app-core/src/components/phone-companion/Pairing.d.ts.map +1 -0
  2947. package/packages/app-core/src/components/phone-companion/Pairing.js +124 -0
  2948. package/packages/app-core/src/components/phone-companion/PhoneCompanionApp.d.ts +9 -0
  2949. package/packages/app-core/src/components/phone-companion/PhoneCompanionApp.d.ts.map +1 -0
  2950. package/packages/app-core/src/components/phone-companion/PhoneCompanionApp.js +108 -0
  2951. package/packages/app-core/src/components/phone-companion/RemoteSession.d.ts +9 -0
  2952. package/packages/app-core/src/components/phone-companion/RemoteSession.d.ts.map +1 -0
  2953. package/packages/app-core/src/components/phone-companion/RemoteSession.js +364 -0
  2954. package/packages/app-core/src/components/phone-companion/index.d.ts +5 -0
  2955. package/packages/app-core/src/components/phone-companion/index.d.ts.map +1 -0
  2956. package/packages/app-core/src/components/phone-companion/index.js +4 -0
  2957. package/packages/app-core/src/components/plugins/showcase-data.d.ts +4 -0
  2958. package/packages/app-core/src/components/plugins/showcase-data.d.ts.map +1 -0
  2959. package/packages/app-core/src/components/plugins/showcase-data.js +461 -0
  2960. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.d.ts +7 -0
  2961. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.d.ts.map +1 -0
  2962. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.js +74 -0
  2963. package/packages/app-core/src/components/policy-controls/AutoApproveSection.d.ts +7 -0
  2964. package/packages/app-core/src/components/policy-controls/AutoApproveSection.d.ts.map +1 -0
  2965. package/packages/app-core/src/components/policy-controls/AutoApproveSection.js +14 -0
  2966. package/packages/app-core/src/components/policy-controls/PolicyToggle.d.ts +15 -0
  2967. package/packages/app-core/src/components/policy-controls/PolicyToggle.d.ts.map +1 -0
  2968. package/packages/app-core/src/components/policy-controls/PolicyToggle.js +12 -0
  2969. package/packages/app-core/src/components/policy-controls/RateLimitSection.d.ts +7 -0
  2970. package/packages/app-core/src/components/policy-controls/RateLimitSection.d.ts.map +1 -0
  2971. package/packages/app-core/src/components/policy-controls/RateLimitSection.js +11 -0
  2972. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.d.ts +7 -0
  2973. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.d.ts.map +1 -0
  2974. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.js +15 -0
  2975. package/packages/app-core/src/components/policy-controls/TimeWindowSection.d.ts +7 -0
  2976. package/packages/app-core/src/components/policy-controls/TimeWindowSection.d.ts.map +1 -0
  2977. package/packages/app-core/src/components/policy-controls/TimeWindowSection.js +40 -0
  2978. package/packages/app-core/src/components/policy-controls/constants.d.ts +11 -0
  2979. package/packages/app-core/src/components/policy-controls/constants.d.ts.map +1 -0
  2980. package/packages/app-core/src/components/policy-controls/constants.js +41 -0
  2981. package/packages/app-core/src/components/policy-controls/helpers.d.ts +13 -0
  2982. package/packages/app-core/src/components/policy-controls/helpers.d.ts.map +1 -0
  2983. package/packages/app-core/src/components/policy-controls/helpers.js +43 -0
  2984. package/packages/app-core/src/components/policy-controls/index.d.ts +10 -0
  2985. package/packages/app-core/src/components/policy-controls/index.d.ts.map +1 -0
  2986. package/packages/app-core/src/components/policy-controls/index.js +9 -0
  2987. package/packages/app-core/src/components/policy-controls/types.d.ts +58 -0
  2988. package/packages/app-core/src/components/policy-controls/types.d.ts.map +1 -0
  2989. package/packages/app-core/src/components/policy-controls/types.js +7 -0
  2990. package/packages/app-core/src/components/release-center/shared.d.ts +13 -0
  2991. package/packages/app-core/src/components/release-center/shared.d.ts.map +1 -0
  2992. package/packages/app-core/src/components/release-center/shared.js +38 -0
  2993. package/packages/app-core/src/components/release-center/types.d.ts +79 -0
  2994. package/packages/app-core/src/components/release-center/types.d.ts.map +1 -0
  2995. package/packages/app-core/src/components/release-center/types.js +5 -0
  2996. package/packages/app-core/src/components/settings/ApiKeyConfig.d.ts +21 -0
  2997. package/packages/app-core/src/components/settings/ApiKeyConfig.d.ts.map +1 -0
  2998. package/packages/app-core/src/components/settings/ApiKeyConfig.js +111 -0
  2999. package/packages/app-core/src/components/settings/AppearanceSettingsSection.d.ts +2 -0
  3000. package/packages/app-core/src/components/settings/AppearanceSettingsSection.d.ts.map +1 -0
  3001. package/packages/app-core/src/components/settings/AppearanceSettingsSection.js +292 -0
  3002. package/packages/app-core/src/components/settings/AppsManagementSection.d.ts +12 -0
  3003. package/packages/app-core/src/components/settings/AppsManagementSection.d.ts.map +1 -0
  3004. package/packages/app-core/src/components/settings/AppsManagementSection.js +285 -0
  3005. package/packages/app-core/src/components/settings/CapabilitiesSection.d.ts +2 -0
  3006. package/packages/app-core/src/components/settings/CapabilitiesSection.d.ts.map +1 -0
  3007. package/packages/app-core/src/components/settings/CapabilitiesSection.js +97 -0
  3008. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.d.ts +7 -0
  3009. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.d.ts.map +1 -0
  3010. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.js +502 -0
  3011. package/packages/app-core/src/components/settings/PermissionsSection.d.ts +8 -0
  3012. package/packages/app-core/src/components/settings/PermissionsSection.d.ts.map +1 -0
  3013. package/packages/app-core/src/components/settings/PermissionsSection.js +310 -0
  3014. package/packages/app-core/src/components/settings/PolicyControlsView.d.ts +2 -0
  3015. package/packages/app-core/src/components/settings/PolicyControlsView.d.ts.map +1 -0
  3016. package/packages/app-core/src/components/settings/PolicyControlsView.js +231 -0
  3017. package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts +22 -0
  3018. package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts.map +1 -0
  3019. package/packages/app-core/src/components/settings/ProviderSwitcher.js +583 -0
  3020. package/packages/app-core/src/components/settings/SecuritySettingsSection.d.ts +2 -0
  3021. package/packages/app-core/src/components/settings/SecuritySettingsSection.d.ts.map +1 -0
  3022. package/packages/app-core/src/components/settings/SecuritySettingsSection.js +381 -0
  3023. package/packages/app-core/src/components/settings/SubscriptionStatus.d.ts +28 -0
  3024. package/packages/app-core/src/components/settings/SubscriptionStatus.d.ts.map +1 -0
  3025. package/packages/app-core/src/components/settings/SubscriptionStatus.js +266 -0
  3026. package/packages/app-core/src/components/settings/VoiceConfigView.d.ts +5 -0
  3027. package/packages/app-core/src/components/settings/VoiceConfigView.d.ts.map +1 -0
  3028. package/packages/app-core/src/components/settings/VoiceConfigView.js +505 -0
  3029. package/packages/app-core/src/components/settings/cloud-model-schema.d.ts +26 -0
  3030. package/packages/app-core/src/components/settings/cloud-model-schema.d.ts.map +1 -0
  3031. package/packages/app-core/src/components/settings/cloud-model-schema.js +103 -0
  3032. package/packages/app-core/src/components/settings/permission-controls.d.ts +37 -0
  3033. package/packages/app-core/src/components/settings/permission-controls.d.ts.map +1 -0
  3034. package/packages/app-core/src/components/settings/permission-controls.js +403 -0
  3035. package/packages/app-core/src/components/settings/permission-types.d.ts +44 -0
  3036. package/packages/app-core/src/components/settings/permission-types.d.ts.map +1 -0
  3037. package/packages/app-core/src/components/settings/permission-types.js +215 -0
  3038. package/packages/app-core/src/components/settings/settings-control-primitives.d.ts +11 -0
  3039. package/packages/app-core/src/components/settings/settings-control-primitives.d.ts.map +1 -0
  3040. package/packages/app-core/src/components/settings/settings-control-primitives.js +14 -0
  3041. package/packages/app-core/src/components/shared/AppPageSidebar.d.ts +12 -0
  3042. package/packages/app-core/src/components/shared/AppPageSidebar.d.ts.map +1 -0
  3043. package/packages/app-core/src/components/shared/AppPageSidebar.js +119 -0
  3044. package/packages/app-core/src/components/shared/CollapsibleSidebarSection.d.ts +19 -0
  3045. package/packages/app-core/src/components/shared/CollapsibleSidebarSection.d.ts.map +1 -0
  3046. package/packages/app-core/src/components/shared/CollapsibleSidebarSection.js +12 -0
  3047. package/packages/app-core/src/components/shared/LanguageDropdown.d.ts +24 -0
  3048. package/packages/app-core/src/components/shared/LanguageDropdown.d.ts.map +1 -0
  3049. package/packages/app-core/src/components/shared/LanguageDropdown.js +37 -0
  3050. package/packages/app-core/src/components/shared/ThemeToggle.d.ts +14 -0
  3051. package/packages/app-core/src/components/shared/ThemeToggle.d.ts.map +1 -0
  3052. package/packages/app-core/src/components/shared/ThemeToggle.js +14 -0
  3053. package/packages/app-core/src/components/shared/confirm-delete-control.d.ts +19 -0
  3054. package/packages/app-core/src/components/shared/confirm-delete-control.d.ts.map +1 -0
  3055. package/packages/app-core/src/components/shared/confirm-delete-control.js +19 -0
  3056. package/packages/app-core/src/components/shell/BugReportModal.d.ts +2 -0
  3057. package/packages/app-core/src/components/shell/BugReportModal.d.ts.map +1 -0
  3058. package/packages/app-core/src/components/shell/BugReportModal.js +366 -0
  3059. package/packages/app-core/src/components/shell/CommandPalette.d.ts +2 -0
  3060. package/packages/app-core/src/components/shell/CommandPalette.d.ts.map +1 -0
  3061. package/packages/app-core/src/components/shell/CommandPalette.js +185 -0
  3062. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.d.ts +2 -0
  3063. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.d.ts.map +1 -0
  3064. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.js +171 -0
  3065. package/packages/app-core/src/components/shell/ConnectionFailedBanner.d.ts +6 -0
  3066. package/packages/app-core/src/components/shell/ConnectionFailedBanner.d.ts.map +1 -0
  3067. package/packages/app-core/src/components/shell/ConnectionFailedBanner.js +23 -0
  3068. package/packages/app-core/src/components/shell/ConnectionLostOverlay.d.ts +2 -0
  3069. package/packages/app-core/src/components/shell/ConnectionLostOverlay.d.ts.map +1 -0
  3070. package/packages/app-core/src/components/shell/ConnectionLostOverlay.js +49 -0
  3071. package/packages/app-core/src/components/shell/Header.d.ts +13 -0
  3072. package/packages/app-core/src/components/shell/Header.d.ts.map +1 -0
  3073. package/packages/app-core/src/components/shell/Header.js +298 -0
  3074. package/packages/app-core/src/components/shell/LoadingScreen.d.ts +13 -0
  3075. package/packages/app-core/src/components/shell/LoadingScreen.d.ts.map +1 -0
  3076. package/packages/app-core/src/components/shell/LoadingScreen.js +86 -0
  3077. package/packages/app-core/src/components/shell/PairingView.d.ts +2 -0
  3078. package/packages/app-core/src/components/shell/PairingView.d.ts.map +1 -0
  3079. package/packages/app-core/src/components/shell/PairingView.js +41 -0
  3080. package/packages/app-core/src/components/shell/RestartBanner.d.ts +2 -0
  3081. package/packages/app-core/src/components/shell/RestartBanner.d.ts.map +1 -0
  3082. package/packages/app-core/src/components/shell/RestartBanner.js +39 -0
  3083. package/packages/app-core/src/components/shell/RuntimeGate.d.ts +22 -0
  3084. package/packages/app-core/src/components/shell/RuntimeGate.d.ts.map +1 -0
  3085. package/packages/app-core/src/components/shell/RuntimeGate.js +388 -0
  3086. package/packages/app-core/src/components/shell/ShellHeaderControls.d.ts +44 -0
  3087. package/packages/app-core/src/components/shell/ShellHeaderControls.d.ts.map +1 -0
  3088. package/packages/app-core/src/components/shell/ShellHeaderControls.js +80 -0
  3089. package/packages/app-core/src/components/shell/ShellOverlays.d.ts +5 -0
  3090. package/packages/app-core/src/components/shell/ShellOverlays.d.ts.map +1 -0
  3091. package/packages/app-core/src/components/shell/ShellOverlays.js +15 -0
  3092. package/packages/app-core/src/components/shell/ShortcutsOverlay.d.ts +2 -0
  3093. package/packages/app-core/src/components/shell/ShortcutsOverlay.d.ts.map +1 -0
  3094. package/packages/app-core/src/components/shell/ShortcutsOverlay.js +58 -0
  3095. package/packages/app-core/src/components/shell/StartupFailureView.d.ts +8 -0
  3096. package/packages/app-core/src/components/shell/StartupFailureView.d.ts.map +1 -0
  3097. package/packages/app-core/src/components/shell/StartupFailureView.js +148 -0
  3098. package/packages/app-core/src/components/shell/StartupShell.d.ts +12 -0
  3099. package/packages/app-core/src/components/shell/StartupShell.d.ts.map +1 -0
  3100. package/packages/app-core/src/components/shell/StartupShell.js +230 -0
  3101. package/packages/app-core/src/components/shell/SystemWarningBanner.d.ts +6 -0
  3102. package/packages/app-core/src/components/shell/SystemWarningBanner.d.ts.map +1 -0
  3103. package/packages/app-core/src/components/shell/SystemWarningBanner.js +44 -0
  3104. package/packages/app-core/src/components/steward/injected.d.ts +5 -0
  3105. package/packages/app-core/src/components/steward/injected.d.ts.map +1 -0
  3106. package/packages/app-core/src/components/steward/injected.js +14 -0
  3107. package/packages/app-core/src/components/stream/StatusBar.d.ts +10 -0
  3108. package/packages/app-core/src/components/stream/StatusBar.d.ts.map +1 -0
  3109. package/packages/app-core/src/components/stream/StatusBar.js +65 -0
  3110. package/packages/app-core/src/components/stream/helpers.d.ts +15 -0
  3111. package/packages/app-core/src/components/stream/helpers.d.ts.map +1 -0
  3112. package/packages/app-core/src/components/stream/helpers.js +16 -0
  3113. package/packages/app-core/src/components/training/injected.d.ts +3 -0
  3114. package/packages/app-core/src/components/training/injected.d.ts.map +1 -0
  3115. package/packages/app-core/src/components/training/injected.js +6 -0
  3116. package/packages/app-core/src/components/workspace/AppWorkspaceChrome.d.ts +62 -0
  3117. package/packages/app-core/src/components/workspace/AppWorkspaceChrome.d.ts.map +1 -0
  3118. package/packages/app-core/src/components/workspace/AppWorkspaceChrome.js +220 -0
  3119. package/packages/app-core/src/config/app-config.d.ts +121 -0
  3120. package/packages/app-core/src/config/app-config.d.ts.map +1 -0
  3121. package/packages/app-core/src/config/app-config.js +31 -0
  3122. package/packages/app-core/src/config/boot-config-react.d.ts +5 -0
  3123. package/packages/app-core/src/config/boot-config-react.d.ts.map +1 -0
  3124. package/packages/app-core/src/config/boot-config-react.js +7 -0
  3125. package/packages/app-core/src/config/boot-config-store.d.ts +238 -0
  3126. package/packages/app-core/src/config/boot-config-store.d.ts.map +1 -0
  3127. package/packages/app-core/src/config/boot-config-store.js +143 -0
  3128. package/packages/app-core/src/config/boot-config.d.ts +6 -0
  3129. package/packages/app-core/src/config/boot-config.d.ts.map +1 -0
  3130. package/packages/app-core/src/config/boot-config.js +5 -0
  3131. package/packages/app-core/src/config/branding.d.ts +55 -0
  3132. package/packages/app-core/src/config/branding.d.ts.map +1 -0
  3133. package/packages/app-core/src/config/branding.js +23 -0
  3134. package/packages/app-core/src/config/cloud-only.d.ts +6 -0
  3135. package/packages/app-core/src/config/cloud-only.d.ts.map +1 -0
  3136. package/packages/app-core/src/config/cloud-only.js +15 -0
  3137. package/packages/app-core/src/config/config-catalog.d.ts +376 -0
  3138. package/packages/app-core/src/config/config-catalog.d.ts.map +1 -0
  3139. package/packages/app-core/src/config/config-catalog.js +732 -0
  3140. package/packages/app-core/src/config/index.d.ts +12 -0
  3141. package/packages/app-core/src/config/index.d.ts.map +1 -0
  3142. package/packages/app-core/src/config/index.js +11 -0
  3143. package/packages/app-core/src/config/plugin-auto-enable.d.ts +5 -0
  3144. package/packages/app-core/src/config/plugin-auto-enable.d.ts.map +1 -0
  3145. package/packages/app-core/src/config/plugin-auto-enable.js +47 -0
  3146. package/packages/app-core/src/config/plugin-ui-spec.d.ts +42 -0
  3147. package/packages/app-core/src/config/plugin-ui-spec.d.ts.map +1 -0
  3148. package/packages/app-core/src/config/plugin-ui-spec.js +256 -0
  3149. package/packages/app-core/src/config/ui-spec.d.ts +164 -0
  3150. package/packages/app-core/src/config/ui-spec.d.ts.map +1 -0
  3151. package/packages/app-core/src/config/ui-spec.js +13 -0
  3152. package/packages/app-core/src/config/wechat-config.d.ts +3 -0
  3153. package/packages/app-core/src/config/wechat-config.d.ts.map +1 -0
  3154. package/packages/app-core/src/config/wechat-config.js +21 -0
  3155. package/packages/app-core/src/content-packs/apply-pack.d.ts +33 -0
  3156. package/packages/app-core/src/content-packs/apply-pack.d.ts.map +1 -0
  3157. package/packages/app-core/src/content-packs/apply-pack.js +96 -0
  3158. package/packages/app-core/src/content-packs/bundled-packs.d.ts +14 -0
  3159. package/packages/app-core/src/content-packs/bundled-packs.d.ts.map +1 -0
  3160. package/packages/app-core/src/content-packs/bundled-packs.js +106 -0
  3161. package/packages/app-core/src/content-packs/index.d.ts +4 -0
  3162. package/packages/app-core/src/content-packs/index.d.ts.map +1 -0
  3163. package/packages/app-core/src/content-packs/index.js +3 -0
  3164. package/packages/app-core/src/content-packs/load-pack.d.ts +34 -0
  3165. package/packages/app-core/src/content-packs/load-pack.d.ts.map +1 -0
  3166. package/packages/app-core/src/content-packs/load-pack.js +151 -0
  3167. package/packages/app-core/src/events/index.d.ts +62 -0
  3168. package/packages/app-core/src/events/index.d.ts.map +1 -0
  3169. package/packages/app-core/src/events/index.js +51 -0
  3170. package/packages/app-core/src/hooks/index.d.ts +14 -0
  3171. package/packages/app-core/src/hooks/index.d.ts.map +1 -0
  3172. package/packages/app-core/src/hooks/index.js +13 -0
  3173. package/packages/app-core/src/hooks/useAccounts.d.ts +41 -0
  3174. package/packages/app-core/src/hooks/useAccounts.d.ts.map +1 -0
  3175. package/packages/app-core/src/hooks/useAccounts.js +250 -0
  3176. package/packages/app-core/src/hooks/useActivityEvents.d.ts +20 -0
  3177. package/packages/app-core/src/hooks/useActivityEvents.d.ts.map +1 -0
  3178. package/packages/app-core/src/hooks/useActivityEvents.js +126 -0
  3179. package/packages/app-core/src/hooks/useAuthStatus.d.ts +49 -0
  3180. package/packages/app-core/src/hooks/useAuthStatus.d.ts.map +1 -0
  3181. package/packages/app-core/src/hooks/useAuthStatus.js +90 -0
  3182. package/packages/app-core/src/hooks/useBugReport.d.ts +26 -0
  3183. package/packages/app-core/src/hooks/useBugReport.d.ts.map +1 -0
  3184. package/packages/app-core/src/hooks/useBugReport.js +28 -0
  3185. package/packages/app-core/src/hooks/useCanvasWindow.d.ts +38 -0
  3186. package/packages/app-core/src/hooks/useCanvasWindow.d.ts.map +1 -0
  3187. package/packages/app-core/src/hooks/useCanvasWindow.js +277 -0
  3188. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.d.ts +12 -0
  3189. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.d.ts.map +1 -0
  3190. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.js +21 -0
  3191. package/packages/app-core/src/hooks/useContextMenu.d.ts +17 -0
  3192. package/packages/app-core/src/hooks/useContextMenu.d.ts.map +1 -0
  3193. package/packages/app-core/src/hooks/useContextMenu.js +142 -0
  3194. package/packages/app-core/src/hooks/useKeyboardShortcuts.d.ts +5 -0
  3195. package/packages/app-core/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  3196. package/packages/app-core/src/hooks/useKeyboardShortcuts.js +32 -0
  3197. package/packages/app-core/src/hooks/useMediaQuery.d.ts +4 -0
  3198. package/packages/app-core/src/hooks/useMediaQuery.d.ts.map +1 -0
  3199. package/packages/app-core/src/hooks/useMediaQuery.js +30 -0
  3200. package/packages/app-core/src/hooks/useMusicPlayer.d.ts +54 -0
  3201. package/packages/app-core/src/hooks/useMusicPlayer.d.ts.map +1 -0
  3202. package/packages/app-core/src/hooks/useMusicPlayer.js +117 -0
  3203. package/packages/app-core/src/hooks/useRenderGuard.d.ts +17 -0
  3204. package/packages/app-core/src/hooks/useRenderGuard.d.ts.map +1 -0
  3205. package/packages/app-core/src/hooks/useRenderGuard.js +36 -0
  3206. package/packages/app-core/src/hooks/useSignalPairing.d.ts +12 -0
  3207. package/packages/app-core/src/hooks/useSignalPairing.d.ts.map +1 -0
  3208. package/packages/app-core/src/hooks/useSignalPairing.js +129 -0
  3209. package/packages/app-core/src/hooks/useStreamPopoutNavigation.d.ts +3 -0
  3210. package/packages/app-core/src/hooks/useStreamPopoutNavigation.d.ts.map +1 -0
  3211. package/packages/app-core/src/hooks/useStreamPopoutNavigation.js +4 -0
  3212. package/packages/app-core/src/hooks/useVoiceChat.d.ts +37 -0
  3213. package/packages/app-core/src/hooks/useVoiceChat.d.ts.map +1 -0
  3214. package/packages/app-core/src/hooks/useVoiceChat.js +1310 -0
  3215. package/packages/app-core/src/hooks/useWhatsAppPairing.d.ts +12 -0
  3216. package/packages/app-core/src/hooks/useWhatsAppPairing.d.ts.map +1 -0
  3217. package/packages/app-core/src/hooks/useWhatsAppPairing.js +95 -0
  3218. package/packages/app-core/src/hooks/useWorkflowGenerationState.d.ts +23 -0
  3219. package/packages/app-core/src/hooks/useWorkflowGenerationState.d.ts.map +1 -0
  3220. package/packages/app-core/src/hooks/useWorkflowGenerationState.js +46 -0
  3221. package/packages/app-core/src/hooks/voice-chat-playback.d.ts +32 -0
  3222. package/packages/app-core/src/hooks/voice-chat-playback.d.ts.map +1 -0
  3223. package/packages/app-core/src/hooks/voice-chat-playback.js +203 -0
  3224. package/packages/app-core/src/hooks/voice-chat-recording.d.ts +6 -0
  3225. package/packages/app-core/src/hooks/voice-chat-recording.d.ts.map +1 -0
  3226. package/packages/app-core/src/hooks/voice-chat-recording.js +46 -0
  3227. package/packages/app-core/src/hooks/voice-chat-types.d.ts +193 -0
  3228. package/packages/app-core/src/hooks/voice-chat-types.d.ts.map +1 -0
  3229. package/packages/app-core/src/hooks/voice-chat-types.js +185 -0
  3230. package/packages/app-core/src/i18n/index.d.ts +7 -0
  3231. package/packages/app-core/src/i18n/index.d.ts.map +1 -0
  3232. package/packages/app-core/src/i18n/index.js +57 -0
  3233. package/packages/app-core/src/i18n/locales/en.json +3211 -0
  3234. package/packages/app-core/src/i18n/locales/es.json +3211 -0
  3235. package/packages/app-core/src/i18n/locales/ko.json +3211 -0
  3236. package/packages/app-core/src/i18n/locales/pt.json +3211 -0
  3237. package/packages/app-core/src/i18n/locales/tl.json +3211 -0
  3238. package/packages/app-core/src/i18n/locales/vi.json +3211 -0
  3239. package/packages/app-core/src/i18n/locales/zh-CN.json +3211 -0
  3240. package/packages/app-core/src/i18n/messages.d.ts +6 -0
  3241. package/packages/app-core/src/i18n/messages.d.ts.map +1 -0
  3242. package/packages/app-core/src/i18n/messages.js +26 -0
  3243. package/packages/app-core/src/index.d.ts +54 -0
  3244. package/packages/app-core/src/index.d.ts.map +1 -0
  3245. package/packages/app-core/src/index.js +50 -0
  3246. package/packages/app-core/src/navigation/index.d.ts +70 -0
  3247. package/packages/app-core/src/navigation/index.d.ts.map +1 -0
  3248. package/packages/app-core/src/navigation/index.js +442 -0
  3249. package/packages/app-core/src/onboarding/flow.d.ts +66 -0
  3250. package/packages/app-core/src/onboarding/flow.d.ts.map +1 -0
  3251. package/packages/app-core/src/onboarding/flow.js +100 -0
  3252. package/packages/app-core/src/onboarding/mobile-runtime-mode.d.ts +8 -0
  3253. package/packages/app-core/src/onboarding/mobile-runtime-mode.d.ts.map +1 -0
  3254. package/packages/app-core/src/onboarding/mobile-runtime-mode.js +54 -0
  3255. package/packages/app-core/src/onboarding/server-target.d.ts +4 -0
  3256. package/packages/app-core/src/onboarding/server-target.d.ts.map +1 -0
  3257. package/packages/app-core/src/onboarding/server-target.js +13 -0
  3258. package/packages/app-core/src/onboarding-config.d.ts +60 -0
  3259. package/packages/app-core/src/onboarding-config.d.ts.map +1 -0
  3260. package/packages/app-core/src/onboarding-config.js +169 -0
  3261. package/packages/app-core/src/platform/browser-launch.d.ts +10 -0
  3262. package/packages/app-core/src/platform/browser-launch.d.ts.map +1 -0
  3263. package/packages/app-core/src/platform/browser-launch.js +147 -0
  3264. package/packages/app-core/src/platform/cloud-preference-patch.d.ts +11 -0
  3265. package/packages/app-core/src/platform/cloud-preference-patch.d.ts.map +1 -0
  3266. package/packages/app-core/src/platform/cloud-preference-patch.js +85 -0
  3267. package/packages/app-core/src/platform/desktop-permissions-client.d.ts +3 -0
  3268. package/packages/app-core/src/platform/desktop-permissions-client.d.ts.map +1 -0
  3269. package/packages/app-core/src/platform/desktop-permissions-client.js +128 -0
  3270. package/packages/app-core/src/platform/index.d.ts +15 -0
  3271. package/packages/app-core/src/platform/index.d.ts.map +1 -0
  3272. package/packages/app-core/src/platform/index.js +23 -0
  3273. package/packages/app-core/src/platform/init.d.ts +38 -0
  3274. package/packages/app-core/src/platform/init.d.ts.map +1 -0
  3275. package/packages/app-core/src/platform/init.js +159 -0
  3276. package/packages/app-core/src/platform/is-native-server.d.ts +14 -0
  3277. package/packages/app-core/src/platform/is-native-server.d.ts.map +1 -0
  3278. package/packages/app-core/src/platform/is-native-server.js +16 -0
  3279. package/packages/app-core/src/platform/onboarding-reset.d.ts +11 -0
  3280. package/packages/app-core/src/platform/onboarding-reset.d.ts.map +1 -0
  3281. package/packages/app-core/src/platform/onboarding-reset.js +127 -0
  3282. package/packages/app-core/src/platform/types.d.ts +28 -0
  3283. package/packages/app-core/src/platform/types.d.ts.map +1 -0
  3284. package/packages/app-core/src/platform/types.js +1 -0
  3285. package/packages/app-core/src/platform/window-shell.d.ts +28 -0
  3286. package/packages/app-core/src/platform/window-shell.d.ts.map +1 -0
  3287. package/packages/app-core/src/platform/window-shell.js +73 -0
  3288. package/packages/app-core/src/providers/index.d.ts +26 -0
  3289. package/packages/app-core/src/providers/index.d.ts.map +1 -0
  3290. package/packages/app-core/src/providers/index.js +107 -0
  3291. package/packages/app-core/src/runtime/channel-plugin-map.d.ts +6 -0
  3292. package/packages/app-core/src/runtime/channel-plugin-map.d.ts.map +1 -0
  3293. package/packages/app-core/src/runtime/channel-plugin-map.js +10 -0
  3294. package/packages/app-core/src/security/agent-vault-id.d.ts +14 -0
  3295. package/packages/app-core/src/security/agent-vault-id.d.ts.map +1 -0
  3296. package/packages/app-core/src/security/agent-vault-id.js +32 -0
  3297. package/packages/app-core/src/security/platform-secure-store-node.d.ts +15 -0
  3298. package/packages/app-core/src/security/platform-secure-store-node.d.ts.map +1 -0
  3299. package/packages/app-core/src/security/platform-secure-store-node.js +296 -0
  3300. package/packages/app-core/src/security/platform-secure-store.d.ts +47 -0
  3301. package/packages/app-core/src/security/platform-secure-store.d.ts.map +1 -0
  3302. package/packages/app-core/src/security/platform-secure-store.js +10 -0
  3303. package/packages/app-core/src/services/auth-store.d.ts +185 -0
  3304. package/packages/app-core/src/services/auth-store.d.ts.map +1 -0
  3305. package/packages/app-core/src/services/auth-store.js +418 -0
  3306. package/packages/app-core/src/services/cloud-jwks-store.d.ts +62 -0
  3307. package/packages/app-core/src/services/cloud-jwks-store.d.ts.map +1 -0
  3308. package/packages/app-core/src/services/cloud-jwks-store.js +118 -0
  3309. package/packages/app-core/src/services/local-inference/active-model.d.ts +45 -0
  3310. package/packages/app-core/src/services/local-inference/active-model.d.ts.map +1 -0
  3311. package/packages/app-core/src/services/local-inference/active-model.js +120 -0
  3312. package/packages/app-core/src/services/local-inference/device-bridge.d.ts +124 -0
  3313. package/packages/app-core/src/services/local-inference/device-bridge.d.ts.map +1 -0
  3314. package/packages/app-core/src/services/local-inference/device-bridge.js +643 -0
  3315. package/packages/app-core/src/services/local-inference/engine.d.ts +52 -0
  3316. package/packages/app-core/src/services/local-inference/engine.d.ts.map +1 -0
  3317. package/packages/app-core/src/services/local-inference/engine.js +138 -0
  3318. package/packages/app-core/src/services/local-inference/external-scanner.d.ts +17 -0
  3319. package/packages/app-core/src/services/local-inference/external-scanner.d.ts.map +1 -0
  3320. package/packages/app-core/src/services/local-inference/external-scanner.js +261 -0
  3321. package/packages/app-core/src/services/local-inference/handler-registry.d.ts +72 -0
  3322. package/packages/app-core/src/services/local-inference/handler-registry.d.ts.map +1 -0
  3323. package/packages/app-core/src/services/local-inference/handler-registry.js +160 -0
  3324. package/packages/app-core/src/services/local-inference/hardware.d.ts +26 -0
  3325. package/packages/app-core/src/services/local-inference/hardware.d.ts.map +1 -0
  3326. package/packages/app-core/src/services/local-inference/hardware.js +139 -0
  3327. package/packages/app-core/src/services/local-inference/paths.d.ts +17 -0
  3328. package/packages/app-core/src/services/local-inference/paths.d.ts.map +1 -0
  3329. package/packages/app-core/src/services/local-inference/paths.js +34 -0
  3330. package/packages/app-core/src/services/local-inference/providers.d.ts +61 -0
  3331. package/packages/app-core/src/services/local-inference/providers.d.ts.map +1 -0
  3332. package/packages/app-core/src/services/local-inference/providers.js +231 -0
  3333. package/packages/app-core/src/services/local-inference/registry.d.ts +35 -0
  3334. package/packages/app-core/src/services/local-inference/registry.d.ts.map +1 -0
  3335. package/packages/app-core/src/services/local-inference/registry.js +108 -0
  3336. package/packages/app-core/src/services/local-inference/routing-preferences.d.ts +29 -0
  3337. package/packages/app-core/src/services/local-inference/routing-preferences.d.ts.map +1 -0
  3338. package/packages/app-core/src/services/local-inference/routing-preferences.js +71 -0
  3339. package/packages/app-core/src/services/local-inference/types.d.ts +121 -0
  3340. package/packages/app-core/src/services/local-inference/types.d.ts.map +1 -0
  3341. package/packages/app-core/src/services/local-inference/types.js +14 -0
  3342. package/packages/app-core/src/services/local-inference/verify.d.ts +39 -0
  3343. package/packages/app-core/src/services/local-inference/verify.d.ts.map +1 -0
  3344. package/packages/app-core/src/services/local-inference/verify.js +104 -0
  3345. package/packages/app-core/src/services/phone-companion/env.d.ts +11 -0
  3346. package/packages/app-core/src/services/phone-companion/env.d.ts.map +1 -0
  3347. package/packages/app-core/src/services/phone-companion/env.js +21 -0
  3348. package/packages/app-core/src/services/phone-companion/index.d.ts +14 -0
  3349. package/packages/app-core/src/services/phone-companion/index.d.ts.map +1 -0
  3350. package/packages/app-core/src/services/phone-companion/index.js +13 -0
  3351. package/packages/app-core/src/services/phone-companion/logger.d.ts +14 -0
  3352. package/packages/app-core/src/services/phone-companion/logger.d.ts.map +1 -0
  3353. package/packages/app-core/src/services/phone-companion/logger.js +57 -0
  3354. package/packages/app-core/src/services/phone-companion/milady-intent.d.ts +63 -0
  3355. package/packages/app-core/src/services/phone-companion/milady-intent.d.ts.map +1 -0
  3356. package/packages/app-core/src/services/phone-companion/milady-intent.js +50 -0
  3357. package/packages/app-core/src/services/phone-companion/navigation.d.ts +17 -0
  3358. package/packages/app-core/src/services/phone-companion/navigation.d.ts.map +1 -0
  3359. package/packages/app-core/src/services/phone-companion/navigation.js +99 -0
  3360. package/packages/app-core/src/services/phone-companion/push.d.ts +27 -0
  3361. package/packages/app-core/src/services/phone-companion/push.d.ts.map +1 -0
  3362. package/packages/app-core/src/services/phone-companion/push.js +80 -0
  3363. package/packages/app-core/src/services/phone-companion/session-client.d.ts +114 -0
  3364. package/packages/app-core/src/services/phone-companion/session-client.d.ts.map +1 -0
  3365. package/packages/app-core/src/services/phone-companion/session-client.js +211 -0
  3366. package/packages/app-core/src/services/plugin-installer.d.ts +93 -0
  3367. package/packages/app-core/src/services/plugin-installer.d.ts.map +1 -0
  3368. package/packages/app-core/src/services/plugin-installer.js +628 -0
  3369. package/packages/app-core/src/shell/AppWindowRenderer.d.ts +17 -0
  3370. package/packages/app-core/src/shell/AppWindowRenderer.d.ts.map +1 -0
  3371. package/packages/app-core/src/shell/AppWindowRenderer.js +331 -0
  3372. package/packages/app-core/src/shell/DesktopOnboardingRuntime.d.ts +9 -0
  3373. package/packages/app-core/src/shell/DesktopOnboardingRuntime.d.ts.map +1 -0
  3374. package/packages/app-core/src/shell/DesktopOnboardingRuntime.js +10 -0
  3375. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.d.ts +2 -0
  3376. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.d.ts.map +1 -0
  3377. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.js +48 -0
  3378. package/packages/app-core/src/shell/DesktopTrayRuntime.d.ts +11 -0
  3379. package/packages/app-core/src/shell/DesktopTrayRuntime.d.ts.map +1 -0
  3380. package/packages/app-core/src/shell/DesktopTrayRuntime.js +265 -0
  3381. package/packages/app-core/src/shell/DetachedShellRoot.d.ts +10 -0
  3382. package/packages/app-core/src/shell/DetachedShellRoot.d.ts.map +1 -0
  3383. package/packages/app-core/src/shell/DetachedShellRoot.js +114 -0
  3384. package/packages/app-core/src/shell/index.d.ts +6 -0
  3385. package/packages/app-core/src/shell/index.d.ts.map +1 -0
  3386. package/packages/app-core/src/shell/index.js +5 -0
  3387. package/packages/app-core/src/state/AppContext.d.ts +13 -0
  3388. package/packages/app-core/src/state/AppContext.d.ts.map +1 -0
  3389. package/packages/app-core/src/state/AppContext.js +1896 -0
  3390. package/packages/app-core/src/state/ChatComposerContext.d.ts +28 -0
  3391. package/packages/app-core/src/state/ChatComposerContext.d.ts.map +1 -0
  3392. package/packages/app-core/src/state/ChatComposerContext.js +30 -0
  3393. package/packages/app-core/src/state/CompanionSceneConfigContext.d.ts +27 -0
  3394. package/packages/app-core/src/state/CompanionSceneConfigContext.d.ts.map +1 -0
  3395. package/packages/app-core/src/state/CompanionSceneConfigContext.js +32 -0
  3396. package/packages/app-core/src/state/PtySessionsContext.d.ts +15 -0
  3397. package/packages/app-core/src/state/PtySessionsContext.d.ts.map +1 -0
  3398. package/packages/app-core/src/state/PtySessionsContext.js +15 -0
  3399. package/packages/app-core/src/state/TranslationContext.d.ts +29 -0
  3400. package/packages/app-core/src/state/TranslationContext.d.ts.map +1 -0
  3401. package/packages/app-core/src/state/TranslationContext.js +61 -0
  3402. package/packages/app-core/src/state/action-notice.d.ts +7 -0
  3403. package/packages/app-core/src/state/action-notice.d.ts.map +1 -0
  3404. package/packages/app-core/src/state/action-notice.js +1 -0
  3405. package/packages/app-core/src/state/agent-profile-types.d.ts +29 -0
  3406. package/packages/app-core/src/state/agent-profile-types.d.ts.map +1 -0
  3407. package/packages/app-core/src/state/agent-profile-types.js +1 -0
  3408. package/packages/app-core/src/state/agent-profiles.d.ts +16 -0
  3409. package/packages/app-core/src/state/agent-profiles.d.ts.map +1 -0
  3410. package/packages/app-core/src/state/agent-profiles.js +119 -0
  3411. package/packages/app-core/src/state/agent-startup-timing.d.ts +15 -0
  3412. package/packages/app-core/src/state/agent-startup-timing.d.ts.map +1 -0
  3413. package/packages/app-core/src/state/agent-startup-timing.js +28 -0
  3414. package/packages/app-core/src/state/chat-conversation-guards.d.ts +6 -0
  3415. package/packages/app-core/src/state/chat-conversation-guards.d.ts.map +1 -0
  3416. package/packages/app-core/src/state/chat-conversation-guards.js +47 -0
  3417. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.d.ts +30 -0
  3418. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.d.ts.map +1 -0
  3419. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.js +24 -0
  3420. package/packages/app-core/src/state/config-readers.d.ts +7 -0
  3421. package/packages/app-core/src/state/config-readers.d.ts.map +1 -0
  3422. package/packages/app-core/src/state/config-readers.js +8 -0
  3423. package/packages/app-core/src/state/handle-reset-applied-from-main.d.ts +31 -0
  3424. package/packages/app-core/src/state/handle-reset-applied-from-main.d.ts.map +1 -0
  3425. package/packages/app-core/src/state/handle-reset-applied-from-main.js +38 -0
  3426. package/packages/app-core/src/state/index.d.ts +13 -0
  3427. package/packages/app-core/src/state/index.d.ts.map +1 -0
  3428. package/packages/app-core/src/state/index.js +12 -0
  3429. package/packages/app-core/src/state/internal.d.ts +9 -0
  3430. package/packages/app-core/src/state/internal.d.ts.map +1 -0
  3431. package/packages/app-core/src/state/internal.js +9 -0
  3432. package/packages/app-core/src/state/navigation-events.d.ts +12 -0
  3433. package/packages/app-core/src/state/navigation-events.d.ts.map +1 -0
  3434. package/packages/app-core/src/state/navigation-events.js +25 -0
  3435. package/packages/app-core/src/state/onboarding-bootstrap.d.ts +28 -0
  3436. package/packages/app-core/src/state/onboarding-bootstrap.d.ts.map +1 -0
  3437. package/packages/app-core/src/state/onboarding-bootstrap.js +76 -0
  3438. package/packages/app-core/src/state/onboarding-resume.d.ts +9 -0
  3439. package/packages/app-core/src/state/onboarding-resume.d.ts.map +1 -0
  3440. package/packages/app-core/src/state/onboarding-resume.js +93 -0
  3441. package/packages/app-core/src/state/parsers.d.ts +33 -0
  3442. package/packages/app-core/src/state/parsers.d.ts.map +1 -0
  3443. package/packages/app-core/src/state/parsers.js +354 -0
  3444. package/packages/app-core/src/state/persistence.d.ts +111 -0
  3445. package/packages/app-core/src/state/persistence.d.ts.map +1 -0
  3446. package/packages/app-core/src/state/persistence.js +749 -0
  3447. package/packages/app-core/src/state/shell-routing.d.ts +12 -0
  3448. package/packages/app-core/src/state/shell-routing.d.ts.map +1 -0
  3449. package/packages/app-core/src/state/shell-routing.js +21 -0
  3450. package/packages/app-core/src/state/startup-coordinator.d.ts +137 -0
  3451. package/packages/app-core/src/state/startup-coordinator.d.ts.map +1 -0
  3452. package/packages/app-core/src/state/startup-coordinator.js +247 -0
  3453. package/packages/app-core/src/state/startup-phase-hydrate.d.ts +74 -0
  3454. package/packages/app-core/src/state/startup-phase-hydrate.d.ts.map +1 -0
  3455. package/packages/app-core/src/state/startup-phase-hydrate.js +494 -0
  3456. package/packages/app-core/src/state/startup-phase-poll.d.ts +61 -0
  3457. package/packages/app-core/src/state/startup-phase-poll.d.ts.map +1 -0
  3458. package/packages/app-core/src/state/startup-phase-poll.js +272 -0
  3459. package/packages/app-core/src/state/startup-phase-restore.d.ts +49 -0
  3460. package/packages/app-core/src/state/startup-phase-restore.d.ts.map +1 -0
  3461. package/packages/app-core/src/state/startup-phase-restore.js +145 -0
  3462. package/packages/app-core/src/state/startup-phase-runtime.d.ts +34 -0
  3463. package/packages/app-core/src/state/startup-phase-runtime.d.ts.map +1 -0
  3464. package/packages/app-core/src/state/startup-phase-runtime.js +126 -0
  3465. package/packages/app-core/src/state/types.d.ts +645 -0
  3466. package/packages/app-core/src/state/types.d.ts.map +1 -0
  3467. package/packages/app-core/src/state/types.js +62 -0
  3468. package/packages/app-core/src/state/ui-preferences.d.ts +3 -0
  3469. package/packages/app-core/src/state/ui-preferences.d.ts.map +1 -0
  3470. package/packages/app-core/src/state/ui-preferences.js +1 -0
  3471. package/packages/app-core/src/state/useApp.d.ts +4 -0
  3472. package/packages/app-core/src/state/useApp.d.ts.map +1 -0
  3473. package/packages/app-core/src/state/useApp.js +32 -0
  3474. package/packages/app-core/src/state/useCharacterState.d.ts +52 -0
  3475. package/packages/app-core/src/state/useCharacterState.d.ts.map +1 -0
  3476. package/packages/app-core/src/state/useCharacterState.js +208 -0
  3477. package/packages/app-core/src/state/useChatCallbacks.d.ts +168 -0
  3478. package/packages/app-core/src/state/useChatCallbacks.d.ts.map +1 -0
  3479. package/packages/app-core/src/state/useChatCallbacks.js +773 -0
  3480. package/packages/app-core/src/state/useChatLifecycle.d.ts +104 -0
  3481. package/packages/app-core/src/state/useChatLifecycle.d.ts.map +1 -0
  3482. package/packages/app-core/src/state/useChatLifecycle.js +584 -0
  3483. package/packages/app-core/src/state/useChatSend.d.ts +81 -0
  3484. package/packages/app-core/src/state/useChatSend.d.ts.map +1 -0
  3485. package/packages/app-core/src/state/useChatSend.js +924 -0
  3486. package/packages/app-core/src/state/useChatState.d.ts +144 -0
  3487. package/packages/app-core/src/state/useChatState.d.ts.map +1 -0
  3488. package/packages/app-core/src/state/useChatState.js +251 -0
  3489. package/packages/app-core/src/state/useCloudState.d.ts +71 -0
  3490. package/packages/app-core/src/state/useCloudState.d.ts.map +1 -0
  3491. package/packages/app-core/src/state/useCloudState.js +558 -0
  3492. package/packages/app-core/src/state/useDataLoaders.d.ts +88 -0
  3493. package/packages/app-core/src/state/useDataLoaders.d.ts.map +1 -0
  3494. package/packages/app-core/src/state/useDataLoaders.js +394 -0
  3495. package/packages/app-core/src/state/useDisplayPreferences.d.ts +23 -0
  3496. package/packages/app-core/src/state/useDisplayPreferences.d.ts.map +1 -0
  3497. package/packages/app-core/src/state/useDisplayPreferences.js +64 -0
  3498. package/packages/app-core/src/state/useExportImportState.d.ts +32 -0
  3499. package/packages/app-core/src/state/useExportImportState.d.ts.map +1 -0
  3500. package/packages/app-core/src/state/useExportImportState.js +140 -0
  3501. package/packages/app-core/src/state/useLifecycleState.d.ts +123 -0
  3502. package/packages/app-core/src/state/useLifecycleState.d.ts.map +1 -0
  3503. package/packages/app-core/src/state/useLifecycleState.js +258 -0
  3504. package/packages/app-core/src/state/useLogsState.d.ts +24 -0
  3505. package/packages/app-core/src/state/useLogsState.d.ts.map +1 -0
  3506. package/packages/app-core/src/state/useLogsState.js +87 -0
  3507. package/packages/app-core/src/state/useMiscUiState.d.ts +87 -0
  3508. package/packages/app-core/src/state/useMiscUiState.d.ts.map +1 -0
  3509. package/packages/app-core/src/state/useMiscUiState.js +150 -0
  3510. package/packages/app-core/src/state/useNavigationState.d.ts +29 -0
  3511. package/packages/app-core/src/state/useNavigationState.d.ts.map +1 -0
  3512. package/packages/app-core/src/state/useNavigationState.js +122 -0
  3513. package/packages/app-core/src/state/useOnboardingCallbacks.d.ts +100 -0
  3514. package/packages/app-core/src/state/useOnboardingCallbacks.d.ts.map +1 -0
  3515. package/packages/app-core/src/state/useOnboardingCallbacks.js +792 -0
  3516. package/packages/app-core/src/state/useOnboardingCompat.d.ts +61 -0
  3517. package/packages/app-core/src/state/useOnboardingCompat.d.ts.map +1 -0
  3518. package/packages/app-core/src/state/useOnboardingCompat.js +110 -0
  3519. package/packages/app-core/src/state/useOnboardingState.d.ts +126 -0
  3520. package/packages/app-core/src/state/useOnboardingState.d.ts.map +1 -0
  3521. package/packages/app-core/src/state/useOnboardingState.js +263 -0
  3522. package/packages/app-core/src/state/usePairingState.d.ts +21 -0
  3523. package/packages/app-core/src/state/usePairingState.d.ts.map +1 -0
  3524. package/packages/app-core/src/state/usePairingState.js +60 -0
  3525. package/packages/app-core/src/state/usePluginsSkillsState.d.ts +131 -0
  3526. package/packages/app-core/src/state/usePluginsSkillsState.d.ts.map +1 -0
  3527. package/packages/app-core/src/state/usePluginsSkillsState.js +572 -0
  3528. package/packages/app-core/src/state/useStartupCoordinator.d.ts +40 -0
  3529. package/packages/app-core/src/state/useStartupCoordinator.d.ts.map +1 -0
  3530. package/packages/app-core/src/state/useStartupCoordinator.js +183 -0
  3531. package/packages/app-core/src/state/useTriggersState.d.ts +29 -0
  3532. package/packages/app-core/src/state/useTriggersState.d.ts.map +1 -0
  3533. package/packages/app-core/src/state/useTriggersState.js +198 -0
  3534. package/packages/app-core/src/state/useVincentState.d.ts +3 -0
  3535. package/packages/app-core/src/state/useVincentState.d.ts.map +1 -0
  3536. package/packages/app-core/src/state/useVincentState.js +13 -0
  3537. package/packages/app-core/src/state/useWalletState.d.ts +97 -0
  3538. package/packages/app-core/src/state/useWalletState.d.ts.map +1 -0
  3539. package/packages/app-core/src/state/useWalletState.js +533 -0
  3540. package/packages/app-core/src/state/vrm.d.ts +2 -0
  3541. package/packages/app-core/src/state/vrm.d.ts.map +1 -0
  3542. package/packages/app-core/src/state/vrm.js +1 -0
  3543. package/packages/app-core/src/test-support/test-helpers.d.ts +111 -0
  3544. package/packages/app-core/src/test-support/test-helpers.d.ts.map +1 -0
  3545. package/packages/app-core/src/test-support/test-helpers.js +417 -0
  3546. package/packages/app-core/src/themes/apply-theme.d.ts +24 -0
  3547. package/packages/app-core/src/themes/apply-theme.d.ts.map +1 -0
  3548. package/packages/app-core/src/themes/apply-theme.js +130 -0
  3549. package/packages/app-core/src/types/index.d.ts +658 -0
  3550. package/packages/app-core/src/types/index.d.ts.map +1 -0
  3551. package/packages/app-core/src/types/index.js +4 -0
  3552. package/packages/app-core/src/utils/asset-url.d.ts +24 -0
  3553. package/packages/app-core/src/utils/asset-url.d.ts.map +1 -0
  3554. package/packages/app-core/src/utils/asset-url.js +137 -0
  3555. package/packages/app-core/src/utils/assistant-text.d.ts +2 -0
  3556. package/packages/app-core/src/utils/assistant-text.d.ts.map +1 -0
  3557. package/packages/app-core/src/utils/assistant-text.js +167 -0
  3558. package/packages/app-core/src/utils/character-message-examples.d.ts +7 -0
  3559. package/packages/app-core/src/utils/character-message-examples.d.ts.map +1 -0
  3560. package/packages/app-core/src/utils/character-message-examples.js +122 -0
  3561. package/packages/app-core/src/utils/clipboard.d.ts +2 -0
  3562. package/packages/app-core/src/utils/clipboard.d.ts.map +1 -0
  3563. package/packages/app-core/src/utils/clipboard.js +38 -0
  3564. package/packages/app-core/src/utils/cloud-status.d.ts +3 -0
  3565. package/packages/app-core/src/utils/cloud-status.d.ts.map +1 -0
  3566. package/packages/app-core/src/utils/cloud-status.js +10 -0
  3567. package/packages/app-core/src/utils/desktop-bug-report.d.ts +35 -0
  3568. package/packages/app-core/src/utils/desktop-bug-report.d.ts.map +1 -0
  3569. package/packages/app-core/src/utils/desktop-bug-report.js +47 -0
  3570. package/packages/app-core/src/utils/desktop-dialogs.d.ts +24 -0
  3571. package/packages/app-core/src/utils/desktop-dialogs.d.ts.map +1 -0
  3572. package/packages/app-core/src/utils/desktop-dialogs.js +149 -0
  3573. package/packages/app-core/src/utils/desktop-workspace.d.ts +86 -0
  3574. package/packages/app-core/src/utils/desktop-workspace.d.ts.map +1 -0
  3575. package/packages/app-core/src/utils/desktop-workspace.js +162 -0
  3576. package/packages/app-core/src/utils/eliza-cloud-model-route.d.ts +3 -0
  3577. package/packages/app-core/src/utils/eliza-cloud-model-route.d.ts.map +1 -0
  3578. package/packages/app-core/src/utils/eliza-cloud-model-route.js +9 -0
  3579. package/packages/app-core/src/utils/eliza-globals.d.ts +15 -0
  3580. package/packages/app-core/src/utils/eliza-globals.d.ts.map +1 -0
  3581. package/packages/app-core/src/utils/eliza-globals.js +50 -0
  3582. package/packages/app-core/src/utils/env.d.ts +31 -0
  3583. package/packages/app-core/src/utils/env.d.ts.map +1 -0
  3584. package/packages/app-core/src/utils/env.js +51 -0
  3585. package/packages/app-core/src/utils/format.d.ts +66 -0
  3586. package/packages/app-core/src/utils/format.d.ts.map +1 -0
  3587. package/packages/app-core/src/utils/format.js +121 -0
  3588. package/packages/app-core/src/utils/index.d.ts +15 -0
  3589. package/packages/app-core/src/utils/index.d.ts.map +1 -0
  3590. package/packages/app-core/src/utils/index.js +14 -0
  3591. package/packages/app-core/src/utils/knowledge-upload-image.d.ts +27 -0
  3592. package/packages/app-core/src/utils/knowledge-upload-image.d.ts.map +1 -0
  3593. package/packages/app-core/src/utils/knowledge-upload-image.js +146 -0
  3594. package/packages/app-core/src/utils/labels.d.ts +6 -0
  3595. package/packages/app-core/src/utils/labels.d.ts.map +1 -0
  3596. package/packages/app-core/src/utils/labels.js +41 -0
  3597. package/packages/app-core/src/utils/name-tokens.d.ts +24 -0
  3598. package/packages/app-core/src/utils/name-tokens.d.ts.map +1 -0
  3599. package/packages/app-core/src/utils/name-tokens.js +36 -0
  3600. package/packages/app-core/src/utils/number-parsing.d.ts +26 -0
  3601. package/packages/app-core/src/utils/number-parsing.d.ts.map +1 -0
  3602. package/packages/app-core/src/utils/number-parsing.js +51 -0
  3603. package/packages/app-core/src/utils/openExternalUrl.d.ts +21 -0
  3604. package/packages/app-core/src/utils/openExternalUrl.d.ts.map +1 -0
  3605. package/packages/app-core/src/utils/openExternalUrl.js +67 -0
  3606. package/packages/app-core/src/utils/owner-name.d.ts +3 -0
  3607. package/packages/app-core/src/utils/owner-name.d.ts.map +1 -0
  3608. package/packages/app-core/src/utils/owner-name.js +7 -0
  3609. package/packages/app-core/src/utils/serialise.d.ts +12 -0
  3610. package/packages/app-core/src/utils/serialise.d.ts.map +1 -0
  3611. package/packages/app-core/src/utils/serialise.js +21 -0
  3612. package/packages/app-core/src/utils/streaming-text.d.ts +9 -0
  3613. package/packages/app-core/src/utils/streaming-text.d.ts.map +1 -0
  3614. package/packages/app-core/src/utils/streaming-text.js +112 -0
  3615. package/packages/app-core/src/utils/subscription-auth.d.ts +9 -0
  3616. package/packages/app-core/src/utils/subscription-auth.d.ts.map +1 -0
  3617. package/packages/app-core/src/utils/subscription-auth.js +48 -0
  3618. package/packages/app-core/src/utils/trajectory-format.d.ts +6 -0
  3619. package/packages/app-core/src/utils/trajectory-format.d.ts.map +1 -0
  3620. package/packages/app-core/src/utils/trajectory-format.js +43 -0
  3621. package/packages/app-core/src/utils/tts-debug.d.ts +9 -0
  3622. package/packages/app-core/src/utils/tts-debug.d.ts.map +1 -0
  3623. package/packages/app-core/src/utils/tts-debug.js +69 -0
  3624. package/packages/app-core/src/voice/character-voice-config.d.ts +9 -0
  3625. package/packages/app-core/src/voice/character-voice-config.d.ts.map +1 -0
  3626. package/packages/app-core/src/voice/character-voice-config.js +83 -0
  3627. package/packages/app-core/src/voice/index.d.ts +3 -0
  3628. package/packages/app-core/src/voice/index.d.ts.map +1 -0
  3629. package/packages/app-core/src/voice/index.js +2 -0
  3630. package/packages/app-core/src/voice/types.d.ts +40 -0
  3631. package/packages/app-core/src/voice/types.d.ts.map +1 -0
  3632. package/packages/app-core/src/voice/types.js +295 -0
  3633. package/packages/app-core/src/wallet-rpc.d.ts +9 -0
  3634. package/packages/app-core/src/wallet-rpc.d.ts.map +1 -0
  3635. package/packages/app-core/src/wallet-rpc.js +133 -0
  3636. package/packages/app-core/src/widgets/WidgetHost.d.ts +32 -0
  3637. package/packages/app-core/src/widgets/WidgetHost.d.ts.map +1 -0
  3638. package/packages/app-core/src/widgets/WidgetHost.js +57 -0
  3639. package/packages/app-core/src/widgets/index.d.ts +6 -0
  3640. package/packages/app-core/src/widgets/index.d.ts.map +1 -0
  3641. package/packages/app-core/src/widgets/index.js +2 -0
  3642. package/packages/app-core/src/widgets/registry.d.ts +58 -0
  3643. package/packages/app-core/src/widgets/registry.d.ts.map +1 -0
  3644. package/packages/app-core/src/widgets/registry.js +221 -0
  3645. package/packages/app-core/src/widgets/types.d.ts +50 -0
  3646. package/packages/app-core/src/widgets/types.d.ts.map +1 -0
  3647. package/packages/app-core/src/widgets/types.js +1 -0
  3648. package/packages/app-core/src/widgets/useChatSidebarVisibility.d.ts +16 -0
  3649. package/packages/app-core/src/widgets/useChatSidebarVisibility.d.ts.map +1 -0
  3650. package/packages/app-core/src/widgets/useChatSidebarVisibility.js +54 -0
  3651. package/packages/app-core/src/widgets/visibility.d.ts +55 -0
  3652. package/packages/app-core/src/widgets/visibility.d.ts.map +1 -0
  3653. package/packages/app-core/src/widgets/visibility.js +90 -0
  3654. package/packages/native-plugins/mobile-signals/src/definitions.d.ts +162 -0
  3655. package/packages/native-plugins/mobile-signals/src/definitions.d.ts.map +1 -0
  3656. package/packages/native-plugins/mobile-signals/src/definitions.js +1 -0
  3657. package/packages/native-plugins/mobile-signals/src/index.d.ts +4 -0
  3658. package/packages/native-plugins/mobile-signals/src/index.d.ts.map +1 -0
  3659. package/packages/native-plugins/mobile-signals/src/index.js +6 -0
  3660. package/packages/native-plugins/mobile-signals/src/web.d.ts +29 -0
  3661. package/packages/native-plugins/mobile-signals/src/web.d.ts.map +1 -0
  3662. package/packages/native-plugins/mobile-signals/src/web.js +269 -0
  3663. package/packages/shared/src/app-hero-art.d.ts +13 -0
  3664. package/packages/shared/src/app-hero-art.d.ts.map +1 -0
  3665. package/packages/shared/src/app-hero-art.js +357 -0
  3666. package/packages/shared/src/awareness/index.d.ts +2 -0
  3667. package/packages/shared/src/awareness/index.d.ts.map +1 -0
  3668. package/packages/shared/src/awareness/index.js +1 -0
  3669. package/packages/shared/src/awareness/registry.d.ts +27 -0
  3670. package/packages/shared/src/awareness/registry.d.ts.map +1 -0
  3671. package/packages/shared/src/awareness/registry.js +161 -0
  3672. package/packages/shared/src/config/types.agent-defaults.d.ts +383 -0
  3673. package/packages/shared/src/config/types.agent-defaults.d.ts.map +1 -0
  3674. package/packages/shared/src/config/types.agent-defaults.js +1 -0
  3675. package/packages/shared/src/config/types.agents.d.ts +114 -0
  3676. package/packages/shared/src/config/types.agents.d.ts.map +1 -0
  3677. package/packages/shared/src/config/types.agents.js +1 -0
  3678. package/packages/shared/src/config/types.d.ts +8 -0
  3679. package/packages/shared/src/config/types.d.ts.map +1 -0
  3680. package/packages/shared/src/config/types.eliza.d.ts +711 -0
  3681. package/packages/shared/src/config/types.eliza.d.ts.map +1 -0
  3682. package/packages/shared/src/config/types.eliza.js +1 -0
  3683. package/packages/shared/src/config/types.gateway.d.ts +216 -0
  3684. package/packages/shared/src/config/types.gateway.d.ts.map +1 -0
  3685. package/packages/shared/src/config/types.gateway.js +1 -0
  3686. package/packages/shared/src/config/types.hooks.d.ts +107 -0
  3687. package/packages/shared/src/config/types.hooks.d.ts.map +1 -0
  3688. package/packages/shared/src/config/types.hooks.js +1 -0
  3689. package/packages/shared/src/config/types.js +7 -0
  3690. package/packages/shared/src/config/types.messages.d.ts +176 -0
  3691. package/packages/shared/src/config/types.messages.d.ts.map +1 -0
  3692. package/packages/shared/src/config/types.messages.js +1 -0
  3693. package/packages/shared/src/config/types.tools.d.ts +400 -0
  3694. package/packages/shared/src/config/types.tools.d.ts.map +1 -0
  3695. package/packages/shared/src/config/types.tools.js +1 -0
  3696. package/packages/shared/src/connectors.d.ts +13 -0
  3697. package/packages/shared/src/connectors.d.ts.map +1 -0
  3698. package/packages/shared/src/connectors.js +96 -0
  3699. package/packages/shared/src/contracts/apps.d.ts +259 -0
  3700. package/packages/shared/src/contracts/apps.d.ts.map +1 -0
  3701. package/packages/shared/src/contracts/apps.js +193 -0
  3702. package/packages/shared/src/contracts/awareness.d.ts +38 -0
  3703. package/packages/shared/src/contracts/awareness.d.ts.map +1 -0
  3704. package/packages/shared/src/contracts/awareness.js +7 -0
  3705. package/packages/shared/src/contracts/cloud-topology.d.ts +13 -0
  3706. package/packages/shared/src/contracts/cloud-topology.d.ts.map +1 -0
  3707. package/packages/shared/src/contracts/cloud-topology.js +71 -0
  3708. package/packages/shared/src/contracts/config.d.ts +146 -0
  3709. package/packages/shared/src/contracts/config.d.ts.map +1 -0
  3710. package/packages/shared/src/contracts/config.js +4 -0
  3711. package/packages/shared/src/contracts/content-pack.d.ts +131 -0
  3712. package/packages/shared/src/contracts/content-pack.d.ts.map +1 -0
  3713. package/packages/shared/src/contracts/content-pack.js +102 -0
  3714. package/packages/shared/src/contracts/drop.d.ts +20 -0
  3715. package/packages/shared/src/contracts/drop.d.ts.map +1 -0
  3716. package/packages/shared/src/contracts/drop.js +4 -0
  3717. package/packages/shared/src/contracts/inbox.d.ts +26 -0
  3718. package/packages/shared/src/contracts/inbox.d.ts.map +1 -0
  3719. package/packages/shared/src/contracts/inbox.js +1 -0
  3720. package/packages/shared/src/contracts/index.d.ts +15 -0
  3721. package/packages/shared/src/contracts/index.d.ts.map +1 -0
  3722. package/packages/shared/src/contracts/index.js +14 -0
  3723. package/packages/shared/src/contracts/lifeops-connector-degradation.d.ts +9 -0
  3724. package/packages/shared/src/contracts/lifeops-connector-degradation.d.ts.map +1 -0
  3725. package/packages/shared/src/contracts/lifeops-connector-degradation.js +13 -0
  3726. package/packages/shared/src/contracts/lifeops-extensions.d.ts +195 -0
  3727. package/packages/shared/src/contracts/lifeops-extensions.d.ts.map +1 -0
  3728. package/packages/shared/src/contracts/lifeops-extensions.js +30 -0
  3729. package/packages/shared/src/contracts/lifeops.d.ts +2475 -0
  3730. package/packages/shared/src/contracts/lifeops.d.ts.map +1 -0
  3731. package/packages/shared/src/contracts/lifeops.js +500 -0
  3732. package/packages/shared/src/contracts/onboarding.d.ts +408 -0
  3733. package/packages/shared/src/contracts/onboarding.d.ts.map +1 -0
  3734. package/packages/shared/src/contracts/onboarding.js +1021 -0
  3735. package/packages/shared/src/contracts/permissions.d.ts +38 -0
  3736. package/packages/shared/src/contracts/permissions.d.ts.map +1 -0
  3737. package/packages/shared/src/contracts/permissions.js +4 -0
  3738. package/packages/shared/src/contracts/scratchpad.d.ts +136 -0
  3739. package/packages/shared/src/contracts/scratchpad.d.ts.map +1 -0
  3740. package/packages/shared/src/contracts/scratchpad.js +90 -0
  3741. package/packages/shared/src/contracts/service-routing.d.ts +161 -0
  3742. package/packages/shared/src/contracts/service-routing.d.ts.map +1 -0
  3743. package/packages/shared/src/contracts/service-routing.js +389 -0
  3744. package/packages/shared/src/contracts/theme.d.ts +136 -0
  3745. package/packages/shared/src/contracts/theme.d.ts.map +1 -0
  3746. package/packages/shared/src/contracts/theme.js +133 -0
  3747. package/packages/shared/src/contracts/verification.d.ts +9 -0
  3748. package/packages/shared/src/contracts/verification.d.ts.map +1 -0
  3749. package/packages/shared/src/contracts/verification.js +4 -0
  3750. package/packages/shared/src/contracts/wallet.d.ts +615 -0
  3751. package/packages/shared/src/contracts/wallet.d.ts.map +1 -0
  3752. package/packages/shared/src/contracts/wallet.js +60 -0
  3753. package/packages/shared/src/dev-settings-banner-style.d.ts +14 -0
  3754. package/packages/shared/src/dev-settings-banner-style.d.ts.map +1 -0
  3755. package/packages/shared/src/dev-settings-banner-style.js +57 -0
  3756. package/packages/shared/src/dev-settings-table.d.ts +47 -0
  3757. package/packages/shared/src/dev-settings-table.d.ts.map +1 -0
  3758. package/packages/shared/src/dev-settings-table.js +188 -0
  3759. package/packages/shared/src/env-utils.d.ts +5 -0
  3760. package/packages/shared/src/env-utils.d.ts.map +1 -0
  3761. package/packages/shared/src/env-utils.impl.d.ts +2 -0
  3762. package/packages/shared/src/env-utils.impl.d.ts.map +1 -0
  3763. package/packages/shared/src/env-utils.impl.js +9 -0
  3764. package/packages/shared/src/env-utils.js +4 -0
  3765. package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts +1091 -0
  3766. package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
  3767. package/packages/shared/src/i18n/generated/validation-keyword-data.js +1094 -0
  3768. package/packages/shared/src/i18n/keyword-matching.d.ts +23 -0
  3769. package/packages/shared/src/i18n/keyword-matching.d.ts.map +1 -0
  3770. package/packages/shared/src/i18n/keyword-matching.js +112 -0
  3771. package/packages/shared/src/i18n/validation-keywords.d.ts +13 -0
  3772. package/packages/shared/src/i18n/validation-keywords.d.ts.map +1 -0
  3773. package/packages/shared/src/i18n/validation-keywords.js +12 -0
  3774. package/packages/shared/src/index.d.ts +25 -0
  3775. package/packages/shared/src/index.d.ts.map +1 -0
  3776. package/packages/shared/src/index.js +36 -0
  3777. package/packages/shared/src/onboarding-presets.characters.d.ts +22 -0
  3778. package/packages/shared/src/onboarding-presets.characters.d.ts.map +1 -0
  3779. package/packages/shared/src/onboarding-presets.characters.js +2616 -0
  3780. package/packages/shared/src/onboarding-presets.d.ts +40 -0
  3781. package/packages/shared/src/onboarding-presets.d.ts.map +1 -0
  3782. package/packages/shared/src/onboarding-presets.js +180 -0
  3783. package/packages/shared/src/onboarding-presets.shared.d.ts +2 -0
  3784. package/packages/shared/src/onboarding-presets.shared.d.ts.map +1 -0
  3785. package/packages/shared/src/onboarding-presets.shared.js +7 -0
  3786. package/packages/shared/src/recent-messages-state.d.ts +10 -0
  3787. package/packages/shared/src/recent-messages-state.d.ts.map +1 -0
  3788. package/packages/shared/src/recent-messages-state.js +11 -0
  3789. package/packages/shared/src/restart.d.ts +27 -0
  3790. package/packages/shared/src/restart.d.ts.map +1 -0
  3791. package/packages/shared/src/restart.js +28 -0
  3792. package/packages/shared/src/runtime-env.d.ts +82 -0
  3793. package/packages/shared/src/runtime-env.d.ts.map +1 -0
  3794. package/packages/shared/src/runtime-env.js +241 -0
  3795. package/packages/shared/src/settings-debug.d.ts +20 -0
  3796. package/packages/shared/src/settings-debug.d.ts.map +1 -0
  3797. package/packages/shared/src/settings-debug.js +114 -0
  3798. package/packages/shared/src/spoken-text.d.ts +2 -0
  3799. package/packages/shared/src/spoken-text.d.ts.map +1 -0
  3800. package/packages/shared/src/spoken-text.js +56 -0
  3801. package/packages/shared/src/themes/index.d.ts +7 -0
  3802. package/packages/shared/src/themes/index.d.ts.map +1 -0
  3803. package/packages/shared/src/themes/index.js +5 -0
  3804. package/packages/shared/src/themes/presets.d.ts +15 -0
  3805. package/packages/shared/src/themes/presets.d.ts.map +1 -0
  3806. package/packages/shared/src/themes/presets.js +788 -0
  3807. package/packages/shared/src/type-guards.d.ts +29 -0
  3808. package/packages/shared/src/type-guards.d.ts.map +1 -0
  3809. package/packages/shared/src/type-guards.js +43 -0
  3810. package/packages/shared/src/validation-keywords.d.ts +2 -0
  3811. package/packages/shared/src/validation-keywords.d.ts.map +1 -0
  3812. package/packages/shared/src/validation-keywords.js +1 -0
  3813. package/packages/skills/src/formatter.d.ts +44 -0
  3814. package/packages/skills/src/formatter.d.ts.map +1 -0
  3815. package/packages/skills/src/formatter.js +182 -0
  3816. package/packages/skills/src/frontmatter.d.ts +51 -0
  3817. package/packages/skills/src/frontmatter.d.ts.map +1 -0
  3818. package/packages/skills/src/frontmatter.js +155 -0
  3819. package/packages/skills/src/index.d.ts +29 -0
  3820. package/packages/skills/src/index.d.ts.map +1 -0
  3821. package/packages/skills/src/index.js +31 -0
  3822. package/packages/skills/src/loader.d.ts +33 -0
  3823. package/packages/skills/src/loader.d.ts.map +1 -0
  3824. package/packages/skills/src/loader.js +369 -0
  3825. package/packages/skills/src/resolver.d.ts +35 -0
  3826. package/packages/skills/src/resolver.d.ts.map +1 -0
  3827. package/packages/skills/src/resolver.js +143 -0
  3828. package/packages/skills/src/types.d.ts +238 -0
  3829. package/packages/skills/src/types.d.ts.map +1 -0
  3830. package/packages/skills/src/types.js +1 -0
  3831. package/packages/typescript/src/action-docs.d.ts +22 -0
  3832. package/packages/typescript/src/action-docs.d.ts.map +1 -0
  3833. package/packages/typescript/src/action-docs.js +95 -0
  3834. package/packages/typescript/src/actions.d.ts +29 -0
  3835. package/packages/typescript/src/actions.d.ts.map +1 -0
  3836. package/packages/typescript/src/actions.js +535 -0
  3837. package/packages/typescript/src/character-utils.d.ts +138 -0
  3838. package/packages/typescript/src/character-utils.d.ts.map +1 -0
  3839. package/packages/typescript/src/character-utils.js +271 -0
  3840. package/packages/typescript/src/character.d.ts +68 -0
  3841. package/packages/typescript/src/character.d.ts.map +1 -0
  3842. package/packages/typescript/src/character.js +155 -0
  3843. package/packages/typescript/src/connection.d.ts +45 -0
  3844. package/packages/typescript/src/connection.d.ts.map +1 -0
  3845. package/packages/typescript/src/connection.js +149 -0
  3846. package/packages/typescript/src/constants/index.d.ts +7 -0
  3847. package/packages/typescript/src/constants/index.d.ts.map +1 -0
  3848. package/packages/typescript/src/constants/index.js +6 -0
  3849. package/packages/typescript/src/constants/secrets.d.ts +99 -0
  3850. package/packages/typescript/src/constants/secrets.d.ts.map +1 -0
  3851. package/packages/typescript/src/constants/secrets.js +239 -0
  3852. package/packages/typescript/src/database/inMemoryAdapter.d.ts +285 -0
  3853. package/packages/typescript/src/database/inMemoryAdapter.d.ts.map +1 -0
  3854. package/packages/typescript/src/database/inMemoryAdapter.js +1171 -0
  3855. package/packages/typescript/src/database.d.ts +426 -0
  3856. package/packages/typescript/src/database.d.ts.map +1 -0
  3857. package/packages/typescript/src/database.js +24 -0
  3858. package/packages/typescript/src/entities.d.ts +11 -0
  3859. package/packages/typescript/src/entities.d.ts.map +1 -0
  3860. package/packages/typescript/src/entities.js +437 -0
  3861. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts +3 -0
  3862. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts.map +1 -0
  3863. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.js +142 -0
  3864. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts +3 -0
  3865. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts.map +1 -0
  3866. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.js +183 -0
  3867. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts +3 -0
  3868. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts.map +1 -0
  3869. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.js +148 -0
  3870. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts +21 -0
  3871. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts.map +1 -0
  3872. package/packages/typescript/src/features/advanced-capabilities/actions/index.js +20 -0
  3873. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts +3 -0
  3874. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts.map +1 -0
  3875. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.js +181 -0
  3876. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts +3 -0
  3877. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts.map +1 -0
  3878. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.js +102 -0
  3879. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts +13 -0
  3880. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts.map +1 -0
  3881. package/packages/typescript/src/features/advanced-capabilities/actions/roles.js +317 -0
  3882. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts +3 -0
  3883. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts.map +1 -0
  3884. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.js +136 -0
  3885. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts +3 -0
  3886. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts.map +1 -0
  3887. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.js +176 -0
  3888. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts +15 -0
  3889. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts.map +1 -0
  3890. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.js +476 -0
  3891. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts +22 -0
  3892. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts.map +1 -0
  3893. package/packages/typescript/src/features/advanced-capabilities/actions/settings.js +823 -0
  3894. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts +3 -0
  3895. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts.map +1 -0
  3896. package/packages/typescript/src/features/advanced-capabilities/actions/think.js +84 -0
  3897. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts +3 -0
  3898. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts.map +1 -0
  3899. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.js +134 -0
  3900. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts +3 -0
  3901. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts.map +1 -0
  3902. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.js +193 -0
  3903. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts +3 -0
  3904. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts.map +1 -0
  3905. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.js +199 -0
  3906. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts +43 -0
  3907. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts.map +1 -0
  3908. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.js +372 -0
  3909. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts +4 -0
  3910. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts.map +1 -0
  3911. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.js +150 -0
  3912. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts +4 -0
  3913. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts.map +1 -0
  3914. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.js +136 -0
  3915. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts +4 -0
  3916. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts.map +1 -0
  3917. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.js +84 -0
  3918. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts +4 -0
  3919. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts.map +1 -0
  3920. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.js +112 -0
  3921. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts +16 -0
  3922. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts.map +1 -0
  3923. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.js +198 -0
  3924. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts +4 -0
  3925. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts.map +1 -0
  3926. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.js +138 -0
  3927. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts +4 -0
  3928. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts.map +1 -0
  3929. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.js +102 -0
  3930. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts +4 -0
  3931. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts.map +1 -0
  3932. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.js +139 -0
  3933. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts +4 -0
  3934. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts.map +1 -0
  3935. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.js +138 -0
  3936. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts +39 -0
  3937. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts.map +1 -0
  3938. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.js +78 -0
  3939. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts +4 -0
  3940. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts.map +1 -0
  3941. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.js +62 -0
  3942. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts +16 -0
  3943. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts.map +1 -0
  3944. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.js +162 -0
  3945. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts +65 -0
  3946. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts.map +1 -0
  3947. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.js +357 -0
  3948. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts +24 -0
  3949. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts.map +1 -0
  3950. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.js +63 -0
  3951. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts +29 -0
  3952. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts.map +1 -0
  3953. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.js +195 -0
  3954. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts +15 -0
  3955. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts.map +1 -0
  3956. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.js +164 -0
  3957. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts +92 -0
  3958. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts.map +1 -0
  3959. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.js +4 -0
  3960. package/packages/typescript/src/features/advanced-capabilities/evaluators/_factCandidates.d.ts +11 -0
  3961. package/packages/typescript/src/features/advanced-capabilities/evaluators/_factCandidates.d.ts.map +1 -0
  3962. package/packages/typescript/src/features/advanced-capabilities/evaluators/_factCandidates.js +49 -0
  3963. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.d.ts +23 -0
  3964. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.d.ts.map +1 -0
  3965. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.js +608 -0
  3966. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.schema.d.ts +210 -0
  3967. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.schema.d.ts.map +1 -0
  3968. package/packages/typescript/src/features/advanced-capabilities/evaluators/factExtractor.schema.js +114 -0
  3969. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts +11 -0
  3970. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts.map +1 -0
  3971. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.js +10 -0
  3972. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts +3 -0
  3973. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts.map +1 -0
  3974. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.js +642 -0
  3975. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts +3 -0
  3976. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts.map +1 -0
  3977. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.js +643 -0
  3978. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts +25 -0
  3979. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts.map +1 -0
  3980. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.js +362 -0
  3981. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts +21 -0
  3982. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts.map +1 -0
  3983. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.js +541 -0
  3984. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts +12 -0
  3985. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts.map +1 -0
  3986. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.js +14 -0
  3987. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts +3 -0
  3988. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts.map +1 -0
  3989. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.js +113 -0
  3990. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts +3 -0
  3991. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts.map +1 -0
  3992. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.js +291 -0
  3993. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts +12 -0
  3994. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts.map +1 -0
  3995. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.js +41 -0
  3996. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts +49 -0
  3997. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts.map +1 -0
  3998. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.js +78 -0
  3999. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts +159 -0
  4000. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts.map +1 -0
  4001. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.js +192 -0
  4002. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts +9 -0
  4003. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts.map +1 -0
  4004. package/packages/typescript/src/features/advanced-capabilities/experience/index.js +7 -0
  4005. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts +3 -0
  4006. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts.map +1 -0
  4007. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.js +51 -0
  4008. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts +68 -0
  4009. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts.map +1 -0
  4010. package/packages/typescript/src/features/advanced-capabilities/experience/service.js +811 -0
  4011. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts +97 -0
  4012. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts.map +1 -0
  4013. package/packages/typescript/src/features/advanced-capabilities/experience/types.js +22 -0
  4014. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts +34 -0
  4015. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts.map +1 -0
  4016. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.js +106 -0
  4017. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts +26 -0
  4018. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts.map +1 -0
  4019. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.js +129 -0
  4020. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceText.d.ts +7 -0
  4021. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceText.d.ts.map +1 -0
  4022. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceText.js +123 -0
  4023. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts +13 -0
  4024. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts.map +1 -0
  4025. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.js +152 -0
  4026. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts +101 -0
  4027. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts.map +1 -0
  4028. package/packages/typescript/src/features/advanced-capabilities/form/builder.js +362 -0
  4029. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts +16 -0
  4030. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts.map +1 -0
  4031. package/packages/typescript/src/features/advanced-capabilities/form/builtins.js +245 -0
  4032. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts +32 -0
  4033. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts.map +1 -0
  4034. package/packages/typescript/src/features/advanced-capabilities/form/defaults.js +98 -0
  4035. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts +12 -0
  4036. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts.map +1 -0
  4037. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.js +231 -0
  4038. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts +24 -0
  4039. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts.map +1 -0
  4040. package/packages/typescript/src/features/advanced-capabilities/form/extraction.js +319 -0
  4041. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts +22 -0
  4042. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts.map +1 -0
  4043. package/packages/typescript/src/features/advanced-capabilities/form/index.js +52 -0
  4044. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts +41 -0
  4045. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts.map +1 -0
  4046. package/packages/typescript/src/features/advanced-capabilities/form/intent.js +119 -0
  4047. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts +11 -0
  4048. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts.map +1 -0
  4049. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.js +166 -0
  4050. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts +66 -0
  4051. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts.map +1 -0
  4052. package/packages/typescript/src/features/advanced-capabilities/form/service.js +912 -0
  4053. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts +26 -0
  4054. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts.map +1 -0
  4055. package/packages/typescript/src/features/advanced-capabilities/form/storage.js +228 -0
  4056. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts +10 -0
  4057. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts.map +1 -0
  4058. package/packages/typescript/src/features/advanced-capabilities/form/template.js +56 -0
  4059. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts +40 -0
  4060. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts.map +1 -0
  4061. package/packages/typescript/src/features/advanced-capabilities/form/ttl.js +107 -0
  4062. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts +589 -0
  4063. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts.map +1 -0
  4064. package/packages/typescript/src/features/advanced-capabilities/form/types.js +71 -0
  4065. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts +24 -0
  4066. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts.map +1 -0
  4067. package/packages/typescript/src/features/advanced-capabilities/form/validation.js +311 -0
  4068. package/packages/typescript/src/features/advanced-capabilities/index.d.ts +47 -0
  4069. package/packages/typescript/src/features/advanced-capabilities/index.d.ts.map +1 -0
  4070. package/packages/typescript/src/features/advanced-capabilities/index.js +119 -0
  4071. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-message-examples.d.ts +16 -0
  4072. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-message-examples.d.ts.map +1 -0
  4073. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-message-examples.js +356 -0
  4074. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-post-examples.d.ts +9 -0
  4075. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-post-examples.d.ts.map +1 -0
  4076. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-post-examples.js +234 -0
  4077. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-style-rules.d.ts +8 -0
  4078. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-style-rules.d.ts.map +1 -0
  4079. package/packages/typescript/src/features/advanced-capabilities/personality/actions/manage-style-rules.js +290 -0
  4080. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts +7 -0
  4081. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts.map +1 -0
  4082. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.js +1299 -0
  4083. package/packages/typescript/src/features/advanced-capabilities/personality/actions/persist-character.d.ts +12 -0
  4084. package/packages/typescript/src/features/advanced-capabilities/personality/actions/persist-character.d.ts.map +1 -0
  4085. package/packages/typescript/src/features/advanced-capabilities/personality/actions/persist-character.js +167 -0
  4086. package/packages/typescript/src/features/advanced-capabilities/personality/actions/set-voice-config.d.ts +13 -0
  4087. package/packages/typescript/src/features/advanced-capabilities/personality/actions/set-voice-config.d.ts.map +1 -0
  4088. package/packages/typescript/src/features/advanced-capabilities/personality/actions/set-voice-config.js +193 -0
  4089. package/packages/typescript/src/features/advanced-capabilities/personality/actions/shared/persist-character-patch.d.ts +18 -0
  4090. package/packages/typescript/src/features/advanced-capabilities/personality/actions/shared/persist-character-patch.d.ts.map +1 -0
  4091. package/packages/typescript/src/features/advanced-capabilities/personality/actions/shared/persist-character-patch.js +42 -0
  4092. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts +53 -0
  4093. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts.map +1 -0
  4094. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.js +429 -0
  4095. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts +15 -0
  4096. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts.map +1 -0
  4097. package/packages/typescript/src/features/advanced-capabilities/personality/index.js +13 -0
  4098. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts +8 -0
  4099. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts.map +1 -0
  4100. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.js +57 -0
  4101. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts +71 -0
  4102. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts.map +1 -0
  4103. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.js +478 -0
  4104. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts +13 -0
  4105. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts.map +1 -0
  4106. package/packages/typescript/src/features/advanced-capabilities/personality/types.js +8 -0
  4107. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts +3 -0
  4108. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts.map +1 -0
  4109. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.js +77 -0
  4110. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts +9 -0
  4111. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts.map +1 -0
  4112. package/packages/typescript/src/features/advanced-capabilities/providers/facts.js +270 -0
  4113. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts +3 -0
  4114. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts.map +1 -0
  4115. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.js +112 -0
  4116. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts +13 -0
  4117. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts.map +1 -0
  4118. package/packages/typescript/src/features/advanced-capabilities/providers/index.js +12 -0
  4119. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts +9 -0
  4120. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts.map +1 -0
  4121. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.js +83 -0
  4122. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts +15 -0
  4123. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts.map +1 -0
  4124. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.js +125 -0
  4125. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts +19 -0
  4126. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts.map +1 -0
  4127. package/packages/typescript/src/features/advanced-capabilities/providers/roles.js +180 -0
  4128. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts +7 -0
  4129. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts.map +1 -0
  4130. package/packages/typescript/src/features/advanced-capabilities/providers/settings.js +294 -0
  4131. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts +3 -0
  4132. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts.map +1 -0
  4133. package/packages/typescript/src/features/advanced-memory/evaluators/index.js +2 -0
  4134. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts +3 -0
  4135. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts.map +1 -0
  4136. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.js +199 -0
  4137. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts +3 -0
  4138. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts.map +1 -0
  4139. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.js +240 -0
  4140. package/packages/typescript/src/features/advanced-memory/index.d.ts +16 -0
  4141. package/packages/typescript/src/features/advanced-memory/index.d.ts.map +1 -0
  4142. package/packages/typescript/src/features/advanced-memory/index.js +26 -0
  4143. package/packages/typescript/src/features/advanced-memory/prompts.d.ts +2 -0
  4144. package/packages/typescript/src/features/advanced-memory/prompts.d.ts.map +1 -0
  4145. package/packages/typescript/src/features/advanced-memory/prompts.js +1 -0
  4146. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts +3 -0
  4147. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts.map +1 -0
  4148. package/packages/typescript/src/features/advanced-memory/providers/context-summary.js +85 -0
  4149. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts +3 -0
  4150. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts.map +1 -0
  4151. package/packages/typescript/src/features/advanced-memory/providers/index.js +2 -0
  4152. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts +3 -0
  4153. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts.map +1 -0
  4154. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.js +92 -0
  4155. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts +5 -0
  4156. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts.map +1 -0
  4157. package/packages/typescript/src/features/advanced-memory/schemas/index.js +3 -0
  4158. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts +10 -0
  4159. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts.map +1 -0
  4160. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.js +65 -0
  4161. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts +10 -0
  4162. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts.map +1 -0
  4163. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.js +45 -0
  4164. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts +10 -0
  4165. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts.map +1 -0
  4166. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.js +66 -0
  4167. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts +38 -0
  4168. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts.map +1 -0
  4169. package/packages/typescript/src/features/advanced-memory/services/memory-service.js +367 -0
  4170. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts +10 -0
  4171. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts.map +1 -0
  4172. package/packages/typescript/src/features/advanced-memory/trajectory.js +33 -0
  4173. package/packages/typescript/src/features/advanced-memory/types.d.ts +68 -0
  4174. package/packages/typescript/src/features/advanced-memory/types.d.ts.map +1 -0
  4175. package/packages/typescript/src/features/advanced-memory/types.js +6 -0
  4176. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts +6 -0
  4177. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts.map +1 -0
  4178. package/packages/typescript/src/features/advanced-planning/actions/chain-example.js +181 -0
  4179. package/packages/typescript/src/features/advanced-planning/index.d.ts +5 -0
  4180. package/packages/typescript/src/features/advanced-planning/index.d.ts.map +1 -0
  4181. package/packages/typescript/src/features/advanced-planning/index.js +20 -0
  4182. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts +3 -0
  4183. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts.map +1 -0
  4184. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.js +105 -0
  4185. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts +77 -0
  4186. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts.map +1 -0
  4187. package/packages/typescript/src/features/advanced-planning/services/planning-service.js +875 -0
  4188. package/packages/typescript/src/features/advanced-planning/types.d.ts +78 -0
  4189. package/packages/typescript/src/features/advanced-planning/types.d.ts.map +1 -0
  4190. package/packages/typescript/src/features/advanced-planning/types.js +1 -0
  4191. package/packages/typescript/src/features/autonomy/action.d.ts +14 -0
  4192. package/packages/typescript/src/features/autonomy/action.d.ts.map +1 -0
  4193. package/packages/typescript/src/features/autonomy/action.js +177 -0
  4194. package/packages/typescript/src/features/autonomy/execution-facade.d.ts +22 -0
  4195. package/packages/typescript/src/features/autonomy/execution-facade.d.ts.map +1 -0
  4196. package/packages/typescript/src/features/autonomy/execution-facade.js +150 -0
  4197. package/packages/typescript/src/features/autonomy/index.d.ts +11 -0
  4198. package/packages/typescript/src/features/autonomy/index.d.ts.map +1 -0
  4199. package/packages/typescript/src/features/autonomy/index.js +13 -0
  4200. package/packages/typescript/src/features/autonomy/providers.d.ts +21 -0
  4201. package/packages/typescript/src/features/autonomy/providers.d.ts.map +1 -0
  4202. package/packages/typescript/src/features/autonomy/providers.js +154 -0
  4203. package/packages/typescript/src/features/autonomy/routes.d.ts +11 -0
  4204. package/packages/typescript/src/features/autonomy/routes.d.ts.map +1 -0
  4205. package/packages/typescript/src/features/autonomy/routes.js +158 -0
  4206. package/packages/typescript/src/features/autonomy/service.d.ts +138 -0
  4207. package/packages/typescript/src/features/autonomy/service.d.ts.map +1 -0
  4208. package/packages/typescript/src/features/autonomy/service.js +813 -0
  4209. package/packages/typescript/src/features/autonomy/types.d.ts +31 -0
  4210. package/packages/typescript/src/features/autonomy/types.d.ts.map +1 -0
  4211. package/packages/typescript/src/features/autonomy/types.js +6 -0
  4212. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts +4 -0
  4213. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts.map +1 -0
  4214. package/packages/typescript/src/features/basic-capabilities/actions/choice.js +278 -0
  4215. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts +3 -0
  4216. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts.map +1 -0
  4217. package/packages/typescript/src/features/basic-capabilities/actions/ignore.js +23 -0
  4218. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts +10 -0
  4219. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts.map +1 -0
  4220. package/packages/typescript/src/features/basic-capabilities/actions/index.js +9 -0
  4221. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts +3 -0
  4222. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts.map +1 -0
  4223. package/packages/typescript/src/features/basic-capabilities/actions/none.js +26 -0
  4224. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts +3 -0
  4225. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts.map +1 -0
  4226. package/packages/typescript/src/features/basic-capabilities/actions/reply.js +80 -0
  4227. package/packages/typescript/src/features/basic-capabilities/index.d.ts +109 -0
  4228. package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -0
  4229. package/packages/typescript/src/features/basic-capabilities/index.js +1032 -0
  4230. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts +7 -0
  4231. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts.map +1 -0
  4232. package/packages/typescript/src/features/basic-capabilities/providers/actionState.js +189 -0
  4233. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts +35 -0
  4234. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts.map +1 -0
  4235. package/packages/typescript/src/features/basic-capabilities/providers/actions.js +104 -0
  4236. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts +20 -0
  4237. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts.map +1 -0
  4238. package/packages/typescript/src/features/basic-capabilities/providers/attachments.js +94 -0
  4239. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts +17 -0
  4240. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts.map +1 -0
  4241. package/packages/typescript/src/features/basic-capabilities/providers/character.js +190 -0
  4242. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts +11 -0
  4243. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts.map +1 -0
  4244. package/packages/typescript/src/features/basic-capabilities/providers/choice.js +86 -0
  4245. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts +12 -0
  4246. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts.map +1 -0
  4247. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.js +50 -0
  4248. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts +11 -0
  4249. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts.map +1 -0
  4250. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.js +56 -0
  4251. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts +7 -0
  4252. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts.map +1 -0
  4253. package/packages/typescript/src/features/basic-capabilities/providers/entities.js +39 -0
  4254. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts +27 -0
  4255. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts.map +1 -0
  4256. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.js +107 -0
  4257. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts +20 -0
  4258. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts.map +1 -0
  4259. package/packages/typescript/src/features/basic-capabilities/providers/index.js +19 -0
  4260. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts +5 -0
  4261. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts.map +1 -0
  4262. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.js +20 -0
  4263. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts +18 -0
  4264. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts.map +1 -0
  4265. package/packages/typescript/src/features/basic-capabilities/providers/providers.js +75 -0
  4266. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts +14 -0
  4267. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts.map +1 -0
  4268. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.js +323 -0
  4269. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts +12 -0
  4270. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts.map +1 -0
  4271. package/packages/typescript/src/features/basic-capabilities/providers/time.js +36 -0
  4272. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.d.ts +3 -0
  4273. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.d.ts.map +1 -0
  4274. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.js +48 -0
  4275. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts +8 -0
  4276. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts.map +1 -0
  4277. package/packages/typescript/src/features/basic-capabilities/providers/world.js +212 -0
  4278. package/packages/typescript/src/features/evaluator-doc-examples.d.ts +4 -0
  4279. package/packages/typescript/src/features/evaluator-doc-examples.d.ts.map +1 -0
  4280. package/packages/typescript/src/features/evaluator-doc-examples.js +13 -0
  4281. package/packages/typescript/src/features/index.d.ts +58 -0
  4282. package/packages/typescript/src/features/index.d.ts.map +1 -0
  4283. package/packages/typescript/src/features/index.js +148 -0
  4284. package/packages/typescript/src/features/knowledge/actions.d.ts +8 -0
  4285. package/packages/typescript/src/features/knowledge/actions.d.ts.map +1 -0
  4286. package/packages/typescript/src/features/knowledge/actions.js +709 -0
  4287. package/packages/typescript/src/features/knowledge/config.d.ts +5 -0
  4288. package/packages/typescript/src/features/knowledge/config.d.ts.map +1 -0
  4289. package/packages/typescript/src/features/knowledge/config.js +147 -0
  4290. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts +53 -0
  4291. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts.map +1 -0
  4292. package/packages/typescript/src/features/knowledge/ctx-embeddings.js +412 -0
  4293. package/packages/typescript/src/features/knowledge/docs-loader.d.ts +27 -0
  4294. package/packages/typescript/src/features/knowledge/docs-loader.d.ts.map +1 -0
  4295. package/packages/typescript/src/features/knowledge/docs-loader.js +226 -0
  4296. package/packages/typescript/src/features/knowledge/document-processor.d.ts +27 -0
  4297. package/packages/typescript/src/features/knowledge/document-processor.d.ts.map +1 -0
  4298. package/packages/typescript/src/features/knowledge/document-processor.js +629 -0
  4299. package/packages/typescript/src/features/knowledge/documents-provider.d.ts +3 -0
  4300. package/packages/typescript/src/features/knowledge/documents-provider.d.ts.map +1 -0
  4301. package/packages/typescript/src/features/knowledge/documents-provider.js +112 -0
  4302. package/packages/typescript/src/features/knowledge/index.d.ts +17 -0
  4303. package/packages/typescript/src/features/knowledge/index.d.ts.map +1 -0
  4304. package/packages/typescript/src/features/knowledge/index.js +30 -0
  4305. package/packages/typescript/src/features/knowledge/llm.d.ts +27 -0
  4306. package/packages/typescript/src/features/knowledge/llm.d.ts.map +1 -0
  4307. package/packages/typescript/src/features/knowledge/llm.js +444 -0
  4308. package/packages/typescript/src/features/knowledge/provider.d.ts +3 -0
  4309. package/packages/typescript/src/features/knowledge/provider.d.ts.map +1 -0
  4310. package/packages/typescript/src/features/knowledge/provider.js +114 -0
  4311. package/packages/typescript/src/features/knowledge/service.d.ts +83 -0
  4312. package/packages/typescript/src/features/knowledge/service.d.ts.map +1 -0
  4313. package/packages/typescript/src/features/knowledge/service.js +648 -0
  4314. package/packages/typescript/src/features/knowledge/types.d.ts +162 -0
  4315. package/packages/typescript/src/features/knowledge/types.d.ts.map +1 -0
  4316. package/packages/typescript/src/features/knowledge/types.js +57 -0
  4317. package/packages/typescript/src/features/knowledge/url-ingest.d.ts +37 -0
  4318. package/packages/typescript/src/features/knowledge/url-ingest.d.ts.map +1 -0
  4319. package/packages/typescript/src/features/knowledge/url-ingest.js +490 -0
  4320. package/packages/typescript/src/features/knowledge/utils.d.ts +22 -0
  4321. package/packages/typescript/src/features/knowledge/utils.d.ts.map +1 -0
  4322. package/packages/typescript/src/features/knowledge/utils.js +388 -0
  4323. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts +3 -0
  4324. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts.map +1 -0
  4325. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.js +65 -0
  4326. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts +3 -0
  4327. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts.map +1 -0
  4328. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.js +63 -0
  4329. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts +14 -0
  4330. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.d.ts.map +1 -0
  4331. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/core-status.js +48 -0
  4332. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts +32 -0
  4333. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.d.ts.map +1 -0
  4334. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/create.js +502 -0
  4335. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts +16 -0
  4336. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.d.ts.map +1 -0
  4337. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/eject.js +47 -0
  4338. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts +18 -0
  4339. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.d.ts.map +1 -0
  4340. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/install.js +59 -0
  4341. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts +14 -0
  4342. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.d.ts.map +1 -0
  4343. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list-ejected.js +31 -0
  4344. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts +14 -0
  4345. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.d.ts.map +1 -0
  4346. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/list.js +51 -0
  4347. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts +15 -0
  4348. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.d.ts.map +1 -0
  4349. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/reinject.js +43 -0
  4350. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts +15 -0
  4351. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.d.ts.map +1 -0
  4352. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/search.js +52 -0
  4353. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts +15 -0
  4354. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.d.ts.map +1 -0
  4355. package/packages/typescript/src/features/plugin-manager/actions/plugin-handlers/sync.js +48 -0
  4356. package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts +25 -0
  4357. package/packages/typescript/src/features/plugin-manager/actions/plugin.d.ts.map +1 -0
  4358. package/packages/typescript/src/features/plugin-manager/actions/plugin.js +439 -0
  4359. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts +4 -0
  4360. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts.map +1 -0
  4361. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.js +232 -0
  4362. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts +28 -0
  4363. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts.map +1 -0
  4364. package/packages/typescript/src/features/plugin-manager/coreExtensions.js +54 -0
  4365. package/packages/typescript/src/features/plugin-manager/index.d.ts +27 -0
  4366. package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -0
  4367. package/packages/typescript/src/features/plugin-manager/index.js +50 -0
  4368. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts +5 -0
  4369. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts.map +1 -0
  4370. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.js +104 -0
  4371. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts +5 -0
  4372. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts.map +1 -0
  4373. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.js +105 -0
  4374. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts +5 -0
  4375. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts.map +1 -0
  4376. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.js +93 -0
  4377. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts +9 -0
  4378. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts.map +1 -0
  4379. package/packages/typescript/src/features/plugin-manager/providers/relevance.js +229 -0
  4380. package/packages/typescript/src/features/plugin-manager/security.d.ts +33 -0
  4381. package/packages/typescript/src/features/plugin-manager/security.d.ts.map +1 -0
  4382. package/packages/typescript/src/features/plugin-manager/security.js +80 -0
  4383. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts +76 -0
  4384. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts.map +1 -0
  4385. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.js +489 -0
  4386. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts +31 -0
  4387. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts.map +1 -0
  4388. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.js +57 -0
  4389. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts +68 -0
  4390. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts.map +1 -0
  4391. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.js +1005 -0
  4392. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts +84 -0
  4393. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts.map +1 -0
  4394. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.js +411 -0
  4395. package/packages/typescript/src/features/plugin-manager/types.d.ts +142 -0
  4396. package/packages/typescript/src/features/plugin-manager/types.d.ts.map +1 -0
  4397. package/packages/typescript/src/features/plugin-manager/types.js +13 -0
  4398. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts +4 -0
  4399. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts.map +1 -0
  4400. package/packages/typescript/src/features/plugin-manager/utils/paths.js +32 -0
  4401. package/packages/typescript/src/features/secrets/actions/index.d.ts +7 -0
  4402. package/packages/typescript/src/features/secrets/actions/index.d.ts.map +1 -0
  4403. package/packages/typescript/src/features/secrets/actions/index.js +6 -0
  4404. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts +12 -0
  4405. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts.map +1 -0
  4406. package/packages/typescript/src/features/secrets/actions/manage-secret.js +278 -0
  4407. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts +3 -0
  4408. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts.map +1 -0
  4409. package/packages/typescript/src/features/secrets/actions/request-secret.js +105 -0
  4410. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts +12 -0
  4411. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts.map +1 -0
  4412. package/packages/typescript/src/features/secrets/actions/set-secret.js +223 -0
  4413. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts +184 -0
  4414. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts.map +1 -0
  4415. package/packages/typescript/src/features/secrets/crypto/encryption.js +373 -0
  4416. package/packages/typescript/src/features/secrets/crypto/index.d.ts +5 -0
  4417. package/packages/typescript/src/features/secrets/crypto/index.d.ts.map +1 -0
  4418. package/packages/typescript/src/features/secrets/crypto/index.js +16 -0
  4419. package/packages/typescript/src/features/secrets/onboarding/action.d.ts +12 -0
  4420. package/packages/typescript/src/features/secrets/onboarding/action.d.ts.map +1 -0
  4421. package/packages/typescript/src/features/secrets/onboarding/action.js +337 -0
  4422. package/packages/typescript/src/features/secrets/onboarding/config.d.ts +99 -0
  4423. package/packages/typescript/src/features/secrets/onboarding/config.d.ts.map +1 -0
  4424. package/packages/typescript/src/features/secrets/onboarding/config.js +240 -0
  4425. package/packages/typescript/src/features/secrets/onboarding/index.d.ts +13 -0
  4426. package/packages/typescript/src/features/secrets/onboarding/index.d.ts.map +1 -0
  4427. package/packages/typescript/src/features/secrets/onboarding/index.js +12 -0
  4428. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts +16 -0
  4429. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts.map +1 -0
  4430. package/packages/typescript/src/features/secrets/onboarding/provider.js +231 -0
  4431. package/packages/typescript/src/features/secrets/onboarding/service.d.ts +134 -0
  4432. package/packages/typescript/src/features/secrets/onboarding/service.d.ts.map +1 -0
  4433. package/packages/typescript/src/features/secrets/onboarding/service.js +436 -0
  4434. package/packages/typescript/src/features/secrets/providers/index.d.ts +5 -0
  4435. package/packages/typescript/src/features/secrets/providers/index.d.ts.map +1 -0
  4436. package/packages/typescript/src/features/secrets/providers/index.js +4 -0
  4437. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts +22 -0
  4438. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts.map +1 -0
  4439. package/packages/typescript/src/features/secrets/providers/secrets-status.js +160 -0
  4440. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts +182 -0
  4441. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts.map +1 -0
  4442. package/packages/typescript/src/features/secrets/services/plugin-activator.js +617 -0
  4443. package/packages/typescript/src/features/secrets/services/secrets.d.ts +183 -0
  4444. package/packages/typescript/src/features/secrets/services/secrets.d.ts.map +1 -0
  4445. package/packages/typescript/src/features/secrets/services/secrets.js +566 -0
  4446. package/packages/typescript/src/features/secrets/storage/character-store.d.ts +63 -0
  4447. package/packages/typescript/src/features/secrets/storage/character-store.d.ts.map +1 -0
  4448. package/packages/typescript/src/features/secrets/storage/character-store.js +265 -0
  4449. package/packages/typescript/src/features/secrets/storage/component-store.d.ts +47 -0
  4450. package/packages/typescript/src/features/secrets/storage/component-store.d.ts.map +1 -0
  4451. package/packages/typescript/src/features/secrets/storage/component-store.js +264 -0
  4452. package/packages/typescript/src/features/secrets/storage/index.d.ts +10 -0
  4453. package/packages/typescript/src/features/secrets/storage/index.d.ts.map +1 -0
  4454. package/packages/typescript/src/features/secrets/storage/index.js +8 -0
  4455. package/packages/typescript/src/features/secrets/storage/interface.d.ts +52 -0
  4456. package/packages/typescript/src/features/secrets/storage/interface.d.ts.map +1 -0
  4457. package/packages/typescript/src/features/secrets/storage/interface.js +92 -0
  4458. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts +44 -0
  4459. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts.map +1 -0
  4460. package/packages/typescript/src/features/secrets/storage/memory-store.js +142 -0
  4461. package/packages/typescript/src/features/secrets/storage/world-store.d.ts +52 -0
  4462. package/packages/typescript/src/features/secrets/storage/world-store.d.ts.map +1 -0
  4463. package/packages/typescript/src/features/secrets/storage/world-store.js +292 -0
  4464. package/packages/typescript/src/features/secrets/types.d.ts +438 -0
  4465. package/packages/typescript/src/features/secrets/types.d.ts.map +1 -0
  4466. package/packages/typescript/src/features/secrets/types.js +57 -0
  4467. package/packages/typescript/src/features/secrets/validation.d.ts +33 -0
  4468. package/packages/typescript/src/features/secrets/validation.d.ts.map +1 -0
  4469. package/packages/typescript/src/features/secrets/validation.js +389 -0
  4470. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts +10 -0
  4471. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts.map +1 -0
  4472. package/packages/typescript/src/features/shared/schedule-follow-up-response.js +49 -0
  4473. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts +289 -0
  4474. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts.map +1 -0
  4475. package/packages/typescript/src/features/trajectories/TrajectoriesService.js +1428 -0
  4476. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts +23 -0
  4477. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts.map +1 -0
  4478. package/packages/typescript/src/features/trajectories/action-interceptor.js +178 -0
  4479. package/packages/typescript/src/features/trajectories/art-format.d.ts +32 -0
  4480. package/packages/typescript/src/features/trajectories/art-format.d.ts.map +1 -0
  4481. package/packages/typescript/src/features/trajectories/art-format.js +221 -0
  4482. package/packages/typescript/src/features/trajectories/export.d.ts +40 -0
  4483. package/packages/typescript/src/features/trajectories/export.d.ts.map +1 -0
  4484. package/packages/typescript/src/features/trajectories/export.js +99 -0
  4485. package/packages/typescript/src/features/trajectories/game-rewards.d.ts +14 -0
  4486. package/packages/typescript/src/features/trajectories/game-rewards.d.ts.map +1 -0
  4487. package/packages/typescript/src/features/trajectories/game-rewards.js +20 -0
  4488. package/packages/typescript/src/features/trajectories/index.d.ts +24 -0
  4489. package/packages/typescript/src/features/trajectories/index.d.ts.map +1 -0
  4490. package/packages/typescript/src/features/trajectories/index.js +332 -0
  4491. package/packages/typescript/src/features/trajectories/integration.d.ts +59 -0
  4492. package/packages/typescript/src/features/trajectories/integration.d.ts.map +1 -0
  4493. package/packages/typescript/src/features/trajectories/integration.js +83 -0
  4494. package/packages/typescript/src/features/trajectories/reward-service.d.ts +24 -0
  4495. package/packages/typescript/src/features/trajectories/reward-service.d.ts.map +1 -0
  4496. package/packages/typescript/src/features/trajectories/reward-service.js +89 -0
  4497. package/packages/typescript/src/features/trajectories/types.d.ts +261 -0
  4498. package/packages/typescript/src/features/trajectories/types.d.ts.map +1 -0
  4499. package/packages/typescript/src/features/trajectories/types.js +1 -0
  4500. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts +3 -0
  4501. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts.map +1 -0
  4502. package/packages/typescript/src/features/trust/actions/evaluateTrust.js +225 -0
  4503. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts +3 -0
  4504. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts.map +1 -0
  4505. package/packages/typescript/src/features/trust/actions/hasTrustEngine.js +3 -0
  4506. package/packages/typescript/src/features/trust/actions/index.d.ts +6 -0
  4507. package/packages/typescript/src/features/trust/actions/index.d.ts.map +1 -0
  4508. package/packages/typescript/src/features/trust/actions/index.js +5 -0
  4509. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts +3 -0
  4510. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts.map +1 -0
  4511. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.js +189 -0
  4512. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts +3 -0
  4513. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts.map +1 -0
  4514. package/packages/typescript/src/features/trust/actions/requestElevation.js +165 -0
  4515. package/packages/typescript/src/features/trust/actions/roles.d.ts +3 -0
  4516. package/packages/typescript/src/features/trust/actions/roles.d.ts.map +1 -0
  4517. package/packages/typescript/src/features/trust/actions/roles.js +295 -0
  4518. package/packages/typescript/src/features/trust/actions/settings.d.ts +5 -0
  4519. package/packages/typescript/src/features/trust/actions/settings.d.ts.map +1 -0
  4520. package/packages/typescript/src/features/trust/actions/settings.js +603 -0
  4521. package/packages/typescript/src/features/trust/evaluators/index.d.ts +4 -0
  4522. package/packages/typescript/src/features/trust/evaluators/index.d.ts.map +1 -0
  4523. package/packages/typescript/src/features/trust/evaluators/index.js +3 -0
  4524. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts +3 -0
  4525. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts.map +1 -0
  4526. package/packages/typescript/src/features/trust/evaluators/reflection.js +319 -0
  4527. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts +3 -0
  4528. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts.map +1 -0
  4529. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.js +270 -0
  4530. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts +3 -0
  4531. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts.map +1 -0
  4532. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.js +201 -0
  4533. package/packages/typescript/src/features/trust/index.d.ts +23 -0
  4534. package/packages/typescript/src/features/trust/index.d.ts.map +1 -0
  4535. package/packages/typescript/src/features/trust/index.js +96 -0
  4536. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts +3 -0
  4537. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts.map +1 -0
  4538. package/packages/typescript/src/features/trust/providers/adminTrust.js +49 -0
  4539. package/packages/typescript/src/features/trust/providers/index.d.ts +6 -0
  4540. package/packages/typescript/src/features/trust/providers/index.d.ts.map +1 -0
  4541. package/packages/typescript/src/features/trust/providers/index.js +5 -0
  4542. package/packages/typescript/src/features/trust/providers/roles.d.ts +4 -0
  4543. package/packages/typescript/src/features/trust/providers/roles.d.ts.map +1 -0
  4544. package/packages/typescript/src/features/trust/providers/roles.js +142 -0
  4545. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts +3 -0
  4546. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts.map +1 -0
  4547. package/packages/typescript/src/features/trust/providers/securityStatus.js +110 -0
  4548. package/packages/typescript/src/features/trust/providers/settings.d.ts +3 -0
  4549. package/packages/typescript/src/features/trust/providers/settings.d.ts.map +1 -0
  4550. package/packages/typescript/src/features/trust/providers/settings.js +222 -0
  4551. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts +3 -0
  4552. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts.map +1 -0
  4553. package/packages/typescript/src/features/trust/providers/trustProfile.js +68 -0
  4554. package/packages/typescript/src/features/trust/schema.d.ts +1170 -0
  4555. package/packages/typescript/src/features/trust/schema.d.ts.map +1 -0
  4556. package/packages/typescript/src/features/trust/schema.js +108 -0
  4557. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts +40 -0
  4558. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts.map +1 -0
  4559. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.js +317 -0
  4560. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts +62 -0
  4561. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts.map +1 -0
  4562. package/packages/typescript/src/features/trust/services/CredentialProtector.js +417 -0
  4563. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts +142 -0
  4564. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts.map +1 -0
  4565. package/packages/typescript/src/features/trust/services/SecurityModule.js +1057 -0
  4566. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts +53 -0
  4567. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts.map +1 -0
  4568. package/packages/typescript/src/features/trust/services/SecurityStore.js +123 -0
  4569. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts +81 -0
  4570. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts.map +1 -0
  4571. package/packages/typescript/src/features/trust/services/TrustEngine.js +621 -0
  4572. package/packages/typescript/src/features/trust/services/adminContext.d.ts +3 -0
  4573. package/packages/typescript/src/features/trust/services/adminContext.d.ts.map +1 -0
  4574. package/packages/typescript/src/features/trust/services/adminContext.js +32 -0
  4575. package/packages/typescript/src/features/trust/services/db.d.ts +12 -0
  4576. package/packages/typescript/src/features/trust/services/db.d.ts.map +1 -0
  4577. package/packages/typescript/src/features/trust/services/db.js +10 -0
  4578. package/packages/typescript/src/features/trust/services/wrappers.d.ts +56 -0
  4579. package/packages/typescript/src/features/trust/services/wrappers.d.ts.map +1 -0
  4580. package/packages/typescript/src/features/trust/services/wrappers.js +124 -0
  4581. package/packages/typescript/src/features/trust/types/permissions.d.ts +185 -0
  4582. package/packages/typescript/src/features/trust/types/permissions.d.ts.map +1 -0
  4583. package/packages/typescript/src/features/trust/types/permissions.js +58 -0
  4584. package/packages/typescript/src/features/trust/types/security.d.ts +114 -0
  4585. package/packages/typescript/src/features/trust/types/security.d.ts.map +1 -0
  4586. package/packages/typescript/src/features/trust/types/security.js +15 -0
  4587. package/packages/typescript/src/features/trust/types/trust.d.ts +179 -0
  4588. package/packages/typescript/src/features/trust/types/trust.d.ts.map +1 -0
  4589. package/packages/typescript/src/features/trust/types/trust.js +25 -0
  4590. package/packages/typescript/src/generated/action-docs.d.ts +2809 -0
  4591. package/packages/typescript/src/generated/action-docs.d.ts.map +1 -0
  4592. package/packages/typescript/src/generated/action-docs.js +4038 -0
  4593. package/packages/typescript/src/generated/spec-helpers.d.ts +49 -0
  4594. package/packages/typescript/src/generated/spec-helpers.d.ts.map +1 -0
  4595. package/packages/typescript/src/generated/spec-helpers.js +78 -0
  4596. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts +1093 -0
  4597. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
  4598. package/packages/typescript/src/i18n/generated/validation-keyword-data.js +1093 -0
  4599. package/packages/typescript/src/i18n/validation-keywords.d.ts +25 -0
  4600. package/packages/typescript/src/i18n/validation-keywords.d.ts.map +1 -0
  4601. package/packages/typescript/src/i18n/validation-keywords.js +112 -0
  4602. package/packages/typescript/src/index.d.ts +12 -0
  4603. package/packages/typescript/src/index.d.ts.map +1 -0
  4604. package/packages/typescript/src/index.js +13 -0
  4605. package/packages/typescript/src/index.node.d.ts +81 -0
  4606. package/packages/typescript/src/index.node.d.ts.map +1 -0
  4607. package/packages/typescript/src/index.node.js +114 -0
  4608. package/packages/typescript/src/logger.d.ts +121 -0
  4609. package/packages/typescript/src/logger.d.ts.map +1 -0
  4610. package/packages/typescript/src/logger.js +1024 -0
  4611. package/packages/typescript/src/markdown/chunk.d.ts +50 -0
  4612. package/packages/typescript/src/markdown/chunk.d.ts.map +1 -0
  4613. package/packages/typescript/src/markdown/chunk.js +268 -0
  4614. package/packages/typescript/src/markdown/code-spans.d.ts +42 -0
  4615. package/packages/typescript/src/markdown/code-spans.d.ts.map +1 -0
  4616. package/packages/typescript/src/markdown/code-spans.js +89 -0
  4617. package/packages/typescript/src/markdown/fences.d.ts +50 -0
  4618. package/packages/typescript/src/markdown/fences.d.ts.map +1 -0
  4619. package/packages/typescript/src/markdown/fences.js +90 -0
  4620. package/packages/typescript/src/markdown/frontmatter.d.ts +24 -0
  4621. package/packages/typescript/src/markdown/frontmatter.d.ts.map +1 -0
  4622. package/packages/typescript/src/markdown/frontmatter.js +151 -0
  4623. package/packages/typescript/src/markdown/index.d.ts +18 -0
  4624. package/packages/typescript/src/markdown/index.d.ts.map +1 -0
  4625. package/packages/typescript/src/markdown/index.js +17 -0
  4626. package/packages/typescript/src/markdown/ir.d.ts +101 -0
  4627. package/packages/typescript/src/markdown/ir.d.ts.map +1 -0
  4628. package/packages/typescript/src/markdown/ir.js +789 -0
  4629. package/packages/typescript/src/media/fetch.d.ts +39 -0
  4630. package/packages/typescript/src/media/fetch.d.ts.map +1 -0
  4631. package/packages/typescript/src/media/fetch.js +205 -0
  4632. package/packages/typescript/src/media/index.d.ts +8 -0
  4633. package/packages/typescript/src/media/index.d.ts.map +1 -0
  4634. package/packages/typescript/src/media/index.js +7 -0
  4635. package/packages/typescript/src/media/mime.d.ts +51 -0
  4636. package/packages/typescript/src/media/mime.d.ts.map +1 -0
  4637. package/packages/typescript/src/media/mime.js +225 -0
  4638. package/packages/typescript/src/memory.d.ts +40 -0
  4639. package/packages/typescript/src/memory.d.ts.map +1 -0
  4640. package/packages/typescript/src/memory.js +58 -0
  4641. package/packages/typescript/src/network/fetch-guard.d.ts +34 -0
  4642. package/packages/typescript/src/network/fetch-guard.d.ts.map +1 -0
  4643. package/packages/typescript/src/network/fetch-guard.js +136 -0
  4644. package/packages/typescript/src/network/index.d.ts +11 -0
  4645. package/packages/typescript/src/network/index.d.ts.map +1 -0
  4646. package/packages/typescript/src/network/index.js +10 -0
  4647. package/packages/typescript/src/network/ssrf.d.ts +58 -0
  4648. package/packages/typescript/src/network/ssrf.d.ts.map +1 -0
  4649. package/packages/typescript/src/network/ssrf.js +252 -0
  4650. package/packages/typescript/src/optimization/ab-analysis.d.ts +3 -0
  4651. package/packages/typescript/src/optimization/ab-analysis.d.ts.map +1 -0
  4652. package/packages/typescript/src/optimization/ab-analysis.js +8 -0
  4653. package/packages/typescript/src/optimization-root-dir.d.ts +8 -0
  4654. package/packages/typescript/src/optimization-root-dir.d.ts.map +1 -0
  4655. package/packages/typescript/src/optimization-root-dir.js +14 -0
  4656. package/packages/typescript/src/plugin-lifecycle.d.ts +16 -0
  4657. package/packages/typescript/src/plugin-lifecycle.d.ts.map +1 -0
  4658. package/packages/typescript/src/plugin-lifecycle.js +590 -0
  4659. package/packages/typescript/src/plugin.d.ts +13 -0
  4660. package/packages/typescript/src/plugin.d.ts.map +1 -0
  4661. package/packages/typescript/src/plugin.js +341 -0
  4662. package/packages/typescript/src/plugins/index.d.ts +9 -0
  4663. package/packages/typescript/src/plugins/index.d.ts.map +1 -0
  4664. package/packages/typescript/src/plugins/index.js +8 -0
  4665. package/packages/typescript/src/plugins/native-features.d.ts +15 -0
  4666. package/packages/typescript/src/plugins/native-features.d.ts.map +1 -0
  4667. package/packages/typescript/src/plugins/native-features.js +59 -0
  4668. package/packages/typescript/src/prompts.d.ts +90 -0
  4669. package/packages/typescript/src/prompts.d.ts.map +1 -0
  4670. package/packages/typescript/src/prompts.js +1239 -0
  4671. package/packages/typescript/src/providers/onboarding-progress.d.ts +19 -0
  4672. package/packages/typescript/src/providers/onboarding-progress.d.ts.map +1 -0
  4673. package/packages/typescript/src/providers/onboarding-progress.js +268 -0
  4674. package/packages/typescript/src/providers/skill-eligibility.d.ts +28 -0
  4675. package/packages/typescript/src/providers/skill-eligibility.d.ts.map +1 -0
  4676. package/packages/typescript/src/providers/skill-eligibility.js +179 -0
  4677. package/packages/typescript/src/provisioning.d.ts +54 -0
  4678. package/packages/typescript/src/provisioning.d.ts.map +1 -0
  4679. package/packages/typescript/src/provisioning.js +209 -0
  4680. package/packages/typescript/src/roles.d.ts +70 -0
  4681. package/packages/typescript/src/roles.d.ts.map +1 -0
  4682. package/packages/typescript/src/roles.js +544 -0
  4683. package/packages/typescript/src/runtime-composition.d.ts +129 -0
  4684. package/packages/typescript/src/runtime-composition.d.ts.map +1 -0
  4685. package/packages/typescript/src/runtime-composition.js +335 -0
  4686. package/packages/typescript/src/runtime.d.ts +926 -0
  4687. package/packages/typescript/src/runtime.d.ts.map +1 -0
  4688. package/packages/typescript/src/runtime.js +6094 -0
  4689. package/packages/typescript/src/schemas/agent.d.ts +7 -0
  4690. package/packages/typescript/src/schemas/agent.d.ts.map +1 -0
  4691. package/packages/typescript/src/schemas/agent.js +112 -0
  4692. package/packages/typescript/src/schemas/cache.d.ts +7 -0
  4693. package/packages/typescript/src/schemas/cache.d.ts.map +1 -0
  4694. package/packages/typescript/src/schemas/cache.js +55 -0
  4695. package/packages/typescript/src/schemas/channel-participant.d.ts +7 -0
  4696. package/packages/typescript/src/schemas/channel-participant.d.ts.map +1 -0
  4697. package/packages/typescript/src/schemas/channel-participant.js +49 -0
  4698. package/packages/typescript/src/schemas/channel.d.ts +7 -0
  4699. package/packages/typescript/src/schemas/channel.d.ts.map +1 -0
  4700. package/packages/typescript/src/schemas/channel.js +94 -0
  4701. package/packages/typescript/src/schemas/character.d.ts +445 -0
  4702. package/packages/typescript/src/schemas/character.d.ts.map +1 -0
  4703. package/packages/typescript/src/schemas/character.js +309 -0
  4704. package/packages/typescript/src/schemas/component.d.ts +7 -0
  4705. package/packages/typescript/src/schemas/component.d.ts.map +1 -0
  4706. package/packages/typescript/src/schemas/component.js +156 -0
  4707. package/packages/typescript/src/schemas/embedding.d.ts +7 -0
  4708. package/packages/typescript/src/schemas/embedding.d.ts.map +1 -0
  4709. package/packages/typescript/src/schemas/embedding.js +89 -0
  4710. package/packages/typescript/src/schemas/entity-identity.d.ts +29 -0
  4711. package/packages/typescript/src/schemas/entity-identity.d.ts.map +1 -0
  4712. package/packages/typescript/src/schemas/entity-identity.js +334 -0
  4713. package/packages/typescript/src/schemas/entity.d.ts +7 -0
  4714. package/packages/typescript/src/schemas/entity.d.ts.map +1 -0
  4715. package/packages/typescript/src/schemas/entity.js +69 -0
  4716. package/packages/typescript/src/schemas/index.d.ts +77 -0
  4717. package/packages/typescript/src/schemas/index.d.ts.map +1 -0
  4718. package/packages/typescript/src/schemas/index.js +75 -0
  4719. package/packages/typescript/src/schemas/log.d.ts +6 -0
  4720. package/packages/typescript/src/schemas/log.d.ts.map +1 -0
  4721. package/packages/typescript/src/schemas/log.js +93 -0
  4722. package/packages/typescript/src/schemas/memory.d.ts +7 -0
  4723. package/packages/typescript/src/schemas/memory.d.ts.map +1 -0
  4724. package/packages/typescript/src/schemas/memory.js +167 -0
  4725. package/packages/typescript/src/schemas/message-server-agent.d.ts +7 -0
  4726. package/packages/typescript/src/schemas/message-server-agent.d.ts.map +1 -0
  4727. package/packages/typescript/src/schemas/message-server-agent.js +58 -0
  4728. package/packages/typescript/src/schemas/message-server.d.ts +6 -0
  4729. package/packages/typescript/src/schemas/message-server.d.ts.map +1 -0
  4730. package/packages/typescript/src/schemas/message-server.js +62 -0
  4731. package/packages/typescript/src/schemas/message.d.ts +7 -0
  4732. package/packages/typescript/src/schemas/message.d.ts.map +1 -0
  4733. package/packages/typescript/src/schemas/message.js +106 -0
  4734. package/packages/typescript/src/schemas/pairing-allowlist.d.ts +7 -0
  4735. package/packages/typescript/src/schemas/pairing-allowlist.d.ts.map +1 -0
  4736. package/packages/typescript/src/schemas/pairing-allowlist.js +76 -0
  4737. package/packages/typescript/src/schemas/pairing-request.d.ts +7 -0
  4738. package/packages/typescript/src/schemas/pairing-request.d.ts.map +1 -0
  4739. package/packages/typescript/src/schemas/pairing-request.js +96 -0
  4740. package/packages/typescript/src/schemas/participant.d.ts +6 -0
  4741. package/packages/typescript/src/schemas/participant.d.ts.map +1 -0
  4742. package/packages/typescript/src/schemas/participant.js +91 -0
  4743. package/packages/typescript/src/schemas/relationship.d.ts +7 -0
  4744. package/packages/typescript/src/schemas/relationship.d.ts.map +1 -0
  4745. package/packages/typescript/src/schemas/relationship.js +102 -0
  4746. package/packages/typescript/src/schemas/room.d.ts +6 -0
  4747. package/packages/typescript/src/schemas/room.d.ts.map +1 -0
  4748. package/packages/typescript/src/schemas/room.js +86 -0
  4749. package/packages/typescript/src/schemas/server.d.ts +7 -0
  4750. package/packages/typescript/src/schemas/server.d.ts.map +1 -0
  4751. package/packages/typescript/src/schemas/server.js +33 -0
  4752. package/packages/typescript/src/schemas/task.d.ts +6 -0
  4753. package/packages/typescript/src/schemas/task.d.ts.map +1 -0
  4754. package/packages/typescript/src/schemas/task.js +95 -0
  4755. package/packages/typescript/src/schemas/world.d.ts +6 -0
  4756. package/packages/typescript/src/schemas/world.d.ts.map +1 -0
  4757. package/packages/typescript/src/schemas/world.js +64 -0
  4758. package/packages/typescript/src/search.d.ts +359 -0
  4759. package/packages/typescript/src/search.d.ts.map +1 -0
  4760. package/packages/typescript/src/search.js +1580 -0
  4761. package/packages/typescript/src/secrets.d.ts +6 -0
  4762. package/packages/typescript/src/secrets.d.ts.map +1 -0
  4763. package/packages/typescript/src/secrets.js +28 -0
  4764. package/packages/typescript/src/security/external-content.d.ts +96 -0
  4765. package/packages/typescript/src/security/external-content.d.ts.map +1 -0
  4766. package/packages/typescript/src/security/external-content.js +253 -0
  4767. package/packages/typescript/src/security/index.d.ts +12 -0
  4768. package/packages/typescript/src/security/index.d.ts.map +1 -0
  4769. package/packages/typescript/src/security/index.js +13 -0
  4770. package/packages/typescript/src/security/redact.d.ts +111 -0
  4771. package/packages/typescript/src/security/redact.d.ts.map +1 -0
  4772. package/packages/typescript/src/security/redact.js +254 -0
  4773. package/packages/typescript/src/services/agentEvent.d.ts +297 -0
  4774. package/packages/typescript/src/services/agentEvent.d.ts.map +1 -0
  4775. package/packages/typescript/src/services/agentEvent.js +422 -0
  4776. package/packages/typescript/src/services/approval.d.ts +169 -0
  4777. package/packages/typescript/src/services/approval.d.ts.map +1 -0
  4778. package/packages/typescript/src/services/approval.js +399 -0
  4779. package/packages/typescript/src/services/embedding.d.ts +29 -0
  4780. package/packages/typescript/src/services/embedding.d.ts.map +1 -0
  4781. package/packages/typescript/src/services/embedding.js +211 -0
  4782. package/packages/typescript/src/services/followUp.d.ts +48 -0
  4783. package/packages/typescript/src/services/followUp.d.ts.map +1 -0
  4784. package/packages/typescript/src/services/followUp.js +333 -0
  4785. package/packages/typescript/src/services/hook.d.ts +85 -0
  4786. package/packages/typescript/src/services/hook.d.ts.map +1 -0
  4787. package/packages/typescript/src/services/hook.js +396 -0
  4788. package/packages/typescript/src/services/message.d.ts +133 -0
  4789. package/packages/typescript/src/services/message.d.ts.map +1 -0
  4790. package/packages/typescript/src/services/message.js +4890 -0
  4791. package/packages/typescript/src/services/onboarding-cli.d.ts +240 -0
  4792. package/packages/typescript/src/services/onboarding-cli.d.ts.map +1 -0
  4793. package/packages/typescript/src/services/onboarding-cli.js +688 -0
  4794. package/packages/typescript/src/services/onboarding-rpc.d.ts +225 -0
  4795. package/packages/typescript/src/services/onboarding-rpc.d.ts.map +1 -0
  4796. package/packages/typescript/src/services/onboarding-rpc.js +318 -0
  4797. package/packages/typescript/src/services/onboarding-state.d.ts +155 -0
  4798. package/packages/typescript/src/services/onboarding-state.d.ts.map +1 -0
  4799. package/packages/typescript/src/services/onboarding-state.js +706 -0
  4800. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts +23 -0
  4801. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts.map +1 -0
  4802. package/packages/typescript/src/services/optimized-prompt-resolver.js +49 -0
  4803. package/packages/typescript/src/services/optimized-prompt.d.ts +116 -0
  4804. package/packages/typescript/src/services/optimized-prompt.d.ts.map +1 -0
  4805. package/packages/typescript/src/services/optimized-prompt.js +254 -0
  4806. package/packages/typescript/src/services/pairing-integration.d.ts +96 -0
  4807. package/packages/typescript/src/services/pairing-integration.d.ts.map +1 -0
  4808. package/packages/typescript/src/services/pairing-integration.js +145 -0
  4809. package/packages/typescript/src/services/pairing-migration.d.ts +105 -0
  4810. package/packages/typescript/src/services/pairing-migration.d.ts.map +1 -0
  4811. package/packages/typescript/src/services/pairing-migration.js +283 -0
  4812. package/packages/typescript/src/services/pairing.d.ts +80 -0
  4813. package/packages/typescript/src/services/pairing.d.ts.map +1 -0
  4814. package/packages/typescript/src/services/pairing.js +253 -0
  4815. package/packages/typescript/src/services/plugin-hooks.d.ts +112 -0
  4816. package/packages/typescript/src/services/plugin-hooks.d.ts.map +1 -0
  4817. package/packages/typescript/src/services/plugin-hooks.js +164 -0
  4818. package/packages/typescript/src/services/relationships.d.ts +350 -0
  4819. package/packages/typescript/src/services/relationships.d.ts.map +1 -0
  4820. package/packages/typescript/src/services/relationships.js +1649 -0
  4821. package/packages/typescript/src/services/task-scheduler.d.ts +28 -0
  4822. package/packages/typescript/src/services/task-scheduler.d.ts.map +1 -0
  4823. package/packages/typescript/src/services/task-scheduler.js +89 -0
  4824. package/packages/typescript/src/services/task.d.ts +133 -0
  4825. package/packages/typescript/src/services/task.d.ts.map +1 -0
  4826. package/packages/typescript/src/services/task.js +559 -0
  4827. package/packages/typescript/src/services/tool-policy.d.ts +186 -0
  4828. package/packages/typescript/src/services/tool-policy.d.ts.map +1 -0
  4829. package/packages/typescript/src/services/tool-policy.js +332 -0
  4830. package/packages/typescript/src/services/trajectories.d.ts +34 -0
  4831. package/packages/typescript/src/services/trajectories.d.ts.map +1 -0
  4832. package/packages/typescript/src/services/trajectories.js +1 -0
  4833. package/packages/typescript/src/services.d.ts +61 -0
  4834. package/packages/typescript/src/services.d.ts.map +1 -0
  4835. package/packages/typescript/src/services.js +99 -0
  4836. package/packages/typescript/src/sessions/index.d.ts +17 -0
  4837. package/packages/typescript/src/sessions/index.d.ts.map +1 -0
  4838. package/packages/typescript/src/sessions/index.js +29 -0
  4839. package/packages/typescript/src/sessions/provider.d.ts +71 -0
  4840. package/packages/typescript/src/sessions/provider.d.ts.map +1 -0
  4841. package/packages/typescript/src/sessions/provider.js +243 -0
  4842. package/packages/typescript/src/sessions/session-key.d.ts +201 -0
  4843. package/packages/typescript/src/sessions/session-key.d.ts.map +1 -0
  4844. package/packages/typescript/src/sessions/session-key.js +398 -0
  4845. package/packages/typescript/src/sessions/types.d.ts +197 -0
  4846. package/packages/typescript/src/sessions/types.d.ts.map +1 -0
  4847. package/packages/typescript/src/sessions/types.js +68 -0
  4848. package/packages/typescript/src/settings.d.ts +99 -0
  4849. package/packages/typescript/src/settings.d.ts.map +1 -0
  4850. package/packages/typescript/src/settings.js +409 -0
  4851. package/packages/typescript/src/should-respond.d.ts +2 -0
  4852. package/packages/typescript/src/should-respond.d.ts.map +1 -0
  4853. package/packages/typescript/src/should-respond.js +16 -0
  4854. package/packages/typescript/src/streaming-context.d.ts +88 -0
  4855. package/packages/typescript/src/streaming-context.d.ts.map +1 -0
  4856. package/packages/typescript/src/streaming-context.js +160 -0
  4857. package/packages/typescript/src/trajectory-context.d.ts +39 -0
  4858. package/packages/typescript/src/trajectory-context.d.ts.map +1 -0
  4859. package/packages/typescript/src/trajectory-context.js +85 -0
  4860. package/packages/typescript/src/trajectory-utils.d.ts +73 -0
  4861. package/packages/typescript/src/trajectory-utils.d.ts.map +1 -0
  4862. package/packages/typescript/src/trajectory-utils.js +124 -0
  4863. package/packages/typescript/src/types/agent.d.ts +67 -0
  4864. package/packages/typescript/src/types/agent.d.ts.map +1 -0
  4865. package/packages/typescript/src/types/agent.js +5 -0
  4866. package/packages/typescript/src/types/agentEvent.d.ts +258 -0
  4867. package/packages/typescript/src/types/agentEvent.d.ts.map +1 -0
  4868. package/packages/typescript/src/types/agentEvent.js +11 -0
  4869. package/packages/typescript/src/types/channel-config.d.ts +167 -0
  4870. package/packages/typescript/src/types/channel-config.d.ts.map +1 -0
  4871. package/packages/typescript/src/types/channel-config.js +7 -0
  4872. package/packages/typescript/src/types/components.d.ts +358 -0
  4873. package/packages/typescript/src/types/components.d.ts.map +1 -0
  4874. package/packages/typescript/src/types/components.js +1 -0
  4875. package/packages/typescript/src/types/database.d.ts +1079 -0
  4876. package/packages/typescript/src/types/database.d.ts.map +1 -0
  4877. package/packages/typescript/src/types/database.js +9 -0
  4878. package/packages/typescript/src/types/environment.d.ts +73 -0
  4879. package/packages/typescript/src/types/environment.d.ts.map +1 -0
  4880. package/packages/typescript/src/types/environment.js +16 -0
  4881. package/packages/typescript/src/types/events.d.ts +403 -0
  4882. package/packages/typescript/src/types/events.d.ts.map +1 -0
  4883. package/packages/typescript/src/types/events.js +85 -0
  4884. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts +400 -0
  4885. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts.map +1 -0
  4886. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.js +72 -0
  4887. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts +364 -0
  4888. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts.map +1 -0
  4889. package/packages/typescript/src/types/generated/eliza/v1/components_pb.js +68 -0
  4890. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts +694 -0
  4891. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts.map +1 -0
  4892. package/packages/typescript/src/types/generated/eliza/v1/database_pb.js +172 -0
  4893. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts +299 -0
  4894. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts.map +1 -0
  4895. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.js +52 -0
  4896. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts +746 -0
  4897. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts.map +1 -0
  4898. package/packages/typescript/src/types/generated/eliza/v1/events_pb.js +357 -0
  4899. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts +799 -0
  4900. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts.map +1 -0
  4901. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.js +172 -0
  4902. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts +63 -0
  4903. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts.map +1 -0
  4904. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.js +18 -0
  4905. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts +290 -0
  4906. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts.map +1 -0
  4907. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.js +53 -0
  4908. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts +160 -0
  4909. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts.map +1 -0
  4910. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.js +88 -0
  4911. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts +214 -0
  4912. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts.map +1 -0
  4913. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.js +78 -0
  4914. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts +653 -0
  4915. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts.map +1 -0
  4916. package/packages/typescript/src/types/generated/eliza/v1/model_pb.js +237 -0
  4917. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts +147 -0
  4918. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts.map +1 -0
  4919. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.js +27 -0
  4920. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts +286 -0
  4921. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts.map +1 -0
  4922. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.js +86 -0
  4923. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts +263 -0
  4924. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts.map +1 -0
  4925. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.js +38 -0
  4926. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts +137 -0
  4927. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts.map +1 -0
  4928. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.js +27 -0
  4929. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts +2687 -0
  4930. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts.map +1 -0
  4931. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.js +392 -0
  4932. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts +144 -0
  4933. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts.map +1 -0
  4934. package/packages/typescript/src/types/generated/eliza/v1/service_pb.js +99 -0
  4935. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts +146 -0
  4936. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts.map +1 -0
  4937. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.js +32 -0
  4938. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts +259 -0
  4939. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts.map +1 -0
  4940. package/packages/typescript/src/types/generated/eliza/v1/state_pb.js +44 -0
  4941. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts +120 -0
  4942. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts.map +1 -0
  4943. package/packages/typescript/src/types/generated/eliza/v1/task_pb.js +53 -0
  4944. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts +205 -0
  4945. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts.map +1 -0
  4946. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.js +89 -0
  4947. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts +47 -0
  4948. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts.map +1 -0
  4949. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.js +16 -0
  4950. package/packages/typescript/src/types/hook.d.ts +338 -0
  4951. package/packages/typescript/src/types/hook.d.ts.map +1 -0
  4952. package/packages/typescript/src/types/hook.js +73 -0
  4953. package/packages/typescript/src/types/index.d.ts +42 -0
  4954. package/packages/typescript/src/types/index.d.ts.map +1 -0
  4955. package/packages/typescript/src/types/index.js +50 -0
  4956. package/packages/typescript/src/types/knowledge.d.ts +49 -0
  4957. package/packages/typescript/src/types/knowledge.d.ts.map +1 -0
  4958. package/packages/typescript/src/types/knowledge.js +1 -0
  4959. package/packages/typescript/src/types/memory-storage.d.ts +28 -0
  4960. package/packages/typescript/src/types/memory-storage.d.ts.map +1 -0
  4961. package/packages/typescript/src/types/memory-storage.js +13 -0
  4962. package/packages/typescript/src/types/memory.d.ts +516 -0
  4963. package/packages/typescript/src/types/memory.d.ts.map +1 -0
  4964. package/packages/typescript/src/types/memory.js +16 -0
  4965. package/packages/typescript/src/types/message-service.d.ts +178 -0
  4966. package/packages/typescript/src/types/message-service.d.ts.map +1 -0
  4967. package/packages/typescript/src/types/message-service.js +1 -0
  4968. package/packages/typescript/src/types/messaging.d.ts +358 -0
  4969. package/packages/typescript/src/types/messaging.d.ts.map +1 -0
  4970. package/packages/typescript/src/types/messaging.js +27 -0
  4971. package/packages/typescript/src/types/model.d.ts +697 -0
  4972. package/packages/typescript/src/types/model.d.ts.map +1 -0
  4973. package/packages/typescript/src/types/model.js +247 -0
  4974. package/packages/typescript/src/types/onboarding.d.ts +319 -0
  4975. package/packages/typescript/src/types/onboarding.d.ts.map +1 -0
  4976. package/packages/typescript/src/types/onboarding.js +97 -0
  4977. package/packages/typescript/src/types/pairing.d.ts +124 -0
  4978. package/packages/typescript/src/types/pairing.d.ts.map +1 -0
  4979. package/packages/typescript/src/types/pairing.js +32 -0
  4980. package/packages/typescript/src/types/payment.d.ts +67 -0
  4981. package/packages/typescript/src/types/payment.d.ts.map +1 -0
  4982. package/packages/typescript/src/types/payment.js +1 -0
  4983. package/packages/typescript/src/types/pipeline-hooks.d.ts +234 -0
  4984. package/packages/typescript/src/types/pipeline-hooks.d.ts.map +1 -0
  4985. package/packages/typescript/src/types/pipeline-hooks.js +111 -0
  4986. package/packages/typescript/src/types/plugin-manifest.d.ts +381 -0
  4987. package/packages/typescript/src/types/plugin-manifest.d.ts.map +1 -0
  4988. package/packages/typescript/src/types/plugin-manifest.js +10 -0
  4989. package/packages/typescript/src/types/plugin-store.d.ts +173 -0
  4990. package/packages/typescript/src/types/plugin-store.d.ts.map +1 -0
  4991. package/packages/typescript/src/types/plugin-store.js +1 -0
  4992. package/packages/typescript/src/types/plugin.d.ts +374 -0
  4993. package/packages/typescript/src/types/plugin.d.ts.map +1 -0
  4994. package/packages/typescript/src/types/plugin.js +1 -0
  4995. package/packages/typescript/src/types/primitives.d.ts +176 -0
  4996. package/packages/typescript/src/types/primitives.d.ts.map +1 -0
  4997. package/packages/typescript/src/types/primitives.js +41 -0
  4998. package/packages/typescript/src/types/prompt-batcher.d.ts +126 -0
  4999. package/packages/typescript/src/types/prompt-batcher.d.ts.map +1 -0
  5000. package/packages/typescript/src/types/prompt-batcher.js +6 -0
  5001. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts +41 -0
  5002. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts.map +1 -0
  5003. package/packages/typescript/src/types/prompt-optimization-hooks.js +1 -0
  5004. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts +22 -0
  5005. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts.map +1 -0
  5006. package/packages/typescript/src/types/prompt-optimization-score-card.js +72 -0
  5007. package/packages/typescript/src/types/prompt-optimization-trace.d.ts +53 -0
  5008. package/packages/typescript/src/types/prompt-optimization-trace.d.ts.map +1 -0
  5009. package/packages/typescript/src/types/prompt-optimization-trace.js +19 -0
  5010. package/packages/typescript/src/types/prompts.d.ts +39 -0
  5011. package/packages/typescript/src/types/prompts.d.ts.map +1 -0
  5012. package/packages/typescript/src/types/prompts.js +7 -0
  5013. package/packages/typescript/src/types/proto.d.ts +60 -0
  5014. package/packages/typescript/src/types/proto.d.ts.map +1 -0
  5015. package/packages/typescript/src/types/proto.js +53 -0
  5016. package/packages/typescript/src/types/runtime.d.ts +445 -0
  5017. package/packages/typescript/src/types/runtime.d.ts.map +1 -0
  5018. package/packages/typescript/src/types/runtime.js +1 -0
  5019. package/packages/typescript/src/types/schema-builder.d.ts +43 -0
  5020. package/packages/typescript/src/types/schema-builder.d.ts.map +1 -0
  5021. package/packages/typescript/src/types/schema-builder.js +16 -0
  5022. package/packages/typescript/src/types/schema.d.ts +99 -0
  5023. package/packages/typescript/src/types/schema.d.ts.map +1 -0
  5024. package/packages/typescript/src/types/schema.js +11 -0
  5025. package/packages/typescript/src/types/service-interfaces.d.ts +1200 -0
  5026. package/packages/typescript/src/types/service-interfaces.d.ts.map +1 -0
  5027. package/packages/typescript/src/types/service-interfaces.js +81 -0
  5028. package/packages/typescript/src/types/service.d.ts +175 -0
  5029. package/packages/typescript/src/types/service.d.ts.map +1 -0
  5030. package/packages/typescript/src/types/service.js +79 -0
  5031. package/packages/typescript/src/types/settings.d.ts +36 -0
  5032. package/packages/typescript/src/types/settings.d.ts.map +1 -0
  5033. package/packages/typescript/src/types/settings.js +1 -0
  5034. package/packages/typescript/src/types/state.d.ts +251 -0
  5035. package/packages/typescript/src/types/state.d.ts.map +1 -0
  5036. package/packages/typescript/src/types/state.js +1 -0
  5037. package/packages/typescript/src/types/streaming.d.ts +93 -0
  5038. package/packages/typescript/src/types/streaming.d.ts.map +1 -0
  5039. package/packages/typescript/src/types/streaming.js +21 -0
  5040. package/packages/typescript/src/types/task.d.ts +122 -0
  5041. package/packages/typescript/src/types/task.d.ts.map +1 -0
  5042. package/packages/typescript/src/types/task.js +1 -0
  5043. package/packages/typescript/src/types/tee.d.ts +3 -0
  5044. package/packages/typescript/src/types/tee.d.ts.map +1 -0
  5045. package/packages/typescript/src/types/tee.js +1 -0
  5046. package/packages/typescript/src/types/testing.d.ts +15 -0
  5047. package/packages/typescript/src/types/testing.d.ts.map +1 -0
  5048. package/packages/typescript/src/types/testing.js +1 -0
  5049. package/packages/typescript/src/types/tools.d.ts +166 -0
  5050. package/packages/typescript/src/types/tools.d.ts.map +1 -0
  5051. package/packages/typescript/src/types/tools.js +384 -0
  5052. package/packages/typescript/src/types/trigger.d.ts +44 -0
  5053. package/packages/typescript/src/types/trigger.d.ts.map +1 -0
  5054. package/packages/typescript/src/types/trigger.js +1 -0
  5055. package/packages/typescript/src/utils/action-results.d.ts +33 -0
  5056. package/packages/typescript/src/utils/action-results.d.ts.map +1 -0
  5057. package/packages/typescript/src/utils/action-results.js +169 -0
  5058. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts +52 -0
  5059. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts.map +1 -0
  5060. package/packages/typescript/src/utils/batch-queue/batch-processor.js +126 -0
  5061. package/packages/typescript/src/utils/batch-queue/index.d.ts +97 -0
  5062. package/packages/typescript/src/utils/batch-queue/index.d.ts.map +1 -0
  5063. package/packages/typescript/src/utils/batch-queue/index.js +175 -0
  5064. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts +53 -0
  5065. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts.map +1 -0
  5066. package/packages/typescript/src/utils/batch-queue/priority-queue.js +128 -0
  5067. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts +18 -0
  5068. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts.map +1 -0
  5069. package/packages/typescript/src/utils/batch-queue/semaphore.js +34 -0
  5070. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts +57 -0
  5071. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts.map +1 -0
  5072. package/packages/typescript/src/utils/batch-queue/task-drain.js +150 -0
  5073. package/packages/typescript/src/utils/batch-queue.d.ts +20 -0
  5074. package/packages/typescript/src/utils/batch-queue.d.ts.map +1 -0
  5075. package/packages/typescript/src/utils/batch-queue.js +19 -0
  5076. package/packages/typescript/src/utils/boolean.d.ts +50 -0
  5077. package/packages/typescript/src/utils/boolean.d.ts.map +1 -0
  5078. package/packages/typescript/src/utils/boolean.js +73 -0
  5079. package/packages/typescript/src/utils/buffer.d.ts +107 -0
  5080. package/packages/typescript/src/utils/buffer.d.ts.map +1 -0
  5081. package/packages/typescript/src/utils/buffer.js +229 -0
  5082. package/packages/typescript/src/utils/channel-utils.d.ts +274 -0
  5083. package/packages/typescript/src/utils/channel-utils.d.ts.map +1 -0
  5084. package/packages/typescript/src/utils/channel-utils.js +337 -0
  5085. package/packages/typescript/src/utils/context-catalog.d.ts +6 -0
  5086. package/packages/typescript/src/utils/context-catalog.d.ts.map +1 -0
  5087. package/packages/typescript/src/utils/context-catalog.js +154 -0
  5088. package/packages/typescript/src/utils/context-routing.d.ts +28 -0
  5089. package/packages/typescript/src/utils/context-routing.d.ts.map +1 -0
  5090. package/packages/typescript/src/utils/context-routing.js +252 -0
  5091. package/packages/typescript/src/utils/crypto-compat.d.ts +92 -0
  5092. package/packages/typescript/src/utils/crypto-compat.d.ts.map +1 -0
  5093. package/packages/typescript/src/utils/crypto-compat.js +373 -0
  5094. package/packages/typescript/src/utils/deterministic.d.ts +9 -0
  5095. package/packages/typescript/src/utils/deterministic.d.ts.map +1 -0
  5096. package/packages/typescript/src/utils/deterministic.js +70 -0
  5097. package/packages/typescript/src/utils/environment.d.ts +125 -0
  5098. package/packages/typescript/src/utils/environment.d.ts.map +1 -0
  5099. package/packages/typescript/src/utils/environment.js +290 -0
  5100. package/packages/typescript/src/utils/example-names.d.ts +3 -0
  5101. package/packages/typescript/src/utils/example-names.d.ts.map +1 -0
  5102. package/packages/typescript/src/utils/example-names.js +30 -0
  5103. package/packages/typescript/src/utils/json-llm.d.ts +17 -0
  5104. package/packages/typescript/src/utils/json-llm.d.ts.map +1 -0
  5105. package/packages/typescript/src/utils/json-llm.js +33 -0
  5106. package/packages/typescript/src/utils/message-text.d.ts +5 -0
  5107. package/packages/typescript/src/utils/message-text.d.ts.map +1 -0
  5108. package/packages/typescript/src/utils/message-text.js +24 -0
  5109. package/packages/typescript/src/utils/model-errors.d.ts +3 -0
  5110. package/packages/typescript/src/utils/model-errors.d.ts.map +1 -0
  5111. package/packages/typescript/src/utils/model-errors.js +23 -0
  5112. package/packages/typescript/src/utils/node.d.ts +8 -0
  5113. package/packages/typescript/src/utils/node.d.ts.map +1 -0
  5114. package/packages/typescript/src/utils/node.js +12 -0
  5115. package/packages/typescript/src/utils/paths.d.ts +97 -0
  5116. package/packages/typescript/src/utils/paths.d.ts.map +1 -0
  5117. package/packages/typescript/src/utils/paths.js +204 -0
  5118. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts +163 -0
  5119. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts.map +1 -0
  5120. package/packages/typescript/src/utils/prompt-batcher/batcher.js +896 -0
  5121. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts +15 -0
  5122. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts.map +1 -0
  5123. package/packages/typescript/src/utils/prompt-batcher/dispatcher.js +230 -0
  5124. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts +66 -0
  5125. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts.map +1 -0
  5126. package/packages/typescript/src/utils/prompt-batcher/shared.js +101 -0
  5127. package/packages/typescript/src/utils/prompt-batcher.d.ts +5 -0
  5128. package/packages/typescript/src/utils/prompt-batcher.d.ts.map +1 -0
  5129. package/packages/typescript/src/utils/prompt-batcher.js +4 -0
  5130. package/packages/typescript/src/utils/retry.d.ts +128 -0
  5131. package/packages/typescript/src/utils/retry.d.ts.map +1 -0
  5132. package/packages/typescript/src/utils/retry.js +190 -0
  5133. package/packages/typescript/src/utils/server-health.d.ts +35 -0
  5134. package/packages/typescript/src/utils/server-health.d.ts.map +1 -0
  5135. package/packages/typescript/src/utils/server-health.js +76 -0
  5136. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts +12 -0
  5137. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts.map +1 -0
  5138. package/packages/typescript/src/utils/slice-to-fit-budget.js +36 -0
  5139. package/packages/typescript/src/utils/state-dir.d.ts +19 -0
  5140. package/packages/typescript/src/utils/state-dir.d.ts.map +1 -0
  5141. package/packages/typescript/src/utils/state-dir.js +24 -0
  5142. package/packages/typescript/src/utils/streaming.d.ts +275 -0
  5143. package/packages/typescript/src/utils/streaming.d.ts.map +1 -0
  5144. package/packages/typescript/src/utils/streaming.js +774 -0
  5145. package/packages/typescript/src/utils/text-normalize.d.ts +23 -0
  5146. package/packages/typescript/src/utils/text-normalize.d.ts.map +1 -0
  5147. package/packages/typescript/src/utils/text-normalize.js +42 -0
  5148. package/packages/typescript/src/utils/text-splitting.d.ts +14 -0
  5149. package/packages/typescript/src/utils/text-splitting.d.ts.map +1 -0
  5150. package/packages/typescript/src/utils/text-splitting.js +66 -0
  5151. package/packages/typescript/src/utils/toon.d.ts +8 -0
  5152. package/packages/typescript/src/utils/toon.d.ts.map +1 -0
  5153. package/packages/typescript/src/utils/toon.js +347 -0
  5154. package/packages/typescript/src/utils/type-guards.d.ts +25 -0
  5155. package/packages/typescript/src/utils/type-guards.d.ts.map +1 -0
  5156. package/packages/typescript/src/utils/type-guards.js +73 -0
  5157. package/packages/typescript/src/utils/union-find.d.ts +30 -0
  5158. package/packages/typescript/src/utils/union-find.d.ts.map +1 -0
  5159. package/packages/typescript/src/utils/union-find.js +81 -0
  5160. package/packages/typescript/src/utils.d.ts +193 -0
  5161. package/packages/typescript/src/utils.d.ts.map +1 -0
  5162. package/packages/typescript/src/utils.js +1125 -0
  5163. package/packages/typescript/src/validation/index.d.ts +8 -0
  5164. package/packages/typescript/src/validation/index.d.ts.map +1 -0
  5165. package/packages/typescript/src/validation/index.js +7 -0
  5166. package/packages/typescript/src/validation/keywords.d.ts +26 -0
  5167. package/packages/typescript/src/validation/keywords.d.ts.map +1 -0
  5168. package/packages/typescript/src/validation/keywords.js +76 -0
  5169. package/packages/typescript/src/validation/secrets.d.ts +94 -0
  5170. package/packages/typescript/src/validation/secrets.d.ts.map +1 -0
  5171. package/packages/typescript/src/validation/secrets.js +399 -0
  5172. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts +9 -0
  5173. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts.map +1 -0
  5174. package/packages/ui/src/components/composites/chat/chat-attachment-strip.js +8 -0
  5175. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts +14 -0
  5176. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts.map +1 -0
  5177. package/packages/ui/src/components/composites/chat/chat-bubble.js +7 -0
  5178. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts +14 -0
  5179. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts.map +1 -0
  5180. package/packages/ui/src/components/composites/chat/chat-composer-shell.js +25 -0
  5181. package/packages/ui/src/components/composites/chat/chat-composer.d.ts +45 -0
  5182. package/packages/ui/src/components/composites/chat/chat-composer.d.ts.map +1 -0
  5183. package/packages/ui/src/components/composites/chat/chat-composer.js +297 -0
  5184. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts +21 -0
  5185. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts.map +1 -0
  5186. package/packages/ui/src/components/composites/chat/chat-conversation-item.js +118 -0
  5187. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts +22 -0
  5188. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts.map +1 -0
  5189. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.js +14 -0
  5190. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts +19 -0
  5191. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts.map +1 -0
  5192. package/packages/ui/src/components/composites/chat/chat-empty-state.js +8 -0
  5193. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts +14 -0
  5194. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts.map +1 -0
  5195. package/packages/ui/src/components/composites/chat/chat-message-actions.js +10 -0
  5196. package/packages/ui/src/components/composites/chat/chat-message.d.ts +18 -0
  5197. package/packages/ui/src/components/composites/chat/chat-message.d.ts.map +1 -0
  5198. package/packages/ui/src/components/composites/chat/chat-message.js +260 -0
  5199. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts +54 -0
  5200. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts.map +1 -0
  5201. package/packages/ui/src/components/composites/chat/chat-sidebar.js +64 -0
  5202. package/packages/ui/src/components/composites/chat/chat-source.d.ts +23 -0
  5203. package/packages/ui/src/components/composites/chat/chat-source.d.ts.map +1 -0
  5204. package/packages/ui/src/components/composites/chat/chat-source.js +60 -0
  5205. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts +22 -0
  5206. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts.map +1 -0
  5207. package/packages/ui/src/components/composites/chat/chat-thread-layout.js +37 -0
  5208. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts +19 -0
  5209. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts.map +1 -0
  5210. package/packages/ui/src/components/composites/chat/chat-transcript.js +88 -0
  5211. package/packages/ui/src/components/composites/chat/chat-types.d.ts +91 -0
  5212. package/packages/ui/src/components/composites/chat/chat-types.d.ts.map +1 -0
  5213. package/packages/ui/src/components/composites/chat/chat-types.js +1 -0
  5214. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts +10 -0
  5215. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts.map +1 -0
  5216. package/packages/ui/src/components/composites/chat/chat-typing-indicator.js +10 -0
  5217. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts +13 -0
  5218. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts.map +1 -0
  5219. package/packages/ui/src/components/composites/chat/create-task-popover.js +44 -0
  5220. package/packages/ui/src/components/composites/chat/index.d.ts +17 -0
  5221. package/packages/ui/src/components/composites/chat/index.d.ts.map +1 -0
  5222. package/packages/ui/src/components/composites/chat/index.js +16 -0
  5223. package/packages/ui/src/components/composites/form-field/form-field.d.ts +14 -0
  5224. package/packages/ui/src/components/composites/form-field/form-field.d.ts.map +1 -0
  5225. package/packages/ui/src/components/composites/form-field/form-field.js +8 -0
  5226. package/packages/ui/src/components/composites/form-field/index.d.ts +2 -0
  5227. package/packages/ui/src/components/composites/form-field/index.d.ts.map +1 -0
  5228. package/packages/ui/src/components/composites/form-field/index.js +1 -0
  5229. package/packages/ui/src/components/composites/index.d.ts +27 -0
  5230. package/packages/ui/src/components/composites/index.d.ts.map +1 -0
  5231. package/packages/ui/src/components/composites/index.js +26 -0
  5232. package/packages/ui/src/components/composites/page-panel/index.d.ts +29 -0
  5233. package/packages/ui/src/components/composites/page-panel/index.d.ts.map +1 -0
  5234. package/packages/ui/src/components/composites/page-panel/index.js +28 -0
  5235. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts +4 -0
  5236. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts.map +1 -0
  5237. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.js +60 -0
  5238. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts +3 -0
  5239. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts.map +1 -0
  5240. package/packages/ui/src/components/composites/page-panel/page-panel-empty.js +15 -0
  5241. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts +5 -0
  5242. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts.map +1 -0
  5243. package/packages/ui/src/components/composites/page-panel/page-panel-frame.js +9 -0
  5244. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts +7 -0
  5245. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts.map +1 -0
  5246. package/packages/ui/src/components/composites/page-panel/page-panel-header.js +30 -0
  5247. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts +3 -0
  5248. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts.map +1 -0
  5249. package/packages/ui/src/components/composites/page-panel/page-panel-loading.js +13 -0
  5250. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts +7 -0
  5251. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts.map +1 -0
  5252. package/packages/ui/src/components/composites/page-panel/page-panel-root.js +17 -0
  5253. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts +4 -0
  5254. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts.map +1 -0
  5255. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.js +6 -0
  5256. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts +66 -0
  5257. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts.map +1 -0
  5258. package/packages/ui/src/components/composites/page-panel/page-panel-types.js +1 -0
  5259. package/packages/ui/src/components/composites/search/index.d.ts +3 -0
  5260. package/packages/ui/src/components/composites/search/index.d.ts.map +1 -0
  5261. package/packages/ui/src/components/composites/search/index.js +2 -0
  5262. package/packages/ui/src/components/composites/search/search-input.d.ts.map +1 -0
  5263. package/packages/ui/src/components/composites/search/search-input.js +10 -0
  5264. package/packages/ui/src/components/composites/search/searchbar.d.ts +18 -0
  5265. package/packages/ui/src/components/composites/search/searchbar.d.ts.map +1 -0
  5266. package/packages/ui/src/components/composites/search/searchbar.js +25 -0
  5267. package/packages/ui/src/components/composites/sidebar/index.d.ts +11 -0
  5268. package/packages/ui/src/components/composites/sidebar/index.d.ts.map +1 -0
  5269. package/packages/ui/src/components/composites/sidebar/index.js +10 -0
  5270. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts +15 -0
  5271. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts.map +1 -0
  5272. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.js +292 -0
  5273. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts +4 -0
  5274. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts.map +1 -0
  5275. package/packages/ui/src/components/composites/sidebar/sidebar-body.js +7 -0
  5276. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts +11 -0
  5277. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts.map +1 -0
  5278. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.js +13 -0
  5279. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts +78 -0
  5280. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts.map +1 -0
  5281. package/packages/ui/src/components/composites/sidebar/sidebar-content.js +94 -0
  5282. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts +3 -0
  5283. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts.map +1 -0
  5284. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.js +14 -0
  5285. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts +3 -0
  5286. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts.map +1 -0
  5287. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.js +6 -0
  5288. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts +9 -0
  5289. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts.map +1 -0
  5290. package/packages/ui/src/components/composites/sidebar/sidebar-header.js +6 -0
  5291. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts +3 -0
  5292. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts.map +1 -0
  5293. package/packages/ui/src/components/composites/sidebar/sidebar-panel.js +18 -0
  5294. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts +4 -0
  5295. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts.map +1 -0
  5296. package/packages/ui/src/components/composites/sidebar/sidebar-root.js +491 -0
  5297. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts +3 -0
  5298. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts.map +1 -0
  5299. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.js +18 -0
  5300. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts +77 -0
  5301. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts.map +1 -0
  5302. package/packages/ui/src/components/composites/sidebar/sidebar-types.js +1 -0
  5303. package/packages/ui/src/components/composites/skills/index.d.ts +2 -0
  5304. package/packages/ui/src/components/composites/skills/index.d.ts.map +1 -0
  5305. package/packages/ui/src/components/composites/skills/index.js +1 -0
  5306. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts +16 -0
  5307. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts.map +1 -0
  5308. package/packages/ui/src/components/composites/skills/skill-sidebar-item.js +7 -0
  5309. package/packages/ui/src/components/composites/trajectories/index.d.ts +5 -0
  5310. package/packages/ui/src/components/composites/trajectories/index.d.ts.map +1 -0
  5311. package/packages/ui/src/components/composites/trajectories/index.js +4 -0
  5312. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts +13 -0
  5313. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts.map +1 -0
  5314. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.js +13 -0
  5315. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts +34 -0
  5316. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts.map +1 -0
  5317. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.js +14 -0
  5318. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts +26 -0
  5319. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts.map +1 -0
  5320. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.js +46 -0
  5321. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts +15 -0
  5322. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts.map +1 -0
  5323. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.js +8 -0
  5324. package/packages/ui/src/components/primitives/index.d.ts +26 -0
  5325. package/packages/ui/src/components/primitives/index.d.ts.map +1 -0
  5326. package/packages/ui/src/components/primitives/index.js +25 -0
  5327. package/packages/ui/src/components/ui/admin-dialog.d.ts +50 -0
  5328. package/packages/ui/src/components/ui/admin-dialog.d.ts.map +1 -0
  5329. package/packages/ui/src/components/ui/admin-dialog.js +48 -0
  5330. package/packages/ui/src/components/ui/badge.d.ts +10 -0
  5331. package/packages/ui/src/components/ui/badge.d.ts.map +1 -0
  5332. package/packages/ui/src/components/ui/badge.js +21 -0
  5333. package/packages/ui/src/components/ui/banner.d.ts +17 -0
  5334. package/packages/ui/src/components/ui/banner.d.ts.map +1 -0
  5335. package/packages/ui/src/components/ui/banner.js +29 -0
  5336. package/packages/ui/src/components/ui/button.d.ts +13 -0
  5337. package/packages/ui/src/components/ui/button.d.ts.map +1 -0
  5338. package/packages/ui/src/components/ui/button.js +40 -0
  5339. package/packages/ui/src/components/ui/card.d.ts +15 -0
  5340. package/packages/ui/src/components/ui/card.d.ts.map +1 -0
  5341. package/packages/ui/src/components/ui/card.js +32 -0
  5342. package/packages/ui/src/components/ui/checkbox.d.ts.map +1 -0
  5343. package/packages/ui/src/components/ui/confirm-delete.d.ts +20 -0
  5344. package/packages/ui/src/components/ui/confirm-delete.d.ts.map +1 -0
  5345. package/packages/ui/src/components/ui/confirm-delete.js +16 -0
  5346. package/packages/ui/src/components/ui/confirm-dialog.d.ts +49 -0
  5347. package/packages/ui/src/components/ui/confirm-dialog.d.ts.map +1 -0
  5348. package/packages/ui/src/components/ui/confirm-dialog.js +90 -0
  5349. package/packages/ui/src/components/ui/connection-status.d.ts +15 -0
  5350. package/packages/ui/src/components/ui/connection-status.d.ts.map +1 -0
  5351. package/packages/ui/src/components/ui/connection-status.js +25 -0
  5352. package/packages/ui/src/components/ui/copy-button.d.ts.map +1 -0
  5353. package/packages/ui/src/components/ui/dialog.d.ts +25 -0
  5354. package/packages/ui/src/components/ui/dialog.d.ts.map +1 -0
  5355. package/packages/ui/src/components/ui/dialog.js +23 -0
  5356. package/packages/ui/src/components/ui/drawer-sheet.d.ts +19 -0
  5357. package/packages/ui/src/components/ui/drawer-sheet.d.ts.map +1 -0
  5358. package/packages/ui/src/components/ui/drawer-sheet.js +21 -0
  5359. package/packages/ui/src/components/ui/dropdown-menu.d.ts.map +1 -0
  5360. package/packages/ui/src/components/ui/dropdown-menu.js +35 -0
  5361. package/packages/ui/src/components/ui/empty-state.d.ts.map +1 -0
  5362. package/packages/ui/src/components/ui/error-boundary.d.ts +22 -0
  5363. package/packages/ui/src/components/ui/error-boundary.d.ts.map +1 -0
  5364. package/packages/ui/src/components/ui/error-boundary.js +27 -0
  5365. package/packages/ui/src/components/ui/field-switch.d.ts +8 -0
  5366. package/packages/ui/src/components/ui/field-switch.d.ts.map +1 -0
  5367. package/packages/ui/src/components/ui/field-switch.js +10 -0
  5368. package/packages/ui/src/components/ui/field.d.ts +12 -0
  5369. package/packages/ui/src/components/ui/field.d.ts.map +1 -0
  5370. package/packages/ui/src/components/ui/field.js +21 -0
  5371. package/packages/ui/src/components/ui/form-select.d.ts +14 -0
  5372. package/packages/ui/src/components/ui/form-select.d.ts.map +1 -0
  5373. package/packages/ui/src/components/ui/form-select.js +9 -0
  5374. package/packages/ui/src/components/ui/grid.d.ts +10 -0
  5375. package/packages/ui/src/components/ui/grid.d.ts.map +1 -0
  5376. package/packages/ui/src/components/ui/grid.js +31 -0
  5377. package/packages/ui/src/components/ui/input.d.ts +12 -0
  5378. package/packages/ui/src/components/ui/input.d.ts.map +1 -0
  5379. package/packages/ui/src/components/ui/input.js +29 -0
  5380. package/packages/ui/src/components/ui/label.d.ts +5 -0
  5381. package/packages/ui/src/components/ui/label.d.ts.map +1 -0
  5382. package/packages/ui/src/components/ui/label.js +10 -0
  5383. package/packages/ui/src/components/ui/new-action-button.d.ts +7 -0
  5384. package/packages/ui/src/components/ui/new-action-button.d.ts.map +1 -0
  5385. package/packages/ui/src/components/ui/new-action-button.js +13 -0
  5386. package/packages/ui/src/components/ui/popover.d.ts.map +1 -0
  5387. package/packages/ui/src/components/ui/save-footer.d.ts.map +1 -0
  5388. package/packages/ui/src/components/ui/save-footer.js +10 -0
  5389. package/packages/ui/src/components/ui/section-card.d.ts.map +1 -0
  5390. package/packages/ui/src/components/ui/section-card.js +10 -0
  5391. package/packages/ui/src/components/ui/segmented-control.d.ts +18 -0
  5392. package/packages/ui/src/components/ui/segmented-control.d.ts.map +1 -0
  5393. package/packages/ui/src/components/ui/segmented-control.js +10 -0
  5394. package/packages/ui/src/components/ui/select.d.ts.map +1 -0
  5395. package/packages/ui/src/components/ui/select.js +27 -0
  5396. package/packages/ui/src/components/ui/separator.d.ts.map +1 -0
  5397. package/packages/ui/src/components/ui/settings-controls.d.ts +41 -0
  5398. package/packages/ui/src/components/ui/settings-controls.d.ts.map +1 -0
  5399. package/packages/ui/src/components/ui/settings-controls.js +60 -0
  5400. package/packages/ui/src/components/ui/skeleton.d.ts.map +1 -0
  5401. package/packages/ui/src/components/ui/skeleton.js +24 -0
  5402. package/packages/ui/src/components/ui/slider.d.ts.map +1 -0
  5403. package/packages/ui/src/components/ui/slider.js +7 -0
  5404. package/packages/ui/src/components/ui/sonner.d.ts +2 -0
  5405. package/packages/ui/src/components/ui/sonner.d.ts.map +1 -0
  5406. package/packages/ui/src/components/ui/sonner.js +1 -0
  5407. package/packages/ui/src/components/ui/spinner.d.ts.map +1 -0
  5408. package/packages/ui/src/components/ui/stack.d.ts +11 -0
  5409. package/packages/ui/src/components/ui/stack.d.ts.map +1 -0
  5410. package/packages/ui/src/components/ui/stack.js +40 -0
  5411. package/packages/ui/src/components/ui/status-badge.d.ts +27 -0
  5412. package/packages/ui/src/components/ui/status-badge.d.ts.map +1 -0
  5413. package/packages/ui/src/components/ui/status-badge.js +70 -0
  5414. package/packages/ui/src/components/ui/switch.d.ts +5 -0
  5415. package/packages/ui/src/components/ui/switch.d.ts.map +1 -0
  5416. package/packages/ui/src/components/ui/switch.js +7 -0
  5417. package/packages/ui/src/components/ui/tabs.d.ts.map +1 -0
  5418. package/packages/ui/src/components/ui/tabs.js +12 -0
  5419. package/packages/ui/src/components/ui/tag-editor.d.ts +12 -0
  5420. package/packages/ui/src/components/ui/tag-editor.d.ts.map +1 -0
  5421. package/packages/ui/src/components/ui/tag-editor.js +34 -0
  5422. package/packages/ui/src/components/ui/tag-input.d.ts +3 -0
  5423. package/packages/ui/src/components/ui/tag-input.d.ts.map +1 -0
  5424. package/packages/ui/src/components/ui/tag-input.js +1 -0
  5425. package/packages/ui/src/components/ui/textarea.d.ts +12 -0
  5426. package/packages/ui/src/components/ui/textarea.d.ts.map +1 -0
  5427. package/packages/ui/src/components/ui/textarea.js +29 -0
  5428. package/packages/ui/src/components/ui/themed-select.d.ts +22 -0
  5429. package/packages/ui/src/components/ui/themed-select.d.ts.map +1 -0
  5430. package/packages/ui/src/components/ui/themed-select.js +137 -0
  5431. package/packages/ui/src/components/ui/tooltip-extended.d.ts +54 -0
  5432. package/packages/ui/src/components/ui/tooltip-extended.d.ts.map +1 -0
  5433. package/packages/ui/src/components/ui/tooltip-extended.js +114 -0
  5434. package/packages/ui/src/components/ui/tooltip.d.ts +18 -0
  5435. package/packages/ui/src/components/ui/tooltip.d.ts.map +1 -0
  5436. package/packages/ui/src/components/ui/tooltip.js +13 -0
  5437. package/packages/ui/src/components/ui/typography.d.ts +15 -0
  5438. package/packages/ui/src/components/ui/typography.d.ts.map +1 -0
  5439. package/packages/ui/src/components/ui/typography.js +46 -0
  5440. package/packages/ui/src/hooks/index.d.ts +6 -0
  5441. package/packages/ui/src/hooks/index.d.ts.map +1 -0
  5442. package/packages/ui/src/hooks/index.js +5 -0
  5443. package/packages/ui/src/hooks/useClickOutside.d.ts +3 -0
  5444. package/packages/ui/src/hooks/useClickOutside.d.ts.map +1 -0
  5445. package/packages/ui/src/hooks/useClickOutside.js +22 -0
  5446. package/packages/ui/src/hooks/useDocumentVisibility.d.ts +3 -0
  5447. package/packages/ui/src/hooks/useDocumentVisibility.d.ts.map +1 -0
  5448. package/packages/ui/src/hooks/useDocumentVisibility.js +28 -0
  5449. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts +13 -0
  5450. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  5451. package/packages/ui/src/hooks/useKeyboardShortcuts.js +34 -0
  5452. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts +16 -0
  5453. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts.map +1 -0
  5454. package/packages/ui/src/hooks/useLinkedSidebarSelection.js +117 -0
  5455. package/packages/ui/src/hooks/useTimeout.d.ts +5 -0
  5456. package/packages/ui/src/hooks/useTimeout.d.ts.map +1 -0
  5457. package/packages/ui/src/hooks/useTimeout.js +26 -0
  5458. package/packages/ui/src/index.d.ts +8 -0
  5459. package/packages/ui/src/index.d.ts.map +1 -0
  5460. package/packages/ui/src/index.js +7 -0
  5461. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts +11 -0
  5462. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts.map +1 -0
  5463. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.js +37 -0
  5464. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts +2 -0
  5465. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts.map +1 -0
  5466. package/packages/ui/src/layouts/chat-panel-layout/index.js +1 -0
  5467. package/packages/ui/src/layouts/content-layout/content-layout.d.ts +21 -0
  5468. package/packages/ui/src/layouts/content-layout/content-layout.d.ts.map +1 -0
  5469. package/packages/ui/src/layouts/content-layout/content-layout.js +5 -0
  5470. package/packages/ui/src/layouts/content-layout/index.d.ts +2 -0
  5471. package/packages/ui/src/layouts/content-layout/index.d.ts.map +1 -0
  5472. package/packages/ui/src/layouts/content-layout/index.js +1 -0
  5473. package/packages/ui/src/layouts/index.d.ts +5 -0
  5474. package/packages/ui/src/layouts/index.d.ts.map +1 -0
  5475. package/packages/ui/src/layouts/index.js +4 -0
  5476. package/packages/ui/src/layouts/layout-test-utils.d.ts +6 -0
  5477. package/packages/ui/src/layouts/layout-test-utils.d.ts.map +1 -0
  5478. package/packages/ui/src/layouts/layout-test-utils.js +36 -0
  5479. package/packages/ui/src/layouts/page-layout/index.d.ts +5 -0
  5480. package/packages/ui/src/layouts/page-layout/index.d.ts.map +1 -0
  5481. package/packages/ui/src/layouts/page-layout/index.js +4 -0
  5482. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts +287 -0
  5483. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts.map +1 -0
  5484. package/packages/ui/src/layouts/page-layout/page-layout-header.js +8 -0
  5485. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts +3 -0
  5486. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts.map +1 -0
  5487. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.js +37 -0
  5488. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts +15 -0
  5489. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts.map +1 -0
  5490. package/packages/ui/src/layouts/page-layout/page-layout-types.js +1 -0
  5491. package/packages/ui/src/layouts/page-layout/page-layout.d.ts +3 -0
  5492. package/packages/ui/src/layouts/page-layout/page-layout.d.ts.map +1 -0
  5493. package/packages/ui/src/layouts/page-layout/page-layout.js +5 -0
  5494. package/packages/ui/src/layouts/workspace-layout/index.d.ts +4 -0
  5495. package/packages/ui/src/layouts/workspace-layout/index.d.ts.map +1 -0
  5496. package/packages/ui/src/layouts/workspace-layout/index.js +3 -0
  5497. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts +19 -0
  5498. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts.map +1 -0
  5499. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.js +1 -0
  5500. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts +3 -0
  5501. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts.map +1 -0
  5502. package/packages/ui/src/layouts/workspace-layout/workspace-layout.js +65 -0
  5503. package/packages/ui/src/layouts/workspace-layout/workspace-mobile-sidebar-controls.d.ts +13 -0
  5504. package/packages/ui/src/layouts/workspace-layout/workspace-mobile-sidebar-controls.d.ts.map +1 -0
  5505. package/packages/ui/src/layouts/workspace-layout/workspace-mobile-sidebar-controls.js +5 -0
  5506. package/packages/ui/src/lib/floating-layers.d.ts +17 -0
  5507. package/packages/ui/src/lib/floating-layers.d.ts.map +1 -0
  5508. package/packages/ui/src/lib/floating-layers.js +20 -0
  5509. package/packages/ui/src/lib/utils.d.ts +3 -0
  5510. package/packages/ui/src/lib/utils.d.ts.map +1 -0
  5511. package/packages/ui/src/lib/utils.js +5 -0
  5512. package/packages/ui/src/stories/layout-story-fixtures.d.ts +14 -0
  5513. package/packages/ui/src/stories/layout-story-fixtures.d.ts.map +1 -0
  5514. package/packages/ui/src/stories/layout-story-fixtures.js +33 -0
  5515. package/packages/ui/src/types/onboarding.d.ts +8 -0
  5516. package/packages/ui/src/types/onboarding.d.ts.map +1 -0
  5517. package/packages/ui/src/types/onboarding.js +17 -0
  5518. package/styles/electrobun-mac-window-drag.css +94 -0
  5519. package/styles/theme.css +73 -0
  5520. package/README.md +0 -6
  5521. package/dist/components/ui/badge.d.ts +0 -10
  5522. package/dist/components/ui/badge.d.ts.map +0 -1
  5523. package/dist/components/ui/badge.js +0 -20
  5524. package/dist/components/ui/banner.d.ts +0 -18
  5525. package/dist/components/ui/banner.d.ts.map +0 -1
  5526. package/dist/components/ui/banner.js +0 -27
  5527. package/dist/components/ui/button.d.ts +0 -12
  5528. package/dist/components/ui/button.d.ts.map +0 -1
  5529. package/dist/components/ui/button.js +0 -33
  5530. package/dist/components/ui/card.d.ts +0 -9
  5531. package/dist/components/ui/card.d.ts.map +0 -1
  5532. package/dist/components/ui/card.js +0 -16
  5533. package/dist/components/ui/chat-atoms.d.ts +0 -26
  5534. package/dist/components/ui/chat-atoms.d.ts.map +0 -1
  5535. package/dist/components/ui/chat-atoms.js +0 -17
  5536. package/dist/components/ui/checkbox.d.ts.map +0 -1
  5537. package/dist/components/ui/confirm-delete.d.ts +0 -12
  5538. package/dist/components/ui/confirm-delete.d.ts.map +0 -1
  5539. package/dist/components/ui/confirm-delete.js +0 -13
  5540. package/dist/components/ui/confirm-dialog.d.ts +0 -24
  5541. package/dist/components/ui/confirm-dialog.d.ts.map +0 -1
  5542. package/dist/components/ui/confirm-dialog.js +0 -55
  5543. package/dist/components/ui/connection-status.d.ts +0 -9
  5544. package/dist/components/ui/connection-status.d.ts.map +0 -1
  5545. package/dist/components/ui/connection-status.js +0 -25
  5546. package/dist/components/ui/copy-button.d.ts.map +0 -1
  5547. package/dist/components/ui/dialog.d.ts +0 -20
  5548. package/dist/components/ui/dialog.d.ts.map +0 -1
  5549. package/dist/components/ui/dialog.js +0 -22
  5550. package/dist/components/ui/dropdown-menu.d.ts.map +0 -1
  5551. package/dist/components/ui/dropdown-menu.js +0 -35
  5552. package/dist/components/ui/empty-state.d.ts.map +0 -1
  5553. package/dist/components/ui/error-boundary.d.ts +0 -18
  5554. package/dist/components/ui/error-boundary.d.ts.map +0 -1
  5555. package/dist/components/ui/error-boundary.js +0 -27
  5556. package/dist/components/ui/grid.d.ts +0 -11
  5557. package/dist/components/ui/grid.d.ts.map +0 -1
  5558. package/dist/components/ui/grid.js +0 -30
  5559. package/dist/components/ui/input.d.ts +0 -6
  5560. package/dist/components/ui/input.d.ts.map +0 -1
  5561. package/dist/components/ui/input.js +0 -8
  5562. package/dist/components/ui/label.d.ts +0 -6
  5563. package/dist/components/ui/label.d.ts.map +0 -1
  5564. package/dist/components/ui/label.js +0 -9
  5565. package/dist/components/ui/popover.d.ts.map +0 -1
  5566. package/dist/components/ui/save-footer.d.ts.map +0 -1
  5567. package/dist/components/ui/save-footer.js +0 -9
  5568. package/dist/components/ui/search-bar.d.ts +0 -17
  5569. package/dist/components/ui/search-bar.d.ts.map +0 -1
  5570. package/dist/components/ui/search-bar.js +0 -19
  5571. package/dist/components/ui/search-input.d.ts.map +0 -1
  5572. package/dist/components/ui/search-input.js +0 -9
  5573. package/dist/components/ui/section-card.d.ts.map +0 -1
  5574. package/dist/components/ui/section-card.js +0 -9
  5575. package/dist/components/ui/select.d.ts.map +0 -1
  5576. package/dist/components/ui/select.js +0 -26
  5577. package/dist/components/ui/separator.d.ts.map +0 -1
  5578. package/dist/components/ui/skeleton.d.ts.map +0 -1
  5579. package/dist/components/ui/skeleton.js +0 -25
  5580. package/dist/components/ui/slider.d.ts.map +0 -1
  5581. package/dist/components/ui/slider.js +0 -7
  5582. package/dist/components/ui/sonner.d.ts +0 -5
  5583. package/dist/components/ui/sonner.d.ts.map +0 -1
  5584. package/dist/components/ui/sonner.js +0 -15
  5585. package/dist/components/ui/spinner.d.ts.map +0 -1
  5586. package/dist/components/ui/stack.d.ts +0 -13
  5587. package/dist/components/ui/stack.d.ts.map +0 -1
  5588. package/dist/components/ui/stack.js +0 -39
  5589. package/dist/components/ui/status-badge.d.ts +0 -22
  5590. package/dist/components/ui/status-badge.d.ts.map +0 -1
  5591. package/dist/components/ui/status-badge.js +0 -41
  5592. package/dist/components/ui/switch.d.ts +0 -16
  5593. package/dist/components/ui/switch.d.ts.map +0 -1
  5594. package/dist/components/ui/switch.js +0 -39
  5595. package/dist/components/ui/tabs.d.ts.map +0 -1
  5596. package/dist/components/ui/tabs.js +0 -12
  5597. package/dist/components/ui/tag-editor.d.ts +0 -24
  5598. package/dist/components/ui/tag-editor.d.ts.map +0 -1
  5599. package/dist/components/ui/tag-editor.js +0 -32
  5600. package/dist/components/ui/tag-input.d.ts +0 -19
  5601. package/dist/components/ui/tag-input.d.ts.map +0 -1
  5602. package/dist/components/ui/tag-input.js +0 -28
  5603. package/dist/components/ui/textarea.d.ts +0 -6
  5604. package/dist/components/ui/textarea.d.ts.map +0 -1
  5605. package/dist/components/ui/textarea.js +0 -8
  5606. package/dist/components/ui/themed-select.d.ts +0 -27
  5607. package/dist/components/ui/themed-select.d.ts.map +0 -1
  5608. package/dist/components/ui/themed-select.js +0 -57
  5609. package/dist/components/ui/tooltip-extended.d.ts +0 -76
  5610. package/dist/components/ui/tooltip-extended.d.ts.map +0 -1
  5611. package/dist/components/ui/tooltip-extended.js +0 -128
  5612. package/dist/components/ui/tooltip.d.ts +0 -8
  5613. package/dist/components/ui/tooltip.d.ts.map +0 -1
  5614. package/dist/components/ui/tooltip.js +0 -10
  5615. package/dist/components/ui/typography.d.ts +0 -17
  5616. package/dist/components/ui/typography.d.ts.map +0 -1
  5617. package/dist/components/ui/typography.js +0 -44
  5618. package/dist/index.d.ts +0 -42
  5619. package/dist/index.d.ts.map +0 -1
  5620. package/dist/index.js +0 -43
  5621. package/dist/lib/button-styles.d.ts +0 -12
  5622. package/dist/lib/button-styles.d.ts.map +0 -1
  5623. package/dist/lib/button-styles.js +0 -11
  5624. package/dist/lib/utils.d.ts +0 -6
  5625. package/dist/lib/utils.d.ts.map +0 -1
  5626. package/dist/lib/utils.js +0 -8
  5627. package/dist/package.json +0 -64
  5628. package/dist/styles/theme.css +0 -193
  5629. package/src/styles/theme.css +0 -193
  5630. /package/{dist/components/ui → packages/ui/src/components/composites/search}/search-input.d.ts +0 -0
  5631. /package/{dist → packages/ui/src}/components/ui/checkbox.d.ts +0 -0
  5632. /package/{dist → packages/ui/src}/components/ui/checkbox.js +0 -0
  5633. /package/{dist → packages/ui/src}/components/ui/copy-button.d.ts +0 -0
  5634. /package/{dist → packages/ui/src}/components/ui/copy-button.js +0 -0
  5635. /package/{dist → packages/ui/src}/components/ui/dropdown-menu.d.ts +0 -0
  5636. /package/{dist → packages/ui/src}/components/ui/empty-state.d.ts +0 -0
  5637. /package/{dist → packages/ui/src}/components/ui/empty-state.js +0 -0
  5638. /package/{dist → packages/ui/src}/components/ui/popover.d.ts +0 -0
  5639. /package/{dist → packages/ui/src}/components/ui/popover.js +0 -0
  5640. /package/{dist → packages/ui/src}/components/ui/save-footer.d.ts +0 -0
  5641. /package/{dist → packages/ui/src}/components/ui/section-card.d.ts +0 -0
  5642. /package/{dist → packages/ui/src}/components/ui/select.d.ts +0 -0
  5643. /package/{dist → packages/ui/src}/components/ui/separator.d.ts +0 -0
  5644. /package/{dist → packages/ui/src}/components/ui/separator.js +0 -0
  5645. /package/{dist → packages/ui/src}/components/ui/skeleton.d.ts +0 -0
  5646. /package/{dist → packages/ui/src}/components/ui/slider.d.ts +0 -0
  5647. /package/{dist → packages/ui/src}/components/ui/spinner.d.ts +0 -0
  5648. /package/{dist → packages/ui/src}/components/ui/spinner.js +0 -0
  5649. /package/{dist → packages/ui/src}/components/ui/tabs.d.ts +0 -0
@@ -0,0 +1,3211 @@
1
+ {
2
+ "accounts.add.apiDescription": "Paste your API key. The key is stored locally with mode 0600.",
3
+ "accounts.add.apiKey": "API key",
4
+ "accounts.add.apikey.failed": "Failed to add account.",
5
+ "accounts.add.button": "Add account",
6
+ "accounts.add.disabledHint": "API-key accounts for this provider are not yet supported.",
7
+ "accounts.add.label": "Account name",
8
+ "accounts.add.labelPlaceholder": "e.g. Personal, Work",
9
+ "accounts.add.oauth.cancelled": "Login cancelled.",
10
+ "accounts.add.oauth.codeFailed": "Failed to submit code.",
11
+ "accounts.add.oauth.codeHint": "Auto-redirect didn't reach us. Paste the code (or full redirect URL) from the browser.",
12
+ "accounts.add.oauth.codePlaceholder": "Paste the code or redirect URL",
13
+ "accounts.add.oauth.error": "Login failed.",
14
+ "accounts.add.oauth.sessionHint": "Session: {{sessionId}}",
15
+ "accounts.add.oauth.startFailed": "Failed to start login flow.",
16
+ "accounts.add.oauth.starting": "Starting login flow...",
17
+ "accounts.add.oauth.submitCode": "Submit code",
18
+ "accounts.add.oauth.timeout": "Login timed out. Try again.",
19
+ "accounts.add.oauth.waiting": "Waiting for browser... Complete the sign-in there.",
20
+ "accounts.add.save": "Add account",
21
+ "accounts.add.signIn": "Sign in with {{provider}}",
22
+ "accounts.add.subscriptionDescription": "Sign in with your provider to add another account to the rotation pool.",
23
+ "accounts.add.title": "Add {{provider}} account",
24
+ "accounts.add.tryAgain": "Try again",
25
+ "accounts.cancel": "Cancel",
26
+ "accounts.delete": "Delete account",
27
+ "accounts.delete.confirm": "Remove account",
28
+ "accounts.deleteConfirm.description": "Removing the account deletes its stored credential and pool metadata. This cannot be undone.",
29
+ "accounts.deleteConfirm.title": "Remove this account?",
30
+ "accounts.empty": "No accounts yet - add one to start using this provider.",
31
+ "accounts.enabled": "Enabled",
32
+ "accounts.enabledToggle": "Account enabled",
33
+ "accounts.heading": "Accounts ({{count}})",
34
+ "accounts.health.invalid": "Invalid credential",
35
+ "accounts.health.needsReauth": "Needs reauth",
36
+ "accounts.health.ok": "Healthy",
37
+ "accounts.health.rateLimited": "Rate-limited",
38
+ "accounts.health.rateLimitedWithReset": "Rate-limited (resets in {{resetIn}})",
39
+ "accounts.health.unknown": "Unknown",
40
+ "accounts.label.edit": "Account label",
41
+ "accounts.label.editTooltip": "Click to rename",
42
+ "accounts.lastUsed": "Last used {{lastUsed}}",
43
+ "accounts.loading": "Loading accounts...",
44
+ "accounts.moveDown": "Move down",
45
+ "accounts.moveUp": "Move up",
46
+ "accounts.orphan.label": "Orphan metadata",
47
+ "accounts.orphan.tooltip": "Pool metadata exists but no on-disk credential was found.",
48
+ "accounts.priority.tooltip": "Lower priority value runs first",
49
+ "accounts.provider.anthropicApi": "Anthropic API",
50
+ "accounts.provider.anthropicSubscription": "Anthropic Claude subscription",
51
+ "accounts.provider.openaiApi": "OpenAI API",
52
+ "accounts.provider.openaiCodex": "OpenAI Codex subscription",
53
+ "accounts.refresh": "Refresh",
54
+ "accounts.source.apiKey": "API key",
55
+ "accounts.source.oauth": "OAuth",
56
+ "accounts.strategy.choose": "Choose strategy",
57
+ "accounts.strategy.label": "Strategy",
58
+ "accounts.strategy.leastUsed.description": "Prefer the account with the lowest current usage.",
59
+ "accounts.strategy.leastUsed.label": "Least used",
60
+ "accounts.strategy.priority.description": "Always prefer the top healthy account.",
61
+ "accounts.strategy.priority.label": "Priority",
62
+ "accounts.strategy.quotaAware.description": "Skip accounts above 85% utilization.",
63
+ "accounts.strategy.quotaAware.label": "Quota-aware",
64
+ "accounts.strategy.roundRobin.description": "Alternate across enabled accounts.",
65
+ "accounts.strategy.roundRobin.label": "Round-robin",
66
+ "accounts.test": "Test",
67
+ "accounts.usage.none": "No usage data yet - click Refresh to probe.",
68
+ "accounts.usage.session": "Session",
69
+ "accounts.usage.session5h": "5h",
70
+ "accounts.usage.weekly": "7d",
71
+ "advancedpageview.DatabaseDescription": "Tables, media, and vector browser",
72
+ "advancedpageview.DesktopDescription": "Native runtime diagnostics, detached windows, file dialogs, clipboard, and shell controls",
73
+ "advancedpageview.LogsDescription": "Runtime and service logs",
74
+ "advancedpageview.Memories": "Memories",
75
+ "advancedpageview.MemoriesDescription": "Memory, fact, and extraction viewer with activity feed",
76
+ "advancedpageview.PluginsDescription": "Features and connectors",
77
+ "advancedpageview.Relationships": "Relationships",
78
+ "advancedpageview.RelationshipsDescription": "Cross-channel people, identities, facts, and relationships",
79
+ "advancedpageview.RuntimeDescription": "Deep runtime object introspection and load order",
80
+ "advancedpageview.Security": "Security",
81
+ "advancedpageview.SecurityDescription": "API keys and credentials vault",
82
+ "advancedpageview.Skills": "Skills",
83
+ "advancedpageview.SkillsDescription": "Custom agent skills",
84
+ "advancedpageview.TrajectoriesDescription": "LLM call history and analysis",
85
+ "agent.clearActivity": "Clear activity",
86
+ "agent.currentlyPlaying": "Currently playing",
87
+ "agent.noGamesAreRunning": "No games are running",
88
+ "agent.noRecentActivity": "No recent activity",
89
+ "agent.resumeViewer": "Resume viewer",
90
+ "agentactivitybox.RunningTool": "Running {{tool}}",
91
+ "agentactivitybox.WaitingForInput": "Waiting for input",
92
+ "apikeyconfig.error": "Error: {{message}}",
93
+ "apikeyconfig.fetching": "Fetching...",
94
+ "apikeyconfig.fetchModels": "Fetch Models",
95
+ "apikeyconfig.loadedModels": "Loaded {{count}} models",
96
+ "appdetails.LaunchFailed": "Could not launch {{name}}: {{message}}",
97
+ "appsview.ActiveOnly": "Active Only",
98
+ "appsview.AppWindowNormal": "App Window Normal",
99
+ "appsview.AppWindowPinFailed": "App Window Pin Failed",
100
+ "appsview.AppWindowPinned": "App Window Pinned",
101
+ "appsview.Auth": "Auth",
102
+ "appsview.CurrentGameOpened": "Current game opened in a new tab.",
103
+ "appsview.Disabled": "disabled",
104
+ "appsview.EmptyCatalogHint": "Refresh the catalog or check back after more app packages are installed.",
105
+ "appsview.EmptySearchHint": "Try a broader search, or clear the filter to browse everything in the catalog.",
106
+ "appsview.EmptyStateDescription": "Browse and launch apps",
107
+ "appsview.EmptyStateTitle": "Select an app to view details",
108
+ "appsview.Enabled": "enabled",
109
+ "appsview.GameRunning": "Game running",
110
+ "appsview.HelperText": "Choose an app tile to inspect launch details, current session state, and available viewer actions.",
111
+ "appsview.IframeAuthMissing": "{{name}} requires iframe auth, but no auth payload is configured.",
112
+ "appsview.LaunchedNoViewer": "{{name}} launched, but no viewer or URL is configured.",
113
+ "appsview.LaunchFailed": "Failed to launch {{name}}: {{message}}",
114
+ "appsview.LaunchType": "Launch type",
115
+ "appsview.LoadError": "Failed to load apps: {{message}}",
116
+ "appsview.Loading": "Loading...",
117
+ "appsview.NetworkError": "network error",
118
+ "appsview.NoAppsAvailable": "No apps available",
119
+ "appsview.NoAppsMatchSearch": "No apps match this search",
120
+ "appsview.NoDescriptionAvailable": "No description available.",
121
+ "appsview.NoRunningApps": "No app runs are active right now.",
122
+ "appsview.NoRunningAppsHint": "Launch a game from the catalog and it will appear here as a reattachable run.",
123
+ "appsview.Open": "Open {{name}}",
124
+ "appsview.OpenedInDesktopWindow": "Opened In Desktop Window",
125
+ "appsview.OpenedInNewTab": "{{name}} opened in a new tab.",
126
+ "appsview.OpenInTab": "Open in Tab",
127
+ "appsview.OpenWindowFailed": "Could not open {{name}} in a window.",
128
+ "appsview.PopupBlocked": "Popup blocked. Allow popups and try again.",
129
+ "appsview.PopupBlockedOpen": "Popup blocked while opening {{name}}. Allow popups and try again.",
130
+ "appsview.Repository": "Repository",
131
+ "appsview.Results": "{{count}} results",
132
+ "appsview.ResumeSession": "Resume Session",
133
+ "appsview.RunAttention": "Attention needed",
134
+ "appsview.Running": "Running",
135
+ "appsview.RunningNow": "Running now",
136
+ "appsview.Sandbox": "Sandbox",
137
+ "appsview.Search": "Search apps",
138
+ "appsview.SearchPlaceholder": "Search by name or description",
139
+ "appsview.StopFailed": "Stop Failed",
140
+ "appsview.Stopped": "Stopped",
141
+ "appsview.URL": "URL",
142
+ "appsview.Viewer": "Viewer",
143
+ "appwindow.LaunchedNoViewer": "This app launched without a viewer URL. Open it from the apps catalog.",
144
+ "aria.advancedNavigation": "Advanced navigation",
145
+ "aria.agentVoiceOff": "Agent voice off",
146
+ "aria.agentVoiceOn": "Agent voice on",
147
+ "aria.attachImage": "Attach image",
148
+ "aria.breadcrumb": "Breadcrumb",
149
+ "aria.chatMessage": "Chat message",
150
+ "aria.chatWorkspace": "Chat workspace",
151
+ "aria.closeConsole": "Close console",
152
+ "aria.closeConsolePanel": "Close console panel",
153
+ "aria.closeNavMenu": "Close navigation menu",
154
+ "aria.closePanel": "Close panel",
155
+ "aria.databaseViews": "Database views",
156
+ "aria.deleteMessage": "Delete message",
157
+ "aria.dragOverlay": "Drag overlay",
158
+ "aria.editMessage": "Edit message",
159
+ "aria.expandChatsPanel": "Expand chats panel",
160
+ "aria.knowledgeUpload": "Knowledge upload controls",
161
+ "aria.navMenu": "Navigation menu",
162
+ "aria.openChatsPanel": "Open chats panel",
163
+ "aria.openNavMenu": "Open navigation menu",
164
+ "aria.playMessage": "Play message",
165
+ "aria.reconnecting": "Reconnecting",
166
+ "aria.searchLogs": "Search logs",
167
+ "aria.switchShellView": "Switch shell view",
168
+ "aria.toggleTheme": "Toggle theme",
169
+ "aria.upload": "Upload",
170
+ "automations.chat.assistantLabel": "Automations Assistant",
171
+ "automations.chat.collapse": "Collapse assistant",
172
+ "automations.chat.errorGeneric": "Something went wrong. Please try again.",
173
+ "automations.chat.expand": "Expand assistant",
174
+ "automations.chat.placeholder": "Ask me to build a workflow. e.g. \"Send me a Slack message every morning at 9am with today's calendar.\"",
175
+ "automations.chat.roleUser": "You",
176
+ "automations.collapse": "Collapse automations",
177
+ "automations.coordinatorDescriptionPlaceholder": "What should the coordinator do...",
178
+ "automations.coordinatorNamePlaceholder": "Coordinator automation name...",
179
+ "automations.createCoordinator": "Create coordinator",
180
+ "automations.createTask": "Create Task",
181
+ "automations.createTaskOrWorkflow": "Create task or workflow",
182
+ "automations.editCoordinator": "Edit coordinator",
183
+ "automations.editTask": "Edit Task",
184
+ "automations.expand": "Expand automations",
185
+ "automations.filter.coordinator": "Coordinator",
186
+ "automations.filter.scheduled": "Scheduled",
187
+ "automations.filterTabsLabel": "Filter automations",
188
+ "automations.loadFailed": "Failed to load automations.",
189
+ "automations.n8n.activate": "Activate",
190
+ "automations.n8n.bannerCloud": "Cloud automations connected",
191
+ "automations.n8n.bannerDisabled": "Sign in to Eliza Cloud or enable local automations in Settings",
192
+ "automations.n8n.bannerLocalError": "Local automations failed",
193
+ "automations.n8n.bannerLocalReady": "Local automations running",
194
+ "automations.n8n.bannerLocalStarting": "Starting local automations...",
195
+ "automations.n8n.cloudDegradedBody": "Eliza Cloud is unreachable right now. Workflows may be unavailable.",
196
+ "automations.n8n.cloudDegradedHeading": "Cloud connection issue",
197
+ "automations.n8n.ctaBodyDesktop": "Sign in to Eliza Cloud to sync workflows across devices, or run a local automation engine.",
198
+ "automations.n8n.ctaBodyMobile": "Workflows require an Eliza Cloud account on mobile.",
199
+ "automations.n8n.ctaEnableLocal": "Enable local automations",
200
+ "automations.n8n.ctaHeadingDesktop": "Get started with Workflows",
201
+ "automations.n8n.ctaHeadingMobile": "Workflows require Eliza Cloud",
202
+ "automations.n8n.dangerZone": "Danger zone",
203
+ "automations.n8n.deactivate": "Deactivate",
204
+ "automations.n8n.deleteConfirmMessage": "Permanently delete this workflow. This cannot be undone.",
205
+ "automations.n8n.deleteConfirmWorkflow": "Delete \"{{name}}\"? This cannot be undone.",
206
+ "automations.n8n.deleteFailed": "Failed to delete workflow.",
207
+ "automations.n8n.deleteWorkflow": "Delete workflow",
208
+ "automations.n8n.detailEmptyBody": "Select a workflow from the sidebar to view its details, or switch to the dashboard to create a new one.",
209
+ "automations.n8n.detailEmptyHeading": "No workflow selected",
210
+ "automations.n8n.errorDeleteWorkflow": "Failed to delete workflow: {{message}}",
211
+ "automations.n8n.errorLoadStatus": "Failed to load n8n status: {{message}}",
212
+ "automations.n8n.errorLoadWorkflows": "Failed to load workflows: {{message}}",
213
+ "automations.n8n.errorStartSidecar": "Failed to start local n8n: {{message}}",
214
+ "automations.n8n.errorUpdateWorkflow": "Failed to update workflow: {{message}}",
215
+ "automations.n8n.newWorkflow": "New workflow",
216
+ "automations.n8n.nodeCount": "{{count}} nodes",
217
+ "automations.n8n.noWorkflowsHint": "Ask the assistant to build one for you.",
218
+ "automations.n8n.noWorkflowsTitle": "No automations yet",
219
+ "automations.n8n.pillAriaCloudDegraded": "Cloud service issue detected",
220
+ "automations.n8n.pillAriaCloudHealthy": "Cloud service healthy",
221
+ "automations.n8n.pillAriaLocalReady": "Local service ready",
222
+ "automations.n8n.pillAriaLocalStarting": "Local service starting",
223
+ "automations.n8n.pillCloudDegraded": "Cloud (issue)",
224
+ "automations.n8n.pillCloudHealthy": "Cloud (Eliza)",
225
+ "automations.n8n.pillLocalReady": "Local (this device)",
226
+ "automations.n8n.pillLocalStarting": "Local (starting…)",
227
+ "automations.n8n.startFailed": "Failed to start local automations.",
228
+ "automations.n8n.updateStateFailed": "Failed to update workflow state.",
229
+ "automations.n8n.workflowListLabel": "Workflow list",
230
+ "automations.nameRequired": "Name is required.",
231
+ "automations.newCoordinator": "New coordinator",
232
+ "automations.newSchedule": "New schedule",
233
+ "automations.newTask": "New Task",
234
+ "automations.newTaskButton": "+ New task",
235
+ "automations.newTextTask": "New Text Task",
236
+ "automations.newTriggerButton": "+ New trigger",
237
+ "automations.newWorkflowCTA": "+ New Workflow",
238
+ "automations.newWorkflowDisabled": "Enable Automations in Settings to create workflows",
239
+ "automations.nodeCatalog": "Node Catalog",
240
+ "automations.openInWorkflowsTab": "Open in Workflows tab",
241
+ "automations.runsWorkflow": "Runs workflow: {{name}}",
242
+ "automations.saveCoordinator": "Save coordinator",
243
+ "automations.saveTask": "Save Task",
244
+ "automations.searchPlaceholder": "Search automations",
245
+ "automations.taskCreateFailed": "Failed to create task.",
246
+ "automations.taskDeleteFailed": "Failed to delete task.",
247
+ "automations.taskDeleteMessage": "Are you sure you want to delete this task?",
248
+ "automations.taskDeleteTitle": "Delete task",
249
+ "automations.taskLabel": "Task",
250
+ "automations.taskName": "Task name...",
251
+ "automations.taskUpdateFailed": "Failed to update task.",
252
+ "automations.templateCustom.desc": "Describe your own workflow in chat.",
253
+ "automations.templateCustom.title": "Custom",
254
+ "automations.templates.calendarSlack.desc": "Post your day's agenda to Slack each morning.",
255
+ "automations.templates.calendarSlack.prompt": "Every weekday at 8am, read today's events from my Google Calendar and post a formatted agenda to my #daily-standup channel in Slack.",
256
+ "automations.templates.calendarSlack.title": "Calendar to Slack",
257
+ "automations.templates.emailDigest.desc": "Summarize your inbox each morning and post to Slack.",
258
+ "automations.templates.emailDigest.prompt": "Every weekday at 9am, read my Gmail inbox from the last 24 hours, summarize the important messages, and post the summary to my #daily channel in Slack.",
259
+ "automations.templates.emailDigest.title": "Daily Email Digest",
260
+ "automations.templates.emailNotion.desc": "Turn tagged emails into Notion pages.",
261
+ "automations.templates.emailNotion.prompt": "When I receive a Gmail message labeled 'Task', extract the key details and create a new page in my Notion 'Inbox' database with the subject as the title and body as content.",
262
+ "automations.templates.emailNotion.title": "Email → Notion",
263
+ "automations.templates.githubTriage.desc": "Auto-classify and label new GitHub issues.",
264
+ "automations.templates.githubTriage.prompt": "When a new issue is opened on my GitHub repo, classify it (bug/feature/question/docs), add the matching label, and post a welcoming comment.",
265
+ "automations.templates.githubTriage.title": "GitHub Issue Triage",
266
+ "automations.templates.rssSummary.desc": "Poll an RSS feed and summarize new articles by email.",
267
+ "automations.templates.rssSummary.prompt": "Check my RSS feed https://example.com/feed.xml every hour. For each new article, generate a 3-sentence summary and email it to me.",
268
+ "automations.templates.rssSummary.title": "RSS to Summary",
269
+ "automations.templates.slackDiscord.desc": "Cross-post messages between Slack and Discord channels.",
270
+ "automations.templates.slackDiscord.prompt": "Whenever a message is posted in the #announcements channel in Slack, forward it to the #general channel in Discord.",
271
+ "automations.templates.slackDiscord.title": "Slack ↔ Discord Bridge",
272
+ "automations.templatesModalSubtitle": "Pick a workflow to customize, or start blank.",
273
+ "automations.templatesModalTitle": "Start with a template",
274
+ "automations.templateUseButton": "Use template",
275
+ "automations.whatShouldThisTaskDo": "What should this task do?",
276
+ "automations.workflow.draftTitle": "Draft Title",
277
+ "automations.workflow.workflowKicker": "Workflow Kicker",
278
+ "automations.zeroState.browseTemplates": "Browse templates →",
279
+ "automations.zeroState.subtitle": "I can build workflows for you, run prompts on a schedule, or keep a checklist of tasks.",
280
+ "automations.zeroState.title": "What would you like your agent to do?",
281
+ "avatarselector.dropVrm": "drop .vrm",
282
+ "avatarselector.GitLfsPointer": "This .vrm is a Git LFS pointer, not the real model file. Download the actual VRM file first.",
283
+ "avatarselector.InvalidAvatarFile": "Invalid avatar file",
284
+ "avatarselector.InvalidVrmBinary": "Invalid VRM file. Pick a real .vrm binary.",
285
+ "avatarselector.ReadSelectedFile": "Couldn't read that file. Try a different .vrm.",
286
+ "avatarselector.SelectVrmFile": "Please pick a .vrm file.",
287
+ "avatarselector.UploadCustomVrm": "Upload custom .vrm (click or drag)",
288
+ "babylon.tellTheAgentWhatToDoWhatToAvoidOrWhatToExplain": "Tell the agent what to do, what to avoid, or what to explain.",
289
+ "browserworkspace.ActionFailed": "Browser action failed.",
290
+ "browserworkspace.AddressPlaceholder": "Enter a URL",
291
+ "browserworkspace.AgentActive": "Agent is on this tab",
292
+ "browserworkspace.AgentTabs": "Agent Tabs",
293
+ "browserworkspace.AppTabs": "App Tabs",
294
+ "browserworkspace.Background": "Background",
295
+ "browserworkspace.BrowserBridgeAvailable": "Browser Bridge Available",
296
+ "browserworkspace.BrowserBridgeCheckingTitle": "Checking your browser connection",
297
+ "browserworkspace.BrowserBridgeChromeReady": "Chrome is ready. Click Load unpacked and choose {{path}}.",
298
+ "browserworkspace.BrowserBridgeConnected": "Browser Bridge Connected",
299
+ "browserworkspace.BrowserBridgeConnectedDescription": "Agent Browser Bridge is active in {{browser}} / {{profile}}. Use that real browser profile for Discord, Google, and other sites that do not belong inside an embed.",
300
+ "browserworkspace.BrowserBridgeConnectedTitle": "Your browser is connected",
301
+ "browserworkspace.BrowserBridgeDescription": "Browser Bridge Description",
302
+ "browserworkspace.BrowserBridgeFolderReady": "The Agent Browser Bridge folder is ready at {{path}}. Open chrome://extensions, click Load unpacked, and choose that folder.",
303
+ "browserworkspace.BrowserBridgeFolderRevealed": "Revealed the Agent Browser Bridge folder at {{path}}.",
304
+ "browserworkspace.BrowserBridgeInstallDescription": "Install the Agent Browser Bridge extension in this Chrome profile so the agent can see and control your real tabs instead of falling back to embedded browsing.",
305
+ "browserworkspace.BrowserBridgeNotConnected": "Browser Bridge Not Connected",
306
+ "browserworkspace.BrowserBridgeOpenedChromeExtensions": "Opened Chrome extensions. Click Load unpacked and choose the Agent Browser Bridge folder.",
307
+ "browserworkspace.BrowserBridgeRefreshSuccess": "Refreshed Agent Browser Bridge connection status.",
308
+ "browserworkspace.BrowserBridgeTitle": "Agent Browser Bridge",
309
+ "browserworkspace.BrowserBridgeUseRealBrowser": "Use your real browser here",
310
+ "browserworkspace.ChatPlaceholderConnected": "Chat Placeholder Connected",
311
+ "browserworkspace.ChatPlaceholderInstallBridge": "Chat Placeholder Install Bridge",
312
+ "browserworkspace.Checking": "Checking",
313
+ "browserworkspace.ChromeBuild": "Chrome Build",
314
+ "browserworkspace.CloseTab": "Close tab",
315
+ "browserworkspace.CloudSession": "Cloud browser session",
316
+ "browserworkspace.CollapseChat": "Collapse chat",
317
+ "browserworkspace.CollapseTabs": "Collapse Tabs",
318
+ "browserworkspace.DesktopBridge": "Desktop bridge",
319
+ "browserworkspace.DesktopSession": "Desktop browser session",
320
+ "browserworkspace.EmptyDescription": "Open a page here, or let the agent create tabs through the {{appName}} browser workspace plugin.",
321
+ "browserworkspace.EmptySessionDescription": "Open a page to start a real browser session. The preview here follows the session instead of embedding the target site directly.",
322
+ "browserworkspace.EmptyTitle": "No browser tabs yet",
323
+ "browserworkspace.EnterUrlToNavigate": "Enter a URL to navigate.",
324
+ "browserworkspace.EnterUrlToOpen": "Enter a URL to open.",
325
+ "browserworkspace.ExpandChat": "Expand chat",
326
+ "browserworkspace.ExpandTabs": "Expand Tabs",
327
+ "browserworkspace.FrameBlockedDescription": "Frame Blocked Description",
328
+ "browserworkspace.FrameBlockedTitle": "Frame Blocked Title",
329
+ "browserworkspace.Go": "Go",
330
+ "browserworkspace.InstallBrowserBridge": "Install Agent Browser Bridge",
331
+ "browserworkspace.InstallBrowserBridgeFailed": "Failed to prepare the Agent Browser Bridge extension.",
332
+ "browserworkspace.InternalSessionDescription": "Internal Session Description",
333
+ "browserworkspace.InternalTabUrlManaged": "Internal Tab Url Managed",
334
+ "browserworkspace.InvalidUrl": "Enter a valid http or https URL.",
335
+ "browserworkspace.LastSeen": "Last seen {{time}}",
336
+ "browserworkspace.LoadFailed": "Failed to load browser workspace.",
337
+ "browserworkspace.Loading": "Loading browser workspace",
338
+ "browserworkspace.NewTab": "New tab",
339
+ "browserworkspace.NoAgentTabs": "No Agent Tabs",
340
+ "browserworkspace.NoAppTabs": "No App Tabs",
341
+ "browserworkspace.NoTabsOpen": "No tabs open yet.",
342
+ "browserworkspace.NoUserTabs": "No User Tabs",
343
+ "browserworkspace.OpenBlankTabFailed": "Failed to open a blank browser tab.",
344
+ "browserworkspace.OpenBlankTabHere": "Open blank tab here",
345
+ "browserworkspace.OpenBrowserBridgeFolder": "Open Browser Bridge Folder",
346
+ "browserworkspace.OpenBrowserBridgeFolderFailed": "Failed to reveal the Agent Browser Bridge extension folder.",
347
+ "browserworkspace.OpenBrowserBridgeManagerFailed": "Failed to open Chrome extensions.",
348
+ "browserworkspace.OpenChromeExtensions": "Open Chrome extensions",
349
+ "browserworkspace.OpenExtensionFolder": "Open extension folder",
350
+ "browserworkspace.OpenExternal": "Open external",
351
+ "browserworkspace.OpenInitialBrowseFailed": "Failed to open the requested browser tab.",
352
+ "browserworkspace.OpenInitialHomeFailed": "Open Initial Home Failed",
353
+ "browserworkspace.OpenLiveSession": "Open live session",
354
+ "browserworkspace.OpenTabs": "Open tabs",
355
+ "browserworkspace.RealSessionDescription": "This is a real browser session, not a raw iframe embed. Use chat or browser actions to navigate and interact with sites like Google and Discord.",
356
+ "browserworkspace.RefreshBrowserBridge": "Refresh Browser Bridge",
357
+ "browserworkspace.RefreshBrowserBridgeFailed": "Failed to refresh Agent Browser Bridge status.",
358
+ "browserworkspace.SessionPreview": "Browser session preview",
359
+ "browserworkspace.SessionPreviewPending": "Waiting for browser session preview",
360
+ "browserworkspace.SessionPreviewPendingDescription": "The page is running in a real browser session. A fresh preview will appear here as the session updates.",
361
+ "browserworkspace.SidebarLabel": "Browser workspace",
362
+ "browserworkspace.SnapshotFailed": "Failed to load browser session preview.",
363
+ "browserworkspace.Tabs": "Tabs",
364
+ "browserworkspace.UnsupportedProtocol": "Only http and https URLs are supported.",
365
+ "browserworkspace.UserTabs": "User Tabs",
366
+ "browserworkspace.Visible": "Visible",
367
+ "browserworkspace.WebWorkspace": "Web iframe workspace",
368
+ "bugreportmodal.22X": "22.x",
369
+ "bugreportmodal.ActualBehavior": "Actual Behavior",
370
+ "bugreportmodal.AddLogs": "Add logs",
371
+ "bugreportmodal.AnthropicOpenAI": "Anthropic / OpenAI / Ollama",
372
+ "bugreportmodal.attachLogs": "Attach startup logs",
373
+ "bugreportmodal.attachSystemInfo": "Attach system info",
374
+ "bugreportmodal.BugReportSubmitted": "Bug Report Submitted",
375
+ "bugreportmodal.copied": "Copied!",
376
+ "bugreportmodal.copiedDiagnostics": "Diagnostics Copied!",
377
+ "bugreportmodal.copyAndOpenGitHub": "Copy & Open GitHub",
378
+ "bugreportmodal.copyDiagnostics": "Copy Diagnostics",
379
+ "bugreportmodal.DescribeTheActual": "Describe the actual result.",
380
+ "bugreportmodal.DescribeTheExpecte": "Describe the expected result.",
381
+ "bugreportmodal.DescribeTheIssueY": "Describe the issue you encountered.",
382
+ "bugreportmodal.DescriptionHint": "Describe what happened and why it was unexpected.",
383
+ "bugreportmodal.descriptionRequired": "Description is required.",
384
+ "bugreportmodal.DiagnosticsSharedSuccessfully": "Diagnostics were shared successfully.",
385
+ "bugreportmodal.Environment": "Environment",
386
+ "bugreportmodal.ExpectedBehavior": "Expected Behavior",
387
+ "bugreportmodal.HideLogs": "Hide logs",
388
+ "bugreportmodal.LogsHint": "Paste only the relevant errors, traces, or console output.",
389
+ "bugreportmodal.ModelProvider": "Model Provider",
390
+ "bugreportmodal.NodeVersion": "Node Version",
391
+ "bugreportmodal.openLogsFolder": "Open Logs Folder",
392
+ "bugreportmodal.Other": "Other",
393
+ "bugreportmodal.PasteRelevantError": "Paste relevant error output or logs",
394
+ "bugreportmodal.ReportABug": "Report a Bug",
395
+ "bugreportmodal.ReportCopiedToClipboard": "Report copied to clipboard.",
396
+ "bugreportmodal.ReproductionPrompt": "Help us reproduce the issue with concrete steps and environment details.",
397
+ "bugreportmodal.saveBundle": "Save Report Bundle",
398
+ "bugreportmodal.savingBundle": "Saving Bundle...",
399
+ "bugreportmodal.Select": "Select...",
400
+ "bugreportmodal.StepsHint": "Include the shortest reliable path that reproduces the bug.",
401
+ "bugreportmodal.stepsPlaceholder": "1. Go to...\n2. Click on...\n3. See error...",
402
+ "bugreportmodal.StepsToReproduce": "Steps to Reproduce",
403
+ "bugreportmodal.submitting": "Submitting...",
404
+ "bugreportmodal.Times": "X",
405
+ "bugreportmodal.YourBugReportHas": "Your bug report has been submitted successfully.",
406
+ "character.characterHubSections": "Character hub sections",
407
+ "character.characterOverview": "Character overview",
408
+ "character.domainFilter": "Domain filter",
409
+ "character.getStartedWithYourCharacter": "Get started with your character",
410
+ "character.outcomeFilter": "Outcome filter",
411
+ "character.refreshLearnedSkills": "Refresh learned skills",
412
+ "character.reviewFilter": "Review filter",
413
+ "character.searchLearningEvidenceTags": "Search learning, evidence, tags...",
414
+ "character.sortExperiences": "Sort experiences",
415
+ "character.tagFilter": "Tag filter",
416
+ "charactereditor.AboutMe": "About Me",
417
+ "charactereditor.AboutMePlaceholder": "Describe who your agent is...",
418
+ "charactereditor.AddConversation": "Add Conversation",
419
+ "charactereditor.AddInline": "+ add",
420
+ "charactereditor.AddPost": "Add Post",
421
+ "charactereditor.AddStyleRule": "Add Style Rule",
422
+ "charactereditor.AddStyleRuleShort": "Add Style Rule Short",
423
+ "charactereditor.AddTurn": "Add Turn",
424
+ "charactereditor.ChatExamples": "Chat Examples",
425
+ "charactereditor.ChatExamplesHelp": "Chat Examples Help",
426
+ "charactereditor.ConversationCount": "Conversation Count",
427
+ "charactereditor.ConversationN": "Conversation {n}",
428
+ "charactereditor.CustomizeBtn": "Customize",
429
+ "charactereditor.DontSave": "Dont Save",
430
+ "charactereditor.DragToReorder": "Drag To Reorder",
431
+ "charactereditor.DuplicatePost": "Duplicate Post",
432
+ "charactereditor.DuplicateRule": "Duplicate Rule",
433
+ "charactereditor.ExportJSON": "Export JSON",
434
+ "charactereditor.Generate": "generate",
435
+ "charactereditor.Generating": "generating...",
436
+ "charactereditor.LoadingCharacterData": "Loading character data...",
437
+ "charactereditor.NoChatExamples": "No chat examples yet.",
438
+ "charactereditor.NoPostExamples": "No post examples yet.",
439
+ "charactereditor.PageContextDesc.examples": "Example conversations and posts the model can imitate.",
440
+ "charactereditor.PageContextDesc.identity": "Name, voice, bio, and system prompt — who the agent is and how it should behave.",
441
+ "charactereditor.PageContextDesc.style": "Short rules that steer tone and wording in chat and posts.",
442
+ "charactereditor.PageContextTitle.examples": "Sample chats & posts",
443
+ "charactereditor.PageContextTitle.identity": "Profile & directions",
444
+ "charactereditor.PageContextTitle.style": "Speaking style",
445
+ "charactereditor.PossibleDuplicates": "Possible Duplicates",
446
+ "charactereditor.PostCount": "Post Count",
447
+ "charactereditor.PostExample": "Post Example",
448
+ "charactereditor.PostExamples": "Post Examples",
449
+ "charactereditor.PostExamplesHelp": "Post Examples Help",
450
+ "charactereditor.Regenerate": "regenerate",
451
+ "charactereditor.RemoveExample": "Remove Example",
452
+ "charactereditor.RemovePost": "Remove Post",
453
+ "charactereditor.ResetConfirmBody": "Reset Confirm Body",
454
+ "charactereditor.ResetToDefaults": "Reset to Defaults",
455
+ "charactereditor.Saving": "saving...",
456
+ "charactereditor.SelectAVoice": "Select a voice",
457
+ "charactereditor.SelectBtn": "Select",
458
+ "charactereditor.StyleRulesHeader": "Style Rules Header",
459
+ "charactereditor.StyleRulesHelp": "Style Rules Help",
460
+ "charactereditor.SwitchCharacterPrompt": "Switch Character Prompt",
461
+ "charactereditor.SwitchSectionPrompt": "Switch Section Prompt",
462
+ "charactereditor.SystemPrompt": "Things I Should Always Remember",
463
+ "charactereditor.SystemPromptPlaceholder": "Write in first person...",
464
+ "charactereditor.TabbedEditorGroupLabel": "Character editor — tabbed sections",
465
+ "charactereditor.TabExamples": "Examples",
466
+ "charactereditor.TabPersonality": "Personality",
467
+ "charactereditor.TabStyles": "Styles",
468
+ "charactereditor.UnsavedChangesBody": "Unsaved Changes Body",
469
+ "charactereditor.UnsavedChangesTitle": "Unsaved Changes Title",
470
+ "characterroster.LoadingPresets": "Loading character presets...",
471
+ "chat.agentStarting": "Agent starting...",
472
+ "chat.agentVoiceOff": "Agent Voice Off",
473
+ "chat.agentVoiceOn": "Agent Voice On",
474
+ "chat.cached": "cached",
475
+ "chat.collapseWidgets": "Collapse widgets",
476
+ "chat.conversations": "Conversations",
477
+ "chat.createTask": "Create coding task",
478
+ "chat.createTaskTitle": "Create Coding Task",
479
+ "chat.editWidgets": "Edit widgets",
480
+ "chat.expandWidgets": "Expand widgets",
481
+ "chat.inferenceCloudNotConnected": "Eliza Cloud is enabled or your last reply used a cloud-hosted model, but {{appName}} is not connected. Sign in or add an API key under Settings → Cloud.",
482
+ "chat.inferenceStreamInterrupted": "The last reply did not finish streaming (connection or model error). Check logs or model settings, or retry.",
483
+ "chat.listening": "Listening...",
484
+ "chat.messageAriaLabelAgent": "Agent message: {{preview}}",
485
+ "chat.messageAriaLabelSystem": "System: {{preview}}",
486
+ "chat.messageAriaLabelUser": "Your message: {{preview}}",
487
+ "chat.micTitleIdleEnhanced": "Voice input — assistant replies use neural TTS (ElevenLabs). Change under Settings → Voice.",
488
+ "chat.micTitleIdleStandard": "Voice input — assistant uses device speech. Neural TTS and billing: Settings → Voice.",
489
+ "chat.newMessagesChip": "New messages ↓",
490
+ "chat.releaseToSend": "Release to send...",
491
+ "chat.removeImage": "Remove image {{name}}",
492
+ "chat.setupProviderToChat": "Setup Provider To Chat",
493
+ "chat.stopGeneration": "Stop generation",
494
+ "chat.stopListening": "Stop listening",
495
+ "chat.stopSpeaking": "Stop speaking",
496
+ "chat.taskDescriptionPlaceholder": "Describe what to build...",
497
+ "chat.toolCallChip.ACTIVATE_N8N_WORKFLOW": "Activating workflow…",
498
+ "chat.toolCallChip.buildingWorkflow": "Building workflow…",
499
+ "chat.toolCallChip.DEACTIVATE_N8N_WORKFLOW": "Deactivating workflow…",
500
+ "chat.toolCallChip.default": "Working…",
501
+ "chat.toolCallChip.DELETE_N8N_WORKFLOW": "Deleting workflow…",
502
+ "chat.uncached": "uncached",
503
+ "chat.voiceInput": "Voice input",
504
+ "chatmessage.ResponseInterrupte": "(Response interrupted)",
505
+ "chatmessage.SaveAndResend": "Save and resend",
506
+ "chatsidebar.launchApp": "Launch {{name}}",
507
+ "chatsidebar.OpenView": "Open View",
508
+ "chatview.msEndVoiceStart": "ms · end→voice start:",
509
+ "chatview.msFirst": "ms\n · first sentence:",
510
+ "chatview.RemoveImage": "Remove image",
511
+ "chatview.SilenceEndFirstTo": "Silence end→first token:",
512
+ "cloudonboarding.ClickToOpenLogin": "Open login page",
513
+ "cloudonboarding.ConnectButton": "Connect to Eliza Cloud",
514
+ "cloudonboarding.ConnectedSetupAgent": "Connected! Setting up your agent...",
515
+ "cloudonboarding.ConnectToElizaCloud": "Sign in to get started",
516
+ "cloudonboarding.WaitingForLogin": "Waiting for login...",
517
+ "cloudsourcecontrols.Offline": "Offline",
518
+ "codingagentcontrolchip.ActiveSessions": "{{count}} active coding session(s)",
519
+ "codingagentcontrolchip.StopAll": "Stop all",
520
+ "codingagentcontrolchip.StopAllTitle": "Stop all coding agent sessions",
521
+ "codingagentsettingssection.AgentSelectionStra": "Agent Selection Strategy",
522
+ "codingagentsettingssection.AgentUsedWhenNoE": "Agent used when no explicit type is specified in a spawn request.",
523
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyFixed": "Always use the selected default agent type when none is specified.",
524
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyRanked": "Automatically select the best-performing installed agent based on success rate and stall metrics.",
525
+ "codingagentsettingssection.AnthropicApiKeyDesc": "For Claude Code and Aider (Anthropic provider).",
526
+ "codingagentsettingssection.AppliesToAllNewlySpawned": " — applies to all newly spawned agents unless overridden per-spawn.",
527
+ "codingagentsettingssection.AuthenticateAgent": "Authenticate {{agent}}",
528
+ "codingagentsettingssection.AuthenticatingAgent": "Authenticating {{agent}}...",
529
+ "codingagentsettingssection.AutoSaveFailed": "Failed to save settings: {{error}}",
530
+ "codingagentsettingssection.Availability": "Availability:",
531
+ "codingagentsettingssection.CloudPaired": "Using your Eliza Cloud account for coding agent LLM calls.",
532
+ "codingagentsettingssection.CloudUnpaired": "No Eliza Cloud account connected. Pair your account in the Cloud settings section first.",
533
+ "codingagentsettingssection.CodingDirectory": "Coding Directory",
534
+ "codingagentsettingssection.CodingDirectoryDesc": "Where task-agent scratch workspaces are created.",
535
+ "codingagentsettingssection.DefaultAgentType": "Default Agent Type",
536
+ "codingagentsettingssection.DefaultPermissionL": "Default Permission Level",
537
+ "codingagentsettingssection.EnterDeviceCodePrefix": "Enter code",
538
+ "codingagentsettingssection.EnterDeviceCodeSuffix": "at the sign-in page.",
539
+ "codingagentsettingssection.FastModel": "Fast Model",
540
+ "codingagentsettingssection.Fixed": "Fixed",
541
+ "codingagentsettingssection.GoogleApiKeyDesc": "For Gemini CLI and Aider (Google provider).",
542
+ "codingagentsettingssection.Installed": "Installed",
543
+ "codingagentsettingssection.InstallWith": "Install with",
544
+ "codingagentsettingssection.LlmProvider": "LLM Provider",
545
+ "codingagentsettingssection.LlmProviderApiKeys": "API Keys",
546
+ "codingagentsettingssection.LlmProviderDescApiKeys": "Provide your own API keys for each provider (Anthropic, OpenAI, Google).",
547
+ "codingagentsettingssection.LlmProviderDescCloud": "Route all agent LLM calls through Eliza Cloud. Gemini CLI is not supported.",
548
+ "codingagentsettingssection.LlmProviderDescSubscription": "Use each CLI's built-in login (Claude Code, Codex, and Gemini subscriptions).",
549
+ "codingagentsettingssection.LlmProviderSubscription": "CLI Subscription",
550
+ "codingagentsettingssection.LoadingCodingAgent": "Loading task-agent configuration...",
551
+ "codingagentsettingssection.ModelsFetched": "Models fetched from provider API. These are preferences — the CLI may override based on availability.",
552
+ "codingagentsettingssection.NoSupportedCLIs": "No supported task-agent CLIs detected. Install at least one of: Claude Code, Gemini CLI, Codex, Aider, or Pi.",
553
+ "codingagentsettingssection.OpenaiApiKeyDesc": "For Codex and Aider (OpenAI provider).",
554
+ "codingagentsettingssection.OpenSignInPage": "Open sign-in page →",
555
+ "codingagentsettingssection.PowerfulModel": "Powerful Model",
556
+ "codingagentsettingssection.PresetAutonomous": "Autonomous",
557
+ "codingagentsettingssection.PresetAutonomousDesc": "All tools auto-approved",
558
+ "codingagentsettingssection.PresetPermissive": "Permissive",
559
+ "codingagentsettingssection.PresetPermissiveDesc": "File ops auto-approved, asks for shell",
560
+ "codingagentsettingssection.PresetReadOnly": "Read Only",
561
+ "codingagentsettingssection.PresetReadOnlyDesc": "Read-only tools only",
562
+ "codingagentsettingssection.PresetStandardDesc": "Read + write, asks for shell/network",
563
+ "codingagentsettingssection.RankedAutoSelect": "Ranked (auto-select best performer)",
564
+ "codingagentsettingssection.RetentionAlwaysKeep": "Always keep",
565
+ "codingagentsettingssection.RetentionAskMe": "Ask me",
566
+ "codingagentsettingssection.RetentionEphemeral": "Ephemeral",
567
+ "codingagentsettingssection.ScratchRetention": "Scratch Retention",
568
+ "codingagentsettingssection.ScratchRetentionDesc": "What happens to scratch workspace code when a task finishes.",
569
+ "codingagentsettingssection.UsingFallback": "Using fallback model list — configure your API key to see all available models.",
570
+ "codingagenttaskspanel.acceptance": "Acceptance",
571
+ "codingagenttaskspanel.artifacts": "Artifacts",
572
+ "codingagenttaskspanel.artifactsCount": "{{count}} artifacts",
573
+ "codingagenttaskspanel.changedFiles": "{{count}} changed files: {{preview}}",
574
+ "codingagenttaskspanel.changedFilesMore": "{{count}} changed files: {{preview}}, +{{remaining}} more",
575
+ "codingagenttaskspanel.coordinatorDecisions": "Coordinator Decisions",
576
+ "codingagenttaskspanel.decisionsCount": "{{count}} decisions",
577
+ "codingagenttaskspanel.deleteFailed": "Failed to delete task: {{error}}",
578
+ "codingagenttaskspanel.inline": "inline",
579
+ "codingagenttaskspanel.kind.coding": "coding",
580
+ "codingagenttaskspanel.kind.unknown": "unknown",
581
+ "codingagenttaskspanel.loadingTasks": "Loading tasks…",
582
+ "codingagenttaskspanel.loadTaskDetailFailed": "Failed to load task detail: {{error}}",
583
+ "codingagenttaskspanel.loadThreadsFailed": "Failed to load task threads: {{error}}",
584
+ "codingagenttaskspanel.messages": "Messages",
585
+ "codingagenttaskspanel.noSessionsRecorded": "No sessions recorded.",
586
+ "codingagenttaskspanel.noWorkRunning": "No orchestrator work running",
587
+ "codingagenttaskspanel.noWorkspace": "No workspace",
588
+ "codingagenttaskspanel.pendingUserInput": "Pending User Input",
589
+ "codingagenttaskspanel.prompt": "prompt",
590
+ "codingagenttaskspanel.reopen": "Reopen",
591
+ "codingagenttaskspanel.reopenFailed": "Failed to reopen task: {{error}}",
592
+ "codingagenttaskspanel.searchPlaceholder": "Search tasks",
593
+ "codingagenttaskspanel.sessions": "Sessions",
594
+ "codingagenttaskspanel.sessionsCount": "{{count}} sessions",
595
+ "codingagenttaskspanel.status.active": "active",
596
+ "codingagenttaskspanel.status.archived": "archived",
597
+ "codingagenttaskspanel.status.blocked": "blocked",
598
+ "codingagenttaskspanel.status.done": "done",
599
+ "codingagenttaskspanel.status.interrupted": "interrupted",
600
+ "codingagenttaskspanel.status.open": "open",
601
+ "codingagenttaskspanel.status.validating": "validating",
602
+ "codingagenttaskspanel.status.waitingOnUser": "waiting on user",
603
+ "codingagenttaskspanel.system": "system",
604
+ "codingagenttaskspanel.transcriptEntriesCount": "{{count}} transcript entries",
605
+ "codingagenttaskspanel.waitingForNextUserResponse": "Coordinator is waiting for the next user response.",
606
+ "commandpalette.Description": "Search commands and jump straight to actions.",
607
+ "commandpalette.NoCommandsFound": "No commands found",
608
+ "commandpalette.ResultsLabel": "Command results",
609
+ "commandpalette.SearchLabel": "Search commands",
610
+ "commandpalette.Title": "Command palette",
611
+ "commandpalette.TypeToSearchComma": "Type to search commands...",
612
+ "common.account": "Account",
613
+ "common.actions": "Actions",
614
+ "common.active": "Active",
615
+ "common.add": "Add",
616
+ "common.agent": "Agent",
617
+ "common.all": "All",
618
+ "common.anthropic": "Anthropic",
619
+ "common.audio": "Audio",
620
+ "common.available": "Available",
621
+ "common.back": "Back",
622
+ "common.balance": "Balance",
623
+ "common.calendar": "Calendar",
624
+ "common.cancel": "Cancel",
625
+ "common.capabilities": "Capabilities",
626
+ "common.chain": "Chain",
627
+ "common.channel": "Channel",
628
+ "common.clear": "Clear",
629
+ "common.close": "Close",
630
+ "common.cloud": "Cloud",
631
+ "common.collapse": "Collapse",
632
+ "common.completed": "Completed",
633
+ "common.configured": "configured",
634
+ "common.confirm": "Confirm",
635
+ "common.connect": "Connect",
636
+ "common.connected": "Connected",
637
+ "common.connecting": "Starting…",
638
+ "common.continue": "Continue",
639
+ "common.create": "Create",
640
+ "common.database": "Database",
641
+ "common.default": "Default",
642
+ "common.delete": "Delete",
643
+ "common.description": "Description",
644
+ "common.desktop": "Desktop",
645
+ "common.details": "Details",
646
+ "common.disable": "Disable",
647
+ "common.disabled": "Disabled",
648
+ "common.disconnect": "Disconnect",
649
+ "common.disconnecting": "Disconnecting…",
650
+ "common.discord": "Discord",
651
+ "common.dismiss": "Dismiss",
652
+ "common.done": "Done",
653
+ "common.duration": "Duration",
654
+ "common.edit": "Edit",
655
+ "common.elizaCloud": "Eliza Cloud",
656
+ "common.enable": "Enable",
657
+ "common.enabled": "Enabled",
658
+ "common.error": "Error",
659
+ "common.evaluators": "Evaluators",
660
+ "common.events": "Events",
661
+ "common.expand": "Expand",
662
+ "common.export": "Export",
663
+ "common.exporting": "Exporting...",
664
+ "common.failed": "failed",
665
+ "common.features": "Features",
666
+ "common.game": "Game",
667
+ "common.google": "Google",
668
+ "common.heartbeat": "Heartbeat",
669
+ "common.hide": "Hide",
670
+ "common.hosting": "Hosting",
671
+ "common.idle": "Idle",
672
+ "common.importing": "Importing...",
673
+ "common.inactive": "Inactive",
674
+ "common.inbox": "Inbox",
675
+ "common.install": "Install",
676
+ "common.installing": "Installing...",
677
+ "common.item": "item",
678
+ "common.label": "Label",
679
+ "common.launch": "Launch",
680
+ "common.launching": "Launching...",
681
+ "common.loading": "Loading",
682
+ "common.local": "Local",
683
+ "common.location": "Location",
684
+ "common.logs": "Logs",
685
+ "common.message": "Message",
686
+ "common.name": "Name",
687
+ "common.needsSetup": "Needs setup",
688
+ "common.new": "New",
689
+ "common.newChat": "New Chat",
690
+ "common.next": "Next",
691
+ "common.no": "No",
692
+ "common.nodes": "Nodes",
693
+ "common.notConnected": "Not connected",
694
+ "common.off": "OFF",
695
+ "common.offline": "offline",
696
+ "common.on": "ON",
697
+ "common.open": "Open",
698
+ "common.openai": "OpenAI",
699
+ "common.openApps": "Open apps",
700
+ "common.parameters": "Parameters",
701
+ "common.pause": "Pause",
702
+ "common.paused": "Paused",
703
+ "common.permissions": "Permissions",
704
+ "common.plugins": "Plugins",
705
+ "common.prev": "Prev",
706
+ "common.preview": "Preview",
707
+ "common.provider": "Provider",
708
+ "common.providers": "Providers",
709
+ "common.queued": "Queued",
710
+ "common.ready": "Ready",
711
+ "common.reconnect": "Reconnect",
712
+ "common.refresh": "Refresh",
713
+ "common.refreshing": "Refreshing...",
714
+ "common.reminders": "Reminders",
715
+ "common.remove": "Remove",
716
+ "common.reply": "Reply",
717
+ "common.reset": "Reset",
718
+ "common.restart": "Restart agent",
719
+ "common.restarting": "Restarting…",
720
+ "common.resume": "Resume",
721
+ "common.retry": "Retry",
722
+ "common.rows": "rows",
723
+ "common.running": "Running...",
724
+ "common.runtime": "Runtime",
725
+ "common.save": "Save",
726
+ "common.saved": "Saved",
727
+ "common.saving": "Saving...",
728
+ "common.schedule": "Schedule",
729
+ "common.search": "Search",
730
+ "common.searching": "Searching...",
731
+ "common.send": "Send",
732
+ "common.server": "Server",
733
+ "common.skip": "Skip",
734
+ "common.source": "Source:",
735
+ "common.status": "Status",
736
+ "common.stop": "Stop",
737
+ "common.submit": "Submit",
738
+ "common.submitting": "Submitting…",
739
+ "common.testing": "Testing...",
740
+ "common.today": "Today",
741
+ "common.tokens": "Tokens",
742
+ "common.trajectories": "Trajectories",
743
+ "common.type": "Type",
744
+ "common.unavailable": "Unavailable",
745
+ "common.uninstall": "Uninstall",
746
+ "common.unknown": "Unknown",
747
+ "common.updating": "Updating...",
748
+ "common.user": "User",
749
+ "common.validating": "Validating…",
750
+ "common.value": "Value",
751
+ "common.vectors": "Vectors",
752
+ "common.version": "Version",
753
+ "common.video": "Video",
754
+ "common.voice": "Voice",
755
+ "common.workflows": "Workflows",
756
+ "common.yes": "Yes",
757
+ "companion.avatarPreviewAlt": "Avatar preview",
758
+ "companion.exitToApps": "Exit to Apps",
759
+ "computeruseapprovaloverlay.Approve": "Approve",
760
+ "computeruseapprovaloverlay.ApprovedNotice": "Approved Notice",
761
+ "computeruseapprovaloverlay.Body": "Body",
762
+ "computeruseapprovaloverlay.Command": "Command",
763
+ "computeruseapprovaloverlay.DenyReason": "Deny Reason",
764
+ "computeruseapprovaloverlay.DenyReasonPlaceholder": "Deny Reason Placeholder",
765
+ "computeruseapprovaloverlay.ModeLine": "Mode Line",
766
+ "computeruseapprovaloverlay.PendingApproval": "Pending Approval",
767
+ "computeruseapprovaloverlay.Reject": "Reject",
768
+ "computeruseapprovaloverlay.RejectedNotice": "Rejected Notice",
769
+ "computeruseapprovaloverlay.ResolveFailed": "Resolve Failed",
770
+ "computeruseapprovaloverlay.Resolving": "Resolving",
771
+ "computeruseapprovaloverlay.Title": "Title",
772
+ "config-field.AddItem": "Add item",
773
+ "config-field.AddRow": "Add row",
774
+ "config-field.Configured": "Configured",
775
+ "config-field.CustomComponent": "Custom component:",
776
+ "config-field.EnterAFilePathOr": "Enter a file path or paste one here.",
777
+ "config-field.Key": "Key",
778
+ "config-field.KeyValue": "Key-value JSON",
779
+ "config-field.MoveDown": "Move down",
780
+ "config-field.MoveUp": "Move up",
781
+ "config-field.NoMatches": "No matches",
782
+ "config-field.None": "None",
783
+ "config-field.NoOptionsDefined": "No options defined",
784
+ "config-field.NothingToPreview": "Nothing to preview",
785
+ "config-field.options": "options",
786
+ "config-field.RemoveRow": "Remove row",
787
+ "config-field.Times": "×",
788
+ "config-renderer.attention": "attention",
789
+ "config-renderer.Rarr": "→",
790
+ "config-renderer.requiredFieldsConf": "required fields configured",
791
+ "config-renderer.total": "total",
792
+ "configpageview.AnkrApiKey": "Ankr API Key",
793
+ "configpageview.ApiKeyPlaceholder": "Enter API key",
794
+ "configpageview.ApiKeySetPlaceholder": "Already set — leave blank to keep",
795
+ "configpageview.BirdeyeApiKey": "Birdeye API Key",
796
+ "configpageview.BSC": "BSC",
797
+ "configpageview.BSCDesc": "BNB Smart Chain",
798
+ "configpageview.CloudLoginRequiredSvgTitle": "Eliza Cloud login required",
799
+ "configpageview.CloudModeDesc": "Managed RPC for all chains. No API keys needed.",
800
+ "configpageview.CloudModeSvgTitle": "Eliza Cloud managed RPC",
801
+ "configpageview.CloudServices": "Cloud Services",
802
+ "configpageview.CloudServicesDesc": "Toggle Eliza Cloud services",
803
+ "configpageview.Config": "Config",
804
+ "configpageview.ConnectedToElizaCloud": "Connected to Eliza Cloud",
805
+ "configpageview.Credits": "Credits:",
806
+ "configpageview.CustomModeDesc": "Bring your own API keys. Configure per chain.",
807
+ "configpageview.CustomModeSvgTitle": "Custom RPC configuration",
808
+ "configpageview.CustomModeTitle": "Custom RPC",
809
+ "configpageview.CustomRpcProviders": "Custom RPC Providers",
810
+ "configpageview.ElizaCloudKeyInvalid": "Eliza Cloud key invalid",
811
+ "configpageview.EVM": "EVM",
812
+ "configpageview.EVMDesc": "Ethereum, Base, Arbitrum",
813
+ "configpageview.FixInCloudSettings": "Fix in Cloud settings",
814
+ "configpageview.HeliusApiKey": "Helius API Key",
815
+ "configpageview.InfuraApiKey": "Infura API Key",
816
+ "configpageview.LegacyRawRpcWarning": "Legacy raw RPC is still active for {{chains}}. Re-save a supported provider selection to migrate fully.",
817
+ "configpageview.LogIn": "Log in",
818
+ "configpageview.Mainnet": "Mainnet",
819
+ "configpageview.ManagedRpcDesc": "Managed RPC for all chains, no API keys needed",
820
+ "configpageview.NodeRealBscRpcUrl": "NodeReal BSC RPC URL",
821
+ "configpageview.QuickNodeBscRpcUrl": "QuickNode BSC RPC URL",
822
+ "configpageview.RequiresElizaCloud": "Requires Eliza Cloud",
823
+ "configpageview.RestartRequired": "Restart required",
824
+ "configpageview.Secrets": "Secrets",
825
+ "configpageview.SecretsVault": "Secrets vault",
826
+ "configpageview.SecretsVault1": "Secrets Vault",
827
+ "configpageview.Solana": "Solana",
828
+ "configpageview.SolanaDesc": "Solana mainnet",
829
+ "configpageview.Testnet": "Testnet",
830
+ "configpageview.TopUp": "Top up",
831
+ "configpageview.WalletNetwork": "Wallet Network",
832
+ "configpageview.WalletNetworkDesc": "Mainnet for live funds, Testnet for practice",
833
+ "configpageview.WalletProvidersAnd": "Wallet providers and secrets.",
834
+ "connectionfailedbanner.attemptsRealTime": "attempts. Real-time updates are paused.",
835
+ "connectionfailedbanner.ConnectionLostAfte": "Connection lost after",
836
+ "connectionfailedbanner.ReconnectingAtt": "Reconnecting... (attempt",
837
+ "connectionlostoverlay.AttemptsExhausted": "Realtime reconnect attempts exhausted: {{attempts}}.",
838
+ "connectionlostoverlay.ConnectionLost": "Connection Lost",
839
+ "connectionlostoverlay.ConnectionLostBody": "{{appName}} can’t talk to the local backend anymore. Restart the app or retry the connection once the server is back.",
840
+ "connectionlostoverlay.LostBackendConnection": "Lost backend connection.",
841
+ "connectors.blooioCloud": "Blooio (Cloud)",
842
+ "connectors.bluebubbles": "BlueBubbles",
843
+ "connectors.botToken": "Bot Token",
844
+ "connectors.botToken2": "Bot Token",
845
+ "connectors.businessCloudApi": "Business Cloud API",
846
+ "connectors.desktopApp": "Desktop App",
847
+ "connectors.directChatDb": "Direct (chat.db)",
848
+ "connectors.managedElizaCloud": "Managed (Eliza Cloud)",
849
+ "connectors.personalAccount": "Personal Account",
850
+ "connectors.qrPair": "QR Pair",
851
+ "connectors.qrPair2": "QR Pair",
852
+ "connectors.signalQrCode": "Signal QR Code",
853
+ "connectors.whatsappQrCode": "WhatsApp QR Code",
854
+ "conversations.actions": "More actions",
855
+ "conversations.bucketDaysAgo": "{{count}} days ago",
856
+ "conversations.bucketLastMonth": "Last month",
857
+ "conversations.bucketLastWeek": "Last week",
858
+ "conversations.bucketLastYear": "Over a year ago",
859
+ "conversations.bucketMonthsAgo": "{{count}} months ago",
860
+ "conversations.bucketWeeksAgo": "{{count}} weeks ago",
861
+ "conversations.bucketYearsAgo": "{{count}} years ago",
862
+ "conversations.bucketYesterday": "Yesterday",
863
+ "conversations.channels": "Channels",
864
+ "conversations.chats": "Chats",
865
+ "conversations.daysAgo": "{{count}}d ago",
866
+ "conversations.delete": "Delete conversation",
867
+ "conversations.deleteConfirm": "Delete?",
868
+ "conversations.filterScope": "Channels",
869
+ "conversations.filterWorld": "Server / world",
870
+ "conversations.hoursAgo": "{{count}}h ago",
871
+ "conversations.justNow": "just now",
872
+ "conversations.manageConnections": "Manage",
873
+ "conversations.minutesAgo": "{{count}}m ago",
874
+ "conversations.newChat": "+ New Chat",
875
+ "conversations.newTerminal": "New Terminal",
876
+ "conversations.noMatchingChats": "No chats match your search",
877
+ "conversations.none": "No conversations yet",
878
+ "conversations.noneApp": "No chats yet",
879
+ "conversations.rename": "Rename conversation",
880
+ "conversations.renameDialogDescription": "Type any title you want, or use Suggest to generate one from this chat (uses your configured model).",
881
+ "conversations.renameDialogLabel": "Topic title",
882
+ "conversations.renameDialogSaving": "Saving…",
883
+ "conversations.renameDialogSuggest": "Suggest",
884
+ "conversations.renameDialogSuggesting": "Suggesting…",
885
+ "conversations.renameDialogTitle": "Rename chat topic",
886
+ "conversations.scopeAllConnectors": "All connectors",
887
+ "conversations.scopeApp": "{{appName}}",
888
+ "conversations.scopeDms": "DMs",
889
+ "conversations.scopeTerminal": "Scope Terminal",
890
+ "conversations.scopeUnknownWorld": "Unknown world",
891
+ "conversations.searchChats": "Search chats",
892
+ "conversations.sectionMessages": "Section Messages",
893
+ "customactioneditor.Add": "+ Add",
894
+ "customactioneditor.AddParameter": "+ Add Parameter",
895
+ "customactioneditor.AliasesOptional": "Aliases (optional)",
896
+ "customactioneditor.AvailableParams": "// Available: params.paramName, fetch()\\nreturn { result: params.input };",
897
+ "customactioneditor.BodyTemplateOptio": "Body Template (optional)",
898
+ "customactioneditor.CommandTemplate": "Command Template",
899
+ "customactioneditor.CommaSeparatedAlte": "Comma-separated alternatives the agent can match against.",
900
+ "customactioneditor.DescribeWhatYouWa": "Describe what you want this action to do",
901
+ "customactioneditor.Duration": "Duration:",
902
+ "customactioneditor.echoMessage": "echo {{message}} > /tmp/output.txt",
903
+ "customactioneditor.eGCheckIfAWebs": "e.g. Check if a website is up and return status",
904
+ "customactioneditor.Error": "Error:",
905
+ "customactioneditor.forParameterSubsti": "for parameter substitution",
906
+ "customactioneditor.HandlerType": "Handler Type",
907
+ "customactioneditor.HeaderName": "Header-Name",
908
+ "customactioneditor.HeadersOptional": "Headers (optional)",
909
+ "customactioneditor.httpsApiExample": "https://api.example.com/{{param}}",
910
+ "customactioneditor.JavaScriptCode": "JavaScript Code",
911
+ "customactioneditor.MYACTION": "MY_ACTION",
912
+ "customactioneditor.paramName": "paramName",
913
+ "customactioneditor.SYNONYMONESYNONYM": "SYNONYM_ONE, SYNONYM_TWO",
914
+ "customactioneditor.Test": "Test",
915
+ "customactioneditor.TestAction": "Test Action",
916
+ "customactioneditor.TheAgentWillGener": "The agent will generate the action config for you to review and\n edit.",
917
+ "customactioneditor.valueOrParam": "value or {{param}}",
918
+ "customactioneditor.WhatDoesThisActio": "What does this action do?",
919
+ "customactionspanel.ActionSummary": "{{actionCount}} total · {{enabledCount}} enabled",
920
+ "customactionspanel.AliasCountOne": "{{count}} alias",
921
+ "customactionspanel.AliasCountOther": "{{count}} aliases",
922
+ "customactionspanel.DeleteAction": "Delete action",
923
+ "customactionspanel.DeleteFailed": "Couldn't delete this action. Try again.",
924
+ "customactionspanel.EditAction": "Edit action",
925
+ "customactionspanel.HandlerTypeCode": "Code",
926
+ "customactionspanel.HandlerTypeHttp": "HTTP",
927
+ "customactionspanel.HandlerTypeShell": "Shell",
928
+ "customactionspanel.LoadFailed": "Couldn't load custom actions. Try again.",
929
+ "customactionspanel.LoadingYourActions": "Loading your actions...",
930
+ "customactionspanel.NewCustomAction": "+ New Custom Action",
931
+ "customactionspanel.NoActionsMatchSearch": "Nothing matches that search.",
932
+ "customactionspanel.NoActionsYet": "No custom actions yet. Make one to get started.",
933
+ "customactionspanel.SearchByNameDesc": "Search by name, description, alias...",
934
+ "customactionspanel.UpdateFailed": "Couldn't update this action. Try again.",
935
+ "customactionsview.ActionCountOne": "{{count}} action",
936
+ "customactionsview.ActionCountOther": "{{count}} actions",
937
+ "customactionsview.ActionRegistry": "Action Registry",
938
+ "customactionsview.ActionRegistryDescription": "Manage reusable action definitions",
939
+ "customactionsview.AllActions": "All actions",
940
+ "customactionsview.CreateAction": "Create Action",
941
+ "customactionsview.CustomActions": "Custom Actions",
942
+ "customactionsview.DeleteCustomActionMessage": "Are you sure you want to delete \"{{name}}\"?",
943
+ "customactionsview.DeleteCustomActionTitle": "Delete Custom Action",
944
+ "customactionsview.EmptyDescription": "Create and manage custom actions",
945
+ "customactionsview.EmptyTitle": "Build reusable actions for power workflows.",
946
+ "customactionsview.Filtered": "Filtered",
947
+ "customactionsview.Handler": "Handler",
948
+ "customactionsview.ImportFailedMessage": "Failed to import actions. Please check the file format.",
949
+ "customactionsview.ImportFailedTitle": "Import Failed",
950
+ "customactionsview.LoadingActions": "Loading actions...",
951
+ "customactionsview.NoActionsMatchFiltersDescription": "Try a different filter or clear search",
952
+ "customactionsview.NoActionsMatchFiltersTitle": "No actions match your current filters.",
953
+ "customactionsview.NoDescriptionYet": "No description yet",
954
+ "customactionsview.parameter": "parameter",
955
+ "customactionsview.ParameterCountOne": "{{count}} parameter",
956
+ "customactionsview.ParameterCountOther": "{{count}} parameters",
957
+ "customactionsview.SearchActionsByNa": "Search actions by name or description...",
958
+ "customactionsview.SearchAndManage": "Search and Manage",
959
+ "databaseview.CellValue": "Cell Value",
960
+ "databaseview.ChooseATableFrom": "Choose a table from the sidebar",
961
+ "databaseview.columns": "columns",
962
+ "databaseview.DatabaseNotAvailab": "Database not available",
963
+ "databaseview.EditorModes": "Database editor modes",
964
+ "databaseview.EmptyTableDescription": "No rows yet",
965
+ "databaseview.FailedToLoadTable": "Failed to load table: {{message}}",
966
+ "databaseview.FailedToLoadTables": "Failed to load tables: {{message}}",
967
+ "databaseview.FilterTables": "Filter tables...",
968
+ "databaseview.hideSidebar": "Hide sidebar",
969
+ "databaseview.NULL": "NULL",
970
+ "databaseview.QueryFailed": "Query failed: {{message}}",
971
+ "databaseview.QueryReturnedNoRo": "Query returned no rows",
972
+ "databaseview.QueryWorkspaceInfo": "Write ad-hoc queries and inspect results without leaving the database workspace.",
973
+ "databaseview.RecentQueries": "Recent Queries",
974
+ "databaseview.row": "row",
975
+ "databaseview.RowCountLabel": "{{count}} rows",
976
+ "databaseview.RowCountSummary": "{{count}} {{rowLabel}}{{range}}",
977
+ "databaseview.runQuery": "Run Query",
978
+ "databaseview.SelectATable": "Select a table",
979
+ "databaseview.SELECTFROMMemori": "SELECT * FROM memories LIMIT 100;",
980
+ "databaseview.ShowingRange": " · showing {{start}}-{{end}}",
981
+ "databaseview.showSidebar": "Show sidebar",
982
+ "databaseview.SQLEditor": "SQL Editor",
983
+ "databaseview.SQLWorkspace": "SQL Workspace",
984
+ "databaseview.SQLWorkspaceDescription": "Run queries and inspect results",
985
+ "databaseview.TableBrowser": "Table Browser",
986
+ "databaseview.TableEditor": "Table Editor",
987
+ "databaseview.TableIsEmpty": "Table is empty",
988
+ "databaseview.tables": "tables",
989
+ "databaseview.Tables": "Tables",
990
+ "databaseview.TableWorkspaceDescription": "Browse rows and columns",
991
+ "databaseview.TheDatabaseViewer": "The database viewer is only available when the local agent runtime is running.",
992
+ "desktopworkspacesection.AgentRestartRequested": "Agent restart requested.",
993
+ "desktopworkspacesection.ClearClipboard": "Clear Clipboard",
994
+ "desktopworkspacesection.ClipboardAndPaths": "Clipboard + Paths",
995
+ "desktopworkspacesection.ClipboardAndPathsDescription": "Clipboard text and saved paths",
996
+ "desktopworkspacesection.ClipboardDetailsUnavailable": "Clipboard details unavailable.",
997
+ "desktopworkspacesection.ClipboardDraft": "Clipboard draft",
998
+ "desktopworkspacesection.ClipboardTextUnavailable": "Clipboard text unavailable.",
999
+ "desktopworkspacesection.CopyDraft": "Copy Draft",
1000
+ "desktopworkspacesection.DesktopActionFailed": "Desktop action failed.",
1001
+ "desktopworkspacesection.DesktopDiagnosticsUnavailable": "Desktop diagnostics unavailable.",
1002
+ "desktopworkspacesection.DesktopRelaunchRequested": "Desktop relaunch requested.",
1003
+ "desktopworkspacesection.DesktopToolsOnlyAvailable": "Desktop workspace tools are only available inside the Electrobun desktop runtime.",
1004
+ "desktopworkspacesection.DetachedSurfaces": "Detached Surfaces",
1005
+ "desktopworkspacesection.DetachedSurfacesDescription": "Open native Electrobun surfaces",
1006
+ "desktopworkspacesection.Diagnostics": "Diagnostics",
1007
+ "desktopworkspacesection.DiagnosticsDescription": "Desktop shell diagnostics",
1008
+ "desktopworkspacesection.DisableAutoLaunch": "Disable Auto-launch",
1009
+ "desktopworkspacesection.EnableAutoLaunch": "Enable Auto-launch",
1010
+ "desktopworkspacesection.FileDialogCompleted": "File dialog completed.",
1011
+ "desktopworkspacesection.FolderDialogCompleted": "Folder dialog completed.",
1012
+ "desktopworkspacesection.Formats": "Formats:",
1013
+ "desktopworkspacesection.LaunchHiddenOnLogin": "Launch Hidden on Login",
1014
+ "desktopworkspacesection.LaunchVisibleOnLogin": "Launch Visible on Login",
1015
+ "desktopworkspacesection.Lifecycle": "Lifecycle",
1016
+ "desktopworkspacesection.LifecycleDescription": "Restart, relaunch, or auto-launch",
1017
+ "desktopworkspacesection.MaximizeWindow": "Maximize Window",
1018
+ "desktopworkspacesection.MinimizeWindow": "Minimize Window",
1019
+ "desktopworkspacesection.NativeFileDialogs": "Native File Dialogs",
1020
+ "desktopworkspacesection.NativeFileDialogsDescription": "Test native file dialogs",
1021
+ "desktopworkspacesection.NoPathSelectedYet": "No path selected yet.",
1022
+ "desktopworkspacesection.NotificationBody": "Desktop workspace notification test.",
1023
+ "desktopworkspacesection.NotificationSent": "Notification sent.",
1024
+ "desktopworkspacesection.OpenDesktopSettingsWindow": "Open Desktop Settings Window",
1025
+ "desktopworkspacesection.OpenDialogResult": "Open dialog result",
1026
+ "desktopworkspacesection.OpenedDetachedDesktopSettingsWindow": "Opened detached desktop settings window.",
1027
+ "desktopworkspacesection.OpenedSavedPath": "Opened saved path.",
1028
+ "desktopworkspacesection.OpenFilesDialog": "Open Files Dialog",
1029
+ "desktopworkspacesection.OpenFolderDialog": "Open Folder Dialog",
1030
+ "desktopworkspacesection.OpenSavedPath": "Open Saved Path",
1031
+ "desktopworkspacesection.PlainText": "plain-text",
1032
+ "desktopworkspacesection.ReadClipboard": "Read Clipboard",
1033
+ "desktopworkspacesection.RefreshDiagnostics": "Refresh Diagnostics",
1034
+ "desktopworkspacesection.Relaunch": "Relaunch",
1035
+ "desktopworkspacesection.RestoreWindow": "Restore Window",
1036
+ "desktopworkspacesection.RevealedSavedPath": "Revealed saved path.",
1037
+ "desktopworkspacesection.RevealSavedPath": "Reveal Saved Path",
1038
+ "desktopworkspacesection.SaveDialogCompleted": "Save dialog completed.",
1039
+ "desktopworkspacesection.SaveDialogResult": "Save dialog result",
1040
+ "desktopworkspacesection.SaveFile": "Save file",
1041
+ "desktopworkspacesection.SaveFileDialog": "Save File Dialog",
1042
+ "desktopworkspacesection.SelectFiles": "Select files",
1043
+ "desktopworkspacesection.SelectFolder": "Select folder",
1044
+ "desktopworkspacesection.SendTestNotification": "Send Test Notification",
1045
+ "desktopworkspacesection.surface.chat.label": "Chat Window",
1046
+ "desktopworkspacesection.surface.cloud.label": "Cloud Window",
1047
+ "desktopworkspacesection.surface.connectors.label": "Connectors Window",
1048
+ "desktopworkspacesection.surface.plugins.label": "Plugins Window",
1049
+ "desktopworkspacesection.surface.triggers.label": "Heartbeats Window",
1050
+ "desktopworkspacesection.SurfaceOpened": "Opened {{surface}}.",
1051
+ "desktopworkspacesection.UnmaximizeWindow": "Unmaximize Window",
1052
+ "desktopworkspacesection.WindowControls": "Window Controls",
1053
+ "desktopworkspacesection.WindowControlsDescription": "Main window controls",
1054
+ "detachedshell.SetupInProgress": "Setup in progress",
1055
+ "detachedshell.SetupInProgressDesc": "Complete onboarding in the main window first. This window will become available once your agent is ready.",
1056
+ "detachedshell.SkipToContent": "Skip to content",
1057
+ "detachedshell.UnknownView": "Unknown view: {{view}}",
1058
+ "elizaclouddashboard.AccountIdApiKeyOnly": "API key only — connect via browser sign-in to show your cloud user ID.",
1059
+ "elizaclouddashboard.AccountIdSessionNoUserId": "No user ID shown — cloud still works.",
1060
+ "elizaclouddashboard.AdminLock": "Admin lock",
1061
+ "elizaclouddashboard.AdvancedDashboard": "Advanced External Dashboard",
1062
+ "elizaclouddashboard.agentDetails": "Agent Details",
1063
+ "elizaclouddashboard.AgentName": "Agent Name",
1064
+ "elizaclouddashboard.Agents": "Agents",
1065
+ "elizaclouddashboard.AgentWalletDetected": "Wallet empty",
1066
+ "elizaclouddashboard.AgentWalletFunded": "Wallet ready",
1067
+ "elizaclouddashboard.AutoTopUp": "Auto Top-Up",
1068
+ "elizaclouddashboard.AutoTopUpAmountRange": "Auto top-up amount must be between ${{min}} and ${{max}}.",
1069
+ "elizaclouddashboard.AutoTopUpNeedsPaymentMethod": "Add a card first",
1070
+ "elizaclouddashboard.AutoTopUpOff": "Auto top-up off",
1071
+ "elizaclouddashboard.AutoTopUpPaymentReady": "Card saved",
1072
+ "elizaclouddashboard.AutoTopUpThresholdRange": "Auto top-up threshold must be between ${{min}} and ${{max}}.",
1073
+ "elizaclouddashboard.Billing": "Billing",
1074
+ "elizaclouddashboard.BillingSettingsUpdated": "Billing settings updated.",
1075
+ "elizaclouddashboard.BillingSummaryUnavailable": "Billing summary unavailable.",
1076
+ "elizaclouddashboard.BotNickname": "Bot nickname",
1077
+ "elizaclouddashboard.BscOnlyAgentWalletPayment": "Agent-wallet payment is currently wired for BSC quotes only.",
1078
+ "elizaclouddashboard.CheckoutProviderNote": "Checkout unavailable.",
1079
+ "elizaclouddashboard.CheckoutSessionMissing": "Checkout unavailable. Try again or use the billing portal.",
1080
+ "elizaclouddashboard.CloudAgentsComingSoon": "Cloud Agents Coming Soon",
1081
+ "elizaclouddashboard.CloudAgentsComingSoonDesc": "Eliza Cloud is being prepared for production. You'll be able to deploy and manage cloud agents here shortly.",
1082
+ "elizaclouddashboard.CloudDashboard": "Cloud Dashboard",
1083
+ "elizaclouddashboard.ConnectDiscord": "Connect Discord",
1084
+ "elizaclouddashboard.ConnectElizaCloud": "Connect Eliza Cloud",
1085
+ "elizaclouddashboard.ConnectGitHub": "Connect GitHub",
1086
+ "elizaclouddashboard.created": "Created:",
1087
+ "elizaclouddashboard.CreditsCritical": "Critical",
1088
+ "elizaclouddashboard.CreditsHealthy": "Healthy",
1089
+ "elizaclouddashboard.CreditsLabel": "credits",
1090
+ "elizaclouddashboard.CreditsLow": "Running Low",
1091
+ "elizaclouddashboard.CryptoPaymentFailed": "Crypto payment failed.",
1092
+ "elizaclouddashboard.CryptoPaymentSubmitted": "Crypto payment submitted from the agent wallet{{note}}.",
1093
+ "elizaclouddashboard.CryptoQuoteMissingTransferDetails": "Crypto quote is missing transfer details.",
1094
+ "elizaclouddashboard.DatabaseStatus": "DB Status",
1095
+ "elizaclouddashboard.Deploy": "Deploy",
1096
+ "elizaclouddashboard.DeployNewAgent": "Deploy New Agent",
1097
+ "elizaclouddashboard.DiscordActions": "Action Toggles",
1098
+ "elizaclouddashboard.DiscordAdminLockCopy": "The Discord account that finishes setup must own the server. That account becomes the only Discord connector admin for role-gated actions on this agent.",
1099
+ "elizaclouddashboard.DiscordChunkLimit": "Text chunk limit",
1100
+ "elizaclouddashboard.DiscordDisconnected": "Managed Discord disconnected from this agent.",
1101
+ "elizaclouddashboard.DiscordDisconnectFailed": "Failed to disconnect managed Discord.",
1102
+ "elizaclouddashboard.DiscordDmEnabled": "DMs enabled",
1103
+ "elizaclouddashboard.DiscordDmPolicy": "DM Policy",
1104
+ "elizaclouddashboard.DiscordDmPolicyLabel": "Policy",
1105
+ "elizaclouddashboard.DiscordExecApprovals": "Exec approvals via DM",
1106
+ "elizaclouddashboard.DiscordFormatting": "Message Formatting",
1107
+ "elizaclouddashboard.DiscordGroupDms": "Group DMs",
1108
+ "elizaclouddashboard.DiscordGuildMembersIntent": "Guild Members",
1109
+ "elizaclouddashboard.DiscordGuildSettings": "Guild Settings",
1110
+ "elizaclouddashboard.DiscordIntents": "Privileged Intents",
1111
+ "elizaclouddashboard.DiscordIntentsWarning": "Privileged intents require opt-in via the Discord Developer Portal. Enable them there first or the bot will fail to connect.",
1112
+ "elizaclouddashboard.DiscordManagedAppUnavailable": "The shared Discord app is not configured on Eliza Cloud yet.",
1113
+ "elizaclouddashboard.DiscordMaxLines": "Max lines per message",
1114
+ "elizaclouddashboard.DiscordPluralKit": "PluralKit integration",
1115
+ "elizaclouddashboard.DiscordPresenceIntent": "Presence",
1116
+ "elizaclouddashboard.DiscordReactionNotifs": "Reaction notifications",
1117
+ "elizaclouddashboard.DiscordRequireMention": "Require @mention",
1118
+ "elizaclouddashboard.DiscordSaveSettings": "Save Discord Settings",
1119
+ "elizaclouddashboard.DiscordSettings": "Discord Settings",
1120
+ "elizaclouddashboard.DiscordSettingsLoadError": "Could not load Discord settings. The cloud endpoint may not be available yet.",
1121
+ "elizaclouddashboard.DiscordSettingsSaved": "Discord settings saved.",
1122
+ "elizaclouddashboard.DiscordSettingsSaveFailed": "Failed to save Discord settings.",
1123
+ "elizaclouddashboard.DiscordSetupContinuesInBrowser": "Finish Discord setup in your browser, then return here.",
1124
+ "elizaclouddashboard.DiscordSetupFailed": "Failed to start Discord setup.",
1125
+ "elizaclouddashboard.ElizaCloudNotConnected": "Eliza Cloud is not connected.",
1126
+ "elizaclouddashboard.ElizaCloudNotConnectedSettings": "Eliza Cloud not connected - configure in Settings -> AI Model",
1127
+ "elizaclouddashboard.EnterTopUpAmountMinimum": "Enter a top-up amount of at least ${{amount}}.",
1128
+ "elizaclouddashboard.FailedToLoadBillingData": "Failed to load billing data.",
1129
+ "elizaclouddashboard.FailedToLoadCloudAgents": "Failed to load cloud agents",
1130
+ "elizaclouddashboard.FailedToOpenInstance": "Failed to open Eliza Cloud instance.",
1131
+ "elizaclouddashboard.FailedToOpenWebUI": "Failed to open Web UI for this agent.",
1132
+ "elizaclouddashboard.FailedToRequestCryptoQuote": "Failed to request crypto quote.",
1133
+ "elizaclouddashboard.FailedToStartCheckout": "Failed to start checkout.",
1134
+ "elizaclouddashboard.FailedToUpdateBillingSettings": "Failed to update billing settings.",
1135
+ "elizaclouddashboard.GitHub": "GitHub",
1136
+ "elizaclouddashboard.GitHubConnectedAt": "Linked {{time}}",
1137
+ "elizaclouddashboard.GitHubDisconnected": "GitHub disconnected from this agent.",
1138
+ "elizaclouddashboard.GitHubOAuthCopy": "Connect your GitHub account to let this agent push code, create pull requests, and manage issues on your behalf.",
1139
+ "elizaclouddashboard.GitHubOAuthUnavailable": "GitHub OAuth is not configured on Eliza Cloud yet.",
1140
+ "elizaclouddashboard.GitHubScopes": "Scopes",
1141
+ "elizaclouddashboard.Hosted": "Hosted",
1142
+ "elizaclouddashboard.LaunchConnectionMissing": "Eliza Cloud did not return a launch connection.",
1143
+ "elizaclouddashboard.LearnMore": "Learn more",
1144
+ "elizaclouddashboard.LiveLogs": "Live Logs",
1145
+ "elizaclouddashboard.ManagedDiscordConnectedNotice": "Managed Discord connected to {{guild}}.{{statusNote}}",
1146
+ "elizaclouddashboard.ManagedDiscordConnectedNoticeFallback": "Managed Discord connected.{{statusNote}}",
1147
+ "elizaclouddashboard.ManagedDiscordConnectFailed": "Managed Discord setup did not complete.",
1148
+ "elizaclouddashboard.ManagedDiscordRestartedSuffix": " The agent restarted and is ready.",
1149
+ "elizaclouddashboard.ManagedGithubConnectedNotice": "GitHub account connected to this agent.",
1150
+ "elizaclouddashboard.ManagedGithubLinkFailed": "Failed to link GitHub to agent.",
1151
+ "elizaclouddashboard.ManageInstance": "Manage your Eliza Cloud instance and resources.",
1152
+ "elizaclouddashboard.MinAmountPlaceholder": "Min ${{amount}}",
1153
+ "elizaclouddashboard.NewToElizaCloud": "New to Eliza Cloud?",
1154
+ "elizaclouddashboard.NoAgentWalletDetected": "No wallet",
1155
+ "elizaclouddashboard.node": "Node:",
1156
+ "elizaclouddashboard.NoGitHubLinkedYet": "No account linked yet",
1157
+ "elizaclouddashboard.NoHeartbeatYet": "No heartbeat yet",
1158
+ "elizaclouddashboard.NoLogsAvailableDeploying": "No logs available. Deploying...",
1159
+ "elizaclouddashboard.NoServerLinkedYet": "No server linked yet",
1160
+ "elizaclouddashboard.NoSetupNeeded": "No setup needed",
1161
+ "elizaclouddashboard.Off": "Off",
1162
+ "elizaclouddashboard.OnAmount": "On · ${{amount}} when below ${{threshold}}",
1163
+ "elizaclouddashboard.OnNetwork": "on {{network}}",
1164
+ "elizaclouddashboard.OpenBrowserBilling": "Billing portal",
1165
+ "elizaclouddashboard.OpenedManagedInstance": "Opened managed Eliza Cloud instance.",
1166
+ "elizaclouddashboard.Pay": "Pay",
1167
+ "elizaclouddashboard.PayFromWallet": "Pay from wallet",
1168
+ "elizaclouddashboard.PayWithCard": "Pay with Card",
1169
+ "elizaclouddashboard.PayWithCrypto": "Pay with Crypto",
1170
+ "elizaclouddashboard.PolicyRejected": "Policy rejected",
1171
+ "elizaclouddashboard.ReconnectDiscord": "Reconnect / change server",
1172
+ "elizaclouddashboard.ReconnectGitHub": "Reconnect / change account",
1173
+ "elizaclouddashboard.RefillWhenBelow": "Refill when below",
1174
+ "elizaclouddashboard.RequiresUserSignMode": "This wallet requires user-sign mode for crypto payment.",
1175
+ "elizaclouddashboard.SavePaymentMethodBeforeAutoTopUp": "Add a card first.",
1176
+ "elizaclouddashboard.ScaleYourAgents": "Eliza Cloud has every service you need for your agent so you don't need a bunch of API keys. Free credits to get started.",
1177
+ "elizaclouddashboard.Secure": "Secure",
1178
+ "elizaclouddashboard.SharedAppId": "Shared app ID: {{id}}",
1179
+ "elizaclouddashboard.statusProvisioning": "Provisioning",
1180
+ "elizaclouddashboard.statusStopped": "Stopped",
1181
+ "elizaclouddashboard.StewardPolicyRejected": "Steward policy rejected: {{reason}}",
1182
+ "elizaclouddashboard.StewardPolicyRejectedTransfer": "Steward policy rejected the transfer: {{reason}}",
1183
+ "elizaclouddashboard.SubmittedPayment": "Submitted {{currency}} payment: {{hash}}{{note}}",
1184
+ "elizaclouddashboard.ToggleAutoTopUp": "Toggle auto top-up",
1185
+ "elizaclouddashboard.TopUpAmount": "Top-up amount",
1186
+ "elizaclouddashboard.TopUpCredits": "Top Up Credits",
1187
+ "elizaclouddashboard.TransactionPendingApproval": "Transaction pending Steward policy approval.",
1188
+ "elizaclouddashboard.TransferAwaitingApproval": "Transfer is waiting for Steward policy approval.",
1189
+ "elizaclouddashboard.unnamedAgent": "Unnamed Agent",
1190
+ "elizaclouddashboard.UnsignedPaymentRequest": "Cloud returned an unsigned payment request. Sign it from the wallet flow to complete payment.",
1191
+ "elizaclouddashboard.ViaStewardVault": " (via Steward vault)",
1192
+ "elizaclouddashboard.WhoeverLinksBecomesAdmin": "Whoever completes setup becomes admin",
1193
+ "emotepicker.Emotes": "Emotes",
1194
+ "emotepicker.NoEmotesFound": "No emotes found",
1195
+ "emotepicker.SearchEmotes": "Search emotes...",
1196
+ "finetuningview.ActivatedModelMessage": "Activated model {{id}} as {{providerModel}}.",
1197
+ "finetuningview.ActivateModel": "Activate Model",
1198
+ "finetuningview.Activating": "Activating...",
1199
+ "finetuningview.ActiveIndicator": "· active",
1200
+ "finetuningview.ActiveJob": "Active job:",
1201
+ "finetuningview.AdapterPath": "Adapter path:",
1202
+ "finetuningview.Agent": "Agent:",
1203
+ "finetuningview.AutoBuildDatasetF": "Auto-build dataset from trajectories",
1204
+ "finetuningview.backend": "backend:",
1205
+ "finetuningview.BaseModelForOllam": "Base model for Ollama (optional)",
1206
+ "finetuningview.BaseModelOptional": "Base model (optional)",
1207
+ "finetuningview.BatchSizeOptional": "Batch size (optional)",
1208
+ "finetuningview.benchmark": "benchmark:",
1209
+ "finetuningview.BenchmarkAction": "Benchmark",
1210
+ "finetuningview.Benchmarking": "Benchmarking...",
1211
+ "finetuningview.BenchmarkStatusMessage": "Benchmark {{status}} for {{id}}.",
1212
+ "finetuningview.BuildDataset": "Build Dataset",
1213
+ "finetuningview.BuildDatasetsFrom": "Build datasets from real trajectories, run training jobs, then\n import and activate models.",
1214
+ "finetuningview.Building": "Building...",
1215
+ "finetuningview.BuiltDatasetMessage": "Built dataset {{id}} ({{count}} samples).",
1216
+ "finetuningview.Calls": "Calls:",
1217
+ "finetuningview.CancelledJobMessage": "Cancelled job {{id}}.",
1218
+ "finetuningview.Cancelling": "Cancelling...",
1219
+ "finetuningview.ChooseATrajectory": "Choose a trajectory to inspect.",
1220
+ "finetuningview.cpu": "cpu",
1221
+ "finetuningview.cuda": "cuda",
1222
+ "finetuningview.DataReview": "Data Review",
1223
+ "finetuningview.Dataset": "Dataset:",
1224
+ "finetuningview.DatasetBuild": "Dataset Build",
1225
+ "finetuningview.Datasets": "Datasets:",
1226
+ "finetuningview.Datasets1": "Datasets",
1227
+ "finetuningview.FailedJobs": "Failed Jobs:",
1228
+ "finetuningview.FailedToActivateModel": "Failed to activate model.",
1229
+ "finetuningview.FailedToBenchmarkModel": "Failed to benchmark model.",
1230
+ "finetuningview.FailedToBuildDataset": "Failed to build dataset.",
1231
+ "finetuningview.FailedToCancelJob": "Failed to cancel {{id}}.",
1232
+ "finetuningview.FailedToImportModelToOllama": "Failed to import model to Ollama.",
1233
+ "finetuningview.FailedToLoadTrajectoryDetail": "Failed to load trajectory detail.",
1234
+ "finetuningview.FailedToRefreshState": "Failed to refresh fine-tuning state.",
1235
+ "finetuningview.FailedToRunSmokeTest": "Failed to run smoke test.",
1236
+ "finetuningview.FailedToStartTrainingJob": "Failed to start training job.",
1237
+ "finetuningview.FineTuning": "Fine-Tuning",
1238
+ "finetuningview.ImportedModelToOllamaMessage": "Imported model {{id}} to Ollama{{ollamaModel}}.",
1239
+ "finetuningview.ImportToOllama": "Import To Ollama",
1240
+ "finetuningview.IterationsOptional": "Iterations (optional)",
1241
+ "finetuningview.LatestTrajectories": "Latest trajectories",
1242
+ "finetuningview.LearningRateOptio": "Learning rate (optional)",
1243
+ "finetuningview.LimitTrajectories": "Limit trajectories (e.g. 250)",
1244
+ "finetuningview.LiveTrainingEvents": "Live Training Events",
1245
+ "finetuningview.LoadingFineTuning": "Loading fine-tuning workspace...",
1246
+ "finetuningview.LoadingTrajectoryD": "Loading trajectory detail...",
1247
+ "finetuningview.MinLLMCallsPerTr": "Min LLM calls per trajectory",
1248
+ "finetuningview.mlx": "mlx",
1249
+ "finetuningview.Model": "Model:",
1250
+ "finetuningview.ModelActions": "Model actions",
1251
+ "finetuningview.ModelOps": "Model Ops",
1252
+ "finetuningview.Models": "Models:",
1253
+ "finetuningview.NoDatasetsYet": "No datasets yet.",
1254
+ "finetuningview.NoJobsYet": "No jobs yet.",
1255
+ "finetuningview.NoLiveEventsYet": "No live events yet. Start a job to stream progress here.",
1256
+ "finetuningview.NoTrainedModelsYe": "No trained models yet.",
1257
+ "finetuningview.NoTrajectoriesFoun": "No trajectories found yet.",
1258
+ "finetuningview.NoTrajectoriesTableFound": "No trajectories table found yet. Generate trajectories first.",
1259
+ "finetuningview.OllamaModelNameO": "Ollama model name (optional)",
1260
+ "finetuningview.OllamaURL": "Ollama URL",
1261
+ "finetuningview.Overview": "Overview",
1262
+ "finetuningview.ProviderModelEG": "Provider model (e.g. \"ollama/my-model\")",
1263
+ "finetuningview.QueuedJobs": "Queued Jobs:",
1264
+ "finetuningview.Ready": "ready",
1265
+ "finetuningview.RefreshAll": "Refresh All",
1266
+ "finetuningview.RefreshDatasets": "Refresh Datasets",
1267
+ "finetuningview.RefreshJobs": "Refresh Jobs",
1268
+ "finetuningview.Restart": "Restart",
1269
+ "finetuningview.RestartAgentMessage": "Model activation was saved. Restart the agent now to load the new model?",
1270
+ "finetuningview.RestartAgentTitle": "Restart Agent",
1271
+ "finetuningview.Reward": "· Reward:",
1272
+ "finetuningview.Reward1": "Reward:",
1273
+ "finetuningview.RunningJobs": "Running Jobs:",
1274
+ "finetuningview.RunSmokePrompt": "Run Smoke Prompt",
1275
+ "finetuningview.Runtime": "Runtime:",
1276
+ "finetuningview.RuntimeNotStarted": "Agent runtime is not started.",
1277
+ "finetuningview.samples": "samples ·",
1278
+ "finetuningview.SelectAJobToInsp": "Select a job to inspect logs.",
1279
+ "finetuningview.SelectAModelToIm": "Select a model to import or activate.",
1280
+ "finetuningview.SelectedJobLogs": "Selected job logs",
1281
+ "finetuningview.SelectedTrajectory": "Selected trajectory",
1282
+ "finetuningview.SmokeTestCompleted": "Smoke test completed.",
1283
+ "finetuningview.StartedTrainingJobMessage": "Started training job {{id}}.",
1284
+ "finetuningview.Starting": "Starting...",
1285
+ "finetuningview.StartTrainingJob": "Start Training Job",
1286
+ "finetuningview.Status1": "Status:",
1287
+ "finetuningview.Streaming": "Streaming",
1288
+ "finetuningview.TrainedModels": "Trained Models",
1289
+ "finetuningview.Training": "Training",
1290
+ "finetuningview.TrainingJobs": "Training Jobs",
1291
+ "finetuningview.trajectories": "trajectories",
1292
+ "finetuningview.Trajectory": "Trajectory:",
1293
+ "finetuningview.trajectoryRowsAvai": "trajectory rows available.",
1294
+ "flaminaguide.CharacterImpactLabel": "How it affects the character:",
1295
+ "flaminaguide.FinishSetupLater": "Finish setup later",
1296
+ "flaminaguide.FinishSetupLaterDescription": "These items can be completed any time",
1297
+ "flaminaguide.IfYouSkipLabel": "If you skip:",
1298
+ "flaminaguide.permissions.characterImpact": "Local system visibility and control",
1299
+ "flaminaguide.permissions.description": "Local system access controls",
1300
+ "flaminaguide.permissions.recommended": "Grant only what you need now",
1301
+ "flaminaguide.permissions.skipEffect": "System-aware actions stay off",
1302
+ "flaminaguide.permissions.title": "Permissions and system access",
1303
+ "flaminaguide.permissions.whenToUse": "Grant now for screen and device access",
1304
+ "flaminaguide.provider.characterImpact": "Affects reasoning speed and output quality",
1305
+ "flaminaguide.provider.description": "Intelligence source for your agent",
1306
+ "flaminaguide.provider.recommended": "Use detected or top provider, refine later",
1307
+ "flaminaguide.provider.skipEffect": "Defaults to recommended provider",
1308
+ "flaminaguide.provider.title": "Model and provider",
1309
+ "flaminaguide.provider.whenToUse": "Pick if you have a model preference",
1310
+ "flaminaguide.rpc.characterImpact": "Wallet and chain access",
1311
+ "flaminaguide.rpc.description": "Chain and wallet connectivity",
1312
+ "flaminaguide.rpc.recommended": "Skip unless you need onchain access",
1313
+ "flaminaguide.rpc.skipEffect": "Skipping limits onchain actions",
1314
+ "flaminaguide.rpc.title": "RPC and chain access",
1315
+ "flaminaguide.rpc.whenToUse": "Needed for onchain actions and wallet access",
1316
+ "flaminaguide.tasks.permissions.description": "Grant local access for system-aware behavior",
1317
+ "flaminaguide.tasks.provider.description": "Pick or refine the model/provider",
1318
+ "flaminaguide.tasks.provider.label": "Provider setup",
1319
+ "flaminaguide.tasks.rpc.description": "Add chain connectivity for wallet access",
1320
+ "flaminaguide.tasks.rpc.label": "RPC setup",
1321
+ "flaminaguide.tasks.voice.description": "Tune how the agent sounds",
1322
+ "flaminaguide.tasks.voice.label": "Voice setup",
1323
+ "flaminaguide.voice.characterImpact": "Spoken output quality",
1324
+ "flaminaguide.voice.description": "How the agent sounds",
1325
+ "flaminaguide.voice.recommended": "Save character first, tune voice later",
1326
+ "flaminaguide.voice.skipEffect": "Identity saves; voice deferred",
1327
+ "flaminaguide.voice.title": "Voice and presentation",
1328
+ "flaminaguide.voice.whenToUse": "Configure for voice-first interactions",
1329
+ "flaminaguide.WhenToUseLabel": "When to use it:",
1330
+ "format.duration.days": "{{value}}d",
1331
+ "format.duration.hours": "{{value}}h",
1332
+ "format.duration.minutes": "{{value}}m",
1333
+ "format.duration.seconds": "{{value}}s",
1334
+ "game.agentActivity": "Agent Activity",
1335
+ "game.backToApps": "Back to Apps",
1336
+ "game.chatPlaceholder": "Type a message...",
1337
+ "game.connecting": "Connecting...",
1338
+ "game.disableOverlay": "Disable Overlay",
1339
+ "game.disconnected": "Disconnected",
1340
+ "game.hideLogs": "Hide Logs",
1341
+ "game.keepOnTop": "Keep on Top",
1342
+ "game.keepVisible": "Keep Visible",
1343
+ "game.noActiveSession": "No active session",
1344
+ "game.noAgentActivity": "No agent activity",
1345
+ "game.openInNativeWindow": "Open in native window",
1346
+ "game.openInNewTab": "Open in New Tab",
1347
+ "game.showLogs": "Show Logs",
1348
+ "game.stopping": "Stopping...",
1349
+ "game.unpinOverlay": "Unpin Overlay",
1350
+ "gameview.AgentResponseNotice": "Agent: {{response}}",
1351
+ "gameview.BoundsUnavailable": "Bounds unavailable.",
1352
+ "gameview.CapturedNativeGameSnapshot": "Captured native game snapshot.",
1353
+ "gameview.CommandSentToAgent": "Command sent to agent.",
1354
+ "gameview.CommandSentToAppRun": "Command sent to app run.",
1355
+ "gameview.CommandSentToAppSession": "Command sent to app session.",
1356
+ "gameview.FailedToSend": "Failed to send: {{message}}",
1357
+ "gameview.FailedToStop": "Failed to stop: {{message}}",
1358
+ "gameview.FocusedNativeGameWindow": "Focused native game window.",
1359
+ "gameview.FocusWindow": "Focus Window",
1360
+ "gameview.GameWindowNoLongerOpen": "Game Window No Longer Open",
1361
+ "gameview.GameWindowNotReadyYet": "Game window not ready yet.",
1362
+ "gameview.GpuDiagnosticsWindowHidden": "GPU diagnostics window hidden.",
1363
+ "gameview.GpuDiagnosticsWindowReady": "GPU diagnostics window ready.",
1364
+ "gameview.GpuDiagnosticsWindowShown": "GPU diagnostics window shown.",
1365
+ "gameview.HideDashboard": "Hide dashboard",
1366
+ "gameview.HideGpuWindow": "Hide GPU Window",
1367
+ "gameview.HideWindow": "Hide Window",
1368
+ "gameview.HidNativeGameWindow": "Hid native game window.",
1369
+ "gameview.KeepOnTop": "Keep On Top",
1370
+ "gameview.LaunchGpuDiagnostics": "Launch GPU Diagnostics",
1371
+ "gameview.NativeGameActionFailed": "Native game action failed.",
1372
+ "gameview.NativeGameStateRefreshed": "Native game state refreshed.",
1373
+ "gameview.NativeGameWindowNormal": "Native Game Window Normal",
1374
+ "gameview.NativeGameWindowPinned": "Native Game Window Pinned",
1375
+ "gameview.NormalWindow": "Normal Window",
1376
+ "gameview.postMessageAuth": "postMessage auth",
1377
+ "gameview.Recommendations": "Recommendations",
1378
+ "gameview.RefreshNativeState": "Refresh Native State",
1379
+ "gameview.RunSteeringUnsupported": "This run does not expose a steering channel yet.",
1380
+ "gameview.SessionControlFailed": "Failed to update session: {{message}}",
1381
+ "gameview.SessionControlSent": "Session control updated.",
1382
+ "gameview.SessionControlUnsupported": "This run does not expose session controls.",
1383
+ "gameview.ShowDashboard": "Show dashboard",
1384
+ "gameview.ShowGpuWindow": "Show GPU Window",
1385
+ "gameview.ShownNativeGameWindow": "Shown native game window.",
1386
+ "gameview.ShowWindow": "Show Window",
1387
+ "gameview.SnapshotUnavailable": "Snapshot unavailable.",
1388
+ "gameview.SnapshotWindow": "Snapshot Window",
1389
+ "gameview.UpdatingSession": "Updating session…",
1390
+ "gameview.ViewerAttached": "Viewer attached.",
1391
+ "gameview.ViewerAttachFailed": "Failed to attach viewer: {{message}}",
1392
+ "gameview.ViewerAuthSent": "Viewer auth sent.",
1393
+ "gameview.ViewerDetached": "Viewer detached.",
1394
+ "gameview.ViewerDetachFailed": "Failed to detach viewer: {{message}}",
1395
+ "gameview.ViewerUnavailable": "No viewer or launch URL is available for this run.",
1396
+ "gameview.WaitingForNativeGameWindow": "Waiting for native game window.",
1397
+ "gameviewoverlay.CloseOverlay": "Close overlay",
1398
+ "gameviewoverlay.ExpandBackToApps": "Expand back to Apps tab",
1399
+ "header.characterMode": "Character Edit",
1400
+ "header.CloudCreditsBalanc": "Cloud credits balance",
1401
+ "header.companionMode": "Companion Mode",
1402
+ "header.elizaCloudAuthRejected": "Cloud key invalid",
1403
+ "header.MobileNavigationDescription": "Navigate between sections",
1404
+ "header.nativeMode": "Native Mode",
1405
+ "heartbeat.interruptAndRunNow": "Interrupt and run now",
1406
+ "heartbeat.messageReceived": "Message received",
1407
+ "heartbeat.repeatingInterval": "Repeating interval",
1408
+ "heartbeatsview.createFirstHeartbeat": "Create your first Heartbeat",
1409
+ "heartbeatsview.createHeartbeat": "Create Heartbeat",
1410
+ "heartbeatsview.cronFieldDay": "day",
1411
+ "heartbeatsview.cronFieldHour": "hour",
1412
+ "heartbeatsview.cronFieldMinute": "minute",
1413
+ "heartbeatsview.cronFieldMonth": "month",
1414
+ "heartbeatsview.cronFieldWeekday": "weekday",
1415
+ "heartbeatsview.cronPrefix": "Cron:",
1416
+ "heartbeatsview.deleteMessage": "Delete \"{{name}}\"?",
1417
+ "heartbeatsview.deleteTitle": "Delete Heartbeat",
1418
+ "heartbeatsview.duplicate": "Duplicate",
1419
+ "heartbeatsview.durationUnitDays": "days",
1420
+ "heartbeatsview.durationUnitHours": "hours",
1421
+ "heartbeatsview.durationUnitMinutes": "minutes",
1422
+ "heartbeatsview.durationUnitSeconds": "seconds",
1423
+ "heartbeatsview.editHeartbeat": "Edit Heartbeat",
1424
+ "heartbeatsview.editTitle": "Edit: {{name}}",
1425
+ "heartbeatsview.emDash": "—",
1426
+ "heartbeatsview.emptyStateDescription": "Create or select a heartbeat",
1427
+ "heartbeatsview.every": "Every",
1428
+ "heartbeatsview.EveryIntervalUnit": "Every {{interval}} {{unit}}",
1429
+ "heartbeatsview.interval": "Interval",
1430
+ "heartbeatsview.maxRuns": "Max Runs",
1431
+ "heartbeatsview.newHeartbeat": "New Heartbeat",
1432
+ "heartbeatsview.nextRun": "Next Run",
1433
+ "heartbeatsview.noMatchingHeartbeats": "No matching heartbeats",
1434
+ "heartbeatsview.noRunsYetMessage": "No runs yet. Trigger one manually to get started.",
1435
+ "heartbeatsview.notScheduled": "Not scheduled",
1436
+ "heartbeatsview.notYetRun": "Not yet run",
1437
+ "heartbeatsview.once": "Once",
1438
+ "heartbeatsview.onceAt": "Once at {{time}}",
1439
+ "heartbeatsview.runCountPlural": "{{count}} runs",
1440
+ "heartbeatsview.runStats": "Run Stats",
1441
+ "heartbeatsview.SaveAsTemplate": "Save as template",
1442
+ "heartbeatsview.saveChanges": "Save Changes",
1443
+ "heartbeatsview.searchHeartbeats": "Search heartbeats",
1444
+ "heartbeatsview.selectAHeartbeat": "Select a Heartbeat",
1445
+ "heartbeatsview.statusFailed": "Failed",
1446
+ "heartbeatsview.statusSkipped": "Skipped",
1447
+ "heartbeatsview.template.crypto.instructions": "Check the current prices of BTC, ETH, and SOL. Summarize any significant moves in the last hour.",
1448
+ "heartbeatsview.template.crypto.name": "Check crypto prices",
1449
+ "heartbeatsview.template.journal.instructions": "Write a brief, thoughtful journal prompt for the user based on current events or seasonal themes. Keep it under 2 sentences.",
1450
+ "heartbeatsview.template.journal.name": "Daily journal prompt",
1451
+ "heartbeatsview.template.trending.instructions": "Scan for trending topics on crypto Twitter and tech news. Give a 3-bullet summary of what's worth paying attention to.",
1452
+ "heartbeatsview.template.trending.name": "Trending topics digest",
1453
+ "heartbeatsview.TemplateLoadedNotice": "Template \"{{name}}\" loaded. Customize and create.",
1454
+ "heartbeatsview.Templates": "Templates",
1455
+ "heartbeatsview.unlimited": "Unlimited",
1456
+ "heartbeatsview.validationCronFiveFields": "Cron expression must have exactly 5 fields (minute hour day month weekday).",
1457
+ "heartbeatsview.validationCronInvalidField": "Invalid cron {{field}} field: \"{{value}}\"",
1458
+ "heartbeatsview.validationCronRequired": "Cron expression is required.",
1459
+ "heartbeatsview.validationDisplayNameRequired": "Display name is required.",
1460
+ "heartbeatsview.validationInstructionsRequired": "Instructions are required.",
1461
+ "heartbeatsview.validationIntervalPositive": "Interval must be a positive number.",
1462
+ "heartbeatsview.validationMaxRunsPositive": "Max runs must be a positive integer.",
1463
+ "heartbeatsview.validationScheduledTimeInvalid": "Scheduled time must be a valid ISO date-time.",
1464
+ "heartbeatsview.validationScheduledTimeRequired": "Scheduled time is required for one-time heartbeats.",
1465
+ "inboxview.AgentSendWarning": "Agent Send Warning",
1466
+ "inboxview.avatarAlt": "{{title}} avatar",
1467
+ "inboxview.EmptyRoom": "No messages in this chat yet.",
1468
+ "inboxview.Loading": "Loading messages…",
1469
+ "inboxview.ReadOnlyReplyHint": "Read-only view. Reply from the {{source}} app — the connector plugin handles outbound messages.",
1470
+ "inboxview.ReplyHint": "Sent through the connected {{source}} account on this device.",
1471
+ "inboxview.ReplyPlaceholder": "Reply in {{source}}",
1472
+ "inboxview.SendFailed": "Failed to send message.",
1473
+ "inboxview.Sending": "Sending…",
1474
+ "inboxview.TotalCountShort": "messages",
1475
+ "inference.cheapest": "Cheapest",
1476
+ "inference.embeddingModelTextEmbedding": "Embedding model (TEXT_EMBEDDING)",
1477
+ "inference.fastest": "Fastest",
1478
+ "inference.largeModelTextLarge": "Large model (TEXT_LARGE)",
1479
+ "inference.largeStructuredOutputObjectLarge": "Large structured output (OBJECT_LARGE)",
1480
+ "inference.preferLocal": "Prefer local",
1481
+ "inference.roundRobin": "Round robin",
1482
+ "inference.searchHuggingfaceEGPhi3MixtralLlama33": "Search HuggingFace (e.g. phi-3, mixtral, llama 3.3)",
1483
+ "inference.smallModelTextSmall": "Small model (TEXT_SMALL)",
1484
+ "inference.smallStructuredOutputObjectSmall": "Small structured output (OBJECT_SMALL)",
1485
+ "inventory.gainers": "Gainers",
1486
+ "inventory.losers": "Losers",
1487
+ "inventory.noActivityYet": "No activity yet",
1488
+ "inventory.noMarketMoversYet": "No market movers yet",
1489
+ "inventory.noMoversYet": "No movers yet",
1490
+ "inventory.noNfts": "No NFTs",
1491
+ "inventory.noNfts2": "No NFTs",
1492
+ "inventory.noPositions": "No positions",
1493
+ "inventory.noPositions2": "No positions",
1494
+ "inventory.noPredictionsYet": "No predictions yet",
1495
+ "inventory.noPriceSnapshotsYet": "No price snapshots yet",
1496
+ "inventory.openRpcSettings": "Open RPC settings",
1497
+ "inventory.popularPredictions": "Popular predictions",
1498
+ "inventory.refreshWallet": "Refresh wallet",
1499
+ "inventory.spotPrices": "Spot prices",
1500
+ "inventory.topMovers": "Top movers",
1501
+ "inventory.tradePLChart": "Trade P&L chart",
1502
+ "inventoryview.ChainAccessNotConfiguredBody": "Connect via Eliza Cloud or configure {{chain}} RPC access in Settings to load balances.",
1503
+ "inventoryview.ChainAccessNotConfiguredTitle": "{{chain}} access is not configured.",
1504
+ "inventoryview.ChainHidden": "{{chain}} — hidden",
1505
+ "inventoryview.ChainHiddenClickToShow": "{{chain}} — hidden (click to show)",
1506
+ "inventoryview.ChainInlineError": "{{chain}}: {{message}}",
1507
+ "inventoryview.chainLowercase": "chain",
1508
+ "inventoryview.ChainNoWalletConfigured": "{{chain}} — no wallet configured",
1509
+ "inventoryview.ChainShownClickToHide": "{{chain}} — shown (click to hide)",
1510
+ "inventoryview.ChainVisible": "{{chain}} — visible",
1511
+ "inventoryview.ConnectedAndReady": "Connected and ready",
1512
+ "inventoryview.LegacyRpcConfigBody": "Re-save a supported provider in Settings to migrate fully.",
1513
+ "inventoryview.LegacyRpcConfigTitle": "{{chain}} is using legacy raw RPC config.",
1514
+ "inventoryview.NeedsRpcSetup": "Needs RPC setup",
1515
+ "inventoryview.NoWalletAddressYet": "No wallet address yet",
1516
+ "inventoryview.RetryFetchingBalances": "Retry fetching {{chain}} balances",
1517
+ "inventoryview.SolanaRpcNotConfigured": "Solana RPC is not configured.",
1518
+ "inventoryview.SolanaRpcNotConfiguredBody": "Connect via Eliza Cloud or configure HELIUS_API_KEY / SOLANA_RPC_URL in Settings to load Solana balances.",
1519
+ "inventoryview.StewardVaultConnected": "Steward vault connected",
1520
+ "inventoryview.ThisChainLowercase": "this chain",
1521
+ "inventoryview.VisibleAssets": "{{count}} visible assets",
1522
+ "knowledge.ui.searchPlaceholder": "Search knowledge...",
1523
+ "knowledgeview.AddFromURL": "Add from URL",
1524
+ "knowledgeview.Batch": "batch",
1525
+ "knowledgeview.CharacterCount": "Character Count",
1526
+ "knowledgeview.ChooseFiles": "Choose Files",
1527
+ "knowledgeview.Chunk": "Chunk",
1528
+ "knowledgeview.DeletedDocument": "Deleted document ({{count}} fragments removed)",
1529
+ "knowledgeview.Document": "document",
1530
+ "knowledgeview.DocumentCountMany": "Document Count Many",
1531
+ "knowledgeview.DocumentCountOne": "Document Count One",
1532
+ "knowledgeview.Documents": "Documents",
1533
+ "knowledgeview.DocumentsCount": "{{count}} docs",
1534
+ "knowledgeview.DocumentUpdated": "Document Updated",
1535
+ "knowledgeview.DropFilesHereToUpload": "Drop files here to upload",
1536
+ "knowledgeview.DropFilesOrFoldersToUpload": "Drop files or folders to upload",
1537
+ "knowledgeview.Editable": "Editable",
1538
+ "knowledgeview.FailedToDeleteDocument": "Failed to delete document",
1539
+ "knowledgeview.FailedToDeleteDocumentWithMessage": "Failed to delete document: {{message}}",
1540
+ "knowledgeview.FailedToImportFromUrl": "Failed to import from URL: {{message}}",
1541
+ "knowledgeview.FailedToLoadDocument": "Failed to load document",
1542
+ "knowledgeview.FailedToLoadKnowledgeData": "Failed to load knowledge data",
1543
+ "knowledgeview.FailedToReadFile": "Failed to read file",
1544
+ "knowledgeview.FailedToUpdateDocument": "Failed To Update Document",
1545
+ "knowledgeview.FormatsCount": "{{count}} formats",
1546
+ "knowledgeview.Fragment": "Fragment",
1547
+ "knowledgeview.FragmentCountMany": "{{count}} fragments",
1548
+ "knowledgeview.FragmentCountOne": "1 fragment",
1549
+ "knowledgeview.FragmentPosition": "Fragment Position",
1550
+ "knowledgeview.Fragments1": "Fragments (",
1551
+ "knowledgeview.FragmentsLabel": "Fragments",
1552
+ "knowledgeview.FromUrl": "From URL",
1553
+ "knowledgeview.httpsExampleCom": "https://example.com/document.pdf or YouTube URL",
1554
+ "knowledgeview.ImageCouldNotBeCompressed": "Image could not be compressed below {{limit}} for processing.",
1555
+ "knowledgeview.IncludeAIImageDes": "Process Images",
1556
+ "knowledgeview.KnowledgeServiceIs": "Knowledge service is loading...",
1557
+ "knowledgeview.LargeFilesDetected": "{{count}} large file(s) detected.",
1558
+ "knowledgeview.LoadingDocuments": "Loading documents...",
1559
+ "knowledgeview.Locked": "Locked",
1560
+ "knowledgeview.Match": "% match",
1561
+ "knowledgeview.NoDocumentSelected": "No document selected",
1562
+ "knowledgeview.NoDocumentSelectedDesc": "Upload a file or choose an item from the sidebar to start viewing fragments and metadata.",
1563
+ "knowledgeview.NoDocumentsYet": "No documents yet",
1564
+ "knowledgeview.NoFragmentsFound": "No fragments found",
1565
+ "knowledgeview.NoMatchingDocuments": "No matching documents",
1566
+ "knowledgeview.NoNonEmptyFiles": "No non-empty files were selected.",
1567
+ "knowledgeview.NoPreview": "Full text preview is not available",
1568
+ "knowledgeview.NoPreviewDesc": "Indexed fragments are still available below for this document type.",
1569
+ "knowledgeview.NoResultsFound": "No results found",
1570
+ "knowledgeview.NoSupportedNonEmptyFiles": "No supported non-empty files were selected.",
1571
+ "knowledgeview.OpenDocument": "Open {{filename}}",
1572
+ "knowledgeview.PasteAURLToImpor": "Paste a URL to import content. YouTube links will be\n auto-transcribed.",
1573
+ "knowledgeview.Position": "Position:",
1574
+ "knowledgeview.Preparing": "Preparing...",
1575
+ "knowledgeview.PreparingFile": "Preparing: {{filename}}",
1576
+ "knowledgeview.Scratchpad": "Scratchpad",
1577
+ "knowledgeview.SearchFailed": "Search failed: {{message}}",
1578
+ "knowledgeview.SearchResults": "Search Results",
1579
+ "knowledgeview.SearchTips": "Try a filename, topic, or phrase from the document body.",
1580
+ "knowledgeview.ServiceDidNotBecomeAvailable": "Knowledge service did not become available. Please reload the page.",
1581
+ "knowledgeview.Type": "Type:",
1582
+ "knowledgeview.UnknownDeleteError": "Unknown delete error",
1583
+ "knowledgeview.UnknownDocument": "Unknown Document",
1584
+ "knowledgeview.UnknownImportError": "Unknown import error",
1585
+ "knowledgeview.UnknownSearchError": "Unknown search error",
1586
+ "knowledgeview.UnknownUploadError": "Unknown upload error",
1587
+ "knowledgeview.Uploaded": "Uploaded",
1588
+ "knowledgeview.UploadFailed": "Upload failed",
1589
+ "knowledgeview.UploadFilesOrImpo": "Upload files or import from URL to get started",
1590
+ "knowledgeview.UploadingBatchStartingWith": "Uploading batch starting with {{label}}",
1591
+ "knowledgeview.UploadingProgress": "Uploading {{current}}/{{total}}{{filename}}",
1592
+ "knowledgeview.UploadLargeFiles": "Upload Large Files",
1593
+ "knowledgeview.UploadLargeFilesDetail": "Uploading can take longer and may increase embedding or vision costs.",
1594
+ "knowledgeview.UploadPayloadExceedsLimit": "Upload payload is {{size}}, which exceeds the current limit ({{limit}}).",
1595
+ "knowledgeview.UploadSupportedTypes": "Docs, PDFs, JSON, CSV, and supported images.",
1596
+ "knowledgeview.UploadTooLarge": "Upload too large. Try splitting this file.",
1597
+ "knowledgeview.YouTube": "YouTube",
1598
+ "lifeopsoverview.agentOpsHeading": "Agent ops",
1599
+ "lifeopsoverview.cadence.daily": "Daily",
1600
+ "lifeopsoverview.cadence.everyHours": "Every {{count}}h",
1601
+ "lifeopsoverview.cadence.everyMinutes": "Every {{count}}m",
1602
+ "lifeopsoverview.cadence.occasional": "Occasional",
1603
+ "lifeopsoverview.cadence.once": "One-off",
1604
+ "lifeopsoverview.cadence.timesPerDay": "{{count}}x daily",
1605
+ "lifeopsoverview.cadence.twiceDaily": "Twice daily",
1606
+ "lifeopsoverview.cadence.weekly": "Weekly",
1607
+ "lifeopsoverview.confidence": "{{count}}% confidence in next meal window",
1608
+ "lifeopsoverview.dueAt": "Due {{time}}",
1609
+ "lifeopsoverview.empty": "No life ops yet",
1610
+ "lifeopsoverview.evaluationContract": "Evaluation contract:",
1611
+ "lifeopsoverview.evidenceUsed": "Evidence used:",
1612
+ "lifeopsoverview.goal": "goal",
1613
+ "lifeopsoverview.goalReview": "Goal review",
1614
+ "lifeopsoverview.goals": "goals",
1615
+ "lifeopsoverview.goalsHeading": "Goals",
1616
+ "lifeopsoverview.googleFeedsFailed": "Google widget feeds failed to refresh.",
1617
+ "lifeopsoverview.hideDetails": "Hide details",
1618
+ "lifeopsoverview.hideReview": "Hide review",
1619
+ "lifeopsoverview.items": "items",
1620
+ "lifeopsoverview.label.afternoon": "afternoon",
1621
+ "lifeopsoverview.label.breakfast": "breakfast",
1622
+ "lifeopsoverview.label.dinner": "dinner",
1623
+ "lifeopsoverview.label.evening": "evening",
1624
+ "lifeopsoverview.label.lunch": "lunch",
1625
+ "lifeopsoverview.label.morning": "morning",
1626
+ "lifeopsoverview.label.night": "night",
1627
+ "lifeopsoverview.last7Days": "Last 7 days:",
1628
+ "lifeopsoverview.lastAction": "Last action:",
1629
+ "lifeopsoverview.lastActivity": "Last activity:",
1630
+ "lifeopsoverview.lastMeal": "Last meal {{time}}",
1631
+ "lifeopsoverview.lastReminder": "Last reminder:",
1632
+ "lifeopsoverview.lastWake": "Last wake {{time}}{{duration}}",
1633
+ "lifeopsoverview.likelyAsleepNow": "Likely asleep now",
1634
+ "lifeopsoverview.likelyAsleepSince": "Likely asleep since {{time}}",
1635
+ "lifeopsoverview.linkedGoal": "Linked goal:",
1636
+ "lifeopsoverview.mealPatternCalibrating": "Meal pattern calibrating",
1637
+ "lifeopsoverview.missingEvidence": "Missing evidence:",
1638
+ "lifeopsoverview.nextMealWindow": "Next {{meal}} window {{time}}",
1639
+ "lifeopsoverview.noActiveItems": "No active items",
1640
+ "lifeopsoverview.noPriorityMail": "No priority mail",
1641
+ "lifeopsoverview.noReminderAttemptsYet": "No reminder attempts yet",
1642
+ "lifeopsoverview.noUpcomingEvents": "No upcoming events",
1643
+ "lifeopsoverview.now": "Now",
1644
+ "lifeopsoverview.OpenView": "Open LifeOps view",
1645
+ "lifeopsoverview.originalIntent": "Original intent:",
1646
+ "lifeopsoverview.performance": "Performance:",
1647
+ "lifeopsoverview.progressSignal": "Progress signal:",
1648
+ "lifeopsoverview.reconnectGoogle": "Reconnect Google to refresh calendar and Gmail permissions.",
1649
+ "lifeopsoverview.refreshing": "Refreshing life ops…",
1650
+ "lifeopsoverview.relativeBedtimeOnly": "Bedtime in {{bedMinutes}}",
1651
+ "lifeopsoverview.relativeBedtimePastOnly": "Bedtime was {{bedMinutes}} ago",
1652
+ "lifeopsoverview.relativeWakeAndBedtimePast": "Woke {{wakeMinutes}} ago · bedtime was {{bedMinutes}} ago",
1653
+ "lifeopsoverview.relativeWakeAndBedtimeUpcoming": "Woke {{wakeMinutes}} ago · bedtime in {{bedMinutes}}",
1654
+ "lifeopsoverview.reminder": "reminder",
1655
+ "lifeopsoverview.reminders": "reminders",
1656
+ "lifeopsoverview.remindersLabel": "Reminders:",
1657
+ "lifeopsoverview.review": "Review",
1658
+ "lifeopsoverview.reviewState.atRisk": "At risk",
1659
+ "lifeopsoverview.reviewState.needsAttention": "Needs attention",
1660
+ "lifeopsoverview.reviewState.onTrack": "On track",
1661
+ "lifeopsoverview.showDetails": "Show details",
1662
+ "lifeopsoverview.sleepStatus": "Sleep {{status}}",
1663
+ "lifeopsoverview.snooze.15m": "15 min",
1664
+ "lifeopsoverview.snooze.1h": "1 hour",
1665
+ "lifeopsoverview.snooze.30m": "30 min",
1666
+ "lifeopsoverview.snooze.tomorrowMorning": "Tomorrow",
1667
+ "lifeopsoverview.snooze.tonight": "Tonight",
1668
+ "lifeopsoverview.snoozeAction": "Snooze",
1669
+ "lifeopsoverview.snoozed": "Snoozed",
1670
+ "lifeopsoverview.suggestedNextSteps": "Suggested next steps:",
1671
+ "lifeopsoverview.summary.activeGoals": "{{count}} active {{goalLabel}}",
1672
+ "lifeopsoverview.summary.liveReminders": "{{count}} live {{reminderLabel}}",
1673
+ "lifeopsoverview.summary.openItems": "{{count}} open {{itemLabel}}",
1674
+ "lifeopsoverview.supportStructure": "Support structure:",
1675
+ "lifeopsoverview.title": "Glance",
1676
+ "lifeopsoverview.upcoming": "Upcoming",
1677
+ "lifeopsoverview.whyShowingUp": "Why this is showing up",
1678
+ "lifeopspage.agentGithubConnected": "Agent GitHub{{githubHandle}} connected.",
1679
+ "lifeopspage.agentGithubConnectedRestarting": "Agent GitHub{{githubHandle}} connected and the cloud runtime is restarting.",
1680
+ "lifeopspage.agentGithubDisconnected": "Agent GitHub disconnected.",
1681
+ "lifeopspage.agentUsingOwnerGithub": "Agent is using the LifeOps GitHub account.",
1682
+ "lifeopspage.agentUsingOwnerGithubRestarting": "Agent is using the LifeOps GitHub account and the cloud runtime is restarting.",
1683
+ "lifeopspage.calendarDescription": "See today and the week ahead. Create events without leaving the app.",
1684
+ "lifeopspage.cloudRequired": "Cloud required",
1685
+ "lifeopspage.disable": "Disable LifeOps",
1686
+ "lifeopspage.disabled": "LifeOps disabled.",
1687
+ "lifeopspage.disableHint": "You can disable LifeOps at any time.",
1688
+ "lifeopspage.disconnectAgentGithubFailed": "Failed to disconnect agent GitHub.",
1689
+ "lifeopspage.disconnectGithubFailed": "Failed to disconnect GitHub.",
1690
+ "lifeopspage.enable": "Enable LifeOps",
1691
+ "lifeopspage.enabled": "LifeOps enabled.",
1692
+ "lifeopspage.enableDescription": "Enable LifeOps to let the agent triage email, manage your calendar, and keep your goals and reminders on track. You pick which accounts and permissions to connect after turning it on.",
1693
+ "lifeopspage.enableTitle": "Your personal assistant for calendar, email, and routines",
1694
+ "lifeopspage.enabling": "Enabling…",
1695
+ "lifeopspage.finishGithubAuth": "Finish GitHub authorization in your browser, then return here.",
1696
+ "lifeopspage.githubConnectedCloud": "LifeOps GitHub connected through Eliza Cloud.",
1697
+ "lifeopspage.githubDetailsLoadFailed": "GitHub connection details failed to load.",
1698
+ "lifeopspage.githubDetailsPartial": "GitHub details unavailable.",
1699
+ "lifeopspage.githubDisconnected": "LifeOps GitHub disconnected.",
1700
+ "lifeopspage.githubLinkFailed": "Failed to link GitHub to this agent.",
1701
+ "lifeopspage.githubSetupIncomplete": "GitHub setup did not complete.",
1702
+ "lifeopspage.gmailDescription": "Spot replies that need you and draft responses for review.",
1703
+ "lifeopspage.gmailTitle": "Gmail triage",
1704
+ "lifeopspage.goalsDescription": "Track habits, goals, and routines with gentle follow-ups.",
1705
+ "lifeopspage.goalsTitle": "Goals & reminders",
1706
+ "lifeopspage.loadingState": "Loading LifeOps app state",
1707
+ "lifeopspage.messagingDescription": "Connect Signal, Discord, Telegram, or iMessage so the agent can reach you.",
1708
+ "lifeopspage.messagingTitle": "Messaging",
1709
+ "lifeopspage.noCloudAgent": "No agent",
1710
+ "lifeopspage.notLinked": "Not linked",
1711
+ "lifeopspage.popupBlocked": "Popup blocked. Please allow popups and try again.",
1712
+ "lifeopspage.setupDescription": "Connect Google, GitHub, and messaging accounts.",
1713
+ "lifeopspage.setupTitle": "Access",
1714
+ "lifeopspage.startAgentGithubSetupFailed": "Failed to start agent GitHub setup.",
1715
+ "lifeopspage.startGithubSetupFailed": "Failed to start GitHub setup.",
1716
+ "lifeopspage.updateStateFailed": "Failed to update the LifeOps app state.",
1717
+ "lifeopspage.waitingRuntime": "Waiting for LifeOps runtime",
1718
+ "lifeopssettings.accounts": "Accounts",
1719
+ "lifeopssettings.agentGithubNotLinked": "Agent GitHub not linked",
1720
+ "lifeopssettings.capabilityCalendar": "Cal",
1721
+ "lifeopssettings.capabilityMail": "Mail",
1722
+ "lifeopssettings.cloudModeDescription": "Background access.",
1723
+ "lifeopssettings.copyUrl": "Copy URL",
1724
+ "lifeopssettings.disconnectAccount": "Disconnect {{label}}",
1725
+ "lifeopssettings.googleConnected": "Google connected",
1726
+ "lifeopssettings.googleModeAria": "{{side}} Google mode",
1727
+ "lifeopssettings.googleNotConnected": "Google not connected",
1728
+ "lifeopssettings.localModeDescription": "This device only.",
1729
+ "lifeopssettings.needsReauth": "Needs reauth",
1730
+ "lifeopssettings.ownerGithubNotLinked": "LifeOps owner GitHub not linked",
1731
+ "lifeopssettings.tokenMissing": "Token missing",
1732
+ "lifeopsworkspace.allDay": "All day",
1733
+ "lifeopsworkspace.brief": "Brief",
1734
+ "lifeopsworkspace.calendarLockedHint": "Connect Google for both User and Agent in Setup above to see today's events and create new ones here.",
1735
+ "lifeopsworkspace.calendarWindow": "Calendar window",
1736
+ "lifeopsworkspace.confirmationRequired": "Confirmation required",
1737
+ "lifeopsworkspace.createdEvent": "Created {{title}}",
1738
+ "lifeopsworkspace.createEvent": "Create event",
1739
+ "lifeopsworkspace.createEventFailed": "Could not create the event.",
1740
+ "lifeopsworkspace.createEventValidation": "Enter a title, date, time, and duration.",
1741
+ "lifeopsworkspace.creating": "Creating…",
1742
+ "lifeopsworkspace.draftedReply": "Drafted {{subject}}",
1743
+ "lifeopsworkspace.drafting": "Drafting...",
1744
+ "lifeopsworkspace.draftReply": "Draft reply",
1745
+ "lifeopsworkspace.draftReplyFailed": "Could not draft the reply.",
1746
+ "lifeopsworkspace.draftToneAria": "{{side}} draft tone",
1747
+ "lifeopsworkspace.durationMinutes": "Duration in minutes",
1748
+ "lifeopsworkspace.email": "Email",
1749
+ "lifeopsworkspace.emailLockedHint": "Connect Google for both User and Agent in Setup above to triage replies and draft responses here.",
1750
+ "lifeopsworkspace.eventDate": "Event date",
1751
+ "lifeopsworkspace.eventStartTime": "Event start time",
1752
+ "lifeopsworkspace.eventTitle": "Event title",
1753
+ "lifeopsworkspace.grantCalendarAccess": "Grant calendar access for this Google account in Setup.",
1754
+ "lifeopsworkspace.grantGmailAccess": "Grant Gmail access for this Google account in Setup.",
1755
+ "lifeopsworkspace.hideNewEvent": "Hide new event",
1756
+ "lifeopsworkspace.inboxClear": "Inbox clear. Nothing to triage right now.",
1757
+ "lifeopsworkspace.loadFailed": "Workspace failed to load.",
1758
+ "lifeopsworkspace.loadingEvents": "Loading events…",
1759
+ "lifeopsworkspace.loadingRecentMail": "Loading recent mail…",
1760
+ "lifeopsworkspace.locationOptional": "Location (optional)",
1761
+ "lifeopsworkspace.neutral": "Neutral",
1762
+ "lifeopsworkspace.newEvent": "New event",
1763
+ "lifeopsworkspace.nothingScheduled": "Nothing scheduled. Use New event below to add one.",
1764
+ "lifeopsworkspace.readyToSend": "Ready to send",
1765
+ "lifeopsworkspace.sending": "Sending...",
1766
+ "lifeopsworkspace.sendReplyFailed": "Could not send the reply.",
1767
+ "lifeopsworkspace.sentReply": "Sent {{subject}}",
1768
+ "lifeopsworkspace.warm": "Warm",
1769
+ "lifeopsworkspace.week": "Week",
1770
+ "loadingscreen.LoadingAvatar": "Loading avatar",
1771
+ "logspageview.AgentRuntimeLogsW": "Agent runtime logs with filtering.",
1772
+ "logsview.ActiveFilter": "{{count}} active filter",
1773
+ "logsview.ActiveFilters": "{{count}} active filters",
1774
+ "logsview.AllLevels": "All levels",
1775
+ "logsview.AllSources": "All sources",
1776
+ "logsview.AllTags": "All tags",
1777
+ "logsview.ClearFilters": "Clear filters",
1778
+ "logsview.Debug": "Debug",
1779
+ "logsview.FilterLogs": "Filter logs",
1780
+ "logsview.FilterLogsDescription": "Narrow the runtime stream by text, severity, source, or tag so the current incident stands out without losing the surrounding context.",
1781
+ "logsview.Info": "Info",
1782
+ "logsview.Level": "Level",
1783
+ "logsview.LoadFailed": "Failed to load logs: {{message}}",
1784
+ "logsview.NoLogEntries": "No log entries",
1785
+ "logsview.NoLogEntriesMatchingFilters": "No log entries matching filters.",
1786
+ "logsview.NoLogEntriesMatchingFiltersDescription": "Try broadening the current log filters to bring entries back into view.",
1787
+ "logsview.NoLogEntriesYet": "No log entries yet.",
1788
+ "logsview.NoLogEntriesYetDescription": "New runtime and service events will appear here as the system emits them.",
1789
+ "logsview.SearchLogs": "Search logs...",
1790
+ "logsview.ShowingEntries": "Showing {{count}} entries",
1791
+ "logsview.ShowingEntry": "Showing {{count}} entry",
1792
+ "logsview.Source": "Source",
1793
+ "logsview.Tags": "Tags",
1794
+ "logsview.Time": "Time",
1795
+ "logsview.Warn": "Warn",
1796
+ "mediagalleryview.AllMedia": "All media",
1797
+ "mediagalleryview.AudioPreview": "Audio Preview",
1798
+ "mediagalleryview.Images": "Images",
1799
+ "mediagalleryview.ItemCountMany": "{{count}} items",
1800
+ "mediagalleryview.ItemCountOne": "{{count}} item",
1801
+ "mediagalleryview.LoadFailed": "Failed to load media: {{message}}",
1802
+ "mediagalleryview.Media": "Media",
1803
+ "mediagalleryview.MediaDetails": "Media Details",
1804
+ "mediagalleryview.MediaItem": "Media item",
1805
+ "mediagalleryview.NoFilterMatchesDescription": "No items match the current filter.",
1806
+ "mediagalleryview.NoMediaDetectedDescription": "No images, videos, or audio files were detected in the database.",
1807
+ "mediagalleryview.NoMediaFound": "No media found",
1808
+ "mediagalleryview.ScanningForMedia": "Scanning for media...",
1809
+ "mediagalleryview.SearchActive": "Search active",
1810
+ "mediagalleryview.SearchMedia": "Search media...",
1811
+ "mediasettingssection.AnthropicApiKey": "Anthropic API Key",
1812
+ "mediasettingssection.ApiKeySetLeaveBlank": "API key set — leave blank to keep",
1813
+ "mediasettingssection.APISourceForCategory": "{{category}} API source:",
1814
+ "mediasettingssection.AudioMusic": "Audio / Music",
1815
+ "mediasettingssection.Camera": "Camera",
1816
+ "mediasettingssection.CameraPermissionRequestSent": "Camera permission request sent.",
1817
+ "mediasettingssection.CameraPreviewStarted": "Camera preview started.",
1818
+ "mediasettingssection.CameraPreviewStopped": "Camera preview stopped.",
1819
+ "mediasettingssection.CameraPreviewUnavailable": "Camera preview unavailable.",
1820
+ "mediasettingssection.CameraRecordingStarted": "Camera recording started.",
1821
+ "mediasettingssection.CameraRecordingStopped": "Camera recording stopped.",
1822
+ "mediasettingssection.CameraRecordingUnavailable": "Camera recording unavailable.",
1823
+ "mediasettingssection.CameraSwitched": "Camera switched.",
1824
+ "mediasettingssection.CapturePhoto": "Capture Photo",
1825
+ "mediasettingssection.ChirpV3": "Chirp v3",
1826
+ "mediasettingssection.ChirpV35": "Chirp v3.5",
1827
+ "mediasettingssection.Claude35Sonnet": "Claude Sonnet 4.6",
1828
+ "mediasettingssection.Claude3Haiku": "Claude 3 Haiku",
1829
+ "mediasettingssection.ClaudeSonnet4": "Claude Sonnet 4",
1830
+ "mediasettingssection.DALLE2": "DALL-E 2",
1831
+ "mediasettingssection.DALLE3": "DALL-E 3",
1832
+ "mediasettingssection.DesktopOnly": "Native camera and screen capture controls are only available inside the Electrobun runtime.",
1833
+ "mediasettingssection.EnterApiKey": "Enter API key...",
1834
+ "mediasettingssection.FalApiKey": "FAL API Key",
1835
+ "mediasettingssection.FastFlux": "Fast Flux",
1836
+ "mediasettingssection.Flux": "Flux",
1837
+ "mediasettingssection.Flux2Flex": "Flux 2 Flex",
1838
+ "mediasettingssection.FluxDev": "Flux Dev",
1839
+ "mediasettingssection.FluxKontextPro": "Flux Kontext Pro",
1840
+ "mediasettingssection.FluxPro": "Flux Pro",
1841
+ "mediasettingssection.FluxProV11": "Flux Pro v1.1",
1842
+ "mediasettingssection.FluxSchnell": "Flux Schnell",
1843
+ "mediasettingssection.Gemini15Flash": "Gemini 1.5 Flash",
1844
+ "mediasettingssection.Gemini15Pro": "Gemini 1.5 Pro",
1845
+ "mediasettingssection.Gemini20Flash": "Gemini 2.0 Flash",
1846
+ "mediasettingssection.GenerateGroupHint": "Use the tabs to switch category; settings below apply to the selected tab.",
1847
+ "mediasettingssection.GenerateGroupRegionLabel": "Media generation by category",
1848
+ "mediasettingssection.GenerateGroupTitle": "Generation",
1849
+ "mediasettingssection.GoogleApiKey": "Google API Key",
1850
+ "mediasettingssection.GPT4o": "GPT-4o",
1851
+ "mediasettingssection.GPT4oMini": "GPT-4o Mini",
1852
+ "mediasettingssection.GPT4Turbo": "GPT-4 Turbo",
1853
+ "mediasettingssection.GrokImagineXAI": "Grok Imagine (xAI)",
1854
+ "mediasettingssection.GrokVideoXAI": "Grok Video (xAI)",
1855
+ "mediasettingssection.GrokXAI": "Grok (xAI)",
1856
+ "mediasettingssection.HD": "HD",
1857
+ "mediasettingssection.HunyuanVideo": "Hunyuan Video",
1858
+ "mediasettingssection.ImageGeneration": "Image Generation",
1859
+ "mediasettingssection.ImageToVideo": "Image to Video",
1860
+ "mediasettingssection.Kling30": "Kling 3.0",
1861
+ "mediasettingssection.Kling30Pro": "Kling 3.0 Pro",
1862
+ "mediasettingssection.KlingImageO3": "Kling Image O3",
1863
+ "mediasettingssection.KlingImageV3": "Kling Image v3",
1864
+ "mediasettingssection.KlingO3": "Kling O3",
1865
+ "mediasettingssection.KlingO3Pro": "Kling O3 Pro",
1866
+ "mediasettingssection.LastSavedPath": "Last saved path: {{path}}",
1867
+ "mediasettingssection.LoadingMediaConfig": "Loading media configuration...",
1868
+ "mediasettingssection.LTX219B": "LTX-2 19B",
1869
+ "mediasettingssection.LumaDreamMachine": "Luma Dream Machine",
1870
+ "mediasettingssection.MaxDurationSecond": "Max Duration (seconds)",
1871
+ "mediasettingssection.MediaApiSourceCategory.image": "Image",
1872
+ "mediasettingssection.MediaApiSourceCategory.vision": "Vision",
1873
+ "mediasettingssection.MinimaxHailuo": "Minimax Hailuo",
1874
+ "mediasettingssection.Mochi1": "Mochi 1",
1875
+ "mediasettingssection.Model": "Model",
1876
+ "mediasettingssection.NanoBananaProGoo": "Nano Banana Pro (Google)",
1877
+ "mediasettingssection.NativeCaptureControls": "Native Capture Controls",
1878
+ "mediasettingssection.NativeCaptureControlsDesc": "Camera preview, capture, recording, and screencapture tools owned by the desktop runtime.",
1879
+ "mediasettingssection.NativeMediaActionFailed": "Native media action failed.",
1880
+ "mediasettingssection.NativeMediaStateRefreshed": "Native media state refreshed.",
1881
+ "mediasettingssection.NeedsSetup": "Needs Setup",
1882
+ "mediasettingssection.NoCameraDevices": "No camera devices",
1883
+ "mediasettingssection.NoPhotoCapturedYet": "No photo captured yet.",
1884
+ "mediasettingssection.NoSavedCapturePathYet": "No saved capture path yet.",
1885
+ "mediasettingssection.NoScreenSources": "No screen sources",
1886
+ "mediasettingssection.OpenAIApiKey": "OpenAI API Key",
1887
+ "mediasettingssection.OpenedSavedCapture": "Opened saved capture.",
1888
+ "mediasettingssection.OpenedScreenRecordingSettings": "Opened screen recording settings.",
1889
+ "mediasettingssection.OpenSavedCapture": "Open Saved Capture",
1890
+ "mediasettingssection.OpenScreenPermissionSettings": "Open Screen Permission Settings",
1891
+ "mediasettingssection.OtherModels": "Other Models",
1892
+ "mediasettingssection.Paused": "paused",
1893
+ "mediasettingssection.PauseRecording": "Pause Recording",
1894
+ "mediasettingssection.Permission": "Permission",
1895
+ "mediasettingssection.PermissionStatus.denied": "Denied",
1896
+ "mediasettingssection.PermissionStatus.granted": "Granted",
1897
+ "mediasettingssection.PermissionStatus.not-applicable": "Not applicable",
1898
+ "mediasettingssection.PermissionStatus.not-determined": "Not set",
1899
+ "mediasettingssection.PermissionStatus.restricted": "Restricted",
1900
+ "mediasettingssection.PhotoCaptureCompleted": "Photo capture completed.",
1901
+ "mediasettingssection.PhotoCapturedInMemory": "Photo captured in memory.",
1902
+ "mediasettingssection.PhotoCaptureRequested": "Photo capture requested.",
1903
+ "mediasettingssection.PhotoCaptureUnavailable": "Photo capture unavailable.",
1904
+ "mediasettingssection.PixverseV45": "Pixverse v4.5",
1905
+ "mediasettingssection.Provider": "Provider:",
1906
+ "mediasettingssection.ProviderHintAnthropicVision": "Claude Vision",
1907
+ "mediasettingssection.ProviderHintElevenLabs": "Sound effects",
1908
+ "mediasettingssection.ProviderHintFalImage": "Flux 2, Kling, Recraft, Grok",
1909
+ "mediasettingssection.ProviderHintFalVideo": "Veo 3, Sora 2, Kling 3, Minimax",
1910
+ "mediasettingssection.ProviderHintGoogleImage": "Imagen 3",
1911
+ "mediasettingssection.ProviderHintGoogleVideo": "Veo",
1912
+ "mediasettingssection.ProviderHintGoogleVision": "Gemini Vision",
1913
+ "mediasettingssection.ProviderHintOpenAIVideo": "Sora",
1914
+ "mediasettingssection.ProviderHintOpenAIVision": "GPT-4o Vision",
1915
+ "mediasettingssection.ProviderHintSuno": "Music generation",
1916
+ "mediasettingssection.ProviderHintXAIAurora": "Aurora",
1917
+ "mediasettingssection.ProviderHintXAIVision": "Grok Vision",
1918
+ "mediasettingssection.Quality": "Quality",
1919
+ "mediasettingssection.Recording": "Recording",
1920
+ "mediasettingssection.RecraftV3": "Recraft V3",
1921
+ "mediasettingssection.RequestCameraPermission": "Request Camera Permission",
1922
+ "mediasettingssection.ResumeRecording": "Resume Recording",
1923
+ "mediasettingssection.ScreenCapture": "Screen Capture",
1924
+ "mediasettingssection.ScreenRecordingPaused": "Screen recording paused.",
1925
+ "mediasettingssection.ScreenRecordingResumed": "Screen recording resumed.",
1926
+ "mediasettingssection.ScreenRecordingStarted": "Screen recording started.",
1927
+ "mediasettingssection.ScreenRecordingStopped": "Screen recording stopped.",
1928
+ "mediasettingssection.ScreenRecordingUnavailable": "Screen recording unavailable.",
1929
+ "mediasettingssection.ScreenshotCapturedAndSaved": "Screenshot captured and saved.",
1930
+ "mediasettingssection.ScreenshotUnavailable": "Screenshot unavailable.",
1931
+ "mediasettingssection.ScreenSourceSwitched": "Screen source switched.",
1932
+ "mediasettingssection.SelectCameraFirst": "Select a camera device first.",
1933
+ "mediasettingssection.SelectScreenSourceFirst": "Select a screen source first.",
1934
+ "mediasettingssection.Sora2": "Sora 2",
1935
+ "mediasettingssection.Sora2Pro": "Sora 2 Pro",
1936
+ "mediasettingssection.StableDiffusion3": "Stable Diffusion 3",
1937
+ "mediasettingssection.Standard": "Standard",
1938
+ "mediasettingssection.StartCameraRecording": "Start Camera Recording",
1939
+ "mediasettingssection.StartPreview": "Start Preview",
1940
+ "mediasettingssection.StartScreenRecording": "Start Screen Recording",
1941
+ "mediasettingssection.StopCameraRecording": "Stop Camera Recording",
1942
+ "mediasettingssection.StopPreview": "Stop Preview",
1943
+ "mediasettingssection.StopScreenRecording": "Stop Screen Recording",
1944
+ "mediasettingssection.SunoApiKey": "Suno API Key",
1945
+ "mediasettingssection.SwitchCamera": "Switch Camera",
1946
+ "mediasettingssection.SwitchSource": "Switch Source",
1947
+ "mediasettingssection.TakeScreenshot": "Take Screenshot",
1948
+ "mediasettingssection.TextToVideo": "Text to Video",
1949
+ "mediasettingssection.Veo31": "Veo 3.1",
1950
+ "mediasettingssection.Veo31Fast": "Veo 3.1 Fast",
1951
+ "mediasettingssection.Veo31Google": "Veo 3.1 (Google)",
1952
+ "mediasettingssection.VideoGeneration": "Video Generation",
1953
+ "mediasettingssection.VisionAnalysis": "Vision (Analysis)",
1954
+ "mediasettingssection.Wan22": "Wan 2.2",
1955
+ "mediasettingssection.XAIApiKey": "xAI API Key",
1956
+ "memory.noMemoriesFound": "No memories found",
1957
+ "memory.noMemoriesYet": "No memories yet",
1958
+ "memory.refreshFeed": "Refresh feed",
1959
+ "memory.searchMemoryText": "Search memory text...",
1960
+ "memoryviewer.SearchPeople": "Search people…",
1961
+ "messagecontent.ConnectorsTabLabel": "Plugins > Connectors",
1962
+ "messagecontent.DisablePluginFailed": "Couldn't disable this plugin.",
1963
+ "messagecontent.Disabling": "Turning off...",
1964
+ "messagecontent.EnablePlugin": "Enable plugin",
1965
+ "messagecontent.EnablePluginFailed": "Couldn't enable this plugin.",
1966
+ "messagecontent.Enabling": "Turning on...",
1967
+ "messagecontent.FeaturesTabLabel": "Plugins > Features",
1968
+ "messagecontent.HideJson": "Hide JSON",
1969
+ "messagecontent.InteractiveUI": "Interactive UI",
1970
+ "messagecontent.LoadingConfiguration": "Loading {{pluginId}} configuration...",
1971
+ "messagecontent.LoadPluginInfoFailed": "Couldn't load plugin info.",
1972
+ "messagecontent.NoConfigurablePara": "No configurable parameters.",
1973
+ "messagecontent.PluginConfigurationTitle": "{{name}} Configuration",
1974
+ "messagecontent.PluginEnabledInlineNotice": "{{name}} is enabled.",
1975
+ "messagecontent.PluginEnabledNotice": "{{name}} is on. Find it in {{tabLabel}}.",
1976
+ "messagecontent.PluginNotFound": "Plugin \"{{pluginId}}\" not found.",
1977
+ "messagecontent.SaveFailed": "Couldn't save changes.",
1978
+ "messagecontent.SystemTabLabel": "Plugins > System",
1979
+ "messagecontent.ViewJson": "View JSON",
1980
+ "miladyos.beginVcard": "BEGIN:VCARD",
1981
+ "miladyos.nameNumberOrEmail": "Name, number, or email",
1982
+ "miladyos.nameNumberOrEmail2": "Name, number, or email",
1983
+ "music.agentMusicStream": "Agent music stream",
1984
+ "music.music": "Music",
1985
+ "music.refreshMusicPlayer": "Refresh music player",
1986
+ "musicplayersettings.Description": "Play the current music stream for this agent.",
1987
+ "musicplayersettings.NoTrack": "No track is playing.",
1988
+ "musicplayersettings.NowPlaying": "Now playing",
1989
+ "musicplayersettings.PollFailed": "Could not reach the now-playing endpoint.",
1990
+ "musicplayersettings.ResolvingUrls": "Resolving playback URLs…",
1991
+ "musicplayersettings.StreamBase": "Stream URL",
1992
+ "musicplayersettings.Title": "Agent music player",
1993
+ "nav.advanced": "Advanced",
1994
+ "nav.apps": "Apps",
1995
+ "nav.automations": "Automations",
1996
+ "nav.browser": "Browser",
1997
+ "nav.character": "Character",
1998
+ "nav.chat": "Chat",
1999
+ "nav.companion": "Companion",
2000
+ "nav.description.apps": "Browse installed apps and active runs",
2001
+ "nav.description.automations": "Build workflows, schedules, and automated tasks",
2002
+ "nav.description.browser": "Open and control pages in the browser workspace",
2003
+ "nav.description.character": "Edit character profile, voice, and examples",
2004
+ "nav.description.chat": "View chats, terminal sessions, and message history",
2005
+ "nav.description.settings": "Manage models, permissions, and app settings",
2006
+ "nav.description.stream": "Monitor live streams and activity",
2007
+ "nav.description.wallet": "Review wallet balances and transaction controls",
2008
+ "nav.heartbeats": "Heartbeats",
2009
+ "nav.knowledge": "Knowledge",
2010
+ "nav.lifeops": "LifeOps",
2011
+ "nav.settings": "Settings",
2012
+ "nav.social": "Connectors",
2013
+ "nav.stream": "Stream",
2014
+ "nav.wallet": "Wallet",
2015
+ "nodeCatalog.catalogEmpty": "No nodes available. The agent may still be loading plugins.",
2016
+ "nodeCatalog.classAction": "Action",
2017
+ "nodeCatalog.classContext": "Context",
2018
+ "nodeCatalog.classFlowControl": "Flow Control",
2019
+ "nodeCatalog.classIntegration": "Integration",
2020
+ "nodeCatalog.classTrigger": "Trigger",
2021
+ "nodeCatalog.empty": "No nodes match your filters.",
2022
+ "nodeCatalog.ownerScoped": "Personal data",
2023
+ "nodeCatalog.searchPlaceholder": "Search nodes…",
2024
+ "nodeCatalog.showingXofY": "Showing {{shown}} of {{total}}",
2025
+ "nodeCatalog.subtitle": "Everything your agent can do — actions, integrations, triggers, and context providers.",
2026
+ "nodeCatalog.viewAll": "View all {{count}} nodes →",
2027
+ "notice.elizaCloudAuthRejected": "Eliza Cloud rejected your API key, so model calls will fail. Open Settings → Cloud and sign in again or paste a new key from elizacloud.ai.",
2028
+ "onboarding.addAnotherProvider": "Add another provider",
2029
+ "onboarding.allConfigured": "You can adjust settings anytime.",
2030
+ "onboarding.almostThere": "Almost there!",
2031
+ "onboarding.apiKey": "API Key",
2032
+ "onboarding.assetsLoadingInBackground": "Assets are still finishing in the background.",
2033
+ "onboarding.assetsLoadingProgress": "Loading assets... {{loaded}} (critical {{critical}})",
2034
+ "onboarding.assetsReady": "Assets ready - character selection should open instantly.",
2035
+ "onboarding.authCodeInstructions": "After logging in, you will receive an authorization code.\nCopy and paste it below.",
2036
+ "onboarding.autoDetected": "Auto-detected",
2037
+ "onboarding.back": "← Back",
2038
+ "onboarding.chatgptSubscriptionReady": "Your ChatGPT subscription is ready to use.",
2039
+ "onboarding.checkExistingSetup": "Use Existing",
2040
+ "onboarding.chooseProvider": "Choose your AI provider",
2041
+ "onboarding.claudeSubscriptionReady": "Your Claude subscription is ready to use.",
2042
+ "onboarding.clickHere": "Click here",
2043
+ "onboarding.cloudLoginBtn": "Log in with Eliza Cloud",
2044
+ "onboarding.cloudLoginBusy": "Waiting for login in your browser...",
2045
+ "onboarding.cloudLoginConnected": "✓ Connected to Eliza Cloud",
2046
+ "onboarding.cloudLoginDesc": "Eliza Cloud is free to get started and handles all the backend infrastructure for you.",
2047
+ "onboarding.cloudLoginRetry": "Retry Login",
2048
+ "onboarding.cloudLoginTitle": "{{appName}} / Eliza Cloud",
2049
+ "onboarding.companionReady": "Setup is complete.",
2050
+ "onboarding.completeLogin": "Complete Login",
2051
+ "onboarding.configureAiLater": "Set up later",
2052
+ "onboarding.connectAccount": "Connect Account",
2053
+ "onboarding.connectedToChatGPT": "Connected to ChatGPT",
2054
+ "onboarding.connectedToClaude": "Connected to Claude",
2055
+ "onboarding.continueLimitedSetup": "Continue with limited setup",
2056
+ "onboarding.continueOffline": "Continue Offline",
2057
+ "onboarding.copyEntireUrl": ". Copy the entire URL from your browser's address bar.",
2058
+ "onboarding.customModel": "Custom model...",
2059
+ "onboarding.customSetup": "New Setup",
2060
+ "onboarding.decryptionPasswordPlaceholder": "Decryption password...",
2061
+ "onboarding.deployment.remoteLabel": "Connect to a remote agent",
2062
+ "onboarding.deployment.remoteTokenPlaceholder": "Access token (optional)",
2063
+ "onboarding.deployment.remoteUrlPlaceholder": "https://your-agent.example.com",
2064
+ "onboarding.deployment.subtitle": "Where should your agent run?",
2065
+ "onboarding.deployment.title": "Choose your setup",
2066
+ "onboarding.detectedFromClaudeCode": "Detected from Claude Code",
2067
+ "onboarding.detectedFromCodex": "Detected from Codex",
2068
+ "onboarding.detectedFromEnv": "Detected from env",
2069
+ "onboarding.detectedFromKeychain": "Detected from Keychain",
2070
+ "onboarding.elevenLabsApiKey": "ElevenLabs API Key",
2071
+ "onboarding.enter": "Enter",
2072
+ "onboarding.enterApiKey": "Enter your API key...",
2073
+ "onboarding.enterSetupToken": "Enter your setup token",
2074
+ "onboarding.exchangeFailed": "Exchange failed",
2075
+ "onboarding.exchangeFailedWithMessage": "Exchange failed: {{message}}",
2076
+ "onboarding.existingSetupDesc": "Existing setup detected. Continue, or start fresh?",
2077
+ "onboarding.failedToGetAuthUrl": "Failed to get auth URL",
2078
+ "onboarding.failedToStartLogin": "Failed to start login: {{message}}",
2079
+ "onboarding.features.browser.desc": "Pair with the LifeOps browser extension for web automation.",
2080
+ "onboarding.features.continueWithout": "Continue without features",
2081
+ "onboarding.features.crypto.desc": "Enable blockchain capabilities with Solana and EVM wallets.",
2082
+ "onboarding.features.crypto.name": "Crypto Wallet",
2083
+ "onboarding.features.discord.desc": "Connect your agent to Discord. Fully managed via Eliza Cloud.",
2084
+ "onboarding.features.managed": "Managed",
2085
+ "onboarding.features.managedSection": "Managed connectors",
2086
+ "onboarding.features.optionalSection": "Optional capabilities",
2087
+ "onboarding.features.phone.desc": "Get a cloud phone number for your agent. SMS and voice via Eliza Cloud.",
2088
+ "onboarding.features.phone.name": "Phone",
2089
+ "onboarding.features.subtitle": "Connect platforms and capabilities. You can always change these later in Settings.",
2090
+ "onboarding.features.telegram.desc": "Message your agent on Telegram. Fully managed via Eliza Cloud.",
2091
+ "onboarding.features.telegram.name": "Telegram",
2092
+ "onboarding.features.title": "Enable features",
2093
+ "onboarding.freeCredits": "Free credits to get started.",
2094
+ "onboarding.getOneHere": "Get one here",
2095
+ "onboarding.getStarted": "Get Started",
2096
+ "onboarding.hostingElizaCloudDesc": "Use Eliza Cloud for managed hosting and 24/7 availability.",
2097
+ "onboarding.hostingElizaCloudHybrid": "Cloud + phone compute",
2098
+ "onboarding.hostingElizaCloudHybridDesc": "Run in Eliza Cloud and donate eligible local model work from this device.",
2099
+ "onboarding.hostingLocalDesc": "Run the backend on this machine.",
2100
+ "onboarding.hostingQuestion": "Where should {{appName}} run?",
2101
+ "onboarding.hostingRemote": "Remote",
2102
+ "onboarding.hostingRemoteDesc": "Connect to an existing backend with its address and access key.",
2103
+ "onboarding.importDesc": "Select an <code>.eliza-agent</code> export file and enter the decryption password.",
2104
+ "onboarding.keyFormatWarning": "Key format looks incorrect. Double-check and try again.",
2105
+ "onboarding.login": "Login",
2106
+ "onboarding.loginSessionExpired": "Login session expired. Click 'Start Over' and try again.",
2107
+ "onboarding.loginWithAnthropic": "Login with Claude",
2108
+ "onboarding.loginWithOpenAI": "Login with OpenAI",
2109
+ "onboarding.modelPlaceholder": "provider/model (e.g. anthropic/claude-sonnet-4-6)",
2110
+ "onboarding.networkError": "Network error — check your connection and try again.",
2111
+ "onboarding.neuralLinkTitle": "Neural Link",
2112
+ "onboarding.noAuthUrlReturned": "No auth URL returned from login",
2113
+ "onboarding.oauthLogin": "OAuth Login",
2114
+ "onboarding.ollamaNoConfig": "No configuration needed. Ollama will be used automatically.",
2115
+ "onboarding.openLoginPageInBrowser": "Open login page in browser",
2116
+ "onboarding.openLoginPageInBrowserDesc": "Open the login page in your browser to continue.",
2117
+ "onboarding.openThisLinkToLogIn": "Open this link to log in:",
2118
+ "onboarding.passwordMinError": "Password must be at least 4 characters.",
2119
+ "onboarding.paste": "Paste",
2120
+ "onboarding.pasteAuthCode": "Paste authorization code...",
2121
+ "onboarding.piCredentialsHint": "Uses credentials from ~/.pi/agent/auth.json.",
2122
+ "onboarding.piDropdownHint": " Pick from the dropdown or choose a custom model.",
2123
+ "onboarding.piManualHint": " Enter provider/model manually if you want an override.",
2124
+ "onboarding.primaryModelOptional": "Primary Model (optional)",
2125
+ "onboarding.recommended": "Recommended",
2126
+ "onboarding.redirectInstructions": "After logging in, your browser will redirect to",
2127
+ "onboarding.redirectUrl": "Redirect URL",
2128
+ "onboarding.redirectUrlPlaceholder": "http://localhost:1455/...",
2129
+ "onboarding.remoteAccessKey": "Access key",
2130
+ "onboarding.remoteAccessKeyPlaceholder": "Paste the ELIZA_API_TOKEN value",
2131
+ "onboarding.remoteAddress": "Backend address",
2132
+ "onboarding.remoteAddressPlaceholder": "https://my-eliza.example.com",
2133
+ "onboarding.remoteConnect": "Connect remote backend",
2134
+ "onboarding.remoteConnectedDesc": "Connected to your remote {{appName}} backend. Continue configuring it here.",
2135
+ "onboarding.remoteTitle": "Remote {{appName}}",
2136
+ "onboarding.reportIssue": "Report issue",
2137
+ "onboarding.requiresChatGPTSub": "Requires a ChatGPT Plus or Pro subscription.",
2138
+ "onboarding.requiresClaudeSub": "Requires a Claude Pro or Max subscription.",
2139
+ "onboarding.restore": "Restore",
2140
+ "onboarding.rpcAlchemyHint": "Covers Ethereum, Base, Arbitrum, Optimism, Polygon, and BSC.",
2141
+ "onboarding.rpcAlchemyKey": "Alchemy API Key",
2142
+ "onboarding.rpcAlchemyPlaceholder": "Enter Alchemy API key",
2143
+ "onboarding.rpcBirdeyeHint": "Optional Solana market data for richer token coverage.",
2144
+ "onboarding.rpcBirdeyeKey": "Birdeye API Key (Solana)",
2145
+ "onboarding.rpcBirdeyePlaceholder": "Enter Birdeye API key (optional)",
2146
+ "onboarding.rpcBringKeys": "Bring Your Own Keys",
2147
+ "onboarding.rpcBringKeysDescription": "Connect your preferred RPC providers for chains where you want direct control.",
2148
+ "onboarding.rpcBringKeysProviders": "Alchemy, QuickNode, Helius",
2149
+ "onboarding.rpcConnectedCloud": "Connected via Eliza Cloud",
2150
+ "onboarding.rpcDesc": "RPC providers give your agent access to blockchain data for wallet & trading. You can skip this and configure it later in Settings.",
2151
+ "onboarding.rpcElizaCloud": "Use Eliza Cloud",
2152
+ "onboarding.rpcElizaCloudDesc": "All chains included. No API keys needed.",
2153
+ "onboarding.rpcHeliusHint": "Solana mainnet RPC and token data.",
2154
+ "onboarding.rpcHeliusKey": "Helius API Key (Solana)",
2155
+ "onboarding.rpcHeliusPlaceholder": "Enter Helius API key",
2156
+ "onboarding.rpcQuestion": "Configure blockchain RPC providers?",
2157
+ "onboarding.rpcSkip": "Skip for now",
2158
+ "onboarding.rpcTitle": "Blockchain Access",
2159
+ "onboarding.saveClaudeSubscription": "Save Claude subscription",
2160
+ "onboarding.savingClaudeSubscription": "Saving Claude subscription...",
2161
+ "onboarding.selectFileError": "Select an export file before importing.",
2162
+ "onboarding.selectModel": "Select Model",
2163
+ "onboarding.setupToken": "Setup Token",
2164
+ "onboarding.setupTokenInstructions": "How to get your setup token:\n\n• Option A: Run claude setup-token in your terminal\n\n• Option B: Go to claude.ai/settings/api → \"Claude Code\" → \"Use setup token\"",
2165
+ "onboarding.startOver": "Start Over",
2166
+ "onboarding.stepLabel": "Step {{current}} of {{total}}",
2167
+ "onboarding.stepName.deployment": "Setup",
2168
+ "onboarding.stepName.identity": "Identity",
2169
+ "onboarding.stepName.providers": "AI Providers",
2170
+ "onboarding.stepNavigation": "Onboarding step navigation",
2171
+ "onboarding.stepSub.deployment": "Where to run",
2172
+ "onboarding.stepSub.features": "Connectors & capabilities",
2173
+ "onboarding.stepSub.hosting": "Where does it run?",
2174
+ "onboarding.stepSub.identity": "Choose your style",
2175
+ "onboarding.stepSub.permissions": "System access",
2176
+ "onboarding.stepSub.providers": "Neural link",
2177
+ "onboarding.systemAccessTitle": "System Access",
2178
+ "onboarding.useDefaultModel": "Use default model",
2179
+ "onboarding.useExistingKey": "Use this if you already have a key.",
2180
+ "onboarding.useExistingSetup": "Existing Setup",
2181
+ "onboarding.voiceProviderDesc": "Choose your preferred voice provider for Eliza, or skip to use text only.",
2182
+ "onboarding.voiceProviderTitle": "Voice Provider Setup",
2183
+ "onboarding.welcomeDesc": "Your AI companion is almost ready.",
2184
+ "onboarding.welcomeTitle": "Welcome to {{appName}}",
2185
+ "pairingview.AskTheServerOwner": "Ask the server owner for an API token.",
2186
+ "pairingview.EnablePairingOnTh": "Enable pairing on the server and restart {{appName}}.",
2187
+ "pairingview.EnterPairingCode": "Enter pairing code",
2188
+ "pairingview.EnterThePairingCo": "Enter the pairing code from the server logs to authenticate.",
2189
+ "pairingview.Expired": "Expired",
2190
+ "pairingview.ExpiresIn": "Expires in {{time}}",
2191
+ "pairingview.NextSteps": "Next steps:",
2192
+ "pairingview.PairingCode": "Pairing Code",
2193
+ "pairingview.PairingInProgress": "Pairing...",
2194
+ "pairingview.PairingIsNotEnabl": "Pairing is not enabled on this server.",
2195
+ "pairingview.PairingRequired": "Pairing Required",
2196
+ "pairingview.PairingSetupDocs": "Pairing setup docs",
2197
+ "permissionssection.AllowAll": "Allow All",
2198
+ "permissionssection.badge.notAsked": "Not Asked",
2199
+ "permissionssection.badge.offInSettings": "Off in Settings",
2200
+ "permissionssection.BrowserPermissions": "Browser Permissions",
2201
+ "permissionssection.CapabilitiesDescription": "Turn higher-level capabilities on only after the required runtime permissions are available.",
2202
+ "permissionssection.CapabilitiesRequire": "Capabilities require the system permissions listed above.",
2203
+ "permissionssection.CheckAccess": "Check Access",
2204
+ "permissionssection.CheckingPermissions": "Checking permissions...",
2205
+ "permissionssection.DisableShellAccess": "Disable shell access",
2206
+ "permissionssection.EnableShellAccess": "Enable shell access",
2207
+ "permissionssection.Grant": "Grant",
2208
+ "permissionssection.GrantingPermissions": "Granting...",
2209
+ "permissionssection.GrantPermissions": "Grant Permissions",
2210
+ "permissionssection.GrantPermissionsNote": "Grant permissions to enable features like voice input and computer control.",
2211
+ "permissionssection.GrantPermissionsTo": "Grant permissions to unlock desktop features.",
2212
+ "permissionssection.GrantRequiredPermissionsFirst": "Grant required permissions first",
2213
+ "permissionssection.LoadingPermissions": "Loading permissions...",
2214
+ "permissionssection.LocalRuntime": "Local runtime",
2215
+ "permissionssection.MacGrantAccessNote": "macOS requires Accessibility permission for computer control. Open System Settings → Privacy & Security to grant access.",
2216
+ "permissionssection.MacSystemPermissionsDescription": "Review the native permissions {{appName}} needs for desktop control, voice input, and visual analysis. macOS changes may require opening System Settings.",
2217
+ "permissionssection.MissingPermissions": "Missing Permissions",
2218
+ "permissionssection.MobileOnboardingDesc": "Allow access so your device can stream to your cloud agent.",
2219
+ "permissionssection.MobileStreamingDesc": "Your device streams camera, microphone, and screen to your Eliza Cloud agent for processing.",
2220
+ "permissionssection.OpenSettings": "Open Settings",
2221
+ "permissionssection.PermissionGrantNote": "Granting now will request what can be approved immediately and open Settings for anything that must be enabled there.",
2222
+ "permissionssection.PermissionReadyNote": "All required permissions are ready. Continue when you're ready.",
2223
+ "permissionssection.PermissionSkipNote": "Skipping keeps desktop features locked until you grant the missing permissions in Settings.",
2224
+ "permissionssection.PluginNotAvailable": "Plugin not available",
2225
+ "permissionssection.PluginUnavailable": "Plugin unavailable",
2226
+ "permissionssection.StreamingPermissions": "Streaming Permissions",
2227
+ "permissionssection.SystemPermissions": "System Permissions",
2228
+ "permissionssection.SystemPermissionsDescription": "Grant the runtime access it needs for voice input, camera capture, shell tasks, and desktop automation features.",
2229
+ "permissionssection.UnableToCheckPerm": "Unable to check permissions.",
2230
+ "permissionssection.UnableToLoadPermi": "Unable to load permissions.",
2231
+ "permissionssection.WebOnboardingDesc": "Allow browser access so your camera, mic, and screen can stream to your agent.",
2232
+ "permissionssection.WebStreamingDesc": "Grant browser access to your camera, microphone, and screen to stream to your agent.",
2233
+ "pluginsview.23FieldDemos": "field demos",
2234
+ "pluginsview.AllowAllChats": "Allow all chats",
2235
+ "pluginsview.AllowSpecificChatsOnly": "Allow only specific chats",
2236
+ "pluginsview.Applying": "Applying",
2237
+ "pluginsview.ApplyingPluginChan": "Applying plugin change and waiting for agent restart...",
2238
+ "pluginsview.AvailableCount": "{{count}} available",
2239
+ "pluginsview.BlueBubblesConnected": "BlueBubbles is connected.",
2240
+ "pluginsview.BlueBubblesNotConnected": "BlueBubbles is not connected yet. Save the server URL and password above, then refresh.",
2241
+ "pluginsview.BlueBubblesWebhookHint": "Point your BlueBubbles webhook at the {{appName}} API host so new iMessage events stream into the inbox.",
2242
+ "pluginsview.BlueBubblesWebhookTarget": "Webhook target",
2243
+ "pluginsview.BotRespondsAnyChat": "Bot will respond in any chat",
2244
+ "pluginsview.BotRespondsListedChatIds": "Bot will only respond in listed chat IDs",
2245
+ "pluginsview.ConnectionMode": "Connection mode",
2246
+ "pluginsview.ConnectionTestFailed": "Failed: {{error}}",
2247
+ "pluginsview.ConnectionTestFailedDialog": "✕ {{error}}",
2248
+ "pluginsview.ConnectionTestPassed": "OK ({{durationMs}}ms)",
2249
+ "pluginsview.ConnectionTestPassedDialog": "✓ OK ({{durationMs}}ms)",
2250
+ "pluginsview.DEMO": "DEMO",
2251
+ "pluginsview.dependsOn": "depends on",
2252
+ "pluginsview.DiscordDeveloperPortal": "Get your API token here",
2253
+ "pluginsview.DiscordInviteBot": "Invite your agent",
2254
+ "pluginsview.DiscordLocalAuthorize": "Authorize Discord desktop",
2255
+ "pluginsview.DiscordLocalAuthorized": "Discord desktop is authorized.",
2256
+ "pluginsview.DiscordLocalAuthorizePrompt": "Authorize {{appName}} against the local Discord desktop app to read notifications, subscribe to channels, and send replies through macOS UI automation.",
2257
+ "pluginsview.DiscordLocalAuthorizing": "Authorizing…",
2258
+ "pluginsview.DiscordLocalChannels": "Subscribed channels",
2259
+ "pluginsview.DiscordLocalIpcPath": "Discord IPC socket",
2260
+ "pluginsview.DiscordLocalLoadingChannels": "Loading channels…",
2261
+ "pluginsview.DiscordLocalLoadingGuilds": "Loading Discord servers…",
2262
+ "pluginsview.DiscordLocalNoChannels": "No text channels were returned for the selected server.",
2263
+ "pluginsview.DiscordLocalNoGuilds": "No guilds were returned by the local Discord session.",
2264
+ "pluginsview.DiscordLocalSelectedCount": "{{count}} selected",
2265
+ "pluginsview.DiscordLocalSubscriptionsHint": "Select guild text channels to ingest directly. Direct-message notifications still flow through Discord RPC even without a subscribed channel list.",
2266
+ "pluginsview.DiscordLocalSubscriptionsSaved": "Channel subscriptions saved.",
2267
+ "pluginsview.DiscordLocalUnavailable": "Save the local Discord client ID and client secret above, enable the connector, and keep the Discord desktop app running on this device.",
2268
+ "pluginsview.DragToReorder": "Drag to reorder",
2269
+ "pluginsview.found": "found",
2270
+ "pluginsview.IMessageConnected": "iMessage is connected. Messages are being read from the local database.",
2271
+ "pluginsview.IMessageNotConnected": "iMessage is not connected. Set the CLI path above and ensure Full Disk Access is granted to your terminal.",
2272
+ "pluginsview.IMessageOpenFullDiskAccess": "IMessage Open Full Disk Access",
2273
+ "pluginsview.IMessagePermissionHint": "iMessage reads ~/Library/Messages/chat.db directly. Grant Full Disk Access in System Settings > Privacy & Security for the process running {{appName}}.",
2274
+ "pluginsview.IMessageSendOnly": "IMessage Send Only",
2275
+ "pluginsview.InstallConnectorPrompt": "Install this connector to activate it in the runtime.",
2276
+ "pluginsview.InstallPlugin": "Install Plugin",
2277
+ "pluginsview.LoadFailed": "Load failed",
2278
+ "pluginsview.ManagedDiscordChooseInline": "Choose which cloud agent should own managed Discord, then continue.",
2279
+ "pluginsview.ManagedDiscordChooseTarget": "Choose which cloud agent should receive managed Discord for this owned server, then continue.",
2280
+ "pluginsview.ManagedDiscordGatewayCreated": "Created a shared {{appName}} Discord gateway agent. Continue in your browser and choose a server you own.",
2281
+ "pluginsview.ManagedDiscordGatewayHint": "Prefer OAuth? Connect Eliza Cloud to use the shared {{appName}} Discord gateway instead of a local bot token.",
2282
+ "pluginsview.ManagedDiscordGatewayHintConnected": "Prefer OAuth? Managed Discord uses a shared {{appName}} gateway and only works for servers owned by the linking Discord account.",
2283
+ "pluginsview.ManagedDiscordGatewayProvisionFailed": "Failed to start the shared {{appName}} Discord gateway in Eliza Cloud.",
2284
+ "pluginsview.ManagedDiscordHint": "Prefer OAuth? Connect Eliza Cloud to use the managed Discord app instead of a local bot token.",
2285
+ "pluginsview.ManagedDiscordHintConnected": "Prefer OAuth? Use Eliza Cloud managed Discord for the shared app and server-owner setup flow.",
2286
+ "pluginsview.ManagedDiscordNeedsAgent": "Deploy a cloud agent first, then connect managed Discord from the Cloud agents screen.",
2287
+ "pluginsview.ManagedDiscordRequiresCloud": "Connect Eliza Cloud first, then you can use managed Discord OAuth.",
2288
+ "pluginsview.ManagedDiscordSelectAgent": "Select a cloud agent",
2289
+ "pluginsview.NoConfigNeeded": "No config needed",
2290
+ "pluginsview.NoConfigurationNeeded": "No configuration needed.",
2291
+ "pluginsview.NoConnectorsAvailable": "No connectors available.",
2292
+ "pluginsview.NoDescriptionAvailable": "No description available",
2293
+ "pluginsview.NoneAvailableDesc": "No {{label}} are available right now.",
2294
+ "pluginsview.NoneAvailableTitle": "No {{label}} available",
2295
+ "pluginsview.NoPluginsMatchCategory": "No plugins match the selected category.",
2296
+ "pluginsview.NoPluginsMatchFilters": "No {{label}} match your filters.",
2297
+ "pluginsview.NoResultsFound": "No {{label}} found",
2298
+ "pluginsview.NothingToShow": "Nothing to show",
2299
+ "pluginsview.NotInstalled": "Not installed",
2300
+ "pluginsview.NotLoaded": "Not loaded",
2301
+ "pluginsview.Official": "Official",
2302
+ "pluginsview.OpenElizaCloud": "Open Eliza Cloud",
2303
+ "pluginsview.PackageBrokenMis": "Package broken / missing",
2304
+ "pluginsview.PluginCatalog": "Plugin Catalog",
2305
+ "pluginsview.PluginDialogDescription": "Review plugin metadata, adjust settings, and save changes for {{plugin}}.",
2306
+ "pluginsview.PluginInstalledActivated": "{{plugin}} installed and activated without a full agent restart.",
2307
+ "pluginsview.PluginInstalledRestartComplete": "{{plugin}} installed and activated.",
2308
+ "pluginsview.PluginInstalledRestartFailed": "{{plugin}} installed, but the agent did not come back online (status: {{status}}).",
2309
+ "pluginsview.PluginInstalledRestarting": "{{plugin}} installed. Restarting the agent and waiting for activation...",
2310
+ "pluginsview.PluginInstallFailed": "Failed to install {{plugin}}: {{message}}",
2311
+ "pluginsview.PluginInstallPreparing": "Enabling plugin installs for {{plugin}} and restarting the agent...",
2312
+ "pluginsview.PluginInstallRecovering": "Finishing plugin install setup for {{plugin}} and restarting the agent...",
2313
+ "pluginsview.PluginTypes": "Plugin types",
2314
+ "pluginsview.PluginUninstalledActivated": "{{plugin}} uninstalled without a full agent restart.",
2315
+ "pluginsview.PluginUninstalledRestartComplete": "{{plugin}} uninstalled and fully unloaded.",
2316
+ "pluginsview.PluginUninstalledRestartFailed": "{{plugin}} uninstalled, but the agent did not come back online (status: {{status}}).",
2317
+ "pluginsview.PluginUninstalledRestarting": "{{plugin}} uninstalled. Restarting the agent and waiting for cleanup...",
2318
+ "pluginsview.PluginUninstallFailed": "Failed to uninstall {{plugin}}: {{message}}",
2319
+ "pluginsview.PluginUninstallPreparing": "Preparing uninstall for {{plugin}} and restarting the agent...",
2320
+ "pluginsview.PluginUninstallRecovering": "Finishing uninstall setup for {{plugin}} and restarting the agent...",
2321
+ "pluginsview.PluginUpdatedActivated": "{{plugin}} updated without a full agent restart.",
2322
+ "pluginsview.PluginUpdatedRestartComplete": "{{plugin}} updated and activated.",
2323
+ "pluginsview.PluginUpdatedRestartFailed": "{{plugin}} updated, but the agent did not come back online (status: {{status}}).",
2324
+ "pluginsview.PluginUpdatedRestarting": "{{plugin}} updated. Restarting the agent and waiting for activation...",
2325
+ "pluginsview.PluginUpdateFailed": "Failed to update {{plugin}}: {{message}}",
2326
+ "pluginsview.PluginUpdatePreparing": "Preparing updates for {{plugin}} and restarting the agent...",
2327
+ "pluginsview.PluginUpdateRecovering": "Finishing update setup for {{plugin}} and restarting the agent...",
2328
+ "pluginsview.ResetOrder": "Reset Order",
2329
+ "pluginsview.ResetToDefaultSor": "Reset to default sort order",
2330
+ "pluginsview.restarting": "restarting",
2331
+ "pluginsview.SaveChannelSubscriptions": "Save channel subscriptions",
2332
+ "pluginsview.SavedWithBang": "Saved!",
2333
+ "pluginsview.SavedWithCheck": "✓ Saved",
2334
+ "pluginsview.SaveSettings": "Save Settings",
2335
+ "pluginsview.SelectA": "Select a",
2336
+ "pluginsview.SetupGuide": "Setup guide",
2337
+ "pluginsview.TelegramAccountProvisioningExplain": "Telegram first asks {{appName}} to provision app credentials through my.telegram.org. Enter the code Telegram sent you there, then {{appName}} will request the normal account login code.",
2338
+ "pluginsview.TelegramAccountRestartHint": "Telegram authentication is saved locally. Restart the agent to bring the connector online.",
2339
+ "pluginsview.TelegramAccountSetupHint": "This is separate from the Telegram bot connector. {{appName}} logs into Telegram as you, saves a local session, and then the Telegram account connector comes online after the agent restarts.",
2340
+ "pluginsview.TelegramAccountSetupTitle": "Connect your Telegram account",
2341
+ "pluginsview.TelegramConnected": "Telegram bot connected",
2342
+ "pluginsview.TelegramConnectedHint": "Your bot is saved and will auto-connect on next start. Enable the Telegram plugin above if it isn't already active.",
2343
+ "pluginsview.TelegramSetupTitle": "Connect a Telegram Bot",
2344
+ "pluginsview.TelegramStep1b": " on Telegram",
2345
+ "pluginsview.TelegramStep2": "Send /newbot and follow the prompts to create your bot",
2346
+ "pluginsview.TelegramStep3": "Copy the bot token and paste it below",
2347
+ "pluginsview.TestConnection": "Test Connection",
2348
+ "pluginsview.toC": "to configure",
2349
+ "pluginsview.Uninstalling": "Uninstalling...",
2350
+ "pluginsview.Update": "Update",
2351
+ "pluginsview.UseManagedDiscord": "Use managed Discord",
2352
+ "pluginsview.VisibleCount": "{{count}} shown",
2353
+ "pluginsview.X2807": "⠇",
2354
+ "policy.addressControls": "Address Controls",
2355
+ "policy.autoApprove": "Auto-Approve",
2356
+ "policy.disablePolicy": "Disable Policy",
2357
+ "policy.evmOrSolanaAddress": "EVM or Solana address",
2358
+ "policy.evmOrSolanaAddress2": "EVM or Solana address",
2359
+ "policy.rateLimits": "Rate Limits",
2360
+ "policy.spendingLimits": "Spending Limits",
2361
+ "policy.timeRestrictions": "Time Restrictions",
2362
+ "portfolioheader.ConnectViaElizaCl": "Connect via Eliza Cloud or configure a custom BSC RPC provider\n (NodeReal / QuickNode) to enable trading.",
2363
+ "provider.elevenlabs": "ElevenLabs",
2364
+ "provider.fal": "FAL.ai",
2365
+ "provider.suno": "Suno",
2366
+ "provider.xai": "xAI",
2367
+ "providerswitcher.chooseModel": "Choose Model",
2368
+ "providerswitcher.chooseYourPreferredProvider": "Choose your preferred provider for inference.",
2369
+ "providerswitcher.cloudInferenceToggleHint": "Cloud can stay connected while inference runs on your own key. Disable cloud inference when using BYOK providers.",
2370
+ "providerswitcher.customModelSpec": "Custom model spec",
2371
+ "providerswitcher.disconnecting": "Disconnecting...",
2372
+ "providerswitcher.largeModelDescription": "Powerful model for complex reasoning",
2373
+ "providerswitcher.largeModelLabel": "Large Model",
2374
+ "providerswitcher.loggedIntoElizaCloud": "Logged into Eliza Cloud",
2375
+ "providerswitcher.logInToElizaCloud": "Log in to Eliza Cloud",
2376
+ "providerswitcher.model": "Model",
2377
+ "providerswitcher.noAiProvidersAvailable": "No AI providers available. Enable one from the",
2378
+ "providerswitcher.opensABrowserWindow": "Opens a browser window to complete login.",
2379
+ "providerswitcher.page": "page.",
2380
+ "providerswitcher.primaryModelOverride": "Primary model override",
2381
+ "providerswitcher.providerModelPlaceholder": "provider/model (e.g. ollama/qwen2.5)",
2382
+ "providerswitcher.reportIssueWithTemplate": "Report this issue with a prefilled template",
2383
+ "providerswitcher.restartRequiredHint": "Some provider changes apply after restart. {{appName}} restarts automatically after save.",
2384
+ "providerswitcher.savedRestartingAgent": "Saved. Restarting agent...",
2385
+ "providerswitcher.savingRestarting": "Saving & restarting...",
2386
+ "providerswitcher.selectAIProvider": "Select AI provider",
2387
+ "providerswitcher.smallModelDescription": "Fast model for simple tasks",
2388
+ "providerswitcher.smallModelLabel": "Small Model",
2389
+ "providerswitcher.usePiDefaultModel": "Use pi default model",
2390
+ "providerswitcher.waitingForBrowser": "Waiting for browser login...",
2391
+ "ptyconsolebase.AgentConsoles": "Agent Consoles",
2392
+ "ptyconsolebase.CollapseTerminal": "Collapse terminal",
2393
+ "ptyconsolebase.NewTerminalSession": "New terminal session",
2394
+ "ptyconsolebase.Terminal": "Terminal",
2395
+ "relationships.clearRelationshipSearch": "Clear relationship search",
2396
+ "relationships.platformFilter": "Platform filter",
2397
+ "relationships.relationshipsGraph": "Relationships graph",
2398
+ "relationships.searchPeopleAliasesHandles": "Search people, aliases, handles",
2399
+ "relationships.searchPeopleAliasesHandles2": "Search people, aliases, handles",
2400
+ "releasecenter.AppBundle": "App bundle",
2401
+ "releasecenter.ApplyDownloadedUpdate": "Apply Downloaded Update",
2402
+ "releasecenter.AppReleaseService": "App Release Service",
2403
+ "releasecenter.AppVersionPill": "App: {{version}}",
2404
+ "releasecenter.Architecture": "Architecture",
2405
+ "releasecenter.AvailableRenderers": "Available renderers",
2406
+ "releasecenter.BrowserViewId": "BrowserView ID",
2407
+ "releasecenter.BrowserWebgpuStatus": "Browser WebGPU Status",
2408
+ "releasecenter.BrowserWebgpuStatusDescription": "This reports whether the desktop webview is expected to expose WebGPU for the WGPU preview above. It is not overall app health: companion and avatar already fall back to WebGL when WebGPU is missing.",
2409
+ "releasecenter.BrowserWgpuSurface": "Browser WGPU Surface",
2410
+ "releasecenter.BrowserWgpuSurfaceDescription": "Inline <electrobun-wgpu> preview plus browser WebGPU compatibility status from the active desktop renderer.",
2411
+ "releasecenter.BuildConfigAndShellRuntime": "BuildConfig and Shell Runtime",
2412
+ "releasecenter.BuildConfigAndShellRuntimeDescription": "Native runtime metadata sourced directly from Electrobun BuildConfig and shell APIs.",
2413
+ "releasecenter.BunVersion": "Bun version",
2414
+ "releasecenter.CefVersion": "CEF version",
2415
+ "releasecenter.ChannelPill": "Channel: {{channel}}",
2416
+ "releasecenter.CheckDownloadUpdate": "Check / Download Update",
2417
+ "releasecenter.ChromeBeta": "Chrome Beta",
2418
+ "releasecenter.ClearCookies": "Clear Cookies",
2419
+ "releasecenter.ClearStorage": "Clear Storage",
2420
+ "releasecenter.CookieCount": "Cookie count",
2421
+ "releasecenter.CurrentVersion": "Current version",
2422
+ "releasecenter.DefaultRenderer": "Default renderer",
2423
+ "releasecenter.DesktopVersionPill": "Desktop: {{version}}",
2424
+ "releasecenter.DockIconVisible": "Dock icon visible",
2425
+ "releasecenter.DownloadChromeBetaFallback": "Download Chrome Beta fallback",
2426
+ "releasecenter.HideDockIcon": "Hide Dock Icon",
2427
+ "releasecenter.HideSurface": "Hide Surface",
2428
+ "releasecenter.InlineSurfaceReady": "Inline surface ready",
2429
+ "releasecenter.LastChecked": "Last checked",
2430
+ "releasecenter.LastStatus": "Last status",
2431
+ "releasecenter.LatestVersion": "Latest version",
2432
+ "releasecenter.MacOsOnly": "macOS only",
2433
+ "releasecenter.NativeElectrobunUpdater": "Native Electrobun Updater",
2434
+ "releasecenter.NoCookiesStoredForThisPartition": "No cookies stored for this partition.",
2435
+ "releasecenter.NotAvailable": "Not available",
2436
+ "releasecenter.NotDetected": "Not detected",
2437
+ "releasecenter.NotYet": "Not yet",
2438
+ "releasecenter.Opaque": "Opaque",
2439
+ "releasecenter.OpenBrowserViewWindow": "Open BrowserView Window",
2440
+ "releasecenter.OpenDetachedReleaseCenter": "Open Detached Release Center",
2441
+ "releasecenter.Partition": "Partition",
2442
+ "releasecenter.PassthroughOff": "Passthrough Off",
2443
+ "releasecenter.PassthroughOn": "Passthrough On",
2444
+ "releasecenter.Persistent": "Persistent",
2445
+ "releasecenter.Platform": "Platform",
2446
+ "releasecenter.ReleaseNotesBrowserView": "Release Notes BrowserView",
2447
+ "releasecenter.ReleaseNotesBrowserViewDescription": "Opens release notes in a dedicated sandboxed BrowserView on its own persistent session.",
2448
+ "releasecenter.ReleaseStatus": "Release Status",
2449
+ "releasecenter.ReleaseStatusDescription": "Compare backend release metadata with the native Electrobun updater state.",
2450
+ "releasecenter.RendererDefaultSession": "Renderer default session",
2451
+ "releasecenter.RendererSupport": "Renderer support",
2452
+ "releasecenter.RendererType": "Renderer type",
2453
+ "releasecenter.ResetUrl": "Reset URL",
2454
+ "releasecenter.RunTest": "Run Test",
2455
+ "releasecenter.SandboxedReleaseNotesSession": "Sandboxed release notes session",
2456
+ "releasecenter.SessionAndCookieControls": "Session and Cookie Controls",
2457
+ "releasecenter.SessionAndCookieControlsDescription": "Explicit Session APIs for inspecting and clearing renderer storage.",
2458
+ "releasecenter.ShowDockIcon": "Show Dock Icon",
2459
+ "releasecenter.ShowSurface": "Show Surface",
2460
+ "releasecenter.StatusTime": "Status time",
2461
+ "releasecenter.Transparent": "Transparent",
2462
+ "releasecenter.UpdaterBaseUrl": "Updater base URL",
2463
+ "releasecenter.UsingUpdaterUrl": "Using updater URL:",
2464
+ "releasecenter.WaitingForDesktopRendererStatus": "Waiting for desktop renderer status.",
2465
+ "releasecenter.WgpuCustomElementUnavailable": "The WGPU custom element is not available in this renderer.",
2466
+ "releasecenter.WindowId": "Window ID",
2467
+ "releasecenterview.App": "App",
2468
+ "releasecenterview.ApplyStarted": "Applying downloaded update.",
2469
+ "releasecenterview.CheckStarted": "Desktop update check started.",
2470
+ "releasecenterview.Current": "Current",
2471
+ "releasecenterview.DetachedOpened": "Detached release center opened.",
2472
+ "releasecenterview.Latest": "Latest",
2473
+ "releasecenterview.ReleaseCenter": "Release Center",
2474
+ "releasecenterview.ReleaseNotes": "Release Notes",
2475
+ "releasecenterview.ReleaseNotesOpened": "Release notes window opened.",
2476
+ "releasecenterview.ReleaseNotesReset": "Release notes URL reset.",
2477
+ "releasecenterview.ReleaseStatusRefreshed": "Release status refreshed.",
2478
+ "releasecenterview.UpdateActions": "Update Actions",
2479
+ "releasecenterview.UpdateAvailable": "Update available",
2480
+ "releasecenterview.UpdateReady": "Update ready",
2481
+ "releasecenterview.WebReadOnly": "This web session is read-only for release management. Open {{appName}} in the desktop shell to check for updates, apply downloaded builds, or manage the detached release notes window.",
2482
+ "restartbanner.Later": "Later",
2483
+ "restartbanner.MultipleReasonsPending": "{{count}} changes pending - restart to apply.",
2484
+ "restartbanner.Restarting": "Restarting...",
2485
+ "restartbanner.RestartNow": "Restart Now",
2486
+ "restartbanner.RestartRequired": "Restart required to apply changes.",
2487
+ "restartbanner.SingleReasonPending": "{{reason}} - restart to apply.",
2488
+ "runtime.failed": "FAILED",
2489
+ "runtime.starting": "STARTING",
2490
+ "runtime.stopped": "STOPPED",
2491
+ "runtimegate.autoCreating": "Setting up your first agent...",
2492
+ "runtimegate.cloudDesc": "Hosted agent with managed LLMs and connectors. Fastest start.",
2493
+ "runtimegate.cloudEyebrow": "Eliza Cloud",
2494
+ "runtimegate.cloudLoginEyebrow": "Sign in to Eliza Cloud",
2495
+ "runtimegate.cloudTitle": "Run in Eliza Cloud",
2496
+ "runtimegate.connecting": "Connecting...",
2497
+ "runtimegate.creating": "Creating agent...",
2498
+ "runtimegate.failedCreate": "Failed to create agent. Try again.",
2499
+ "runtimegate.failedLoadAgents": "Failed to load agents",
2500
+ "runtimegate.loadingAgents": "Loading your agent...",
2501
+ "runtimegate.localDesc": "Keep the agent on this machine. You'll pick a provider after start.",
2502
+ "runtimegate.localEyebrow": "This device",
2503
+ "runtimegate.localTitle": "Run a local agent",
2504
+ "runtimegate.provisioning": "Provisioning...",
2505
+ "runtimegate.remoteConnectEyebrow": "Connect to a remote agent",
2506
+ "runtimegate.remoteDesc": "Point at an agent you're already running (e.g. on your Mac).",
2507
+ "runtimegate.remoteEyebrow": "Remote agent",
2508
+ "runtimegate.remoteTitle": "Connect to an existing agent",
2509
+ "runtimegate.remoteTokenPlaceholder": "Access token (optional)",
2510
+ "runtimegate.remoteUrlPlaceholder": "https://your-agent.example.com",
2511
+ "runtimegate.retry": "Retry",
2512
+ "runtimegate.signIn": "Sign in with Eliza Cloud",
2513
+ "runtimegate.startingProvisioning": "Starting provisioning...",
2514
+ "runtimegate.subtitle": "Where should your agent run?",
2515
+ "runtimegate.title": "Choose your setup",
2516
+ "runtimegate.unknownError": "Unknown error",
2517
+ "runtimegate.waitingForAuth": "Waiting for auth...",
2518
+ "runtimegate.yourAgents": "Your cloud agents",
2519
+ "runtimeview.actions": "actions:",
2520
+ "runtimeview.actionsDescription": "Review registered actions and their load order in the active runtime.",
2521
+ "runtimeview.agent": "agent:",
2522
+ "runtimeview.AgentRuntimeIsNot": "Agent runtime is not running. Start the runtime and refresh.",
2523
+ "runtimeview.arrayCap": "array cap",
2524
+ "runtimeview.available": "available",
2525
+ "runtimeview.depth": "depth",
2526
+ "runtimeview.evaluators": "evaluators:",
2527
+ "runtimeview.evaluatorsDescription": "Review evaluator registration and ordering for agent decision loops.",
2528
+ "runtimeview.ExpandTop": "Expand Top",
2529
+ "runtimeview.filterSections": "Filter sections",
2530
+ "runtimeview.lastUpdated": "Last updated:",
2531
+ "runtimeview.loadingDescription": "Refresh the inspector after the desktop runtime boots to pull the current object tree and registration data.",
2532
+ "runtimeview.loadingSnapshot": "Loading snapshot...",
2533
+ "runtimeview.model": "model:",
2534
+ "runtimeview.none": "none",
2535
+ "runtimeview.noSectionData": "No data was returned for this section in the current snapshot.",
2536
+ "runtimeview.noSnapshotAvailable": "No snapshot available. Start the agent runtime.",
2537
+ "runtimeview.objectCap": "object cap",
2538
+ "runtimeview.path": "Path",
2539
+ "runtimeview.plugins": "plugins:",
2540
+ "runtimeview.pluginsDescription": "Verify plugin registration order and confirm what the runtime has loaded.",
2541
+ "runtimeview.providers": "providers:",
2542
+ "runtimeview.providersDescription": "Check loaded providers, execution precedence, and what contexts are available.",
2543
+ "runtimeview.runtime": "runtime:",
2544
+ "runtimeview.runtimeDescription": "Inspect the full serialized runtime object and expand into the raw state tree.",
2545
+ "runtimeview.runtimePendingDescription": "The runtime inspector becomes available after the desktop agent finishes loading its core services.",
2546
+ "runtimeview.sectionLabel": "Runtime Section",
2547
+ "runtimeview.sections": "Sections",
2548
+ "runtimeview.sectionUnavailable": "Section unavailable",
2549
+ "runtimeview.services": "services:",
2550
+ "runtimeview.Services": "Services (",
2551
+ "runtimeview.servicesDescription": "Inspect grouped services and their instantiated implementations.",
2552
+ "runtimeview.state": "state:",
2553
+ "runtimeview.Summary": "Summary",
2554
+ "runtimeview.summaryDescription": "Start here to confirm runtime availability, check the active model, and scan the current registration totals before opening a specific section.",
2555
+ "runtimeview.tabServices": "Services",
2556
+ "runtimeview.types": "types)",
2557
+ "savecommandmodal.CommandName": "Command name",
2558
+ "savecommandmodal.myCommand": "my-command",
2559
+ "savecommandmodal.nameFormat": "Use lowercase letters, numbers, and hyphens only",
2560
+ "savecommandmodal.nameRequired": "Name is required",
2561
+ "savecommandmodal.SaveAsCommand": "Save as /Command",
2562
+ "scratchpadview.Counting": "Counting",
2563
+ "scratchpadview.DeleteFailed": "Failed to delete scratchpad topic.",
2564
+ "scratchpadview.DeleteTopic": "Delete scratchpad topic",
2565
+ "scratchpadview.FailedToLoad": "Failed to load scratchpad topics.",
2566
+ "scratchpadview.FailedToPreview": "Failed to preview scratchpad size.",
2567
+ "scratchpadview.FailedToRead": "Failed to read scratchpad topic.",
2568
+ "scratchpadview.LoadingTopics": "Loading topics",
2569
+ "scratchpadview.NewTopic": "New scratchpad topic",
2570
+ "scratchpadview.NoSearchResults": "No matching topics",
2571
+ "scratchpadview.NoTopics": "No scratchpad topics",
2572
+ "scratchpadview.SaveFailed": "Failed to save scratchpad topic.",
2573
+ "scratchpadview.SearchFailed": "Scratchpad search failed.",
2574
+ "scratchpadview.SearchPlaceholder": "Search scratchpad",
2575
+ "scratchpadview.SearchResults": "Search results",
2576
+ "scratchpadview.SelectedTopic": "Scratchpad topic",
2577
+ "scratchpadview.Text": "Text",
2578
+ "scratchpadview.Title": "Title",
2579
+ "scratchpadview.TopicCount": "{{count}} / {{max}} topics",
2580
+ "scratchpadview.TopicCreated": "Scratchpad topic created.",
2581
+ "scratchpadview.TopicDeleted": "Scratchpad topic deleted.",
2582
+ "scratchpadview.TopicLimitReached": "Scratchpad topic limit reached.",
2583
+ "scratchpadview.Topics": "Topics",
2584
+ "scratchpadview.TopicUpdated": "Scratchpad topic updated.",
2585
+ "scratchpadview.UpdatedAt": "Updated {{date}}",
2586
+ "secretsview.AddSecret": "+ Add Secret",
2587
+ "secretsview.AddSecretsToVault": "Add Secrets to Vault",
2588
+ "secretsview.LoadingSecrets": "Loading secrets...",
2589
+ "secretsview.RemoveFromVault": "Remove from vault",
2590
+ "secretsview.Required": "Required",
2591
+ "secretsview.SaveCount": "Save ({{count}})",
2592
+ "secretsview.SearchByKeyDescr": "Search by key, description, or plugin name...",
2593
+ "secretsview.YourVaultIsEmpty": "Your vault is empty. Click \"Add Secret\" to choose which API keys to\n manage here.",
2594
+ "settings.advancedKeyWarning": "Local keys are not needed when Steward manages your wallet. Only use this if you know what you're doing.",
2595
+ "settings.appearance.active": "ACTIVE",
2596
+ "settings.appearance.companionPerformance": "Companion performance",
2597
+ "settings.appearance.dark": "Dark",
2598
+ "settings.appearance.deactivate": "Deactivate current pack",
2599
+ "settings.appearance.light": "Light",
2600
+ "settings.appearance.load": "Load",
2601
+ "settings.appearance.loadedPacks": "Loaded content packs",
2602
+ "settings.appearance.loadFromFolder": "Load from folder",
2603
+ "settings.appearance.mode": "Mode",
2604
+ "settings.appearance.packUrlPlaceholder": "https://example.com/packs/my-pack/",
2605
+ "settings.appearance.theme": "Theme",
2606
+ "settings.browse": "Browse",
2607
+ "settings.change": "Change",
2608
+ "settings.codingAgentsDescription": "Claude Code, Codex, Gemini, and Aider.",
2609
+ "settings.companionAnimateWhenHidden.desc": "When the window or tab is hidden, keep the avatar idling but hide the 3D environment. Uses less GPU than the full scene while the character still moves.",
2610
+ "settings.companionAnimateWhenHidden.title": "Animate in background",
2611
+ "settings.companionHalfFramerate.always": "Always half",
2612
+ "settings.companionHalfFramerate.desc": "Cap the 3D companion at roughly half your display refresh rate (~30 fps on a 60 Hz screen). Independent of pixel quality and shadows — you can save GPU time without lowering resolution, or keep full speed while still using battery-saving pixels.",
2613
+ "settings.companionHalfFramerate.label": "Companion frame rate",
2614
+ "settings.companionHalfFramerate.off": "Full speed",
2615
+ "settings.companionVrmPower.balanced": "Depends on power source",
2616
+ "settings.companionVrmPower.desc": "How hard the 3D companion pushes the GPU: full visuals, follow AC vs battery when the desktop app can read it — macOS, Linux, and Windows (default), or always save power.",
2617
+ "settings.companionVrmPower.efficiency": "Always efficient",
2618
+ "settings.companionVrmPower.label": "Companion rendering",
2619
+ "settings.companionVrmPower.quality": "Always quality",
2620
+ "settings.copyClipboardDraft": "Copy Clipboard Draft",
2621
+ "settings.dangerZone": "Danger Zone",
2622
+ "settings.exportAgent": "Export Agent",
2623
+ "settings.exportAgentShort": "Backup all data",
2624
+ "settings.filterConsoleLinesEGRpcFetchTalkmode404": "Filter console lines (e.g. rpc, fetch, talkmode, 404)",
2625
+ "settings.identity.loading": "Loading",
2626
+ "settings.identity.previewVoice": "Preview Voice",
2627
+ "settings.identity.saveFailed": "Save Failed",
2628
+ "settings.identity.stopVoicePreview": "Stop Voice Preview",
2629
+ "settings.identity.systemPromptLabel": "System prompt",
2630
+ "settings.import": "Import",
2631
+ "settings.importAgent": "Import Agent",
2632
+ "settings.importAgentShort": "Restore from backup",
2633
+ "settings.instanceRouting": "Instance Routing",
2634
+ "settings.instanceRoutingActive": "This instance is registered and receiving messages via Eliza Cloud gateway relay.",
2635
+ "settings.instanceRoutingInactive": "Cloud connected but gateway relay not active. The relay starts automatically when the elizacloud plugin loads.",
2636
+ "settings.instanceRoutingNotConnected": "Connect to Eliza Cloud above to enable instance routing. This lets messages from any platform reach your local {{appName}} instance through the cloud gateway.",
2637
+ "settings.instanceRoutingRegistered": "Instance registered with cloud but not actively polling. It will start receiving messages shortly.",
2638
+ "settings.keyword.advanced": "advanced",
2639
+ "settings.keyword.apiKey": "API key",
2640
+ "settings.keyword.appearance": "appearance",
2641
+ "settings.keyword.audio": "audio",
2642
+ "settings.keyword.avatar": "avatar",
2643
+ "settings.keyword.billing": "billing",
2644
+ "settings.keyword.browser": "browser",
2645
+ "settings.keyword.camera": "camera",
2646
+ "settings.keyword.cloud": "cloud",
2647
+ "settings.keyword.connectors": "connectors",
2648
+ "settings.keyword.export": "export",
2649
+ "settings.keyword.import": "import",
2650
+ "settings.keyword.inference": "inference",
2651
+ "settings.keyword.microphone": "microphone",
2652
+ "settings.keyword.model": "model",
2653
+ "settings.keyword.permissions": "permissions",
2654
+ "settings.keyword.provider": "provider",
2655
+ "settings.keyword.reset": "reset",
2656
+ "settings.keyword.security": "security",
2657
+ "settings.keyword.skills": "skills",
2658
+ "settings.keyword.theme": "theme",
2659
+ "settings.keyword.training": "training",
2660
+ "settings.keyword.updates": "updates",
2661
+ "settings.keyword.voice": "voice",
2662
+ "settings.keyword.wallet": "wallet",
2663
+ "settings.language": "Language",
2664
+ "settings.noMatchingSettingsDescription": "Try a broader search or clear the current filter.",
2665
+ "settings.openDesktopPath": "Open Desktop Path",
2666
+ "settings.relaunchApp": "Relaunch app",
2667
+ "settings.resetAgent": "Reset Agent",
2668
+ "settings.resetAgentHint": "Clears config, agent database, and cloud keys. Downloaded GGUF models stay on disk. Returns to onboarding.",
2669
+ "settings.resetEverything": "Reset Everything",
2670
+ "settings.revealDesktopPath": "Reveal Desktop Path",
2671
+ "settings.rpcConfiguration": "RPC Configuration",
2672
+ "settings.sections.advanced.desc": "Export, import, and dangerous actions",
2673
+ "settings.sections.aimodel.desc": "Cloud, local, subscriptions, and direct providers.",
2674
+ "settings.sections.appearance.desc": "Content packs, VRM avatars, backgrounds, and themes",
2675
+ "settings.sections.appearance.label": "Appearance",
2676
+ "settings.sections.apps.basedOnLabel": "Based on existing app (optional)",
2677
+ "settings.sections.apps.basedOnNone": "Start from scratch",
2678
+ "settings.sections.apps.col.actions": "Actions",
2679
+ "settings.sections.apps.col.id": "ID",
2680
+ "settings.sections.apps.col.name": "App",
2681
+ "settings.sections.apps.col.runs": "Runs",
2682
+ "settings.sections.apps.col.version": "Version",
2683
+ "settings.sections.apps.createNew": "Create new app",
2684
+ "settings.sections.apps.desc": "Create, load, and manage local apps.",
2685
+ "settings.sections.apps.directoryLabel": "Directory path",
2686
+ "settings.sections.apps.edit": "Edit",
2687
+ "settings.sections.apps.empty": "No apps installed yet. Click 'Create new app' to scaffold one.",
2688
+ "settings.sections.apps.intentLabel": "What should the app do?",
2689
+ "settings.sections.apps.intentPlaceholder": "Describe the experience you want — e.g. a vibe coder for prototyping web apps with Tailwind.",
2690
+ "settings.sections.apps.label": "Apps",
2691
+ "settings.sections.apps.launch": "Launch",
2692
+ "settings.sections.apps.loadButton": "Load",
2693
+ "settings.sections.apps.loadFromDirectory": "Load from directory",
2694
+ "settings.sections.apps.loadingApps": "Loading apps…",
2695
+ "settings.sections.apps.relaunch": "Relaunch",
2696
+ "settings.sections.apps.stop": "Stop",
2697
+ "settings.sections.apps.verifyOnRelaunch": "Verify on relaunch",
2698
+ "settings.sections.apps.verifyOnRelaunchLabel": "Verify on relaunch",
2699
+ "settings.sections.autoTraining.desc": "Training triggers and thresholds.",
2700
+ "settings.sections.autoTraining.label": "Auto-training",
2701
+ "settings.sections.backupReset.desc": "Back up the agent, restore from a backup, or wipe everything and start over",
2702
+ "settings.sections.backupReset.label": "Backup & Reset",
2703
+ "settings.sections.capabilities.autoTrainingLabel": "Enable Auto-training",
2704
+ "settings.sections.capabilities.autoTrainingName": "Auto-training",
2705
+ "settings.sections.capabilities.browserHint": "Show the Browser tab for agent-controlled web browsing",
2706
+ "settings.sections.capabilities.browserLabel": "Enable Browser",
2707
+ "settings.sections.capabilities.computerUseHint": "Computer Use requires Accessibility and Screen Recording permissions.",
2708
+ "settings.sections.capabilities.computerUseLabel": "Enable Computer Use",
2709
+ "settings.sections.capabilities.computerUseModeOption.fullControl": "Full Control",
2710
+ "settings.sections.capabilities.computerUseModeOption.pauseComputerUse": "Pause Computer Use",
2711
+ "settings.sections.capabilities.computerUseModeOption.reviewEveryAction": "Review Every Action",
2712
+ "settings.sections.capabilities.computerUseModeOption.smartApprove": "Smart Approve",
2713
+ "settings.sections.capabilities.computerUseName": "Computer Use",
2714
+ "settings.sections.capabilities.desc": "Enable or disable agent capabilities",
2715
+ "settings.sections.cloud.desc": "Account, credits, and cloud services.",
2716
+ "settings.sections.codingagents.desc": "Agent preferences, models, and permissions",
2717
+ "settings.sections.codingagents.label": "Task Agents",
2718
+ "settings.sections.connectors.desc": "Connector setup, authentication, and service integrations",
2719
+ "settings.sections.identity.desc": "Name, voice, and system prompt.",
2720
+ "settings.sections.identity.label": "Basics",
2721
+ "settings.sections.learnedSkills.desc": "Skills the agent has drafted or refined from real trajectories",
2722
+ "settings.sections.learnedSkills.label": "Learned Skills",
2723
+ "settings.sections.lifeops.desc": "Google Calendar and Gmail connection for the active agent.",
2724
+ "settings.sections.lifeops.label": "Life Ops",
2725
+ "settings.sections.localModels.desc": "Download and assign local models.",
2726
+ "settings.sections.localModels.label": "Local Models",
2727
+ "settings.sections.permissions.desc": "Capabilities and access control",
2728
+ "settings.sections.security.desc": "Local access, remote password, sessions, and tokens.",
2729
+ "settings.sections.security.label": "Security",
2730
+ "settings.sections.updates.desc": "Software update settings",
2731
+ "settings.sections.updates.label": "Updates",
2732
+ "settings.sections.wallet.desc": "Crypto wallet and token management",
2733
+ "settings.sections.wallet.enableHint": "Show the Wallet tab for managing crypto wallets and token balances",
2734
+ "settings.sections.wallet.enableLabel": "Enable Wallet",
2735
+ "settings.sections.wallet.stewardDesc": "Managed by Steward vault",
2736
+ "settings.sections.walletpolicies.desc": "Spending limits, address controls, and transaction safety rules",
2737
+ "settings.sections.walletpolicies.label": "Wallet Policies",
2738
+ "settings.sections.walletrpc.desc": "Wallet RPC providers and API keys",
2739
+ "settings.sections.walletrpc.label": "Wallet & RPC",
2740
+ "settings.showAdvancedKeyManagement": "Advanced key management",
2741
+ "settings.stewardNoAddresses": "No vault addresses available yet. Check steward configuration.",
2742
+ "settings.stewardVaultDegraded": "Vault connected — degraded",
2743
+ "settings.stewardVaultError": "Vault connected — error state",
2744
+ "settings.stewardVaultHealthy": "Vault connected and healthy",
2745
+ "settings.stewardWalletManaged": "Your agent's wallet is managed by Steward",
2746
+ "settings.toggleAutoLaunch": "Toggle Auto-launch",
2747
+ "settings.toggleHiddenStart": "Toggle Hidden Start",
2748
+ "settings.toggleMaximize": "Toggle Maximize",
2749
+ "settings.viewWalletPolicies": "View Wallet Policies",
2750
+ "settings.walletRpcDescription": "Configure chain RPC providers for trading and market data.",
2751
+ "settingsview.BackupFile": "Backup file",
2752
+ "settingsview.ChooseAnExportedBack": "Choose an exported backup file...",
2753
+ "settingsview.ClearSearch": "Clear search",
2754
+ "settingsview.EnterExportPasswor": "Enter export password",
2755
+ "settingsview.EnterImportPasswor": "Enter import password",
2756
+ "settingsview.IncludeRecentLogs": "Include recent logs in the backup",
2757
+ "settingsview.NoMatchingSettings": "No matching settings",
2758
+ "settingsview.Password": "Password",
2759
+ "settingsview.SearchSettings": "Search settings",
2760
+ "shortcutsoverlay.KeyboardShortcuts": "Keyboard Shortcuts",
2761
+ "signalqroverlay.ConnectSignal": "Connect Signal",
2762
+ "signalqroverlay.GeneratingQR": "Generating QR…",
2763
+ "signalqroverlay.OpenLinkedDevices": "Open Signal settings and choose Linked Devices.",
2764
+ "signalqroverlay.OpenSignalDesktop": "Open Signal Desktop on your Mac.",
2765
+ "signalqroverlay.PairUsingSignalDesktop": "Pair Signal by generating a provisioning QR code and scanning it from Signal Desktop.",
2766
+ "signalqroverlay.ScanPrompt": "Choose Link New Device and scan the QR code shown here.",
2767
+ "signalqroverlay.ScanWithSignalDesktop": "Scan with Signal Desktop",
2768
+ "skillsview.AcknowledgeAmpEn": "Acknowledge &amp; Enable",
2769
+ "skillsview.BriefDescriptionOf": "Brief description of what this skill does (optional)",
2770
+ "skillsview.BrowseMarketplace": "Browse Marketplace",
2771
+ "skillsview.copying": "Copying",
2772
+ "skillsview.copySkillMd": "Copy Skill Md",
2773
+ "skillsview.CreateNewSkill": "Create New Skill",
2774
+ "skillsview.createSkill": "Create Skill",
2775
+ "skillsview.creating": "Creating...",
2776
+ "skillsview.critical": "critical",
2777
+ "skillsview.details": "Details",
2778
+ "skillsview.Disable": "Disable",
2779
+ "skillsview.discard": "Discard",
2780
+ "skillsview.editSkillSourceDescription": "Edit the Markdown source for this skill and save your changes.",
2781
+ "skillsview.EditSource": "Edit Source",
2782
+ "skillsview.eGMyAwesomeSkil": "e.g. my-awesome-skill",
2783
+ "skillsview.Enable": "Enable",
2784
+ "skillsview.failedToLoadSkillSource": "Failed to load skill source",
2785
+ "skillsview.failedToSave": "Failed to save",
2786
+ "skillsview.filterSkills": "Filter skills...",
2787
+ "skillsview.githubRepositoryDesc": "Paste a full GitHub repository URL to install a skill directly.",
2788
+ "skillsview.githubRepositoryUrl": "GitHub Repository URL",
2789
+ "skillsview.githubUrlTab": "GitHub URL",
2790
+ "skillsview.installed": "installed",
2791
+ "skillsview.installSkillDescription": "Add skills from the marketplace or a GitHub repository.",
2792
+ "skillsview.installSkillSource": "Install skill source",
2793
+ "skillsview.installSkillTitle": "Install Skill",
2794
+ "skillsview.LoadingScanReport": "Loading scan report...",
2795
+ "skillsview.LoadingSkillSource": "Loading skill source...",
2796
+ "skillsview.marketplaceTab": "Marketplace",
2797
+ "skillsview.NewSkill": "New Skill",
2798
+ "skillsview.noDescription": "No description",
2799
+ "skillsview.noDescriptionProvided": "No description provided.",
2800
+ "skillsview.noMatchingSkills": "No matching skills",
2801
+ "skillsview.NoSkillsFound": "No skills found",
2802
+ "skillsview.noSkillsInstalled": "No Skills Installed",
2803
+ "skillsview.noSkillsInstalledDesc": "Install skills from the marketplace or create your own.",
2804
+ "skillsview.noSkillsMatchFilter": "No skills match \"{{filter}}\"",
2805
+ "skillsview.RefreshSkillsList": "Refresh Skills List",
2806
+ "skillsview.removing": "Removing...",
2807
+ "skillsview.result": "result",
2808
+ "skillsview.ReviewFindings": "Review Findings",
2809
+ "skillsview.ScanReport": "Scan Report",
2810
+ "skillsview.score": "score:",
2811
+ "skillsview.searchAboveToDiscoverSkills": "Search above to discover skills.",
2812
+ "skillsview.searchByKeyword": "Search skills by keyword...",
2813
+ "skillsview.SearchSkills": "Search skills...",
2814
+ "skillsview.SelectATalentToConf": "Select a talent to configure",
2815
+ "skillsview.skillBuilder": "Skill Builder",
2816
+ "skillsview.SKILLMd": "SKILL.md",
2817
+ "skillsview.SkillName": "Skill Name",
2818
+ "skillsview.SkillSourceEditorDescription": "Open the skill source editor to inspect or modify `SKILL.md`, or review findings here when a skill needs attention.",
2819
+ "skillsview.statusBlocked": "Blocked",
2820
+ "skillsview.statusNotInstalled": "Status Not Installed",
2821
+ "skillsview.statusWarning": "Warning",
2822
+ "skillsview.Talents": "Talents",
2823
+ "skillsview.toSave": "to save",
2824
+ "skillsview.unsaved": "unsaved",
2825
+ "skillsview.updating": "Updating",
2826
+ "skillsview.VisibleCount": "{{count}} visible",
2827
+ "skillsview.warnings": "warnings",
2828
+ "startupfailureview.AgentError": "Agent Error",
2829
+ "startupfailureview.AgentTimeout": "Agent Timeout",
2830
+ "startupfailureview.AssetMissing": "Asset Missing",
2831
+ "startupfailureview.BackendTimeout": "Backend Timeout",
2832
+ "startupfailureview.BackendUnreachable": "Backend Unreachable",
2833
+ "startupfailureview.OpenApp": "Open App",
2834
+ "startupfailureview.RetryStartup": "Retry Startup",
2835
+ "startupfailureview.StartupFailed": "Startup failed:",
2836
+ "startupfailureview.Unknown": "Unknown Error",
2837
+ "startupshell.AgentName": "Agent name",
2838
+ "startupshell.CloudLogin": "Sign in to Eliza Cloud",
2839
+ "startupshell.ConnectingBackend": "Connecting to backend…",
2840
+ "startupshell.ConnectToRemote": "Connect to Remote Agent",
2841
+ "startupshell.ConnectToRemoteDesc": "Connect to a server running on your network",
2842
+ "startupshell.ContentPacks": "Content Packs",
2843
+ "startupshell.CreateAgentLabel": "New local agent",
2844
+ "startupshell.CreateLocalAgent": "Create Local Agent",
2845
+ "startupshell.CreateLocalAgentDesc": "Run an agent locally on this device",
2846
+ "startupshell.CreateOne": "Create one",
2847
+ "startupshell.CreatingAgent": "Creating agent...",
2848
+ "startupshell.EnterPackUrl": "Enter the URL of a content pack folder (must contain pack.json):",
2849
+ "startupshell.GetStarted": "Press Start",
2850
+ "startupshell.InitializingAgent": "Initializing agent…",
2851
+ "startupshell.Loading": "Loading…",
2852
+ "startupshell.LoadingAgents": "Loading agents...",
2853
+ "startupshell.LoadPack": "Load content pack",
2854
+ "startupshell.LoadPackHint": "VRMs, backgrounds, themes",
2855
+ "startupshell.LocalNetworkAgent": "LAN agent",
2856
+ "startupshell.ManageCloudAgents": "Manage Cloud Agents",
2857
+ "startupshell.ManageCloudAgentsDesc": "Host agents on Eliza Cloud infrastructure",
2858
+ "startupshell.ManuallyConnect": "Manually connect to one",
2859
+ "startupshell.NetworkAgent": "Network agent",
2860
+ "startupshell.NoCloudAgents": "No cloud agents yet",
2861
+ "startupshell.NoNetworkAgentsFound": "No LAN agents found yet.",
2862
+ "startupshell.PackLoadFailed": "Failed to load pack: {{error}}",
2863
+ "startupshell.Provisioning": "Provisioning...",
2864
+ "startupshell.RemoteAgentLabel": "Existing server",
2865
+ "startupshell.ScanningNetwork": "Scanning your network...",
2866
+ "startupshell.SignInElizaCloud": "Sign in with Eliza Cloud",
2867
+ "startupshell.SplashTagline": "Your local-first AI assistant",
2868
+ "startupshell.WaitingForAuth": "Waiting for auth...",
2869
+ "startupshell.YourCloudAgents": "Your cloud agents",
2870
+ "statusbar.GoLive": "Go Live",
2871
+ "statusbar.InstallStreamingPlugin": "Install and enable the streaming plugin to go live",
2872
+ "statusbar.LiveShort": "LIVE",
2873
+ "statusbar.OfflineShort": "OFFLINE",
2874
+ "statusbar.PopOutStreamView": "Pop out stream view",
2875
+ "statusbar.StopStream": "Stop Stream",
2876
+ "streamsettings.Use": "Use",
2877
+ "streamview.{{appName}}CouldNotRea": "Could not reach the",
2878
+ "streamview.CouldNotRea": "Could Not Rea",
2879
+ "streamview.EnableTheStreaming": "Enable the streaming plugin to go live",
2880
+ "streamview.GoLiveHint": "Press Go Live to start streaming.",
2881
+ "streamview.IfThePluginIsAlr": "If the plugin is already installed, restart the desktop app or\n API server and try again.",
2882
+ "streamview.pluginThenReload": "plugin, then reload the Stream tab.",
2883
+ "streamview.streamingBase": "streaming-base",
2884
+ "streamview.StreamingUnavailabl": "Streaming unavailable",
2885
+ "streamview.StreamIsLive": "Stream is Live",
2886
+ "streamview.StreamLiveStatus": "Uptime: {{uptime}} · {{frameCount}} frames",
2887
+ "streamview.StreamReady": "Stream Ready",
2888
+ "subscriptionstatus.AfterLoggingInCo": "After logging in to Claude, copy the authorization code and\n paste it below.",
2889
+ "subscriptionstatus.AfterLoggingInYo": "After logging in, you'll be redirected to a page that won't load\n (starts with",
2890
+ "subscriptionstatus.CallbackCodeTooLong": "Callback code is too long.",
2891
+ "subscriptionstatus.CallbackUrlMissingCode": "Callback URL is missing the ?code= parameter.",
2892
+ "subscriptionstatus.ChatGPTSubscription": "ChatGPT subscription credentials are expired or invalid. Reconnect\n to continue.",
2893
+ "subscriptionstatus.ChatGPTSubscriptionTitle": "ChatGPT Subscription",
2894
+ "subscriptionstatus.ClaudeCodeCliDetectedBody": "Signed in via the Claude Code CLI on this machine. To sign out, run `claude logout` in a terminal — the app can't clear CLI credentials. Connect in-app below to link this account to Milady explicitly.",
2895
+ "subscriptionstatus.ClaudeCodeCliDetectedTitle": "Claude Code CLI detected",
2896
+ "subscriptionstatus.ClaudeSubscription": "Claude subscription credentials are expired or invalid. Reconnect\n to continue.",
2897
+ "subscriptionstatus.ClaudeSubscriptionTitle": "Claude Subscription",
2898
+ "subscriptionstatus.ClaudeTosWarning": "Claude subscriptions can only be used through the Claude Code CLI (Anthropic TOS). Your subscription will power task agents but not the main agent runtime. For the main agent, use Eliza Cloud, a direct Anthropic API key, or another provider.",
2899
+ "subscriptionstatus.ClaudeTosWarningShort": "Powers task agents only (Claude Code CLI). For the main agent runtime, connect Eliza Cloud or a direct API key.",
2900
+ "subscriptionstatus.CodexAllAccess": "Your ChatGPT subscription powers both the main agent runtime and task agents.",
2901
+ "subscriptionstatus.Completing": "Completing...",
2902
+ "subscriptionstatus.ConnectedToChatGPTSubscription": "Connected to ChatGPT Subscription",
2903
+ "subscriptionstatus.ConnectedToClaudeSubscription": "Connected to Claude Subscription",
2904
+ "subscriptionstatus.CopyTheEntireU": "). Copy the entire URL and paste it below.",
2905
+ "subscriptionstatus.DisconnectFailedError": "Disconnect failed: {{message}}",
2906
+ "subscriptionstatus.ExpectedCallbackUrl": "Expected a localhost:1455/auth/callback URL.",
2907
+ "subscriptionstatus.FailedToSaveSetupToken": "Failed to save setup token.",
2908
+ "subscriptionstatus.FailedToSaveTokenError": "Failed to save token: {{message}}",
2909
+ "subscriptionstatus.httpLocalhost145": "http://localhost:1455/auth/callback?code=...",
2910
+ "subscriptionstatus.InvalidCallbackUrl": "Invalid callback URL.",
2911
+ "subscriptionstatus.localhost1455": "localhost:1455",
2912
+ "subscriptionstatus.PasteCallbackUrlFromLocalhost": "Paste the callback URL from the localhost:1455 page.",
2913
+ "subscriptionstatus.PasteTheAuthorizat": "Paste the authorization code here...",
2914
+ "subscriptionstatus.RequiresChatGPTPlu": "Requires ChatGPT Plus ($20/mo) or Pro ($200/mo).",
2915
+ "subscriptionstatus.RequiresClaudePro": "Requires Claude Pro ($20/mo) or Max ($100/mo).",
2916
+ "subscriptionstatus.SaveToken": "Save Token",
2917
+ "subscriptionstatus.SavingAmpRestart": "Saving &amp; restarting...",
2918
+ "subscriptionstatus.skAntOat01": "sk-ant-oat01-...",
2919
+ "subscriptionstatus.YourChatGPTSubscri": "Your ChatGPT subscription is linked. Disconnect to switch\n accounts.",
2920
+ "subscriptionstatus.YourClaudeSubscrip": "Your Claude subscription is linked. Disconnect to switch accounts.",
2921
+ "taskseventspanel.Activity": "Activity",
2922
+ "taskseventspanel.OpenView": "Open Tasks view",
2923
+ "taskseventspanel.Tasks": "Tasks",
2924
+ "taskseventspanel.TasksViewDescription": "Tasks View Description",
2925
+ "taskseventspanel.Title": "Tasks & Events",
2926
+ "taskseventspanel.Todos": "Todos",
2927
+ "terminal.starting": "Starting",
2928
+ "todo.noOpenTodos": "No open todos",
2929
+ "tokenstable.nativeGas": "native gas",
2930
+ "trajectoriesview.ClearAll": "Clear all",
2931
+ "trajectoriesview.ClearAllPrompt": "Delete all trajectories?",
2932
+ "trajectoriesview.Clearing": "Clearing...",
2933
+ "trajectoriesview.CSVSummaryOnly": "CSV (summary only)",
2934
+ "trajectoriesview.DeleteCurrent": "Delete current",
2935
+ "trajectoriesview.DeleteCurrentPrompt": "Delete this trajectory?",
2936
+ "trajectoriesview.Deleting": "Deleting...",
2937
+ "trajectoriesview.Entries": "Entries",
2938
+ "trajectoriesview.FailedToClear": "Failed to clear trajectories",
2939
+ "trajectoriesview.FailedToDelete": "Failed to delete trajectory",
2940
+ "trajectoriesview.FailedToExport": "Failed to export trajectories",
2941
+ "trajectoriesview.FailedToLoad": "Failed to load trajectories",
2942
+ "trajectoriesview.JSONRedacted": "JSON (redacted)",
2943
+ "trajectoriesview.JSONWithPrompts": "JSON (with prompts)",
2944
+ "trajectoriesview.LoadingTrajectories": "Loading trajectories...",
2945
+ "trajectoriesview.NoTrajectoriesMatchingFilters": "No trajectories match the current filters.",
2946
+ "trajectoriesview.NoTrajectoriesYet": "No trajectories yet.",
2947
+ "trajectoriesview.NoTrajectoryDeleted": "No trajectory was deleted.",
2948
+ "trajectoriesview.Search": "Search...",
2949
+ "trajectoriesview.ShowingRange": "Showing {{start}}-{{end}} of {{total}}",
2950
+ "trajectoriesview.TrajectoriesCleared": "Trajectories cleared.",
2951
+ "trajectoriesview.TrajectoryDeleted": "Trajectory deleted.",
2952
+ "trajectoriesview.ZeroEntries": "0 entries",
2953
+ "trajectoriesview.ZIPFolders": "ZIP (folders)",
2954
+ "trajectorydetailview.Copy": "Copy",
2955
+ "trajectorydetailview.CopyToClipboard": "Copy to clipboard",
2956
+ "trajectorydetailview.Cost": "Cost",
2957
+ "trajectorydetailview.Data": "Data",
2958
+ "trajectorydetailview.DecisionType": "Decision Type:",
2959
+ "trajectorydetailview.InputUser": "Input (User)",
2960
+ "trajectorydetailview.lines": "lines",
2961
+ "trajectorydetailview.LlmCalls": "{{count}} LLM calls",
2962
+ "trajectorydetailview.LoadingDescription": "Pulling prompt, response, token, and metadata detail for the selected run.",
2963
+ "trajectorydetailview.LoadingTrajectory": "Loading trajectory...",
2964
+ "trajectorydetailview.Max": "Max:",
2965
+ "trajectorydetailview.Metadata": "Metadata",
2966
+ "trajectorydetailview.NoCapturedCalls": "No captured calls",
2967
+ "trajectorydetailview.NoLLMCallsRecorde": "No LLM calls recorded in this trajectory.",
2968
+ "trajectorydetailview.Orchestrator": "Orchestrator",
2969
+ "trajectorydetailview.OutputResponse": "Output (Response)",
2970
+ "trajectorydetailview.OverviewDescription": "Review the exact prompt and response chain for this run, including cost, latency, source, and any orchestration context captured with the call.",
2971
+ "trajectorydetailview.Pipeline": "Pipeline",
2972
+ "trajectorydetailview.ProviderAccess": "Provider Access",
2973
+ "trajectorydetailview.ProviderAccesses": "Provider Accesses",
2974
+ "trajectorydetailview.Query": "Query",
2975
+ "trajectorydetailview.Response": "response",
2976
+ "trajectorydetailview.Session1": "Session:",
2977
+ "trajectorydetailview.ShowingCalls": "Showing {{count}} {{stage}} calls",
2978
+ "trajectorydetailview.System": "System",
2979
+ "trajectorydetailview.SystemPrompt": "System Prompt ",
2980
+ "trajectorydetailview.Task": "Task:",
2981
+ "trajectorydetailview.Temp": "Temp:",
2982
+ "trajectorydetailview.TotalTokens": "Total Tokens",
2983
+ "trajectorydetailview.Trajectory": "Trajectory",
2984
+ "trajectorydetailview.TrajectoryNotFound": "Trajectory not found.",
2985
+ "trajectorydetailview.UnableToLoad": "Unable to load trajectory",
2986
+ "trajectorydetailview.Unavailable": "Trajectory unavailable",
2987
+ "triggers.cronError": "Invalid cron:",
2988
+ "triggers.cronExample.every15min": "Every 15 min",
2989
+ "triggers.cronExample.monthly": "Monthly 1st",
2990
+ "triggers.cronExample.weekdaysNine": "Weekdays 9am",
2991
+ "triggers.cronExampleHint": "Common examples:",
2992
+ "triggers.goToWorkflows": "Go to Workflows tab",
2993
+ "triggers.kindText": "Send prompt",
2994
+ "triggers.kindWorkflow": "Run workflow",
2995
+ "triggers.scheduleIntervalError": "Interval must be positive",
2996
+ "triggers.scheduleOnceInPast": "Scheduled time is in the past",
2997
+ "triggers.scheduleOnceLabel": "Runs once at {{time}}",
2998
+ "triggers.schedulePreviewTitle": "Next runs",
2999
+ "triggers.whatToRun": "What should this run?",
3000
+ "triggers.workflowLabel": "Workflow",
3001
+ "triggers.workflowPlaceholder": "Select a workflow…",
3002
+ "triggers.workflowUnavailable": "No workflows available. Create one in the Workflows tab first.",
3003
+ "triggersview.CronExpression5F": "Cron Expression (5-field)",
3004
+ "triggersview.CronSchedule": "Cron Schedule",
3005
+ "triggersview.eGDailyDigestH": "e.g. Daily Digest, Heartbeat Check",
3006
+ "triggersview.InjectAmpWakeIm": "Inject and Wake Immediately",
3007
+ "triggersview.Instructions": "Instructions",
3008
+ "triggersview.LastRun": "Last run",
3009
+ "triggersview.MaxRunsOptional": "Max Runs (optional)",
3010
+ "triggersview.minuteHourDayMont": "minute hour day month weekday — e.g. \"0 9 * * 1-5\" = weekdays at\n 9am",
3011
+ "triggersview.NoRunsRecordedYet": "No runs recorded yet.",
3012
+ "triggersview.OneTime": "One-time",
3013
+ "triggersview.QueueForNextCycle": "Queue for next cycle",
3014
+ "triggersview.RepeatingInterval": "Repeating Interval",
3015
+ "triggersview.RunHistory": "Run History",
3016
+ "triggersview.RunNow": "Run now",
3017
+ "triggersview.ScheduledTimeISO": "Scheduled Time (ISO)",
3018
+ "triggersview.ScheduleType": "Schedule Type",
3019
+ "triggersview.StartEnabled": "Start enabled",
3020
+ "triggersview.WakeMode": "Wake Mode",
3021
+ "triggersview.WhatShouldTheAgen": "What should the agent do when this trigger fires?",
3022
+ "ui-renderer.Larr": "&larr;",
3023
+ "ui-renderer.Rarr": "&rarr;",
3024
+ "ui-renderer.UnknownComponent": "Unknown component:",
3025
+ "vectorbrowserview.2D": "2D",
3026
+ "vectorbrowserview.3D": "3D",
3027
+ "vectorbrowserview.Content": "Content",
3028
+ "vectorbrowserview.DatabaseConnectionError": "Cannot connect to database. Make sure the agent is running.",
3029
+ "vectorbrowserview.dimensions": "dimensions",
3030
+ "vectorbrowserview.DimensionsEmbeddings": "{dimensions}D embeddings",
3031
+ "vectorbrowserview.Embedding": "Embedding",
3032
+ "vectorbrowserview.Entity": "Entity",
3033
+ "vectorbrowserview.Graph2D": "2D graph",
3034
+ "vectorbrowserview.Graph3D": "3D graph",
3035
+ "vectorbrowserview.GraphLoadFailed": "Failed to load graph data: {{message}}",
3036
+ "vectorbrowserview.ID": "ID",
3037
+ "vectorbrowserview.List": "List",
3038
+ "vectorbrowserview.ListView": "List view",
3039
+ "vectorbrowserview.LoadFailed": "Failed to load memories: {{message}}",
3040
+ "vectorbrowserview.Loading": "loading...",
3041
+ "vectorbrowserview.LoadingEmbeddings": "Loading embeddings...",
3042
+ "vectorbrowserview.LoadingMemories": "Loading memories...",
3043
+ "vectorbrowserview.memories": "memories",
3044
+ "vectorbrowserview.MemoryCount": "{{count}} memories",
3045
+ "vectorbrowserview.MemoryDetail": "Memory Detail",
3046
+ "vectorbrowserview.MemorySelectionHint": "Select a memory from the sidebar to inspect its content, metadata, and embedding values.",
3047
+ "vectorbrowserview.Metadata": "Metadata",
3048
+ "vectorbrowserview.NeedAtLeast2Memo": "Need at least 2 memories with embedding data. Found",
3049
+ "vectorbrowserview.NoMemoryRecordsDetected": "No memory records detected in the database.",
3050
+ "vectorbrowserview.NoRecordsMatchSearchQuery": "No records match your search query.",
3051
+ "vectorbrowserview.NotEnoughEmbedding": "Not enough embeddings for graph view",
3052
+ "vectorbrowserview.NotEnoughEmbedding1": "Not enough embeddings for visualization",
3053
+ "vectorbrowserview.NoTimestamp": "No timestamp",
3054
+ "vectorbrowserview.Page": "Page",
3055
+ "vectorbrowserview.RawRecord": "Raw Record",
3056
+ "vectorbrowserview.RendererUnavailable": "3D view unavailable in this environment.",
3057
+ "vectorbrowserview.RendererUnavailableDescription": "The current runtime could not initialize a renderer.",
3058
+ "vectorbrowserview.RetryConnection": "Retry Connection",
3059
+ "vectorbrowserview.Room": "Room",
3060
+ "vectorbrowserview.SearchContent": "Search content...",
3061
+ "vectorbrowserview.SelectPointHint": "Select a point from the viewer to inspect its full record on the right.",
3062
+ "vectorbrowserview.StartTheAgentToB": "Start the agent to browse vectors.",
3063
+ "vectorbrowserview.unique": "unique",
3064
+ "vectorbrowserview.Unique": "Unique",
3065
+ "vectorbrowserview.vectorsProjectedTo": "vectors projected to 2D via PCA — click a point\n to view details",
3066
+ "vectorbrowserview.vectorsProjectedTo1": "vectors projected to 2D",
3067
+ "vincent.connect": "Connect Vincent",
3068
+ "vincent.connectDescription": "Connect your Vincent account to enable DeFi vault management.",
3069
+ "vincent.connected": "Vincent Connected",
3070
+ "vincent.connectedSince": "Connected since",
3071
+ "vincent.connectPrompt": "Connect your Vincent account to get started",
3072
+ "vincent.connectPromptDetail": "Once connected, you'll see your vault health, trading strategy, P&L analytics, and transaction history here.",
3073
+ "vincent.disconnected": "Vincent disconnected",
3074
+ "vincent.loginTimeout": "Login timed out. Close the auth window and try again.",
3075
+ "voice.gender.female": "Female",
3076
+ "voice.gender.male": "Male",
3077
+ "voice.hint.alluring_game_npc": "Alluring, game NPC",
3078
+ "voice.hint.british_confident": "British, confident",
3079
+ "voice.hint.british_presenter": "British, presenter",
3080
+ "voice.hint.british_raspy": "British, raspy",
3081
+ "voice.hint.calm_clear": "Calm, clear",
3082
+ "voice.hint.childish_cute": "Childish, cute",
3083
+ "voice.hint.clear_natural": "Clear, natural",
3084
+ "voice.hint.custom_voice": "Custom Voice",
3085
+ "voice.hint.cute_animated": "Cute, animated",
3086
+ "voice.hint.deep_authoritative": "Deep, authoritative",
3087
+ "voice.hint.deep_natural": "Deep, natural",
3088
+ "voice.hint.deep_smooth": "Deep, smooth",
3089
+ "voice.hint.gruff_game_hero": "Gruff, game hero",
3090
+ "voice.hint.magical_whimsical": "Magical, whimsical",
3091
+ "voice.hint.soft_warm": "Soft, warm",
3092
+ "voice.hint.sweet_storybook": "Sweet, storybook",
3093
+ "voice.hint.warm_friendly": "Warm, friendly",
3094
+ "voice.hint.young_deep": "Young, deep",
3095
+ "voice.hint.young_natural": "Young, natural",
3096
+ "voice.provider.edge": "Microsoft Edge",
3097
+ "voice.provider.edge.hint": "Free, Microsoft voices",
3098
+ "voice.provider.elevenlabs.hint": "High quality, realistic voices",
3099
+ "voice.refreshTalkMode": "Refresh Talk Mode",
3100
+ "voice.startStopTalkMode": "Start/Stop Talk Mode",
3101
+ "voiceconfigview.ActionFailed": "Talk mode action failed.",
3102
+ "voiceconfigview.AddTrigger": "Add trigger…",
3103
+ "voiceconfigview.APISource": "API Source",
3104
+ "voiceconfigview.DesktopTalkMode": "Desktop Talk Mode",
3105
+ "voiceconfigview.DesktopTalkModeDesktopOnly": "Desktop talk mode controls are only available inside the Electrobun runtime.",
3106
+ "voiceconfigview.DisableWakeWord": "Disable wake word",
3107
+ "voiceconfigview.EdgeTTSUsesMicros": "Edge TTS uses Microsoft voices built into the platform.",
3108
+ "voiceconfigview.elevenlabsIo": "elevenlabs.io",
3109
+ "voiceconfigview.EnableWakeWord": "Enable wake word",
3110
+ "voiceconfigview.FastPathDefaultE": "Fast-path default ElevenLabs model: ",
3111
+ "voiceconfigview.GetYourKeyAt": "Get your key at",
3112
+ "voiceconfigview.hintAccurate": "(accurate)",
3113
+ "voiceconfigview.hintFaster": "(faster)",
3114
+ "voiceconfigview.hintRecommended": "(recommended)",
3115
+ "voiceconfigview.LoadingVoiceConfig": "Loading voice configuration...",
3116
+ "voiceconfigview.LowerMoreSensiti": "Lower = more sensitive (shorter gap required after wake word)",
3117
+ "voiceconfigview.Microphone": "Microphone",
3118
+ "voiceconfigview.ModelSize": "Model size",
3119
+ "voiceconfigview.NoApiKeyNeeded": "No API key needed",
3120
+ "voiceconfigview.Playing": "Playing...",
3121
+ "voiceconfigview.PressEnterOrComma": "Press Enter or comma to add. At least one trigger required.",
3122
+ "voiceconfigview.RemoveTrigger": "Remove trigger \"{{trigger}}\"",
3123
+ "voiceconfigview.RequiresApiKey": "Requires API key",
3124
+ "voiceconfigview.ServedViaElizaCloud": "served via Eliza Cloud",
3125
+ "voiceconfigview.SimpleVoiceUsesYo": "Simple Voice uses your system defaults and does not require an external API key.",
3126
+ "voiceconfigview.Speaking": "Speaking",
3127
+ "voiceconfigview.SpeakTestPhrase": "Speak Test Phrase",
3128
+ "voiceconfigview.SpeechRequested": "Speech requested.",
3129
+ "voiceconfigview.StartTalkMode": "Start Talk Mode",
3130
+ "voiceconfigview.State": "State",
3131
+ "voiceconfigview.StoppedCurrentSpeechOutput": "Stopped current speech output.",
3132
+ "voiceconfigview.StopSpeaking": "Stop Speaking",
3133
+ "voiceconfigview.StopTalkMode": "Stop Talk Mode",
3134
+ "voiceconfigview.TalkModeDescription": "Native voice loop controls, speech output, and whisper diagnostics.",
3135
+ "voiceconfigview.TalkModeStarted": "Talk mode started.",
3136
+ "voiceconfigview.TalkModeStateRefreshed": "Talk mode state refreshed.",
3137
+ "voiceconfigview.TalkModeStatusUnavailable": "Talk mode status unavailable.",
3138
+ "voiceconfigview.TalkModeStopped": "Talk mode stopped.",
3139
+ "voiceconfigview.TalkModeUnavailable": "Talk mode unavailable.",
3140
+ "voiceconfigview.testPhrase": "Hello from {{appName}} desktop talk mode.",
3141
+ "voiceconfigview.TestVoice": "Test {{name}}",
3142
+ "voiceconfigview.Triggers": "Triggers",
3143
+ "voiceconfigview.TTSProvider": "TTS Provider",
3144
+ "voiceconfigview.WakeSensitivity": "Wake sensitivity",
3145
+ "voiceconfigview.WakeWord": "Wake Word",
3146
+ "voiceconfigview.Whisper": "Whisper",
3147
+ "wallet.addressCopied": "Address copied.",
3148
+ "wallet.advancedSetup": "Advanced wallet setup",
3149
+ "wallet.copyEvmAddress": "Copy EVM address",
3150
+ "wallet.copySolanaAddress": "Copy Solana address",
3151
+ "wallet.emptyTokensCta": "Use the wallet addresses below to fund this agent.",
3152
+ "wallet.enableIt": "Enable it",
3153
+ "wallet.loadingBalances": "Loading balances...",
3154
+ "wallet.loadingNfts": "Loading NFTs...",
3155
+ "wallet.manual": "Manual",
3156
+ "wallet.nfts": "NFTs",
3157
+ "wallet.noDataRefresh": "No tokens found",
3158
+ "wallet.noImage": "No image",
3159
+ "wallet.noNftData": "No NFT data.",
3160
+ "wallet.noNftsFound": "No NFTs found.",
3161
+ "wallet.noOnchainWallet": "No wallet configured yet.",
3162
+ "wallet.noOnchainWalletHint": "Connect via Steward or configure wallet keys in Settings.",
3163
+ "wallet.noTokensFound": "No tokens found. Use the wallet addresses below to fund this agent.",
3164
+ "wallet.noWalletAddressesYet": "No wallet addresses yet",
3165
+ "wallet.receiveHint": "Copy an address to fund this wallet.",
3166
+ "wallet.removeManualTitle": "Remove manual token",
3167
+ "wallet.searchWallets": "Search wallets",
3168
+ "wallet.setup.configureRpc": "Configure RPC",
3169
+ "wallet.setup.description": "Connect via Eliza Cloud, Vincent, or configure wallet keys directly to start trading.",
3170
+ "wallet.setup.importFromCloud": "Import from Eliza Cloud",
3171
+ "wallet.setup.rpcNotConfigured": "BSC RPC is not configured.",
3172
+ "wallet.setup.title": "Connect your wallet",
3173
+ "wallet.setupFromHere": "Connect a wallet provider to get started with on-chain features.",
3174
+ "wallet.sort": "Sort",
3175
+ "wallet.sortAscending": "Ascending",
3176
+ "wallet.sortDescending": "Descending",
3177
+ "wallet.table.token": "Token",
3178
+ "wallet.tokenRemovedManual": "Token removed from watchlist.",
3179
+ "whatsappqroverlay.andSelect": "and select",
3180
+ "whatsappqroverlay.ConnectWhatsApp": "Connect WhatsApp",
3181
+ "whatsappqroverlay.GeneratingQR": "Generating QR...",
3182
+ "whatsappqroverlay.LinkADevice": "Link a Device",
3183
+ "whatsappqroverlay.LinkedDevices": "Linked Devices",
3184
+ "whatsappqroverlay.Menu": "Menu",
3185
+ "whatsappqroverlay.OpenWhatsAppOnYou": "Open WhatsApp on your phone",
3186
+ "whatsappqroverlay.PointYourPhoneAt": "Point your phone at this QR code",
3187
+ "whatsappqroverlay.QRRefreshesAutomat": "QR refreshes automatically (~15s)",
3188
+ "whatsappqroverlay.ScanAQRCodeWith": "Scan a QR code with your phone to link WhatsApp.",
3189
+ "whatsappqroverlay.ScanWithWhatsApp": "Scan with WhatsApp",
3190
+ "whatsappqroverlay.Tap": "Tap",
3191
+ "whatsappqroverlay.TryAgain": "Try Again",
3192
+ "whatsappqroverlay.UsesAnUnofficialW": "Uses an unofficial WhatsApp API. Use a dedicated phone number.",
3193
+ "workflowGraph.ariaLabel": "Workflow graph with {{nodeCount}} nodes and {{edgeCount}} connections",
3194
+ "workflowGraph.buildingWorkflow": "Building workflow...",
3195
+ "workflowGraph.builtToast": "Workflow built",
3196
+ "workflowGraph.closeDrawer": "Close node details",
3197
+ "workflowGraph.empty": "No nodes yet",
3198
+ "workflowGraph.emptyHelp": "Ask the Automations Assistant to build one.",
3199
+ "workflowGraph.focusComposer": "Open chat",
3200
+ "workflowGraph.fullScreen": "Full screen",
3201
+ "workflowGraph.nodeDrawer.editorDisabled": "Open the n8n editor from the Workflows tab",
3202
+ "workflowGraph.nodeDrawer.noParameters": "No parameters",
3203
+ "workflowGraph.nodeDrawer.openInEditor": "Open in n8n editor",
3204
+ "workflowGraph.nodeDrawer.rawJsonLabel": "Raw JSON",
3205
+ "workflowGraph.nodeDrawer.showLess": "Show less",
3206
+ "workflowGraph.nodeDrawer.showMore": "Show more",
3207
+ "workspace.resizeChat": "Resize chat",
3208
+ "workspace.showContent": "Show content",
3209
+ "workspace.showLeftSidebar": "Show left sidebar",
3210
+ "workspace.showPageChat": "Show page chat"
3211
+ }