@elizaos/ui 2.0.0-alpha.21 → 2.0.0-alpha.211

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 (4868) hide show
  1. package/apps/app-companion/src/actions/emote.d.ts +10 -0
  2. package/apps/app-companion/src/actions/emote.d.ts.map +1 -0
  3. package/apps/app-companion/src/actions/emote.js +80 -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 +100 -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 +436 -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/vrm-desktop-energy.d.ts +40 -0
  50. package/apps/app-companion/src/components/avatar/vrm-desktop-energy.d.ts.map +1 -0
  51. package/apps/app-companion/src/components/avatar/vrm-desktop-energy.js +74 -0
  52. package/apps/app-companion/src/components/chat/ChatAvatar.d.ts +3 -0
  53. package/apps/app-companion/src/components/chat/ChatAvatar.d.ts.map +1 -0
  54. package/apps/app-companion/src/components/chat/ChatAvatar.js +80 -0
  55. package/apps/app-companion/src/components/companion/CompanionAppView.d.ts +9 -0
  56. package/apps/app-companion/src/components/companion/CompanionAppView.d.ts.map +1 -0
  57. package/apps/app-companion/src/components/companion/CompanionAppView.js +114 -0
  58. package/apps/app-companion/src/components/companion/CompanionHeader.d.ts +25 -0
  59. package/apps/app-companion/src/components/companion/CompanionHeader.d.ts.map +1 -0
  60. package/apps/app-companion/src/components/companion/CompanionHeader.js +61 -0
  61. package/apps/app-companion/src/components/companion/CompanionSceneHost.d.ts +15 -0
  62. package/apps/app-companion/src/components/companion/CompanionSceneHost.d.ts.map +1 -0
  63. package/apps/app-companion/src/components/companion/CompanionSceneHost.js +476 -0
  64. package/apps/app-companion/src/components/companion/CompanionShell.d.ts +8 -0
  65. package/apps/app-companion/src/components/companion/CompanionShell.d.ts.map +1 -0
  66. package/apps/app-companion/src/components/companion/CompanionShell.js +9 -0
  67. package/apps/app-companion/src/components/companion/CompanionView.d.ts +7 -0
  68. package/apps/app-companion/src/components/companion/CompanionView.d.ts.map +1 -0
  69. package/apps/app-companion/src/components/companion/CompanionView.js +119 -0
  70. package/apps/app-companion/src/components/companion/EmotePicker.d.ts +2 -0
  71. package/apps/app-companion/src/components/companion/EmotePicker.d.ts.map +1 -0
  72. package/apps/app-companion/src/components/companion/EmotePicker.js +354 -0
  73. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.d.ts +2 -0
  74. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.d.ts.map +1 -0
  75. package/apps/app-companion/src/components/companion/GlobalEmoteOverlay.js +113 -0
  76. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.d.ts +9 -0
  77. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.d.ts.map +1 -0
  78. package/apps/app-companion/src/components/companion/InferenceCloudAlertButton.js +17 -0
  79. package/apps/app-companion/src/components/companion/VrmStage.d.ts +27 -0
  80. package/apps/app-companion/src/components/companion/VrmStage.d.ts.map +1 -0
  81. package/apps/app-companion/src/components/companion/VrmStage.js +179 -0
  82. package/apps/app-companion/src/components/companion/companion-app.d.ts +6 -0
  83. package/apps/app-companion/src/components/companion/companion-app.d.ts.map +1 -0
  84. package/apps/app-companion/src/components/companion/companion-app.js +15 -0
  85. package/apps/app-companion/src/components/companion/companion-scene-status-context.d.ts +7 -0
  86. package/apps/app-companion/src/components/companion/companion-scene-status-context.d.ts.map +1 -0
  87. package/apps/app-companion/src/components/companion/companion-scene-status-context.js +8 -0
  88. package/apps/app-companion/src/components/companion/companion-shell-styles.d.ts +38 -0
  89. package/apps/app-companion/src/components/companion/companion-shell-styles.d.ts.map +1 -0
  90. package/apps/app-companion/src/components/companion/companion-shell-styles.js +237 -0
  91. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.d.ts +19 -0
  92. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.d.ts.map +1 -0
  93. package/apps/app-companion/src/components/companion/resolve-companion-inference-notice.js +31 -0
  94. package/apps/app-companion/src/components/companion/scene-overlay-bridge.d.ts +6 -0
  95. package/apps/app-companion/src/components/companion/scene-overlay-bridge.d.ts.map +1 -0
  96. package/apps/app-companion/src/components/companion/scene-overlay-bridge.js +82 -0
  97. package/apps/app-companion/src/components/companion/shared-companion-scene-context.d.ts +3 -0
  98. package/apps/app-companion/src/components/companion/shared-companion-scene-context.d.ts.map +1 -0
  99. package/apps/app-companion/src/components/companion/shared-companion-scene-context.js +13 -0
  100. package/apps/app-companion/src/components/companion/shell-control-styles.d.ts +12 -0
  101. package/apps/app-companion/src/components/companion/shell-control-styles.d.ts.map +1 -0
  102. package/apps/app-companion/src/components/companion/shell-control-styles.js +11 -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 +151 -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/plugin.d.ts +9 -0
  110. package/apps/app-companion/src/plugin.d.ts.map +1 -0
  111. package/apps/app-companion/src/plugin.js +15 -0
  112. package/apps/app-companion/src/types/render-modes.d.ts +4 -0
  113. package/apps/app-companion/src/types/render-modes.d.ts.map +1 -0
  114. package/apps/app-companion/src/types/render-modes.js +6 -0
  115. package/apps/app-companion/src/ui.d.ts +34 -0
  116. package/apps/app-companion/src/ui.d.ts.map +1 -0
  117. package/apps/app-companion/src/ui.js +33 -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.d.ts +26 -0
  122. package/apps/app-elizamaker/src/drop-service.d.ts.map +1 -0
  123. package/apps/app-elizamaker/src/drop-service.js +134 -0
  124. package/apps/app-elizamaker/src/index.d.ts +8 -0
  125. package/apps/app-elizamaker/src/index.d.ts.map +1 -0
  126. package/apps/app-elizamaker/src/index.js +5 -0
  127. package/apps/app-elizamaker/src/merkle-tree.d.ts +90 -0
  128. package/apps/app-elizamaker/src/merkle-tree.d.ts.map +1 -0
  129. package/apps/app-elizamaker/src/merkle-tree.js +174 -0
  130. package/apps/app-elizamaker/src/og-tracker.d.ts +28 -0
  131. package/apps/app-elizamaker/src/og-tracker.d.ts.map +1 -0
  132. package/apps/app-elizamaker/src/og-tracker.js +60 -0
  133. package/apps/app-elizamaker/src/twitter-verify.d.ts +25 -0
  134. package/apps/app-elizamaker/src/twitter-verify.d.ts.map +1 -0
  135. package/apps/app-elizamaker/src/twitter-verify.js +168 -0
  136. package/apps/app-lifeops/src/action.d.ts +3 -0
  137. package/apps/app-lifeops/src/action.d.ts.map +1 -0
  138. package/apps/app-lifeops/src/action.js +351 -0
  139. package/apps/app-lifeops/src/actions/activity-report.d.ts +13 -0
  140. package/apps/app-lifeops/src/actions/activity-report.d.ts.map +1 -0
  141. package/apps/app-lifeops/src/actions/activity-report.js +287 -0
  142. package/apps/app-lifeops/src/actions/app-blocker.d.ts +7 -0
  143. package/apps/app-lifeops/src/actions/app-blocker.d.ts.map +1 -0
  144. package/apps/app-lifeops/src/actions/app-blocker.js +448 -0
  145. package/apps/app-lifeops/src/actions/autofill.d.ts +35 -0
  146. package/apps/app-lifeops/src/actions/autofill.d.ts.map +1 -0
  147. package/apps/app-lifeops/src/actions/autofill.js +340 -0
  148. package/apps/app-lifeops/src/actions/browser-extension.d.ts +19 -0
  149. package/apps/app-lifeops/src/actions/browser-extension.d.ts.map +1 -0
  150. package/apps/app-lifeops/src/actions/browser-extension.js +88 -0
  151. package/apps/app-lifeops/src/actions/calendar.d.ts +19 -0
  152. package/apps/app-lifeops/src/actions/calendar.d.ts.map +1 -0
  153. package/apps/app-lifeops/src/actions/calendar.js +3024 -0
  154. package/apps/app-lifeops/src/actions/calendly.d.ts +3 -0
  155. package/apps/app-lifeops/src/actions/calendly.d.ts.map +1 -0
  156. package/apps/app-lifeops/src/actions/calendly.js +242 -0
  157. package/apps/app-lifeops/src/actions/checkin.d.ts +4 -0
  158. package/apps/app-lifeops/src/actions/checkin.d.ts.map +1 -0
  159. package/apps/app-lifeops/src/actions/checkin.js +72 -0
  160. package/apps/app-lifeops/src/actions/computer-use.d.ts +14 -0
  161. package/apps/app-lifeops/src/actions/computer-use.d.ts.map +1 -0
  162. package/apps/app-lifeops/src/actions/computer-use.js +380 -0
  163. package/apps/app-lifeops/src/actions/cross-channel-send.d.ts +24 -0
  164. package/apps/app-lifeops/src/actions/cross-channel-send.d.ts.map +1 -0
  165. package/apps/app-lifeops/src/actions/cross-channel-send.js +580 -0
  166. package/apps/app-lifeops/src/actions/device-bus.d.ts +19 -0
  167. package/apps/app-lifeops/src/actions/device-bus.d.ts.map +1 -0
  168. package/apps/app-lifeops/src/actions/device-bus.js +274 -0
  169. package/apps/app-lifeops/src/actions/dossier.d.ts +5 -0
  170. package/apps/app-lifeops/src/actions/dossier.d.ts.map +1 -0
  171. package/apps/app-lifeops/src/actions/dossier.js +212 -0
  172. package/apps/app-lifeops/src/actions/gmail.d.ts +33 -0
  173. package/apps/app-lifeops/src/actions/gmail.d.ts.map +1 -0
  174. package/apps/app-lifeops/src/actions/gmail.js +1775 -0
  175. package/apps/app-lifeops/src/actions/health.d.ts +9 -0
  176. package/apps/app-lifeops/src/actions/health.d.ts.map +1 -0
  177. package/apps/app-lifeops/src/actions/health.js +397 -0
  178. package/apps/app-lifeops/src/actions/inbox.d.ts +5 -0
  179. package/apps/app-lifeops/src/actions/inbox.d.ts.map +1 -0
  180. package/apps/app-lifeops/src/actions/inbox.js +990 -0
  181. package/apps/app-lifeops/src/actions/intent-sync.d.ts +3 -0
  182. package/apps/app-lifeops/src/actions/intent-sync.d.ts.map +1 -0
  183. package/apps/app-lifeops/src/actions/intent-sync.js +371 -0
  184. package/apps/app-lifeops/src/actions/life-goal-extractor.d.ts +69 -0
  185. package/apps/app-lifeops/src/actions/life-goal-extractor.d.ts.map +1 -0
  186. package/apps/app-lifeops/src/actions/life-goal-extractor.js +354 -0
  187. package/apps/app-lifeops/src/actions/life-param-extractor.d.ts +78 -0
  188. package/apps/app-lifeops/src/actions/life-param-extractor.d.ts.map +1 -0
  189. package/apps/app-lifeops/src/actions/life-param-extractor.js +423 -0
  190. package/apps/app-lifeops/src/actions/life-recent-context.d.ts +9 -0
  191. package/apps/app-lifeops/src/actions/life-recent-context.d.ts.map +1 -0
  192. package/apps/app-lifeops/src/actions/life-recent-context.js +84 -0
  193. package/apps/app-lifeops/src/actions/life-update-extractor.d.ts +27 -0
  194. package/apps/app-lifeops/src/actions/life-update-extractor.d.ts.map +1 -0
  195. package/apps/app-lifeops/src/actions/life-update-extractor.js +195 -0
  196. package/apps/app-lifeops/src/actions/life.d.ts +5 -0
  197. package/apps/app-lifeops/src/actions/life.d.ts.map +1 -0
  198. package/apps/app-lifeops/src/actions/life.extractor.d.ts +18 -0
  199. package/apps/app-lifeops/src/actions/life.extractor.d.ts.map +1 -0
  200. package/apps/app-lifeops/src/actions/life.extractor.js +363 -0
  201. package/apps/app-lifeops/src/actions/life.js +3323 -0
  202. package/apps/app-lifeops/src/actions/lifeops-extraction-config.d.ts +16 -0
  203. package/apps/app-lifeops/src/actions/lifeops-extraction-config.d.ts.map +1 -0
  204. package/apps/app-lifeops/src/actions/lifeops-extraction-config.js +25 -0
  205. package/apps/app-lifeops/src/actions/lifeops-google-helpers.d.ts +62 -0
  206. package/apps/app-lifeops/src/actions/lifeops-google-helpers.d.ts.map +1 -0
  207. package/apps/app-lifeops/src/actions/lifeops-google-helpers.js +615 -0
  208. package/apps/app-lifeops/src/actions/list-remote-sessions.d.ts +6 -0
  209. package/apps/app-lifeops/src/actions/list-remote-sessions.d.ts.map +1 -0
  210. package/apps/app-lifeops/src/actions/list-remote-sessions.js +45 -0
  211. package/apps/app-lifeops/src/actions/non-actionable-request.d.ts +6 -0
  212. package/apps/app-lifeops/src/actions/non-actionable-request.d.ts.map +1 -0
  213. package/apps/app-lifeops/src/actions/non-actionable-request.js +33 -0
  214. package/apps/app-lifeops/src/actions/password-manager.d.ts +3 -0
  215. package/apps/app-lifeops/src/actions/password-manager.d.ts.map +1 -0
  216. package/apps/app-lifeops/src/actions/password-manager.js +233 -0
  217. package/apps/app-lifeops/src/actions/relationships.d.ts +11 -0
  218. package/apps/app-lifeops/src/actions/relationships.d.ts.map +1 -0
  219. package/apps/app-lifeops/src/actions/relationships.js +666 -0
  220. package/apps/app-lifeops/src/actions/remote-desktop.d.ts +3 -0
  221. package/apps/app-lifeops/src/actions/remote-desktop.d.ts.map +1 -0
  222. package/apps/app-lifeops/src/actions/remote-desktop.js +283 -0
  223. package/apps/app-lifeops/src/actions/revoke-remote-session.d.ts +6 -0
  224. package/apps/app-lifeops/src/actions/revoke-remote-session.d.ts.map +1 -0
  225. package/apps/app-lifeops/src/actions/revoke-remote-session.js +73 -0
  226. package/apps/app-lifeops/src/actions/scheduling.d.ts +55 -0
  227. package/apps/app-lifeops/src/actions/scheduling.d.ts.map +1 -0
  228. package/apps/app-lifeops/src/actions/scheduling.js +921 -0
  229. package/apps/app-lifeops/src/actions/screen-time.d.ts +8 -0
  230. package/apps/app-lifeops/src/actions/screen-time.d.ts.map +1 -0
  231. package/apps/app-lifeops/src/actions/screen-time.js +237 -0
  232. package/apps/app-lifeops/src/actions/search-across-channels.d.ts +13 -0
  233. package/apps/app-lifeops/src/actions/search-across-channels.d.ts.map +1 -0
  234. package/apps/app-lifeops/src/actions/search-across-channels.js +340 -0
  235. package/apps/app-lifeops/src/actions/start-remote-session.d.ts +14 -0
  236. package/apps/app-lifeops/src/actions/start-remote-session.d.ts.map +1 -0
  237. package/apps/app-lifeops/src/actions/start-remote-session.js +138 -0
  238. package/apps/app-lifeops/src/actions/subscriptions.d.ts +5 -0
  239. package/apps/app-lifeops/src/actions/subscriptions.d.ts.map +1 -0
  240. package/apps/app-lifeops/src/actions/subscriptions.js +305 -0
  241. package/apps/app-lifeops/src/actions/timezone-normalization.d.ts +3 -0
  242. package/apps/app-lifeops/src/actions/timezone-normalization.d.ts.map +1 -0
  243. package/apps/app-lifeops/src/actions/timezone-normalization.js +105 -0
  244. package/apps/app-lifeops/src/actions/twilio-call.d.ts +20 -0
  245. package/apps/app-lifeops/src/actions/twilio-call.d.ts.map +1 -0
  246. package/apps/app-lifeops/src/actions/twilio-call.js +602 -0
  247. package/apps/app-lifeops/src/actions/update-owner-profile.d.ts +5 -0
  248. package/apps/app-lifeops/src/actions/update-owner-profile.d.ts.map +1 -0
  249. package/apps/app-lifeops/src/actions/update-owner-profile.js +153 -0
  250. package/apps/app-lifeops/src/actions/website-blocker.d.ts +14 -0
  251. package/apps/app-lifeops/src/actions/website-blocker.d.ts.map +1 -0
  252. package/apps/app-lifeops/src/actions/website-blocker.js +624 -0
  253. package/apps/app-lifeops/src/actions/x-read.d.ts +3 -0
  254. package/apps/app-lifeops/src/actions/x-read.d.ts.map +1 -0
  255. package/apps/app-lifeops/src/actions/x-read.js +391 -0
  256. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.d.ts +28 -0
  257. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.d.ts.map +1 -0
  258. package/apps/app-lifeops/src/activity-profile/activity-tracker-repo.js +62 -0
  259. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.d.ts +45 -0
  260. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.d.ts.map +1 -0
  261. package/apps/app-lifeops/src/activity-profile/activity-tracker-reporting.js +112 -0
  262. package/apps/app-lifeops/src/activity-profile/activity-tracker-service.d.ts +26 -0
  263. package/apps/app-lifeops/src/activity-profile/activity-tracker-service.d.ts.map +1 -0
  264. package/apps/app-lifeops/src/activity-profile/activity-tracker-service.js +84 -0
  265. package/apps/app-lifeops/src/activity-profile/analyzer.d.ts +23 -0
  266. package/apps/app-lifeops/src/activity-profile/analyzer.d.ts.map +1 -0
  267. package/apps/app-lifeops/src/activity-profile/analyzer.js +544 -0
  268. package/apps/app-lifeops/src/activity-profile/proactive-planner.d.ts +49 -0
  269. package/apps/app-lifeops/src/activity-profile/proactive-planner.d.ts.map +1 -0
  270. package/apps/app-lifeops/src/activity-profile/proactive-planner.js +458 -0
  271. package/apps/app-lifeops/src/activity-profile/proactive-worker.d.ts +32 -0
  272. package/apps/app-lifeops/src/activity-profile/proactive-worker.d.ts.map +1 -0
  273. package/apps/app-lifeops/src/activity-profile/proactive-worker.js +571 -0
  274. package/apps/app-lifeops/src/activity-profile/profile-metadata.d.ts +10 -0
  275. package/apps/app-lifeops/src/activity-profile/profile-metadata.d.ts.map +1 -0
  276. package/apps/app-lifeops/src/activity-profile/profile-metadata.js +25 -0
  277. package/apps/app-lifeops/src/activity-profile/redactor.d.ts +18 -0
  278. package/apps/app-lifeops/src/activity-profile/redactor.d.ts.map +1 -0
  279. package/apps/app-lifeops/src/activity-profile/redactor.js +39 -0
  280. package/apps/app-lifeops/src/activity-profile/service.d.ts +11 -0
  281. package/apps/app-lifeops/src/activity-profile/service.d.ts.map +1 -0
  282. package/apps/app-lifeops/src/activity-profile/service.js +229 -0
  283. package/apps/app-lifeops/src/activity-profile/types.d.ts +89 -0
  284. package/apps/app-lifeops/src/activity-profile/types.d.ts.map +1 -0
  285. package/apps/app-lifeops/src/activity-profile/types.js +29 -0
  286. package/apps/app-lifeops/src/app-blocker/access.d.ts +8 -0
  287. package/apps/app-lifeops/src/app-blocker/access.d.ts.map +1 -0
  288. package/apps/app-lifeops/src/app-blocker/access.js +28 -0
  289. package/apps/app-lifeops/src/app-blocker/engine.d.ts +10 -0
  290. package/apps/app-lifeops/src/app-blocker/engine.d.ts.map +1 -0
  291. package/apps/app-lifeops/src/app-blocker/engine.js +43 -0
  292. package/apps/app-lifeops/src/dossier/action.d.ts +9 -0
  293. package/apps/app-lifeops/src/dossier/action.d.ts.map +1 -0
  294. package/apps/app-lifeops/src/dossier/action.js +88 -0
  295. package/apps/app-lifeops/src/dossier/service.d.ts +145 -0
  296. package/apps/app-lifeops/src/dossier/service.d.ts.map +1 -0
  297. package/apps/app-lifeops/src/dossier/service.js +346 -0
  298. package/apps/app-lifeops/src/followup/actions/listOverdueFollowups.d.ts +3 -0
  299. package/apps/app-lifeops/src/followup/actions/listOverdueFollowups.d.ts.map +1 -0
  300. package/apps/app-lifeops/src/followup/actions/listOverdueFollowups.js +48 -0
  301. package/apps/app-lifeops/src/followup/actions/markFollowupDone.d.ts +3 -0
  302. package/apps/app-lifeops/src/followup/actions/markFollowupDone.d.ts.map +1 -0
  303. package/apps/app-lifeops/src/followup/actions/markFollowupDone.js +173 -0
  304. package/apps/app-lifeops/src/followup/actions/setFollowupThreshold.d.ts +3 -0
  305. package/apps/app-lifeops/src/followup/actions/setFollowupThreshold.d.ts.map +1 -0
  306. package/apps/app-lifeops/src/followup/actions/setFollowupThreshold.js +172 -0
  307. package/apps/app-lifeops/src/followup/followup-tracker.d.ts +81 -0
  308. package/apps/app-lifeops/src/followup/followup-tracker.d.ts.map +1 -0
  309. package/apps/app-lifeops/src/followup/followup-tracker.js +251 -0
  310. package/apps/app-lifeops/src/followup/index.d.ts +5 -0
  311. package/apps/app-lifeops/src/followup/index.d.ts.map +1 -0
  312. package/apps/app-lifeops/src/followup/index.js +4 -0
  313. package/apps/app-lifeops/src/inbox/channel-deep-links.d.ts +20 -0
  314. package/apps/app-lifeops/src/inbox/channel-deep-links.d.ts.map +1 -0
  315. package/apps/app-lifeops/src/inbox/channel-deep-links.js +185 -0
  316. package/apps/app-lifeops/src/inbox/config.d.ts +7 -0
  317. package/apps/app-lifeops/src/inbox/config.d.ts.map +1 -0
  318. package/apps/app-lifeops/src/inbox/config.js +59 -0
  319. package/apps/app-lifeops/src/inbox/message-fetcher.d.ts +33 -0
  320. package/apps/app-lifeops/src/inbox/message-fetcher.d.ts.map +1 -0
  321. package/apps/app-lifeops/src/inbox/message-fetcher.js +252 -0
  322. package/apps/app-lifeops/src/inbox/reflection.d.ts +40 -0
  323. package/apps/app-lifeops/src/inbox/reflection.d.ts.map +1 -0
  324. package/apps/app-lifeops/src/inbox/reflection.js +115 -0
  325. package/apps/app-lifeops/src/inbox/repository.d.ts +52 -0
  326. package/apps/app-lifeops/src/inbox/repository.d.ts.map +1 -0
  327. package/apps/app-lifeops/src/inbox/repository.js +262 -0
  328. package/apps/app-lifeops/src/inbox/triage-classifier.d.ts +15 -0
  329. package/apps/app-lifeops/src/inbox/triage-classifier.d.ts.map +1 -0
  330. package/apps/app-lifeops/src/inbox/triage-classifier.js +176 -0
  331. package/apps/app-lifeops/src/inbox/types.d.ts +92 -0
  332. package/apps/app-lifeops/src/inbox/types.d.ts.map +1 -0
  333. package/apps/app-lifeops/src/inbox/types.js +1 -0
  334. package/apps/app-lifeops/src/lifeops/app-state.d.ts +11 -0
  335. package/apps/app-lifeops/src/lifeops/app-state.d.ts.map +1 -0
  336. package/apps/app-lifeops/src/lifeops/app-state.js +35 -0
  337. package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts +58 -0
  338. package/apps/app-lifeops/src/lifeops/apple-reminders.d.ts.map +1 -0
  339. package/apps/app-lifeops/src/lifeops/apple-reminders.js +325 -0
  340. package/apps/app-lifeops/src/lifeops/approval-queue.types.d.ts +162 -0
  341. package/apps/app-lifeops/src/lifeops/approval-queue.types.d.ts.map +1 -0
  342. package/apps/app-lifeops/src/lifeops/approval-queue.types.js +41 -0
  343. package/apps/app-lifeops/src/lifeops/autofill-whitelist.d.ts +24 -0
  344. package/apps/app-lifeops/src/lifeops/autofill-whitelist.d.ts.map +1 -0
  345. package/apps/app-lifeops/src/lifeops/autofill-whitelist.js +125 -0
  346. package/apps/app-lifeops/src/lifeops/background-planner-dispatch.d.ts +59 -0
  347. package/apps/app-lifeops/src/lifeops/background-planner-dispatch.d.ts.map +1 -0
  348. package/apps/app-lifeops/src/lifeops/background-planner-dispatch.js +129 -0
  349. package/apps/app-lifeops/src/lifeops/background-planner.d.ts +141 -0
  350. package/apps/app-lifeops/src/lifeops/background-planner.d.ts.map +1 -0
  351. package/apps/app-lifeops/src/lifeops/background-planner.js +308 -0
  352. package/apps/app-lifeops/src/lifeops/browser-extension-store.d.ts +61 -0
  353. package/apps/app-lifeops/src/lifeops/browser-extension-store.d.ts.map +1 -0
  354. package/apps/app-lifeops/src/lifeops/browser-extension-store.js +181 -0
  355. package/apps/app-lifeops/src/lifeops/calendly-client.d.ts +61 -0
  356. package/apps/app-lifeops/src/lifeops/calendly-client.d.ts.map +1 -0
  357. package/apps/app-lifeops/src/lifeops/calendly-client.js +220 -0
  358. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.d.ts +24 -0
  359. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.d.ts.map +1 -0
  360. package/apps/app-lifeops/src/lifeops/checkin/checkin-service.js +216 -0
  361. package/apps/app-lifeops/src/lifeops/checkin/schedule-resolver.d.ts +14 -0
  362. package/apps/app-lifeops/src/lifeops/checkin/schedule-resolver.d.ts.map +1 -0
  363. package/apps/app-lifeops/src/lifeops/checkin/schedule-resolver.js +33 -0
  364. package/apps/app-lifeops/src/lifeops/checkin/types.d.ts +42 -0
  365. package/apps/app-lifeops/src/lifeops/checkin/types.d.ts.map +1 -0
  366. package/apps/app-lifeops/src/lifeops/checkin/types.js +7 -0
  367. package/apps/app-lifeops/src/lifeops/defaults.d.ts +24 -0
  368. package/apps/app-lifeops/src/lifeops/defaults.d.ts.map +1 -0
  369. package/apps/app-lifeops/src/lifeops/defaults.js +212 -0
  370. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.d.ts +106 -0
  371. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.d.ts.map +1 -0
  372. package/apps/app-lifeops/src/lifeops/discord-browser-scraper.js +489 -0
  373. package/apps/app-lifeops/src/lifeops/enforcement-windows.d.ts +34 -0
  374. package/apps/app-lifeops/src/lifeops/enforcement-windows.d.ts.map +1 -0
  375. package/apps/app-lifeops/src/lifeops/enforcement-windows.js +110 -0
  376. package/apps/app-lifeops/src/lifeops/engine.d.ts +8 -0
  377. package/apps/app-lifeops/src/lifeops/engine.d.ts.map +1 -0
  378. package/apps/app-lifeops/src/lifeops/engine.js +389 -0
  379. package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts +54 -0
  380. package/apps/app-lifeops/src/lifeops/goal-grounding.d.ts.map +1 -0
  381. package/apps/app-lifeops/src/lifeops/goal-grounding.js +147 -0
  382. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts +12 -0
  383. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.d.ts.map +1 -0
  384. package/apps/app-lifeops/src/lifeops/goal-semantic-evaluator.js +154 -0
  385. package/apps/app-lifeops/src/lifeops/google-api-error.d.ts +7 -0
  386. package/apps/app-lifeops/src/lifeops/google-api-error.d.ts.map +1 -0
  387. package/apps/app-lifeops/src/lifeops/google-api-error.js +35 -0
  388. package/apps/app-lifeops/src/lifeops/google-calendar.d.ts +53 -0
  389. package/apps/app-lifeops/src/lifeops/google-calendar.d.ts.map +1 -0
  390. package/apps/app-lifeops/src/lifeops/google-calendar.js +268 -0
  391. package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts +32 -0
  392. package/apps/app-lifeops/src/lifeops/google-connector-gateway.d.ts.map +1 -0
  393. package/apps/app-lifeops/src/lifeops/google-connector-gateway.js +88 -0
  394. package/apps/app-lifeops/src/lifeops/google-drive.d.ts +103 -0
  395. package/apps/app-lifeops/src/lifeops/google-drive.d.ts.map +1 -0
  396. package/apps/app-lifeops/src/lifeops/google-drive.js +265 -0
  397. package/apps/app-lifeops/src/lifeops/google-fetch.d.ts +16 -0
  398. package/apps/app-lifeops/src/lifeops/google-fetch.d.ts.map +1 -0
  399. package/apps/app-lifeops/src/lifeops/google-fetch.js +96 -0
  400. package/apps/app-lifeops/src/lifeops/google-gmail.d.ts +54 -0
  401. package/apps/app-lifeops/src/lifeops/google-gmail.d.ts.map +1 -0
  402. package/apps/app-lifeops/src/lifeops/google-gmail.js +456 -0
  403. package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts +138 -0
  404. package/apps/app-lifeops/src/lifeops/google-managed-client.d.ts.map +1 -0
  405. package/apps/app-lifeops/src/lifeops/google-managed-client.js +314 -0
  406. package/apps/app-lifeops/src/lifeops/google-oauth.d.ts +65 -0
  407. package/apps/app-lifeops/src/lifeops/google-oauth.d.ts.map +1 -0
  408. package/apps/app-lifeops/src/lifeops/google-oauth.js +577 -0
  409. package/apps/app-lifeops/src/lifeops/google-scopes.d.ts +13 -0
  410. package/apps/app-lifeops/src/lifeops/google-scopes.d.ts.map +1 -0
  411. package/apps/app-lifeops/src/lifeops/google-scopes.js +96 -0
  412. package/apps/app-lifeops/src/lifeops/health-bridge.d.ts +57 -0
  413. package/apps/app-lifeops/src/lifeops/health-bridge.d.ts.map +1 -0
  414. package/apps/app-lifeops/src/lifeops/health-bridge.js +514 -0
  415. package/apps/app-lifeops/src/lifeops/imessage-bridge.d.ts +98 -0
  416. package/apps/app-lifeops/src/lifeops/imessage-bridge.d.ts.map +1 -0
  417. package/apps/app-lifeops/src/lifeops/imessage-bridge.js +537 -0
  418. package/apps/app-lifeops/src/lifeops/intent-sync.d.ts +56 -0
  419. package/apps/app-lifeops/src/lifeops/intent-sync.d.ts.map +1 -0
  420. package/apps/app-lifeops/src/lifeops/intent-sync.js +223 -0
  421. package/apps/app-lifeops/src/lifeops/notifications-push.d.ts +37 -0
  422. package/apps/app-lifeops/src/lifeops/notifications-push.d.ts.map +1 -0
  423. package/apps/app-lifeops/src/lifeops/notifications-push.js +90 -0
  424. package/apps/app-lifeops/src/lifeops/owner-profile.d.ts +43 -0
  425. package/apps/app-lifeops/src/lifeops/owner-profile.d.ts.map +1 -0
  426. package/apps/app-lifeops/src/lifeops/owner-profile.js +300 -0
  427. package/apps/app-lifeops/src/lifeops/password-manager-bridge.d.ts +49 -0
  428. package/apps/app-lifeops/src/lifeops/password-manager-bridge.d.ts.map +1 -0
  429. package/apps/app-lifeops/src/lifeops/password-manager-bridge.js +452 -0
  430. package/apps/app-lifeops/src/lifeops/remote-desktop.d.ts +37 -0
  431. package/apps/app-lifeops/src/lifeops/remote-desktop.d.ts.map +1 -0
  432. package/apps/app-lifeops/src/lifeops/remote-desktop.js +371 -0
  433. package/apps/app-lifeops/src/lifeops/repository.d.ts +290 -0
  434. package/apps/app-lifeops/src/lifeops/repository.d.ts.map +1 -0
  435. package/apps/app-lifeops/src/lifeops/repository.js +3958 -0
  436. package/apps/app-lifeops/src/lifeops/runtime.d.ts +15 -0
  437. package/apps/app-lifeops/src/lifeops/runtime.d.ts.map +1 -0
  438. package/apps/app-lifeops/src/lifeops/runtime.js +230 -0
  439. package/apps/app-lifeops/src/lifeops/schema.d.ts +5022 -0
  440. package/apps/app-lifeops/src/lifeops/schema.d.ts.map +1 -0
  441. package/apps/app-lifeops/src/lifeops/schema.js +213 -0
  442. package/apps/app-lifeops/src/lifeops/screen-context.d.ts +52 -0
  443. package/apps/app-lifeops/src/lifeops/screen-context.d.ts.map +1 -0
  444. package/apps/app-lifeops/src/lifeops/screen-context.js +332 -0
  445. package/apps/app-lifeops/src/lifeops/seed-routines.d.ts +20 -0
  446. package/apps/app-lifeops/src/lifeops/seed-routines.d.ts.map +1 -0
  447. package/apps/app-lifeops/src/lifeops/seed-routines.js +111 -0
  448. package/apps/app-lifeops/src/lifeops/service-constants.d.ts +51 -0
  449. package/apps/app-lifeops/src/lifeops/service-constants.d.ts.map +1 -0
  450. package/apps/app-lifeops/src/lifeops/service-constants.js +111 -0
  451. package/apps/app-lifeops/src/lifeops/service-helpers-browser.d.ts +40 -0
  452. package/apps/app-lifeops/src/lifeops/service-helpers-browser.d.ts.map +1 -0
  453. package/apps/app-lifeops/src/lifeops/service-helpers-browser.js +288 -0
  454. package/apps/app-lifeops/src/lifeops/service-helpers-misc.d.ts +68 -0
  455. package/apps/app-lifeops/src/lifeops/service-helpers-misc.d.ts.map +1 -0
  456. package/apps/app-lifeops/src/lifeops/service-helpers-misc.js +493 -0
  457. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.d.ts +17 -0
  458. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.d.ts.map +1 -0
  459. package/apps/app-lifeops/src/lifeops/service-helpers-occurrence.js +214 -0
  460. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.d.ts +24 -0
  461. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.d.ts.map +1 -0
  462. package/apps/app-lifeops/src/lifeops/service-helpers-reminder.js +170 -0
  463. package/apps/app-lifeops/src/lifeops/service-mixin-browser.d.ts +2 -0
  464. package/apps/app-lifeops/src/lifeops/service-mixin-browser.d.ts.map +1 -0
  465. package/apps/app-lifeops/src/lifeops/service-mixin-browser.js +769 -0
  466. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.d.ts +2 -0
  467. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.d.ts.map +1 -0
  468. package/apps/app-lifeops/src/lifeops/service-mixin-calendar.js +540 -0
  469. package/apps/app-lifeops/src/lifeops/service-mixin-core.d.ts +49 -0
  470. package/apps/app-lifeops/src/lifeops/service-mixin-core.d.ts.map +1 -0
  471. package/apps/app-lifeops/src/lifeops/service-mixin-core.js +433 -0
  472. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.d.ts +2 -0
  473. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.d.ts.map +1 -0
  474. package/apps/app-lifeops/src/lifeops/service-mixin-definitions.js +353 -0
  475. package/apps/app-lifeops/src/lifeops/service-mixin-discord.d.ts +2 -0
  476. package/apps/app-lifeops/src/lifeops/service-mixin-discord.d.ts.map +1 -0
  477. package/apps/app-lifeops/src/lifeops/service-mixin-discord.js +783 -0
  478. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.d.ts +2 -0
  479. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.d.ts.map +1 -0
  480. package/apps/app-lifeops/src/lifeops/service-mixin-dossier.js +262 -0
  481. package/apps/app-lifeops/src/lifeops/service-mixin-drive.d.ts +12 -0
  482. package/apps/app-lifeops/src/lifeops/service-mixin-drive.d.ts.map +1 -0
  483. package/apps/app-lifeops/src/lifeops/service-mixin-drive.js +230 -0
  484. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.d.ts +2 -0
  485. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.d.ts.map +1 -0
  486. package/apps/app-lifeops/src/lifeops/service-mixin-gmail.js +1013 -0
  487. package/apps/app-lifeops/src/lifeops/service-mixin-goals.d.ts +2 -0
  488. package/apps/app-lifeops/src/lifeops/service-mixin-goals.d.ts.map +1 -0
  489. package/apps/app-lifeops/src/lifeops/service-mixin-goals.js +714 -0
  490. package/apps/app-lifeops/src/lifeops/service-mixin-google.d.ts +2 -0
  491. package/apps/app-lifeops/src/lifeops/service-mixin-google.d.ts.map +1 -0
  492. package/apps/app-lifeops/src/lifeops/service-mixin-google.js +793 -0
  493. package/apps/app-lifeops/src/lifeops/service-mixin-health.d.ts +2 -0
  494. package/apps/app-lifeops/src/lifeops/service-mixin-health.d.ts.map +1 -0
  495. package/apps/app-lifeops/src/lifeops/service-mixin-health.js +55 -0
  496. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.d.ts +3 -0
  497. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.d.ts.map +1 -0
  498. package/apps/app-lifeops/src/lifeops/service-mixin-imessage.js +106 -0
  499. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.d.ts +2 -0
  500. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.d.ts.map +1 -0
  501. package/apps/app-lifeops/src/lifeops/service-mixin-relationships.js +109 -0
  502. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.d.ts +37 -0
  503. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.d.ts.map +1 -0
  504. package/apps/app-lifeops/src/lifeops/service-mixin-reminders.js +2436 -0
  505. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.d.ts +2 -0
  506. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.d.ts.map +1 -0
  507. package/apps/app-lifeops/src/lifeops/service-mixin-scheduling.js +149 -0
  508. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.d.ts +2 -0
  509. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.d.ts.map +1 -0
  510. package/apps/app-lifeops/src/lifeops/service-mixin-screentime.js +97 -0
  511. package/apps/app-lifeops/src/lifeops/service-mixin-signal.d.ts +2 -0
  512. package/apps/app-lifeops/src/lifeops/service-mixin-signal.d.ts.map +1 -0
  513. package/apps/app-lifeops/src/lifeops/service-mixin-signal.js +264 -0
  514. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.d.ts +2 -0
  515. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.d.ts.map +1 -0
  516. package/apps/app-lifeops/src/lifeops/service-mixin-subscriptions.js +763 -0
  517. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.d.ts +2 -0
  518. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.d.ts.map +1 -0
  519. package/apps/app-lifeops/src/lifeops/service-mixin-telegram.js +270 -0
  520. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.d.ts +2 -0
  521. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.d.ts.map +1 -0
  522. package/apps/app-lifeops/src/lifeops/service-mixin-whatsapp.js +56 -0
  523. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.d.ts +2 -0
  524. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.d.ts.map +1 -0
  525. package/apps/app-lifeops/src/lifeops/service-mixin-workflows.js +411 -0
  526. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.d.ts +2 -0
  527. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.d.ts.map +1 -0
  528. package/apps/app-lifeops/src/lifeops/service-mixin-x-read.js +190 -0
  529. package/apps/app-lifeops/src/lifeops/service-mixin-x.d.ts +2 -0
  530. package/apps/app-lifeops/src/lifeops/service-mixin-x.d.ts.map +1 -0
  531. package/apps/app-lifeops/src/lifeops/service-mixin-x.js +120 -0
  532. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.d.ts +42 -0
  533. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.d.ts.map +1 -0
  534. package/apps/app-lifeops/src/lifeops/service-normalize-calendar.js +294 -0
  535. package/apps/app-lifeops/src/lifeops/service-normalize-connector.d.ts +18 -0
  536. package/apps/app-lifeops/src/lifeops/service-normalize-connector.d.ts.map +1 -0
  537. package/apps/app-lifeops/src/lifeops/service-normalize-connector.js +317 -0
  538. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.d.ts +63 -0
  539. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.d.ts.map +1 -0
  540. package/apps/app-lifeops/src/lifeops/service-normalize-gmail.js +553 -0
  541. package/apps/app-lifeops/src/lifeops/service-normalize-task.d.ts +8 -0
  542. package/apps/app-lifeops/src/lifeops/service-normalize-task.d.ts.map +1 -0
  543. package/apps/app-lifeops/src/lifeops/service-normalize-task.js +333 -0
  544. package/apps/app-lifeops/src/lifeops/service-normalize.d.ts +27 -0
  545. package/apps/app-lifeops/src/lifeops/service-normalize.d.ts.map +1 -0
  546. package/apps/app-lifeops/src/lifeops/service-normalize.js +193 -0
  547. package/apps/app-lifeops/src/lifeops/service-types.d.ts +43 -0
  548. package/apps/app-lifeops/src/lifeops/service-types.d.ts.map +1 -0
  549. package/apps/app-lifeops/src/lifeops/service-types.js +8 -0
  550. package/apps/app-lifeops/src/lifeops/service.d.ts +1632 -0
  551. package/apps/app-lifeops/src/lifeops/service.d.ts.map +1 -0
  552. package/apps/app-lifeops/src/lifeops/service.js +43 -0
  553. package/apps/app-lifeops/src/lifeops/signal-auth.d.ts +26 -0
  554. package/apps/app-lifeops/src/lifeops/signal-auth.d.ts.map +1 -0
  555. package/apps/app-lifeops/src/lifeops/signal-auth.js +300 -0
  556. package/apps/app-lifeops/src/lifeops/signal-runtime-config.d.ts +13 -0
  557. package/apps/app-lifeops/src/lifeops/signal-runtime-config.d.ts.map +1 -0
  558. package/apps/app-lifeops/src/lifeops/signal-runtime-config.js +42 -0
  559. package/apps/app-lifeops/src/lifeops/sql.d.ts +26 -0
  560. package/apps/app-lifeops/src/lifeops/sql.d.ts.map +1 -0
  561. package/apps/app-lifeops/src/lifeops/sql.js +127 -0
  562. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.d.ts +54 -0
  563. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.d.ts.map +1 -0
  564. package/apps/app-lifeops/src/lifeops/subscriptions-playbooks.js +213 -0
  565. package/apps/app-lifeops/src/lifeops/subscriptions-types.d.ts +80 -0
  566. package/apps/app-lifeops/src/lifeops/subscriptions-types.d.ts.map +1 -0
  567. package/apps/app-lifeops/src/lifeops/subscriptions-types.js +1 -0
  568. package/apps/app-lifeops/src/lifeops/telegram-auth.d.ts +62 -0
  569. package/apps/app-lifeops/src/lifeops/telegram-auth.d.ts.map +1 -0
  570. package/apps/app-lifeops/src/lifeops/telegram-auth.js +496 -0
  571. package/apps/app-lifeops/src/lifeops/telegram-local-client.d.ts +118 -0
  572. package/apps/app-lifeops/src/lifeops/telegram-local-client.d.ts.map +1 -0
  573. package/apps/app-lifeops/src/lifeops/telegram-local-client.js +376 -0
  574. package/apps/app-lifeops/src/lifeops/time.d.ts +17 -0
  575. package/apps/app-lifeops/src/lifeops/time.d.ts.map +1 -0
  576. package/apps/app-lifeops/src/lifeops/time.js +132 -0
  577. package/apps/app-lifeops/src/lifeops/twilio.d.ts +25 -0
  578. package/apps/app-lifeops/src/lifeops/twilio.d.ts.map +1 -0
  579. package/apps/app-lifeops/src/lifeops/twilio.js +160 -0
  580. package/apps/app-lifeops/src/lifeops/unified-search.d.ts +88 -0
  581. package/apps/app-lifeops/src/lifeops/unified-search.d.ts.map +1 -0
  582. package/apps/app-lifeops/src/lifeops/unified-search.js +431 -0
  583. package/apps/app-lifeops/src/lifeops/whatsapp-client.d.ts +47 -0
  584. package/apps/app-lifeops/src/lifeops/whatsapp-client.d.ts.map +1 -0
  585. package/apps/app-lifeops/src/lifeops/whatsapp-client.js +200 -0
  586. package/apps/app-lifeops/src/lifeops/x-poster.d.ts +41 -0
  587. package/apps/app-lifeops/src/lifeops/x-poster.d.ts.map +1 -0
  588. package/apps/app-lifeops/src/lifeops/x-poster.js +218 -0
  589. package/apps/app-lifeops/src/lifeops/x-reader.d.ts +70 -0
  590. package/apps/app-lifeops/src/lifeops/x-reader.d.ts.map +1 -0
  591. package/apps/app-lifeops/src/lifeops/x-reader.js +262 -0
  592. package/apps/app-lifeops/src/plugin.d.ts +33 -0
  593. package/apps/app-lifeops/src/plugin.d.ts.map +1 -0
  594. package/apps/app-lifeops/src/plugin.js +318 -0
  595. package/apps/app-lifeops/src/provider.d.ts +3 -0
  596. package/apps/app-lifeops/src/provider.d.ts.map +1 -0
  597. package/apps/app-lifeops/src/provider.js +76 -0
  598. package/apps/app-lifeops/src/providers/activity-profile.d.ts +3 -0
  599. package/apps/app-lifeops/src/providers/activity-profile.d.ts.map +1 -0
  600. package/apps/app-lifeops/src/providers/activity-profile.js +140 -0
  601. package/apps/app-lifeops/src/providers/app-blocker.d.ts +3 -0
  602. package/apps/app-lifeops/src/providers/app-blocker.d.ts.map +1 -0
  603. package/apps/app-lifeops/src/providers/app-blocker.js +86 -0
  604. package/apps/app-lifeops/src/providers/cross-channel-context.d.ts +29 -0
  605. package/apps/app-lifeops/src/providers/cross-channel-context.d.ts.map +1 -0
  606. package/apps/app-lifeops/src/providers/cross-channel-context.js +193 -0
  607. package/apps/app-lifeops/src/providers/inbox-triage.d.ts +3 -0
  608. package/apps/app-lifeops/src/providers/inbox-triage.d.ts.map +1 -0
  609. package/apps/app-lifeops/src/providers/inbox-triage.js +90 -0
  610. package/apps/app-lifeops/src/providers/lifeops.d.ts +3 -0
  611. package/apps/app-lifeops/src/providers/lifeops.d.ts.map +1 -0
  612. package/apps/app-lifeops/src/providers/lifeops.js +194 -0
  613. package/apps/app-lifeops/src/providers/website-blocker.d.ts +4 -0
  614. package/apps/app-lifeops/src/providers/website-blocker.d.ts.map +1 -0
  615. package/apps/app-lifeops/src/providers/website-blocker.js +117 -0
  616. package/apps/app-lifeops/src/public.d.ts +4 -0
  617. package/apps/app-lifeops/src/public.d.ts.map +1 -0
  618. package/apps/app-lifeops/src/public.js +3 -0
  619. package/apps/app-lifeops/src/remote/pairing-code.d.ts +39 -0
  620. package/apps/app-lifeops/src/remote/pairing-code.d.ts.map +1 -0
  621. package/apps/app-lifeops/src/remote/pairing-code.js +76 -0
  622. package/apps/app-lifeops/src/remote/remote-session-service.d.ts +107 -0
  623. package/apps/app-lifeops/src/remote/remote-session-service.d.ts.map +1 -0
  624. package/apps/app-lifeops/src/remote/remote-session-service.js +253 -0
  625. package/apps/app-lifeops/src/routes/lifeops-browser-packaging.d.ts +16 -0
  626. package/apps/app-lifeops/src/routes/lifeops-browser-packaging.d.ts.map +1 -0
  627. package/apps/app-lifeops/src/routes/lifeops-browser-packaging.js +311 -0
  628. package/apps/app-lifeops/src/routes/lifeops-routes.d.ts +20 -0
  629. package/apps/app-lifeops/src/routes/lifeops-routes.d.ts.map +1 -0
  630. package/apps/app-lifeops/src/routes/lifeops-routes.js +1409 -0
  631. package/apps/app-lifeops/src/routes/plugin.d.ts +18 -0
  632. package/apps/app-lifeops/src/routes/plugin.d.ts.map +1 -0
  633. package/apps/app-lifeops/src/routes/plugin.js +270 -0
  634. package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts +7 -0
  635. package/apps/app-lifeops/src/routes/website-blocker-routes.d.ts.map +1 -0
  636. package/apps/app-lifeops/src/routes/website-blocker-routes.js +170 -0
  637. package/apps/app-lifeops/src/service.d.ts +8 -0
  638. package/apps/app-lifeops/src/service.d.ts.map +1 -0
  639. package/apps/app-lifeops/src/service.js +11 -0
  640. package/apps/app-lifeops/src/travel-time/action.d.ts +6 -0
  641. package/apps/app-lifeops/src/travel-time/action.d.ts.map +1 -0
  642. package/apps/app-lifeops/src/travel-time/action.js +81 -0
  643. package/apps/app-lifeops/src/travel-time/service.d.ts +61 -0
  644. package/apps/app-lifeops/src/travel-time/service.d.ts.map +1 -0
  645. package/apps/app-lifeops/src/travel-time/service.js +145 -0
  646. package/apps/app-lifeops/src/website-blocker/access.d.ts +8 -0
  647. package/apps/app-lifeops/src/website-blocker/access.d.ts.map +1 -0
  648. package/apps/app-lifeops/src/website-blocker/access.js +32 -0
  649. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/blockUntilTaskComplete.d.ts +3 -0
  650. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/blockUntilTaskComplete.d.ts.map +1 -0
  651. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/blockUntilTaskComplete.js +228 -0
  652. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/listActiveBlocks.d.ts +3 -0
  653. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/listActiveBlocks.d.ts.map +1 -0
  654. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/listActiveBlocks.js +57 -0
  655. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/releaseBlock.d.ts +3 -0
  656. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/releaseBlock.d.ts.map +1 -0
  657. package/apps/app-lifeops/src/website-blocker/chat-integration/actions/releaseBlock.js +98 -0
  658. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-reconciler.d.ts +7 -0
  659. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-reconciler.d.ts.map +1 -0
  660. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-reconciler.js +111 -0
  661. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-schema.d.ts +39 -0
  662. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-schema.d.ts.map +1 -0
  663. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-schema.js +123 -0
  664. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-service.d.ts +21 -0
  665. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-service.d.ts.map +1 -0
  666. package/apps/app-lifeops/src/website-blocker/chat-integration/block-rule-service.js +268 -0
  667. package/apps/app-lifeops/src/website-blocker/chat-integration/index.d.ts +8 -0
  668. package/apps/app-lifeops/src/website-blocker/chat-integration/index.d.ts.map +1 -0
  669. package/apps/app-lifeops/src/website-blocker/chat-integration/index.js +6 -0
  670. package/apps/app-lifeops/src/website-blocker/engine.d.ts +116 -0
  671. package/apps/app-lifeops/src/website-blocker/engine.d.ts.map +1 -0
  672. package/apps/app-lifeops/src/website-blocker/engine.js +934 -0
  673. package/apps/app-lifeops/src/website-blocker/permissions.d.ts +9 -0
  674. package/apps/app-lifeops/src/website-blocker/permissions.d.ts.map +1 -0
  675. package/apps/app-lifeops/src/website-blocker/permissions.js +1 -0
  676. package/apps/app-lifeops/src/website-blocker/public.d.ts +13 -0
  677. package/apps/app-lifeops/src/website-blocker/public.d.ts.map +1 -0
  678. package/apps/app-lifeops/src/website-blocker/public.js +10 -0
  679. package/apps/app-lifeops/src/website-blocker/roles.d.ts +13 -0
  680. package/apps/app-lifeops/src/website-blocker/roles.d.ts.map +1 -0
  681. package/apps/app-lifeops/src/website-blocker/roles.js +20 -0
  682. package/apps/app-lifeops/src/website-blocker/service.d.ts +21 -0
  683. package/apps/app-lifeops/src/website-blocker/service.d.ts.map +1 -0
  684. package/apps/app-lifeops/src/website-blocker/service.js +268 -0
  685. package/apps/app-steward/src/ApprovalQueue.d.ts +18 -0
  686. package/apps/app-steward/src/ApprovalQueue.d.ts.map +1 -0
  687. package/apps/app-steward/src/ApprovalQueue.js +139 -0
  688. package/apps/app-steward/src/StewardLogo.d.ts +11 -0
  689. package/apps/app-steward/src/StewardLogo.d.ts.map +1 -0
  690. package/apps/app-steward/src/StewardLogo.js +4 -0
  691. package/apps/app-steward/src/TransactionHistory.d.ts +22 -0
  692. package/apps/app-steward/src/TransactionHistory.d.ts.map +1 -0
  693. package/apps/app-steward/src/TransactionHistory.js +100 -0
  694. package/apps/app-steward/src/api/tx-service.d.ts +47 -0
  695. package/apps/app-steward/src/api/tx-service.d.ts.map +1 -0
  696. package/apps/app-steward/src/api/tx-service.js +156 -0
  697. package/apps/app-steward/src/api/wallet-capability.d.ts +28 -0
  698. package/apps/app-steward/src/api/wallet-capability.d.ts.map +1 -0
  699. package/apps/app-steward/src/api/wallet-capability.js +94 -0
  700. package/apps/app-steward/src/api/wallet-dex-prices.d.ts +43 -0
  701. package/apps/app-steward/src/api/wallet-dex-prices.d.ts.map +1 -0
  702. package/apps/app-steward/src/api/wallet-dex-prices.js +149 -0
  703. package/apps/app-steward/src/api/wallet-evm-balance.d.ts +66 -0
  704. package/apps/app-steward/src/api/wallet-evm-balance.d.ts.map +1 -0
  705. package/apps/app-steward/src/api/wallet-evm-balance.js +666 -0
  706. package/apps/app-steward/src/api/wallet-routes.d.ts +27 -0
  707. package/apps/app-steward/src/api/wallet-routes.d.ts.map +1 -0
  708. package/apps/app-steward/src/api/wallet-routes.js +470 -0
  709. package/apps/app-steward/src/api/wallet-rpc.d.ts +67 -0
  710. package/apps/app-steward/src/api/wallet-rpc.d.ts.map +1 -0
  711. package/apps/app-steward/src/api/wallet-rpc.js +453 -0
  712. package/apps/app-steward/src/api/wallet.d.ts +60 -0
  713. package/apps/app-steward/src/api/wallet.d.ts.map +1 -0
  714. package/apps/app-steward/src/api/wallet.js +639 -0
  715. package/apps/app-steward/src/browser-workspace-wallet.d.ts +66 -0
  716. package/apps/app-steward/src/browser-workspace-wallet.d.ts.map +1 -0
  717. package/apps/app-steward/src/browser-workspace-wallet.js +129 -0
  718. package/apps/app-steward/src/chain-utils.d.ts +10 -0
  719. package/apps/app-steward/src/chain-utils.d.ts.map +1 -0
  720. package/apps/app-steward/src/chain-utils.js +83 -0
  721. package/apps/app-steward/src/routes/server-wallet-trade.d.ts +27 -0
  722. package/apps/app-steward/src/routes/server-wallet-trade.d.ts.map +1 -0
  723. package/apps/app-steward/src/routes/server-wallet-trade.js +69 -0
  724. package/apps/app-steward/src/routes/wallet-core-routes.d.ts +16 -0
  725. package/apps/app-steward/src/routes/wallet-core-routes.d.ts.map +1 -0
  726. package/apps/app-steward/src/routes/wallet-core-routes.js +46 -0
  727. package/apps/app-steward/src/routes/wallet-export-guard.d.ts +44 -0
  728. package/apps/app-steward/src/routes/wallet-export-guard.d.ts.map +1 -0
  729. package/apps/app-steward/src/routes/wallet-export-guard.js +248 -0
  730. package/apps/app-steward/src/services/steward-evm-account.d.ts +58 -0
  731. package/apps/app-steward/src/services/steward-evm-account.d.ts.map +1 -0
  732. package/apps/app-steward/src/services/steward-evm-account.js +302 -0
  733. package/apps/app-steward/src/services/steward-evm-bridge.d.ts +35 -0
  734. package/apps/app-steward/src/services/steward-evm-bridge.d.ts.map +1 -0
  735. package/apps/app-steward/src/services/steward-evm-bridge.js +99 -0
  736. package/apps/app-steward/src/services/steward-sidecar/health-check.d.ts +9 -0
  737. package/apps/app-steward/src/services/steward-sidecar/health-check.d.ts.map +1 -0
  738. package/apps/app-steward/src/services/steward-sidecar/health-check.js +34 -0
  739. package/apps/app-steward/src/services/steward-sidecar/helpers.d.ts +12 -0
  740. package/apps/app-steward/src/services/steward-sidecar/helpers.d.ts.map +1 -0
  741. package/apps/app-steward/src/services/steward-sidecar/helpers.js +59 -0
  742. package/apps/app-steward/src/services/steward-sidecar/process-management.d.ts +19 -0
  743. package/apps/app-steward/src/services/steward-sidecar/process-management.d.ts.map +1 -0
  744. package/apps/app-steward/src/services/steward-sidecar/process-management.js +144 -0
  745. package/apps/app-steward/src/services/steward-sidecar/types.d.ts +60 -0
  746. package/apps/app-steward/src/services/steward-sidecar/types.d.ts.map +1 -0
  747. package/apps/app-steward/src/services/steward-sidecar/types.js +17 -0
  748. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.d.ts +9 -0
  749. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.d.ts.map +1 -0
  750. package/apps/app-steward/src/services/steward-sidecar/wallet-setup.js +118 -0
  751. package/apps/app-steward/src/services/steward-sidecar.d.ts +69 -0
  752. package/apps/app-steward/src/services/steward-sidecar.d.ts.map +1 -0
  753. package/apps/app-steward/src/services/steward-sidecar.js +381 -0
  754. package/apps/app-steward/src/types/bsc-trade.d.ts +181 -0
  755. package/apps/app-steward/src/types/bsc-trade.d.ts.map +1 -0
  756. package/apps/app-steward/src/types/bsc-trade.js +8 -0
  757. package/apps/app-steward/src/types/index.d.ts +3 -0
  758. package/apps/app-steward/src/types/index.d.ts.map +1 -0
  759. package/apps/app-steward/src/types/index.js +2 -0
  760. package/apps/app-steward/src/types/steward.d.ts +85 -0
  761. package/apps/app-steward/src/types/steward.d.ts.map +1 -0
  762. package/apps/app-steward/src/types/steward.js +9 -0
  763. package/apps/app-task-coordinator/src/AgentTabsSection.d.ts +18 -0
  764. package/apps/app-task-coordinator/src/AgentTabsSection.d.ts.map +1 -0
  765. package/apps/app-task-coordinator/src/AgentTabsSection.js +52 -0
  766. package/apps/app-task-coordinator/src/CodingAgentControlChip.d.ts +6 -0
  767. package/apps/app-task-coordinator/src/CodingAgentControlChip.d.ts.map +1 -0
  768. package/apps/app-task-coordinator/src/CodingAgentControlChip.js +26 -0
  769. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.d.ts +2 -0
  770. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.d.ts.map +1 -0
  771. package/apps/app-task-coordinator/src/CodingAgentSettingsSection.js +343 -0
  772. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.d.ts +4 -0
  773. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.d.ts.map +1 -0
  774. package/apps/app-task-coordinator/src/CodingAgentTasksPanel.js +294 -0
  775. package/apps/app-task-coordinator/src/GlobalPrefsSection.d.ts +10 -0
  776. package/apps/app-task-coordinator/src/GlobalPrefsSection.d.ts.map +1 -0
  777. package/apps/app-task-coordinator/src/GlobalPrefsSection.js +47 -0
  778. package/apps/app-task-coordinator/src/LlmProviderSection.d.ts +10 -0
  779. package/apps/app-task-coordinator/src/LlmProviderSection.d.ts.map +1 -0
  780. package/apps/app-task-coordinator/src/LlmProviderSection.js +42 -0
  781. package/apps/app-task-coordinator/src/ModelConfigSection.d.ts +16 -0
  782. package/apps/app-task-coordinator/src/ModelConfigSection.d.ts.map +1 -0
  783. package/apps/app-task-coordinator/src/ModelConfigSection.js +10 -0
  784. package/apps/app-task-coordinator/src/PtyConsoleBase.d.ts +15 -0
  785. package/apps/app-task-coordinator/src/PtyConsoleBase.d.ts.map +1 -0
  786. package/apps/app-task-coordinator/src/PtyConsoleBase.js +37 -0
  787. package/apps/app-task-coordinator/src/PtyConsoleDrawer.d.ts +16 -0
  788. package/apps/app-task-coordinator/src/PtyConsoleDrawer.d.ts.map +1 -0
  789. package/apps/app-task-coordinator/src/PtyConsoleDrawer.js +18 -0
  790. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.d.ts +9 -0
  791. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.d.ts.map +1 -0
  792. package/apps/app-task-coordinator/src/PtyConsoleSidePanel.js +6 -0
  793. package/apps/app-task-coordinator/src/PtyTerminalPane.d.ts +10 -0
  794. package/apps/app-task-coordinator/src/PtyTerminalPane.d.ts.map +1 -0
  795. package/apps/app-task-coordinator/src/PtyTerminalPane.js +174 -0
  796. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.d.ts +23 -0
  797. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.d.ts.map +1 -0
  798. package/apps/app-task-coordinator/src/api/coding-agents-auth-sanitize.js +39 -0
  799. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.d.ts +29 -0
  800. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.d.ts.map +1 -0
  801. package/apps/app-task-coordinator/src/api/coding-agents-preflight-normalize.js +45 -0
  802. package/apps/app-task-coordinator/src/api/coordinator-types.d.ts +47 -0
  803. package/apps/app-task-coordinator/src/api/coordinator-types.d.ts.map +1 -0
  804. package/apps/app-task-coordinator/src/api/coordinator-types.js +1 -0
  805. package/apps/app-task-coordinator/src/api/coordinator-wiring.d.ts +46 -0
  806. package/apps/app-task-coordinator/src/api/coordinator-wiring.d.ts.map +1 -0
  807. package/apps/app-task-coordinator/src/api/coordinator-wiring.js +108 -0
  808. package/apps/app-task-coordinator/src/api/task-agent-message-routing.d.ts +10 -0
  809. package/apps/app-task-coordinator/src/api/task-agent-message-routing.d.ts.map +1 -0
  810. package/apps/app-task-coordinator/src/api/task-agent-message-routing.js +62 -0
  811. package/apps/app-task-coordinator/src/coding-agent-settings-shared.d.ts +38 -0
  812. package/apps/app-task-coordinator/src/coding-agent-settings-shared.d.ts.map +1 -0
  813. package/apps/app-task-coordinator/src/coding-agent-settings-shared.js +92 -0
  814. package/apps/app-task-coordinator/src/index.d.ts +15 -0
  815. package/apps/app-task-coordinator/src/index.d.ts.map +1 -0
  816. package/apps/app-task-coordinator/src/index.js +14 -0
  817. package/apps/app-task-coordinator/src/pty-status-dots.d.ts +2 -0
  818. package/apps/app-task-coordinator/src/pty-status-dots.d.ts.map +1 -0
  819. package/apps/app-task-coordinator/src/pty-status-dots.js +1 -0
  820. package/apps/app-task-coordinator/src/session-hydration.d.ts +2 -0
  821. package/apps/app-task-coordinator/src/session-hydration.d.ts.map +1 -0
  822. package/apps/app-task-coordinator/src/session-hydration.js +1 -0
  823. package/apps/app-training/src/services/training-service-like.d.ts +39 -0
  824. package/apps/app-training/src/services/training-service-like.d.ts.map +1 -0
  825. package/apps/app-training/src/services/training-service-like.js +1 -0
  826. package/apps/app-training/src/ui/FineTuningView.d.ts +5 -0
  827. package/apps/app-training/src/ui/FineTuningView.d.ts.map +1 -0
  828. package/apps/app-training/src/ui/FineTuningView.js +388 -0
  829. package/apps/app-training/src/ui/fine-tuning-panels.d.ts +111 -0
  830. package/apps/app-training/src/ui/fine-tuning-panels.d.ts.map +1 -0
  831. package/apps/app-training/src/ui/fine-tuning-panels.js +130 -0
  832. package/apps/app-vincent/src/client.d.ts +29 -0
  833. package/apps/app-vincent/src/client.d.ts.map +1 -0
  834. package/apps/app-vincent/src/client.js +30 -0
  835. package/apps/app-vincent/src/useVincentState.d.ts +26 -0
  836. package/apps/app-vincent/src/useVincentState.d.ts.map +1 -0
  837. package/apps/app-vincent/src/useVincentState.js +124 -0
  838. package/package.json +78 -51
  839. package/packages/agent/src/actions/app-control.d.ts +17 -0
  840. package/packages/agent/src/actions/app-control.d.ts.map +1 -0
  841. package/packages/agent/src/actions/app-control.js +212 -0
  842. package/packages/agent/src/actions/browser-session.d.ts +3 -0
  843. package/packages/agent/src/actions/browser-session.d.ts.map +1 -0
  844. package/packages/agent/src/actions/browser-session.js +207 -0
  845. package/packages/agent/src/actions/connector-resolver.d.ts +75 -0
  846. package/packages/agent/src/actions/connector-resolver.d.ts.map +1 -0
  847. package/packages/agent/src/actions/connector-resolver.js +255 -0
  848. package/packages/agent/src/actions/context-signal-lexicon.d.ts +17 -0
  849. package/packages/agent/src/actions/context-signal-lexicon.d.ts.map +1 -0
  850. package/packages/agent/src/actions/context-signal-lexicon.js +213 -0
  851. package/packages/agent/src/actions/context-signal.d.ts +46 -0
  852. package/packages/agent/src/actions/context-signal.d.ts.map +1 -0
  853. package/packages/agent/src/actions/context-signal.js +134 -0
  854. package/packages/agent/src/actions/entity-actions.d.ts +5 -0
  855. package/packages/agent/src/actions/entity-actions.d.ts.map +1 -0
  856. package/packages/agent/src/actions/entity-actions.js +576 -0
  857. package/packages/agent/src/actions/extract-page.d.ts +3 -0
  858. package/packages/agent/src/actions/extract-page.d.ts.map +1 -0
  859. package/packages/agent/src/actions/extract-page.js +124 -0
  860. package/packages/agent/src/actions/grounded-action-reply.d.ts +22 -0
  861. package/packages/agent/src/actions/grounded-action-reply.d.ts.map +1 -0
  862. package/packages/agent/src/actions/grounded-action-reply.js +309 -0
  863. package/packages/agent/src/actions/manage-tasks.d.ts +8 -0
  864. package/packages/agent/src/actions/manage-tasks.d.ts.map +1 -0
  865. package/packages/agent/src/actions/manage-tasks.js +289 -0
  866. package/packages/agent/src/actions/read-channel.d.ts +3 -0
  867. package/packages/agent/src/actions/read-channel.d.ts.map +1 -0
  868. package/packages/agent/src/actions/read-channel.js +224 -0
  869. package/packages/agent/src/actions/recent-conversation-texts.d.ts +9 -0
  870. package/packages/agent/src/actions/recent-conversation-texts.d.ts.map +1 -0
  871. package/packages/agent/src/actions/recent-conversation-texts.js +81 -0
  872. package/packages/agent/src/actions/restart.d.ts +19 -0
  873. package/packages/agent/src/actions/restart.d.ts.map +1 -0
  874. package/packages/agent/src/actions/restart.js +109 -0
  875. package/packages/agent/src/actions/search-conversations.d.ts +3 -0
  876. package/packages/agent/src/actions/search-conversations.d.ts.map +1 -0
  877. package/packages/agent/src/actions/search-conversations.js +181 -0
  878. package/packages/agent/src/actions/send-admin-message.d.ts +3 -0
  879. package/packages/agent/src/actions/send-admin-message.d.ts.map +1 -0
  880. package/packages/agent/src/actions/send-admin-message.js +106 -0
  881. package/packages/agent/src/actions/send-message.d.ts +4 -0
  882. package/packages/agent/src/actions/send-message.d.ts.map +1 -0
  883. package/packages/agent/src/actions/send-message.js +364 -0
  884. package/packages/agent/src/actions/set-user-name.d.ts +13 -0
  885. package/packages/agent/src/actions/set-user-name.d.ts.map +1 -0
  886. package/packages/agent/src/actions/set-user-name.js +82 -0
  887. package/packages/agent/src/actions/skill-command.d.ts +20 -0
  888. package/packages/agent/src/actions/skill-command.d.ts.map +1 -0
  889. package/packages/agent/src/actions/skill-command.js +141 -0
  890. package/packages/agent/src/actions/terminal.d.ts +15 -0
  891. package/packages/agent/src/actions/terminal.d.ts.map +1 -0
  892. package/packages/agent/src/actions/terminal.js +453 -0
  893. package/packages/agent/src/actions/web-search.d.ts +10 -0
  894. package/packages/agent/src/actions/web-search.d.ts.map +1 -0
  895. package/packages/agent/src/actions/web-search.js +266 -0
  896. package/packages/agent/src/api/agent-admin-routes.d.ts +39 -0
  897. package/packages/agent/src/api/agent-admin-routes.d.ts.map +1 -0
  898. package/packages/agent/src/api/agent-admin-routes.js +155 -0
  899. package/packages/agent/src/api/agent-lifecycle-routes.d.ts +16 -0
  900. package/packages/agent/src/api/agent-lifecycle-routes.d.ts.map +1 -0
  901. package/packages/agent/src/api/agent-lifecycle-routes.js +94 -0
  902. package/packages/agent/src/api/agent-model.d.ts +5 -0
  903. package/packages/agent/src/api/agent-model.d.ts.map +1 -0
  904. package/packages/agent/src/api/agent-model.js +154 -0
  905. package/packages/agent/src/api/agent-status-routes.d.ts +96 -0
  906. package/packages/agent/src/api/agent-status-routes.d.ts.map +1 -0
  907. package/packages/agent/src/api/agent-status-routes.js +274 -0
  908. package/packages/agent/src/api/agent-transfer-routes.d.ts +16 -0
  909. package/packages/agent/src/api/agent-transfer-routes.d.ts.map +1 -0
  910. package/packages/agent/src/api/agent-transfer-routes.js +124 -0
  911. package/packages/agent/src/api/app-package-routes.d.ts +7 -0
  912. package/packages/agent/src/api/app-package-routes.d.ts.map +1 -0
  913. package/packages/agent/src/api/app-package-routes.js +59 -0
  914. package/packages/agent/src/api/apps-routes.d.ts +25 -0
  915. package/packages/agent/src/api/apps-routes.d.ts.map +1 -0
  916. package/packages/agent/src/api/apps-routes.js +627 -0
  917. package/packages/agent/src/api/auth-routes.d.ts +11 -0
  918. package/packages/agent/src/api/auth-routes.d.ts.map +1 -0
  919. package/packages/agent/src/api/auth-routes.js +74 -0
  920. package/packages/agent/src/api/avatar-routes.d.ts +11 -0
  921. package/packages/agent/src/api/avatar-routes.d.ts.map +1 -0
  922. package/packages/agent/src/api/avatar-routes.js +205 -0
  923. package/packages/agent/src/api/binance-skill-helpers.d.ts +26 -0
  924. package/packages/agent/src/api/binance-skill-helpers.d.ts.map +1 -0
  925. package/packages/agent/src/api/binance-skill-helpers.js +782 -0
  926. package/packages/agent/src/api/bluebubbles-routes.d.ts +10 -0
  927. package/packages/agent/src/api/bluebubbles-routes.d.ts.map +1 -0
  928. package/packages/agent/src/api/bluebubbles-routes.js +129 -0
  929. package/packages/agent/src/api/browser-workspace-routes.d.ts +5 -0
  930. package/packages/agent/src/api/browser-workspace-routes.d.ts.map +1 -0
  931. package/packages/agent/src/api/browser-workspace-routes.js +100 -0
  932. package/packages/agent/src/api/bug-report-routes.d.ts +10 -0
  933. package/packages/agent/src/api/bug-report-routes.d.ts.map +1 -0
  934. package/packages/agent/src/api/bug-report-routes.js +264 -0
  935. package/packages/agent/src/api/character-routes.d.ts +52 -0
  936. package/packages/agent/src/api/character-routes.d.ts.map +1 -0
  937. package/packages/agent/src/api/character-routes.js +367 -0
  938. package/packages/agent/src/api/chat-augmentation.d.ts +70 -0
  939. package/packages/agent/src/api/chat-augmentation.d.ts.map +1 -0
  940. package/packages/agent/src/api/chat-augmentation.js +451 -0
  941. package/packages/agent/src/api/chat-routes.d.ts +106 -0
  942. package/packages/agent/src/api/chat-routes.d.ts.map +1 -0
  943. package/packages/agent/src/api/chat-routes.js +1415 -0
  944. package/packages/agent/src/api/chat-text-helpers.d.ts +11 -0
  945. package/packages/agent/src/api/chat-text-helpers.d.ts.map +1 -0
  946. package/packages/agent/src/api/chat-text-helpers.js +183 -0
  947. package/packages/agent/src/api/cloud-billing-routes.d.ts +9 -0
  948. package/packages/agent/src/api/cloud-billing-routes.d.ts.map +1 -0
  949. package/packages/agent/src/api/cloud-billing-routes.js +388 -0
  950. package/packages/agent/src/api/cloud-compat-routes.d.ts +10 -0
  951. package/packages/agent/src/api/cloud-compat-routes.d.ts.map +1 -0
  952. package/packages/agent/src/api/cloud-compat-routes.js +212 -0
  953. package/packages/agent/src/api/cloud-provisioning.d.ts +14 -0
  954. package/packages/agent/src/api/cloud-provisioning.d.ts.map +1 -0
  955. package/packages/agent/src/api/cloud-provisioning.js +30 -0
  956. package/packages/agent/src/api/cloud-relay-routes.d.ts +22 -0
  957. package/packages/agent/src/api/cloud-relay-routes.d.ts.map +1 -0
  958. package/packages/agent/src/api/cloud-relay-routes.js +52 -0
  959. package/packages/agent/src/api/cloud-routes.d.ts +80 -0
  960. package/packages/agent/src/api/cloud-routes.d.ts.map +1 -0
  961. package/packages/agent/src/api/cloud-routes.js +582 -0
  962. package/packages/agent/src/api/cloud-status-routes.d.ts +15 -0
  963. package/packages/agent/src/api/cloud-status-routes.d.ts.map +1 -0
  964. package/packages/agent/src/api/cloud-status-routes.js +143 -0
  965. package/packages/agent/src/api/compat-utils.d.ts +49 -0
  966. package/packages/agent/src/api/compat-utils.d.ts.map +1 -0
  967. package/packages/agent/src/api/compat-utils.js +126 -0
  968. package/packages/agent/src/api/config-env.d.ts +43 -0
  969. package/packages/agent/src/api/config-env.d.ts.map +1 -0
  970. package/packages/agent/src/api/config-env.js +284 -0
  971. package/packages/agent/src/api/config-routes.d.ts +33 -0
  972. package/packages/agent/src/api/config-routes.d.ts.map +1 -0
  973. package/packages/agent/src/api/config-routes.js +253 -0
  974. package/packages/agent/src/api/connector-health.d.ts +42 -0
  975. package/packages/agent/src/api/connector-health.d.ts.map +1 -0
  976. package/packages/agent/src/api/connector-health.js +132 -0
  977. package/packages/agent/src/api/connector-routes.d.ts +21 -0
  978. package/packages/agent/src/api/connector-routes.d.ts.map +1 -0
  979. package/packages/agent/src/api/connector-routes.js +79 -0
  980. package/packages/agent/src/api/conversation-metadata.d.ts +9 -0
  981. package/packages/agent/src/api/conversation-metadata.d.ts.map +1 -0
  982. package/packages/agent/src/api/conversation-metadata.js +98 -0
  983. package/packages/agent/src/api/conversation-routes.d.ts +42 -0
  984. package/packages/agent/src/api/conversation-routes.d.ts.map +1 -0
  985. package/packages/agent/src/api/conversation-routes.js +1159 -0
  986. package/packages/agent/src/api/credit-detection.d.ts +9 -0
  987. package/packages/agent/src/api/credit-detection.d.ts.map +1 -0
  988. package/packages/agent/src/api/credit-detection.js +41 -0
  989. package/packages/agent/src/api/curated-skills-routes.d.ts +22 -0
  990. package/packages/agent/src/api/curated-skills-routes.d.ts.map +1 -0
  991. package/packages/agent/src/api/curated-skills-routes.js +295 -0
  992. package/packages/agent/src/api/database.d.ts +33 -0
  993. package/packages/agent/src/api/database.d.ts.map +1 -0
  994. package/packages/agent/src/api/database.js +1027 -0
  995. package/packages/agent/src/api/diagnostics-routes.d.ts +53 -0
  996. package/packages/agent/src/api/diagnostics-routes.d.ts.map +1 -0
  997. package/packages/agent/src/api/diagnostics-routes.js +250 -0
  998. package/packages/agent/src/api/discord-avatar-cache.d.ts +10 -0
  999. package/packages/agent/src/api/discord-avatar-cache.d.ts.map +1 -0
  1000. package/packages/agent/src/api/discord-avatar-cache.js +149 -0
  1001. package/packages/agent/src/api/discord-profiles.d.ts +26 -0
  1002. package/packages/agent/src/api/discord-profiles.d.ts.map +1 -0
  1003. package/packages/agent/src/api/discord-profiles.js +279 -0
  1004. package/packages/agent/src/api/early-logs.d.ts +29 -0
  1005. package/packages/agent/src/api/early-logs.d.ts.map +1 -0
  1006. package/packages/agent/src/api/early-logs.js +96 -0
  1007. package/packages/agent/src/api/health-routes.d.ts +44 -0
  1008. package/packages/agent/src/api/health-routes.d.ts.map +1 -0
  1009. package/packages/agent/src/api/health-routes.js +449 -0
  1010. package/packages/agent/src/api/http-helpers.d.ts +50 -0
  1011. package/packages/agent/src/api/http-helpers.d.ts.map +1 -0
  1012. package/packages/agent/src/api/http-helpers.js +148 -0
  1013. package/packages/agent/src/api/inbox-routes.d.ts +48 -0
  1014. package/packages/agent/src/api/inbox-routes.d.ts.map +1 -0
  1015. package/packages/agent/src/api/inbox-routes.js +1547 -0
  1016. package/packages/agent/src/api/knowledge-service-loader.d.ts +2 -0
  1017. package/packages/agent/src/api/knowledge-service-loader.d.ts.map +1 -0
  1018. package/packages/agent/src/api/knowledge-service-loader.js +2 -0
  1019. package/packages/agent/src/api/mcp-routes.d.ts +33 -0
  1020. package/packages/agent/src/api/mcp-routes.d.ts.map +1 -0
  1021. package/packages/agent/src/api/mcp-routes.js +186 -0
  1022. package/packages/agent/src/api/memory-bounds.d.ts +51 -0
  1023. package/packages/agent/src/api/memory-bounds.d.ts.map +1 -0
  1024. package/packages/agent/src/api/memory-bounds.js +81 -0
  1025. package/packages/agent/src/api/memory-routes.d.ts +9 -0
  1026. package/packages/agent/src/api/memory-routes.d.ts.map +1 -0
  1027. package/packages/agent/src/api/memory-routes.js +420 -0
  1028. package/packages/agent/src/api/misc-routes.d.ts +64 -0
  1029. package/packages/agent/src/api/misc-routes.d.ts.map +1 -0
  1030. package/packages/agent/src/api/misc-routes.js +594 -0
  1031. package/packages/agent/src/api/model-provider-helpers.d.ts +84 -0
  1032. package/packages/agent/src/api/model-provider-helpers.d.ts.map +1 -0
  1033. package/packages/agent/src/api/model-provider-helpers.js +588 -0
  1034. package/packages/agent/src/api/models-routes.d.ts +14 -0
  1035. package/packages/agent/src/api/models-routes.d.ts.map +1 -0
  1036. package/packages/agent/src/api/models-routes.js +37 -0
  1037. package/packages/agent/src/api/music-player-route-fallback.d.ts +16 -0
  1038. package/packages/agent/src/api/music-player-route-fallback.d.ts.map +1 -0
  1039. package/packages/agent/src/api/music-player-route-fallback.js +65 -0
  1040. package/packages/agent/src/api/onboarding-routes.d.ts +50 -0
  1041. package/packages/agent/src/api/onboarding-routes.d.ts.map +1 -0
  1042. package/packages/agent/src/api/onboarding-routes.js +594 -0
  1043. package/packages/agent/src/api/owner-contact-helpers.d.ts +39 -0
  1044. package/packages/agent/src/api/owner-contact-helpers.d.ts.map +1 -0
  1045. package/packages/agent/src/api/owner-contact-helpers.js +47 -0
  1046. package/packages/agent/src/api/parse-action-block.d.ts +35 -0
  1047. package/packages/agent/src/api/parse-action-block.d.ts.map +1 -0
  1048. package/packages/agent/src/api/parse-action-block.js +110 -0
  1049. package/packages/agent/src/api/permissions-routes-extra.d.ts +30 -0
  1050. package/packages/agent/src/api/permissions-routes-extra.d.ts.map +1 -0
  1051. package/packages/agent/src/api/permissions-routes-extra.js +78 -0
  1052. package/packages/agent/src/api/permissions-routes.d.ts +28 -0
  1053. package/packages/agent/src/api/permissions-routes.d.ts.map +1 -0
  1054. package/packages/agent/src/api/permissions-routes.js +180 -0
  1055. package/packages/agent/src/api/plugin-discovery-helpers.d.ts +147 -0
  1056. package/packages/agent/src/api/plugin-discovery-helpers.d.ts.map +1 -0
  1057. package/packages/agent/src/api/plugin-discovery-helpers.js +1015 -0
  1058. package/packages/agent/src/api/plugin-routes.d.ts +127 -0
  1059. package/packages/agent/src/api/plugin-routes.d.ts.map +1 -0
  1060. package/packages/agent/src/api/plugin-routes.js +1211 -0
  1061. package/packages/agent/src/api/plugin-runtime-apply.d.ts +31 -0
  1062. package/packages/agent/src/api/plugin-runtime-apply.d.ts.map +1 -0
  1063. package/packages/agent/src/api/plugin-runtime-apply.js +217 -0
  1064. package/packages/agent/src/api/plugin-validation.d.ts +86 -0
  1065. package/packages/agent/src/api/plugin-validation.d.ts.map +1 -0
  1066. package/packages/agent/src/api/plugin-validation.js +259 -0
  1067. package/packages/agent/src/api/provider-switch-config.d.ts +60 -0
  1068. package/packages/agent/src/api/provider-switch-config.d.ts.map +1 -0
  1069. package/packages/agent/src/api/provider-switch-config.js +724 -0
  1070. package/packages/agent/src/api/provider-switch-routes.d.ts +22 -0
  1071. package/packages/agent/src/api/provider-switch-routes.d.ts.map +1 -0
  1072. package/packages/agent/src/api/provider-switch-routes.js +92 -0
  1073. package/packages/agent/src/api/rate-limiter.d.ts +29 -0
  1074. package/packages/agent/src/api/rate-limiter.d.ts.map +1 -0
  1075. package/packages/agent/src/api/rate-limiter.js +54 -0
  1076. package/packages/agent/src/api/registry-routes.d.ts +29 -0
  1077. package/packages/agent/src/api/registry-routes.d.ts.map +1 -0
  1078. package/packages/agent/src/api/registry-routes.js +98 -0
  1079. package/packages/agent/src/api/registry-service.d.ts +77 -0
  1080. package/packages/agent/src/api/registry-service.d.ts.map +1 -0
  1081. package/packages/agent/src/api/registry-service.js +190 -0
  1082. package/packages/agent/src/api/relationships-routes.d.ts +7 -0
  1083. package/packages/agent/src/api/relationships-routes.d.ts.map +1 -0
  1084. package/packages/agent/src/api/relationships-routes.js +248 -0
  1085. package/packages/agent/src/api/route-helpers.d.ts +16 -0
  1086. package/packages/agent/src/api/route-helpers.d.ts.map +1 -0
  1087. package/packages/agent/src/api/route-helpers.js +1 -0
  1088. package/packages/agent/src/api/runtime-plugin-routes.d.ts +21 -0
  1089. package/packages/agent/src/api/runtime-plugin-routes.d.ts.map +1 -0
  1090. package/packages/agent/src/api/runtime-plugin-routes.js +132 -0
  1091. package/packages/agent/src/api/sandbox-routes.d.ts +12 -0
  1092. package/packages/agent/src/api/sandbox-routes.d.ts.map +1 -0
  1093. package/packages/agent/src/api/sandbox-routes.js +1334 -0
  1094. package/packages/agent/src/api/server-auth.d.ts +45 -0
  1095. package/packages/agent/src/api/server-auth.d.ts.map +1 -0
  1096. package/packages/agent/src/api/server-auth.js +332 -0
  1097. package/packages/agent/src/api/server-helpers-auth.d.ts +39 -0
  1098. package/packages/agent/src/api/server-helpers-auth.d.ts.map +1 -0
  1099. package/packages/agent/src/api/server-helpers-auth.js +432 -0
  1100. package/packages/agent/src/api/server-helpers-config.d.ts +37 -0
  1101. package/packages/agent/src/api/server-helpers-config.d.ts.map +1 -0
  1102. package/packages/agent/src/api/server-helpers-config.js +295 -0
  1103. package/packages/agent/src/api/server-helpers-mcp.d.ts +12 -0
  1104. package/packages/agent/src/api/server-helpers-mcp.d.ts.map +1 -0
  1105. package/packages/agent/src/api/server-helpers-mcp.js +315 -0
  1106. package/packages/agent/src/api/server-helpers-plugin.d.ts +13 -0
  1107. package/packages/agent/src/api/server-helpers-plugin.d.ts.map +1 -0
  1108. package/packages/agent/src/api/server-helpers-plugin.js +158 -0
  1109. package/packages/agent/src/api/server-helpers-swarm.d.ts +57 -0
  1110. package/packages/agent/src/api/server-helpers-swarm.d.ts.map +1 -0
  1111. package/packages/agent/src/api/server-helpers-swarm.js +325 -0
  1112. package/packages/agent/src/api/server-helpers-wallet.d.ts +18 -0
  1113. package/packages/agent/src/api/server-helpers-wallet.d.ts.map +1 -0
  1114. package/packages/agent/src/api/server-helpers-wallet.js +178 -0
  1115. package/packages/agent/src/api/server-helpers.d.ts +96 -0
  1116. package/packages/agent/src/api/server-helpers.d.ts.map +1 -0
  1117. package/packages/agent/src/api/server-helpers.js +601 -0
  1118. package/packages/agent/src/api/server-types.d.ts +236 -0
  1119. package/packages/agent/src/api/server-types.d.ts.map +1 -0
  1120. package/packages/agent/src/api/server-types.js +6 -0
  1121. package/packages/agent/src/api/server.d.ts +98 -0
  1122. package/packages/agent/src/api/server.d.ts.map +1 -0
  1123. package/packages/agent/src/api/server.js +4156 -0
  1124. package/packages/agent/src/api/signal-routes.d.ts +42 -0
  1125. package/packages/agent/src/api/signal-routes.d.ts.map +1 -0
  1126. package/packages/agent/src/api/signal-routes.js +231 -0
  1127. package/packages/agent/src/api/skill-discovery-helpers.d.ts +80 -0
  1128. package/packages/agent/src/api/skill-discovery-helpers.d.ts.map +1 -0
  1129. package/packages/agent/src/api/skill-discovery-helpers.js +383 -0
  1130. package/packages/agent/src/api/skills-routes.d.ts +32 -0
  1131. package/packages/agent/src/api/skills-routes.d.ts.map +1 -0
  1132. package/packages/agent/src/api/skills-routes.js +972 -0
  1133. package/packages/agent/src/api/static-file-server.d.ts +19 -0
  1134. package/packages/agent/src/api/static-file-server.d.ts.map +1 -0
  1135. package/packages/agent/src/api/static-file-server.js +233 -0
  1136. package/packages/agent/src/api/stream-persistence.d.ts +64 -0
  1137. package/packages/agent/src/api/stream-persistence.d.ts.map +1 -0
  1138. package/packages/agent/src/api/stream-persistence.js +231 -0
  1139. package/packages/agent/src/api/stream-route-state.d.ts +56 -0
  1140. package/packages/agent/src/api/stream-route-state.d.ts.map +1 -0
  1141. package/packages/agent/src/api/stream-route-state.js +1 -0
  1142. package/packages/agent/src/api/stream-routes.d.ts +24 -0
  1143. package/packages/agent/src/api/stream-routes.d.ts.map +1 -0
  1144. package/packages/agent/src/api/stream-routes.js +728 -0
  1145. package/packages/agent/src/api/streaming-text.d.ts +9 -0
  1146. package/packages/agent/src/api/streaming-text.d.ts.map +1 -0
  1147. package/packages/agent/src/api/streaming-text.js +85 -0
  1148. package/packages/agent/src/api/streaming-types.d.ts +30 -0
  1149. package/packages/agent/src/api/streaming-types.d.ts.map +1 -0
  1150. package/packages/agent/src/api/streaming-types.js +1 -0
  1151. package/packages/agent/src/api/subscription-routes.d.ts +20 -0
  1152. package/packages/agent/src/api/subscription-routes.d.ts.map +1 -0
  1153. package/packages/agent/src/api/subscription-routes.js +213 -0
  1154. package/packages/agent/src/api/telegram-account-routes.d.ts +26 -0
  1155. package/packages/agent/src/api/telegram-account-routes.d.ts.map +1 -0
  1156. package/packages/agent/src/api/telegram-account-routes.js +229 -0
  1157. package/packages/agent/src/api/terminal-run-limits.d.ts +5 -0
  1158. package/packages/agent/src/api/terminal-run-limits.d.ts.map +1 -0
  1159. package/packages/agent/src/api/terminal-run-limits.js +22 -0
  1160. package/packages/agent/src/api/trade-safety.d.ts +35 -0
  1161. package/packages/agent/src/api/trade-safety.d.ts.map +1 -0
  1162. package/packages/agent/src/api/trade-safety.js +62 -0
  1163. package/packages/agent/src/api/trigger-routes.d.ts +63 -0
  1164. package/packages/agent/src/api/trigger-routes.d.ts.map +1 -0
  1165. package/packages/agent/src/api/trigger-routes.js +379 -0
  1166. package/packages/agent/src/api/tts-routes.d.ts +24 -0
  1167. package/packages/agent/src/api/tts-routes.d.ts.map +1 -0
  1168. package/packages/agent/src/api/tts-routes.js +200 -0
  1169. package/packages/agent/src/api/update-routes.d.ts +19 -0
  1170. package/packages/agent/src/api/update-routes.d.ts.map +1 -0
  1171. package/packages/agent/src/api/update-routes.js +54 -0
  1172. package/packages/agent/src/api/wallet-capability.d.ts +28 -0
  1173. package/packages/agent/src/api/wallet-capability.d.ts.map +1 -0
  1174. package/packages/agent/src/api/wallet-capability.js +119 -0
  1175. package/packages/agent/src/api/wallet-dex-prices.d.ts +43 -0
  1176. package/packages/agent/src/api/wallet-dex-prices.d.ts.map +1 -0
  1177. package/packages/agent/src/api/wallet-dex-prices.js +149 -0
  1178. package/packages/agent/src/api/wallet-env-sync.d.ts +2 -0
  1179. package/packages/agent/src/api/wallet-env-sync.d.ts.map +1 -0
  1180. package/packages/agent/src/api/wallet-env-sync.js +108 -0
  1181. package/packages/agent/src/api/wallet-evm-balance.d.ts +66 -0
  1182. package/packages/agent/src/api/wallet-evm-balance.d.ts.map +1 -0
  1183. package/packages/agent/src/api/wallet-evm-balance.js +663 -0
  1184. package/packages/agent/src/api/wallet-routes.d.ts +42 -0
  1185. package/packages/agent/src/api/wallet-routes.d.ts.map +1 -0
  1186. package/packages/agent/src/api/wallet-routes.js +827 -0
  1187. package/packages/agent/src/api/wallet-rpc.d.ts +73 -0
  1188. package/packages/agent/src/api/wallet-rpc.d.ts.map +1 -0
  1189. package/packages/agent/src/api/wallet-rpc.js +471 -0
  1190. package/packages/agent/src/api/wallet.d.ts +64 -0
  1191. package/packages/agent/src/api/wallet.d.ts.map +1 -0
  1192. package/packages/agent/src/api/wallet.js +670 -0
  1193. package/packages/agent/src/api/whatsapp-routes.d.ts +39 -0
  1194. package/packages/agent/src/api/whatsapp-routes.d.ts.map +1 -0
  1195. package/packages/agent/src/api/whatsapp-routes.js +225 -0
  1196. package/packages/agent/src/api/workbench-helpers.d.ts +39 -0
  1197. package/packages/agent/src/api/workbench-helpers.d.ts.map +1 -0
  1198. package/packages/agent/src/api/workbench-helpers.js +134 -0
  1199. package/packages/agent/src/api/workbench-routes.d.ts +53 -0
  1200. package/packages/agent/src/api/workbench-routes.d.ts.map +1 -0
  1201. package/packages/agent/src/api/workbench-routes.js +391 -0
  1202. package/packages/agent/src/auth/anthropic.d.ts +24 -0
  1203. package/packages/agent/src/auth/anthropic.d.ts.map +1 -0
  1204. package/packages/agent/src/auth/anthropic.js +38 -0
  1205. package/packages/agent/src/auth/claude-code-stealth.d.ts +2 -0
  1206. package/packages/agent/src/auth/claude-code-stealth.d.ts.map +1 -0
  1207. package/packages/agent/src/auth/claude-code-stealth.js +114 -0
  1208. package/packages/agent/src/auth/credentials.d.ts +74 -0
  1209. package/packages/agent/src/auth/credentials.d.ts.map +1 -0
  1210. package/packages/agent/src/auth/credentials.js +387 -0
  1211. package/packages/agent/src/auth/index.d.ts +6 -0
  1212. package/packages/agent/src/auth/index.d.ts.map +1 -0
  1213. package/packages/agent/src/auth/index.js +5 -0
  1214. package/packages/agent/src/auth/openai-codex.d.ts +27 -0
  1215. package/packages/agent/src/auth/openai-codex.d.ts.map +1 -0
  1216. package/packages/agent/src/auth/openai-codex.js +76 -0
  1217. package/packages/agent/src/auth/types.d.ts +18 -0
  1218. package/packages/agent/src/auth/types.d.ts.map +1 -0
  1219. package/packages/agent/src/auth/types.js +8 -0
  1220. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts +16 -0
  1221. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.d.ts.map +1 -0
  1222. package/packages/agent/src/auth/vendor/pi-oauth/anthropic-login.js +78 -0
  1223. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts +26 -0
  1224. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.d.ts.map +1 -0
  1225. package/packages/agent/src/auth/vendor/pi-oauth/openai-codex-login.js +342 -0
  1226. package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts +9 -0
  1227. package/packages/agent/src/auth/vendor/pi-oauth/pkce.d.ts.map +1 -0
  1228. package/packages/agent/src/auth/vendor/pi-oauth/pkce.js +21 -0
  1229. package/packages/agent/src/awareness/registry.d.ts +27 -0
  1230. package/packages/agent/src/awareness/registry.d.ts.map +1 -0
  1231. package/packages/agent/src/awareness/registry.js +161 -0
  1232. package/packages/agent/src/cli/parse-duration.d.ts +5 -0
  1233. package/packages/agent/src/cli/parse-duration.d.ts.map +1 -0
  1234. package/packages/agent/src/cli/parse-duration.js +27 -0
  1235. package/packages/agent/src/cloud/auth.d.ts +19 -0
  1236. package/packages/agent/src/cloud/auth.d.ts.map +1 -0
  1237. package/packages/agent/src/cloud/auth.js +110 -0
  1238. package/packages/agent/src/cloud/backup.d.ts +18 -0
  1239. package/packages/agent/src/cloud/backup.d.ts.map +1 -0
  1240. package/packages/agent/src/cloud/backup.js +42 -0
  1241. package/packages/agent/src/cloud/base-url.d.ts +3 -0
  1242. package/packages/agent/src/cloud/base-url.d.ts.map +1 -0
  1243. package/packages/agent/src/cloud/base-url.js +52 -0
  1244. package/packages/agent/src/cloud/bridge-client.d.ts +126 -0
  1245. package/packages/agent/src/cloud/bridge-client.d.ts.map +1 -0
  1246. package/packages/agent/src/cloud/bridge-client.js +380 -0
  1247. package/packages/agent/src/cloud/cloud-manager.d.ts +32 -0
  1248. package/packages/agent/src/cloud/cloud-manager.d.ts.map +1 -0
  1249. package/packages/agent/src/cloud/cloud-manager.js +121 -0
  1250. package/packages/agent/src/cloud/cloud-proxy.d.ts +20 -0
  1251. package/packages/agent/src/cloud/cloud-proxy.d.ts.map +1 -0
  1252. package/packages/agent/src/cloud/cloud-proxy.js +34 -0
  1253. package/packages/agent/src/cloud/cloud-wallet.d.ts +92 -0
  1254. package/packages/agent/src/cloud/cloud-wallet.d.ts.map +1 -0
  1255. package/packages/agent/src/cloud/cloud-wallet.js +199 -0
  1256. package/packages/agent/src/cloud/reconnect.d.ts +26 -0
  1257. package/packages/agent/src/cloud/reconnect.d.ts.map +1 -0
  1258. package/packages/agent/src/cloud/reconnect.js +89 -0
  1259. package/packages/agent/src/cloud/validate-url.d.ts +2 -0
  1260. package/packages/agent/src/cloud/validate-url.d.ts.map +1 -0
  1261. package/packages/agent/src/cloud/validate-url.js +162 -0
  1262. package/packages/agent/src/config/character-schema.d.ts +25 -0
  1263. package/packages/agent/src/config/character-schema.d.ts.map +1 -0
  1264. package/packages/agent/src/config/character-schema.js +39 -0
  1265. package/packages/agent/src/config/config.d.ts +6 -0
  1266. package/packages/agent/src/config/config.d.ts.map +1 -0
  1267. package/packages/agent/src/config/config.js +277 -0
  1268. package/packages/agent/src/config/env-vars.d.ts +9 -0
  1269. package/packages/agent/src/config/env-vars.d.ts.map +1 -0
  1270. package/packages/agent/src/config/env-vars.js +284 -0
  1271. package/packages/agent/src/config/feature-flags.d.ts +17 -0
  1272. package/packages/agent/src/config/feature-flags.d.ts.map +1 -0
  1273. package/packages/agent/src/config/feature-flags.js +37 -0
  1274. package/packages/agent/src/config/includes.d.ts +26 -0
  1275. package/packages/agent/src/config/includes.d.ts.map +1 -0
  1276. package/packages/agent/src/config/includes.js +148 -0
  1277. package/packages/agent/src/config/object-utils.d.ts +2 -0
  1278. package/packages/agent/src/config/object-utils.d.ts.map +1 -0
  1279. package/packages/agent/src/config/object-utils.js +6 -0
  1280. package/packages/agent/src/config/owner-contacts.d.ts +42 -0
  1281. package/packages/agent/src/config/owner-contacts.d.ts.map +1 -0
  1282. package/packages/agent/src/config/owner-contacts.js +223 -0
  1283. package/packages/agent/src/config/paths.d.ts +13 -0
  1284. package/packages/agent/src/config/paths.d.ts.map +1 -0
  1285. package/packages/agent/src/config/paths.js +106 -0
  1286. package/packages/agent/src/config/plugin-auto-enable.d.ts +44 -0
  1287. package/packages/agent/src/config/plugin-auto-enable.d.ts.map +1 -0
  1288. package/packages/agent/src/config/plugin-auto-enable.js +559 -0
  1289. package/packages/agent/src/config/plugin-widgets.d.ts +29 -0
  1290. package/packages/agent/src/config/plugin-widgets.d.ts.map +1 -0
  1291. package/packages/agent/src/config/plugin-widgets.js +70 -0
  1292. package/packages/agent/src/config/schema.d.ts +87 -0
  1293. package/packages/agent/src/config/schema.d.ts.map +1 -0
  1294. package/packages/agent/src/config/schema.js +922 -0
  1295. package/packages/agent/src/config/telegram-custom-commands.d.ts +25 -0
  1296. package/packages/agent/src/config/telegram-custom-commands.d.ts.map +1 -0
  1297. package/packages/agent/src/config/telegram-custom-commands.js +71 -0
  1298. package/packages/agent/src/config/types.agent-defaults.d.ts +363 -0
  1299. package/packages/agent/src/config/types.agent-defaults.d.ts.map +1 -0
  1300. package/packages/agent/src/config/types.agent-defaults.js +1 -0
  1301. package/packages/agent/src/config/types.agents.d.ts +114 -0
  1302. package/packages/agent/src/config/types.agents.d.ts.map +1 -0
  1303. package/packages/agent/src/config/types.agents.js +1 -0
  1304. package/packages/agent/src/config/types.d.ts +8 -0
  1305. package/packages/agent/src/config/types.d.ts.map +1 -0
  1306. package/packages/agent/src/config/types.eliza.d.ts +706 -0
  1307. package/packages/agent/src/config/types.eliza.d.ts.map +1 -0
  1308. package/packages/agent/src/config/types.eliza.js +1 -0
  1309. package/packages/agent/src/config/types.gateway.d.ts +216 -0
  1310. package/packages/agent/src/config/types.gateway.d.ts.map +1 -0
  1311. package/packages/agent/src/config/types.gateway.js +1 -0
  1312. package/packages/agent/src/config/types.hooks.d.ts +107 -0
  1313. package/packages/agent/src/config/types.hooks.d.ts.map +1 -0
  1314. package/packages/agent/src/config/types.hooks.js +1 -0
  1315. package/packages/agent/src/config/types.js +7 -0
  1316. package/packages/agent/src/config/types.messages.d.ts +176 -0
  1317. package/packages/agent/src/config/types.messages.d.ts.map +1 -0
  1318. package/packages/agent/src/config/types.messages.js +1 -0
  1319. package/packages/agent/src/config/types.tools.d.ts +400 -0
  1320. package/packages/agent/src/config/types.tools.d.ts.map +1 -0
  1321. package/packages/agent/src/config/types.tools.js +1 -0
  1322. package/packages/agent/src/config/zod-schema.agent-runtime.d.ts +1137 -0
  1323. package/packages/agent/src/config/zod-schema.agent-runtime.d.ts.map +1 -0
  1324. package/packages/agent/src/config/zod-schema.agent-runtime.js +782 -0
  1325. package/packages/agent/src/config/zod-schema.core.d.ts +1021 -0
  1326. package/packages/agent/src/config/zod-schema.core.d.ts.map +1 -0
  1327. package/packages/agent/src/config/zod-schema.core.js +694 -0
  1328. package/packages/agent/src/config/zod-schema.d.ts +3185 -0
  1329. package/packages/agent/src/config/zod-schema.d.ts.map +1 -0
  1330. package/packages/agent/src/config/zod-schema.hooks.d.ts +88 -0
  1331. package/packages/agent/src/config/zod-schema.hooks.d.ts.map +1 -0
  1332. package/packages/agent/src/config/zod-schema.hooks.js +133 -0
  1333. package/packages/agent/src/config/zod-schema.js +850 -0
  1334. package/packages/agent/src/config/zod-schema.providers-core.d.ts +2746 -0
  1335. package/packages/agent/src/config/zod-schema.providers-core.d.ts.map +1 -0
  1336. package/packages/agent/src/config/zod-schema.providers-core.js +961 -0
  1337. package/packages/agent/src/config/zod-schema.session.d.ts +183 -0
  1338. package/packages/agent/src/config/zod-schema.session.d.ts.map +1 -0
  1339. package/packages/agent/src/config/zod-schema.session.js +86 -0
  1340. package/packages/agent/src/contracts/apps.d.ts +2 -0
  1341. package/packages/agent/src/contracts/apps.d.ts.map +1 -0
  1342. package/packages/agent/src/contracts/apps.js +1 -0
  1343. package/packages/agent/src/contracts/awareness.d.ts +38 -0
  1344. package/packages/agent/src/contracts/awareness.d.ts.map +1 -0
  1345. package/packages/agent/src/contracts/awareness.js +7 -0
  1346. package/packages/agent/src/contracts/config.d.ts +148 -0
  1347. package/packages/agent/src/contracts/config.d.ts.map +1 -0
  1348. package/packages/agent/src/contracts/config.js +4 -0
  1349. package/packages/agent/src/contracts/drop.d.ts +2 -0
  1350. package/packages/agent/src/contracts/drop.d.ts.map +1 -0
  1351. package/packages/agent/src/contracts/drop.js +1 -0
  1352. package/packages/agent/src/contracts/onboarding.d.ts +2 -0
  1353. package/packages/agent/src/contracts/onboarding.d.ts.map +1 -0
  1354. package/packages/agent/src/contracts/onboarding.js +1 -0
  1355. package/packages/agent/src/contracts/permissions.d.ts +2 -0
  1356. package/packages/agent/src/contracts/permissions.d.ts.map +1 -0
  1357. package/packages/agent/src/contracts/permissions.js +1 -0
  1358. package/packages/agent/src/contracts/service-routing.d.ts +2 -0
  1359. package/packages/agent/src/contracts/service-routing.d.ts.map +1 -0
  1360. package/packages/agent/src/contracts/service-routing.js +1 -0
  1361. package/packages/agent/src/contracts/verification.d.ts +2 -0
  1362. package/packages/agent/src/contracts/verification.d.ts.map +1 -0
  1363. package/packages/agent/src/contracts/verification.js +1 -0
  1364. package/packages/agent/src/contracts/wallet.d.ts +2 -0
  1365. package/packages/agent/src/contracts/wallet.d.ts.map +1 -0
  1366. package/packages/agent/src/contracts/wallet.js +1 -0
  1367. package/packages/agent/src/diagnostics/integration-observability.d.ts +40 -0
  1368. package/packages/agent/src/diagnostics/integration-observability.d.ts.map +1 -0
  1369. package/packages/agent/src/diagnostics/integration-observability.js +75 -0
  1370. package/packages/agent/src/evaluators/late-join-whitelist.d.ts +16 -0
  1371. package/packages/agent/src/evaluators/late-join-whitelist.d.ts.map +1 -0
  1372. package/packages/agent/src/evaluators/late-join-whitelist.js +67 -0
  1373. package/packages/agent/src/hooks/discovery.d.ts +13 -0
  1374. package/packages/agent/src/hooks/discovery.d.ts.map +1 -0
  1375. package/packages/agent/src/hooks/discovery.js +191 -0
  1376. package/packages/agent/src/hooks/eligibility.d.ts +12 -0
  1377. package/packages/agent/src/hooks/eligibility.d.ts.map +1 -0
  1378. package/packages/agent/src/hooks/eligibility.js +105 -0
  1379. package/packages/agent/src/hooks/index.d.ts +3 -0
  1380. package/packages/agent/src/hooks/index.d.ts.map +1 -0
  1381. package/packages/agent/src/hooks/index.js +2 -0
  1382. package/packages/agent/src/hooks/loader.d.ts +34 -0
  1383. package/packages/agent/src/hooks/loader.d.ts.map +1 -0
  1384. package/packages/agent/src/hooks/loader.js +214 -0
  1385. package/packages/agent/src/hooks/registry.d.ts +11 -0
  1386. package/packages/agent/src/hooks/registry.d.ts.map +1 -0
  1387. package/packages/agent/src/hooks/registry.js +58 -0
  1388. package/packages/agent/src/hooks/types.d.ts +104 -0
  1389. package/packages/agent/src/hooks/types.d.ts.map +1 -0
  1390. package/packages/agent/src/hooks/types.js +8 -0
  1391. package/packages/agent/src/plugins/custom-rtmp/index.d.ts +12 -0
  1392. package/packages/agent/src/plugins/custom-rtmp/index.d.ts.map +1 -0
  1393. package/packages/agent/src/plugins/custom-rtmp/index.js +26 -0
  1394. package/packages/agent/src/providers/admin-panel.d.ts +4 -0
  1395. package/packages/agent/src/providers/admin-panel.d.ts.map +1 -0
  1396. package/packages/agent/src/providers/admin-panel.js +83 -0
  1397. package/packages/agent/src/providers/admin-trust.d.ts +4 -0
  1398. package/packages/agent/src/providers/admin-trust.d.ts.map +1 -0
  1399. package/packages/agent/src/providers/admin-trust.js +34 -0
  1400. package/packages/agent/src/providers/automation-terminal-bridge.d.ts +3 -0
  1401. package/packages/agent/src/providers/automation-terminal-bridge.d.ts.map +1 -0
  1402. package/packages/agent/src/providers/automation-terminal-bridge.js +71 -0
  1403. package/packages/agent/src/providers/conversation-utils.d.ts +11 -0
  1404. package/packages/agent/src/providers/conversation-utils.d.ts.map +1 -0
  1405. package/packages/agent/src/providers/conversation-utils.js +78 -0
  1406. package/packages/agent/src/providers/escalation-trigger.d.ts +15 -0
  1407. package/packages/agent/src/providers/escalation-trigger.d.ts.map +1 -0
  1408. package/packages/agent/src/providers/escalation-trigger.js +165 -0
  1409. package/packages/agent/src/providers/recent-conversations.d.ts +3 -0
  1410. package/packages/agent/src/providers/recent-conversations.d.ts.map +1 -0
  1411. package/packages/agent/src/providers/recent-conversations.js +92 -0
  1412. package/packages/agent/src/providers/relevant-conversations.d.ts +3 -0
  1413. package/packages/agent/src/providers/relevant-conversations.d.ts.map +1 -0
  1414. package/packages/agent/src/providers/relevant-conversations.js +93 -0
  1415. package/packages/agent/src/providers/role-backfill.d.ts +18 -0
  1416. package/packages/agent/src/providers/role-backfill.d.ts.map +1 -0
  1417. package/packages/agent/src/providers/role-backfill.js +84 -0
  1418. package/packages/agent/src/providers/rolodex.d.ts +3 -0
  1419. package/packages/agent/src/providers/rolodex.d.ts.map +1 -0
  1420. package/packages/agent/src/providers/rolodex.js +77 -0
  1421. package/packages/agent/src/providers/session-bridge.d.ts +24 -0
  1422. package/packages/agent/src/providers/session-bridge.d.ts.map +1 -0
  1423. package/packages/agent/src/providers/session-bridge.js +85 -0
  1424. package/packages/agent/src/providers/session-utils.d.ts +20 -0
  1425. package/packages/agent/src/providers/session-utils.d.ts.map +1 -0
  1426. package/packages/agent/src/providers/session-utils.js +33 -0
  1427. package/packages/agent/src/providers/simple-mode.d.ts +4 -0
  1428. package/packages/agent/src/providers/simple-mode.d.ts.map +1 -0
  1429. package/packages/agent/src/providers/simple-mode.js +85 -0
  1430. package/packages/agent/src/providers/skill-provider.d.ts +16 -0
  1431. package/packages/agent/src/providers/skill-provider.d.ts.map +1 -0
  1432. package/packages/agent/src/providers/skill-provider.js +336 -0
  1433. package/packages/agent/src/providers/tasks.d.ts +9 -0
  1434. package/packages/agent/src/providers/tasks.d.ts.map +1 -0
  1435. package/packages/agent/src/providers/tasks.js +113 -0
  1436. package/packages/agent/src/providers/ui-catalog.d.ts +3 -0
  1437. package/packages/agent/src/providers/ui-catalog.d.ts.map +1 -0
  1438. package/packages/agent/src/providers/ui-catalog.js +95 -0
  1439. package/packages/agent/src/providers/user-name.d.ts +11 -0
  1440. package/packages/agent/src/providers/user-name.d.ts.map +1 -0
  1441. package/packages/agent/src/providers/user-name.js +40 -0
  1442. package/packages/agent/src/providers/workspace-provider.d.ts +14 -0
  1443. package/packages/agent/src/providers/workspace-provider.d.ts.map +1 -0
  1444. package/packages/agent/src/providers/workspace-provider.js +177 -0
  1445. package/packages/agent/src/providers/workspace.d.ts +54 -0
  1446. package/packages/agent/src/providers/workspace.d.ts.map +1 -0
  1447. package/packages/agent/src/providers/workspace.js +481 -0
  1448. package/packages/agent/src/runtime/agent-event-service.d.ts +35 -0
  1449. package/packages/agent/src/runtime/agent-event-service.d.ts.map +1 -0
  1450. package/packages/agent/src/runtime/agent-event-service.js +16 -0
  1451. package/packages/agent/src/runtime/cloud-onboarding.d.ts +35 -0
  1452. package/packages/agent/src/runtime/cloud-onboarding.d.ts.map +1 -0
  1453. package/packages/agent/src/runtime/cloud-onboarding.js +279 -0
  1454. package/packages/agent/src/runtime/core-plugins.d.ts +19 -0
  1455. package/packages/agent/src/runtime/core-plugins.d.ts.map +1 -0
  1456. package/packages/agent/src/runtime/core-plugins.js +63 -0
  1457. package/packages/agent/src/runtime/custom-actions.d.ts +43 -0
  1458. package/packages/agent/src/runtime/custom-actions.d.ts.map +1 -0
  1459. package/packages/agent/src/runtime/custom-actions.js +507 -0
  1460. package/packages/agent/src/runtime/default-knowledge.d.ts +20 -0
  1461. package/packages/agent/src/runtime/default-knowledge.d.ts.map +1 -0
  1462. package/packages/agent/src/runtime/default-knowledge.js +256 -0
  1463. package/packages/agent/src/runtime/discord-local-plugin.d.ts +86 -0
  1464. package/packages/agent/src/runtime/discord-local-plugin.d.ts.map +1 -0
  1465. package/packages/agent/src/runtime/discord-local-plugin.js +884 -0
  1466. package/packages/agent/src/runtime/eliza-plugin.d.ts +16 -0
  1467. package/packages/agent/src/runtime/eliza-plugin.d.ts.map +1 -0
  1468. package/packages/agent/src/runtime/eliza-plugin.js +172 -0
  1469. package/packages/agent/src/runtime/eliza.d.ts +91 -0
  1470. package/packages/agent/src/runtime/eliza.d.ts.map +1 -0
  1471. package/packages/agent/src/runtime/eliza.js +3383 -0
  1472. package/packages/agent/src/runtime/embedding-presets.d.ts +19 -0
  1473. package/packages/agent/src/runtime/embedding-presets.d.ts.map +1 -0
  1474. package/packages/agent/src/runtime/embedding-presets.js +60 -0
  1475. package/packages/agent/src/runtime/first-time-setup.d.ts +45 -0
  1476. package/packages/agent/src/runtime/first-time-setup.d.ts.map +1 -0
  1477. package/packages/agent/src/runtime/first-time-setup.js +692 -0
  1478. package/packages/agent/src/runtime/index.d.ts +13 -0
  1479. package/packages/agent/src/runtime/index.d.ts.map +1 -0
  1480. package/packages/agent/src/runtime/index.js +12 -0
  1481. package/packages/agent/src/runtime/native-runtime-features.d.ts +4 -0
  1482. package/packages/agent/src/runtime/native-runtime-features.d.ts.map +1 -0
  1483. package/packages/agent/src/runtime/native-runtime-features.js +10 -0
  1484. package/packages/agent/src/runtime/onboarding-names.d.ts +11 -0
  1485. package/packages/agent/src/runtime/onboarding-names.d.ts.map +1 -0
  1486. package/packages/agent/src/runtime/onboarding-names.js +74 -0
  1487. package/packages/agent/src/runtime/owner-entity.d.ts +4 -0
  1488. package/packages/agent/src/runtime/owner-entity.d.ts.map +1 -0
  1489. package/packages/agent/src/runtime/owner-entity.js +30 -0
  1490. package/packages/agent/src/runtime/pglite-error-compat.d.ts +28 -0
  1491. package/packages/agent/src/runtime/pglite-error-compat.d.ts.map +1 -0
  1492. package/packages/agent/src/runtime/pglite-error-compat.js +54 -0
  1493. package/packages/agent/src/runtime/plugin-collector.d.ts +26 -0
  1494. package/packages/agent/src/runtime/plugin-collector.d.ts.map +1 -0
  1495. package/packages/agent/src/runtime/plugin-collector.js +397 -0
  1496. package/packages/agent/src/runtime/plugin-lifecycle.d.ts +44 -0
  1497. package/packages/agent/src/runtime/plugin-lifecycle.d.ts.map +1 -0
  1498. package/packages/agent/src/runtime/plugin-lifecycle.js +578 -0
  1499. package/packages/agent/src/runtime/plugin-resolver.d.ts +31 -0
  1500. package/packages/agent/src/runtime/plugin-resolver.d.ts.map +1 -0
  1501. package/packages/agent/src/runtime/plugin-resolver.js +942 -0
  1502. package/packages/agent/src/runtime/plugin-role-gating.d.ts +34 -0
  1503. package/packages/agent/src/runtime/plugin-role-gating.d.ts.map +1 -0
  1504. package/packages/agent/src/runtime/plugin-role-gating.js +232 -0
  1505. package/packages/agent/src/runtime/plugin-types.d.ts +65 -0
  1506. package/packages/agent/src/runtime/plugin-types.d.ts.map +1 -0
  1507. package/packages/agent/src/runtime/plugin-types.js +318 -0
  1508. package/packages/agent/src/runtime/prompt-compaction.d.ts +80 -0
  1509. package/packages/agent/src/runtime/prompt-compaction.d.ts.map +1 -0
  1510. package/packages/agent/src/runtime/prompt-compaction.js +307 -0
  1511. package/packages/agent/src/runtime/prompt-optimization.d.ts +11 -0
  1512. package/packages/agent/src/runtime/prompt-optimization.d.ts.map +1 -0
  1513. package/packages/agent/src/runtime/prompt-optimization.js +421 -0
  1514. package/packages/agent/src/runtime/release-plugin-policy.d.ts +20 -0
  1515. package/packages/agent/src/runtime/release-plugin-policy.d.ts.map +1 -0
  1516. package/packages/agent/src/runtime/release-plugin-policy.js +85 -0
  1517. package/packages/agent/src/runtime/restart.d.ts +45 -0
  1518. package/packages/agent/src/runtime/restart.d.ts.map +1 -0
  1519. package/packages/agent/src/runtime/restart.js +45 -0
  1520. package/packages/agent/src/runtime/roles/src/action.d.ts +11 -0
  1521. package/packages/agent/src/runtime/roles/src/action.d.ts.map +1 -0
  1522. package/packages/agent/src/runtime/roles/src/action.js +676 -0
  1523. package/packages/agent/src/runtime/roles/src/index.d.ts +24 -0
  1524. package/packages/agent/src/runtime/roles/src/index.d.ts.map +1 -0
  1525. package/packages/agent/src/runtime/roles/src/index.js +243 -0
  1526. package/packages/agent/src/runtime/roles/src/intent.d.ts +18 -0
  1527. package/packages/agent/src/runtime/roles/src/intent.d.ts.map +1 -0
  1528. package/packages/agent/src/runtime/roles/src/intent.js +299 -0
  1529. package/packages/agent/src/runtime/roles/src/provider.d.ts +7 -0
  1530. package/packages/agent/src/runtime/roles/src/provider.d.ts.map +1 -0
  1531. package/packages/agent/src/runtime/roles/src/provider.js +133 -0
  1532. package/packages/agent/src/runtime/roles/src/types.d.ts +3 -0
  1533. package/packages/agent/src/runtime/roles/src/types.d.ts.map +1 -0
  1534. package/packages/agent/src/runtime/roles/src/types.js +1 -0
  1535. package/packages/agent/src/runtime/roles/src/utils.d.ts +2 -0
  1536. package/packages/agent/src/runtime/roles/src/utils.d.ts.map +1 -0
  1537. package/packages/agent/src/runtime/roles/src/utils.js +1 -0
  1538. package/packages/agent/src/runtime/roles.d.ts +3 -0
  1539. package/packages/agent/src/runtime/roles.d.ts.map +1 -0
  1540. package/packages/agent/src/runtime/roles.js +5 -0
  1541. package/packages/agent/src/runtime/subagent-output.d.ts +51 -0
  1542. package/packages/agent/src/runtime/subagent-output.d.ts.map +1 -0
  1543. package/packages/agent/src/runtime/subagent-output.js +173 -0
  1544. package/packages/agent/src/runtime/task-heartbeat.d.ts +22 -0
  1545. package/packages/agent/src/runtime/task-heartbeat.d.ts.map +1 -0
  1546. package/packages/agent/src/runtime/task-heartbeat.js +84 -0
  1547. package/packages/agent/src/runtime/trajectory-internals.d.ts +224 -0
  1548. package/packages/agent/src/runtime/trajectory-internals.d.ts.map +1 -0
  1549. package/packages/agent/src/runtime/trajectory-internals.js +1322 -0
  1550. package/packages/agent/src/runtime/trajectory-persistence.d.ts +15 -0
  1551. package/packages/agent/src/runtime/trajectory-persistence.d.ts.map +1 -0
  1552. package/packages/agent/src/runtime/trajectory-persistence.js +29 -0
  1553. package/packages/agent/src/runtime/trajectory-query.d.ts +8 -0
  1554. package/packages/agent/src/runtime/trajectory-query.d.ts.map +1 -0
  1555. package/packages/agent/src/runtime/trajectory-query.js +27 -0
  1556. package/packages/agent/src/runtime/trajectory-storage.d.ts +91 -0
  1557. package/packages/agent/src/runtime/trajectory-storage.d.ts.map +1 -0
  1558. package/packages/agent/src/runtime/trajectory-storage.js +1149 -0
  1559. package/packages/agent/src/runtime/version.d.ts +2 -0
  1560. package/packages/agent/src/runtime/version.d.ts.map +1 -0
  1561. package/packages/agent/src/runtime/version.js +5 -0
  1562. package/packages/agent/src/runtime/web-search-tools.d.ts +22 -0
  1563. package/packages/agent/src/runtime/web-search-tools.d.ts.map +1 -0
  1564. package/packages/agent/src/runtime/web-search-tools.js +149 -0
  1565. package/packages/agent/src/security/access.d.ts +17 -0
  1566. package/packages/agent/src/security/access.d.ts.map +1 -0
  1567. package/packages/agent/src/security/access.js +129 -0
  1568. package/packages/agent/src/security/audit-log.d.ts +47 -0
  1569. package/packages/agent/src/security/audit-log.d.ts.map +1 -0
  1570. package/packages/agent/src/security/audit-log.js +161 -0
  1571. package/packages/agent/src/security/network-policy.d.ts +6 -0
  1572. package/packages/agent/src/security/network-policy.d.ts.map +1 -0
  1573. package/packages/agent/src/security/network-policy.js +85 -0
  1574. package/packages/agent/src/services/agent-export.d.ts +100 -0
  1575. package/packages/agent/src/services/agent-export.d.ts.map +1 -0
  1576. package/packages/agent/src/services/agent-export.js +729 -0
  1577. package/packages/agent/src/services/app-manager.d.ts +108 -0
  1578. package/packages/agent/src/services/app-manager.d.ts.map +1 -0
  1579. package/packages/agent/src/services/app-manager.js +2223 -0
  1580. package/packages/agent/src/services/app-package-modules.d.ts +21 -0
  1581. package/packages/agent/src/services/app-package-modules.d.ts.map +1 -0
  1582. package/packages/agent/src/services/app-package-modules.js +415 -0
  1583. package/packages/agent/src/services/app-run-store.d.ts +6 -0
  1584. package/packages/agent/src/services/app-run-store.d.ts.map +1 -0
  1585. package/packages/agent/src/services/app-run-store.js +490 -0
  1586. package/packages/agent/src/services/app-session-gate.d.ts +15 -0
  1587. package/packages/agent/src/services/app-session-gate.d.ts.map +1 -0
  1588. package/packages/agent/src/services/app-session-gate.js +71 -0
  1589. package/packages/agent/src/services/browser-capture.d.ts +41 -0
  1590. package/packages/agent/src/services/browser-capture.d.ts.map +1 -0
  1591. package/packages/agent/src/services/browser-capture.js +173 -0
  1592. package/packages/agent/src/services/browser-workspace-desktop.d.ts +22 -0
  1593. package/packages/agent/src/services/browser-workspace-desktop.d.ts.map +1 -0
  1594. package/packages/agent/src/services/browser-workspace-desktop.js +1379 -0
  1595. package/packages/agent/src/services/browser-workspace-elements.d.ts +42 -0
  1596. package/packages/agent/src/services/browser-workspace-elements.d.ts.map +1 -0
  1597. package/packages/agent/src/services/browser-workspace-elements.js +508 -0
  1598. package/packages/agent/src/services/browser-workspace-forms.d.ts +19 -0
  1599. package/packages/agent/src/services/browser-workspace-forms.d.ts.map +1 -0
  1600. package/packages/agent/src/services/browser-workspace-forms.js +244 -0
  1601. package/packages/agent/src/services/browser-workspace-helpers.d.ts +20 -0
  1602. package/packages/agent/src/services/browser-workspace-helpers.d.ts.map +1 -0
  1603. package/packages/agent/src/services/browser-workspace-helpers.js +121 -0
  1604. package/packages/agent/src/services/browser-workspace-jsdom.d.ts +16 -0
  1605. package/packages/agent/src/services/browser-workspace-jsdom.d.ts.map +1 -0
  1606. package/packages/agent/src/services/browser-workspace-jsdom.js +223 -0
  1607. package/packages/agent/src/services/browser-workspace-network.d.ts +7 -0
  1608. package/packages/agent/src/services/browser-workspace-network.d.ts.map +1 -0
  1609. package/packages/agent/src/services/browser-workspace-network.js +137 -0
  1610. package/packages/agent/src/services/browser-workspace-snapshots.d.ts +14 -0
  1611. package/packages/agent/src/services/browser-workspace-snapshots.d.ts.map +1 -0
  1612. package/packages/agent/src/services/browser-workspace-snapshots.js +144 -0
  1613. package/packages/agent/src/services/browser-workspace-state.d.ts +22 -0
  1614. package/packages/agent/src/services/browser-workspace-state.d.ts.map +1 -0
  1615. package/packages/agent/src/services/browser-workspace-state.js +129 -0
  1616. package/packages/agent/src/services/browser-workspace-types.d.ts +266 -0
  1617. package/packages/agent/src/services/browser-workspace-types.d.ts.map +1 -0
  1618. package/packages/agent/src/services/browser-workspace-types.js +1 -0
  1619. package/packages/agent/src/services/browser-workspace-web.d.ts +8 -0
  1620. package/packages/agent/src/services/browser-workspace-web.d.ts.map +1 -0
  1621. package/packages/agent/src/services/browser-workspace-web.js +1141 -0
  1622. package/packages/agent/src/services/browser-workspace.d.ts +36 -0
  1623. package/packages/agent/src/services/browser-workspace.d.ts.map +1 -0
  1624. package/packages/agent/src/services/browser-workspace.js +806 -0
  1625. package/packages/agent/src/services/character-persistence.d.ts +39 -0
  1626. package/packages/agent/src/services/character-persistence.d.ts.map +1 -0
  1627. package/packages/agent/src/services/character-persistence.js +158 -0
  1628. package/packages/agent/src/services/client-chat-sender.d.ts +19 -0
  1629. package/packages/agent/src/services/client-chat-sender.d.ts.map +1 -0
  1630. package/packages/agent/src/services/client-chat-sender.js +88 -0
  1631. package/packages/agent/src/services/coding-agent-context.d.ts +310 -0
  1632. package/packages/agent/src/services/coding-agent-context.d.ts.map +1 -0
  1633. package/packages/agent/src/services/coding-agent-context.js +281 -0
  1634. package/packages/agent/src/services/config-plugin-manager.d.ts +6 -0
  1635. package/packages/agent/src/services/config-plugin-manager.d.ts.map +1 -0
  1636. package/packages/agent/src/services/config-plugin-manager.js +53 -0
  1637. package/packages/agent/src/services/connector-setup-service.d.ts +48 -0
  1638. package/packages/agent/src/services/connector-setup-service.d.ts.map +1 -0
  1639. package/packages/agent/src/services/connector-setup-service.js +60 -0
  1640. package/packages/agent/src/services/conversation-proximity.d.ts +27 -0
  1641. package/packages/agent/src/services/conversation-proximity.d.ts.map +1 -0
  1642. package/packages/agent/src/services/conversation-proximity.js +124 -0
  1643. package/packages/agent/src/services/credential-words.d.ts +26 -0
  1644. package/packages/agent/src/services/credential-words.d.ts.map +1 -0
  1645. package/packages/agent/src/services/credential-words.js +116 -0
  1646. package/packages/agent/src/services/escalation.d.ts +35 -0
  1647. package/packages/agent/src/services/escalation.d.ts.map +1 -0
  1648. package/packages/agent/src/services/escalation.js +376 -0
  1649. package/packages/agent/src/services/hosted-tools.d.ts +70 -0
  1650. package/packages/agent/src/services/hosted-tools.d.ts.map +1 -0
  1651. package/packages/agent/src/services/hosted-tools.js +87 -0
  1652. package/packages/agent/src/services/mcp-marketplace.d.ts +89 -0
  1653. package/packages/agent/src/services/mcp-marketplace.d.ts.map +1 -0
  1654. package/packages/agent/src/services/mcp-marketplace.js +200 -0
  1655. package/packages/agent/src/services/overlay-app-presence.d.ts +9 -0
  1656. package/packages/agent/src/services/overlay-app-presence.d.ts.map +1 -0
  1657. package/packages/agent/src/services/overlay-app-presence.js +18 -0
  1658. package/packages/agent/src/services/owner-name.d.ts +4 -0
  1659. package/packages/agent/src/services/owner-name.d.ts.map +1 -0
  1660. package/packages/agent/src/services/owner-name.js +46 -0
  1661. package/packages/agent/src/services/plugin-manager-types.d.ts +114 -0
  1662. package/packages/agent/src/services/plugin-manager-types.d.ts.map +1 -0
  1663. package/packages/agent/src/services/plugin-manager-types.js +18 -0
  1664. package/packages/agent/src/services/privy-wallets.d.ts +18 -0
  1665. package/packages/agent/src/services/privy-wallets.d.ts.map +1 -0
  1666. package/packages/agent/src/services/privy-wallets.js +225 -0
  1667. package/packages/agent/src/services/registry-client-app-meta.d.ts +6 -0
  1668. package/packages/agent/src/services/registry-client-app-meta.d.ts.map +1 -0
  1669. package/packages/agent/src/services/registry-client-app-meta.js +226 -0
  1670. package/packages/agent/src/services/registry-client-endpoints.d.ts +7 -0
  1671. package/packages/agent/src/services/registry-client-endpoints.d.ts.map +1 -0
  1672. package/packages/agent/src/services/registry-client-endpoints.js +190 -0
  1673. package/packages/agent/src/services/registry-client-local.d.ts +4 -0
  1674. package/packages/agent/src/services/registry-client-local.d.ts.map +1 -0
  1675. package/packages/agent/src/services/registry-client-local.js +546 -0
  1676. package/packages/agent/src/services/registry-client-network.d.ts +9 -0
  1677. package/packages/agent/src/services/registry-client-network.d.ts.map +1 -0
  1678. package/packages/agent/src/services/registry-client-network.js +120 -0
  1679. package/packages/agent/src/services/registry-client-queries.d.ts +26 -0
  1680. package/packages/agent/src/services/registry-client-queries.d.ts.map +1 -0
  1681. package/packages/agent/src/services/registry-client-queries.js +195 -0
  1682. package/packages/agent/src/services/registry-client-types.d.ts +101 -0
  1683. package/packages/agent/src/services/registry-client-types.d.ts.map +1 -0
  1684. package/packages/agent/src/services/registry-client-types.js +1 -0
  1685. package/packages/agent/src/services/registry-client.d.ts +39 -0
  1686. package/packages/agent/src/services/registry-client.d.ts.map +1 -0
  1687. package/packages/agent/src/services/registry-client.js +332 -0
  1688. package/packages/agent/src/services/relationships-graph.d.ts +195 -0
  1689. package/packages/agent/src/services/relationships-graph.d.ts.map +1 -0
  1690. package/packages/agent/src/services/relationships-graph.js +1442 -0
  1691. package/packages/agent/src/services/remote-signing-service.d.ts +58 -0
  1692. package/packages/agent/src/services/remote-signing-service.d.ts.map +1 -0
  1693. package/packages/agent/src/services/remote-signing-service.js +185 -0
  1694. package/packages/agent/src/services/sandbox-engine.d.ts +96 -0
  1695. package/packages/agent/src/services/sandbox-engine.d.ts.map +1 -0
  1696. package/packages/agent/src/services/sandbox-engine.js +604 -0
  1697. package/packages/agent/src/services/sandbox-manager.d.ts +106 -0
  1698. package/packages/agent/src/services/sandbox-manager.d.ts.map +1 -0
  1699. package/packages/agent/src/services/sandbox-manager.js +380 -0
  1700. package/packages/agent/src/services/self-updater.d.ts +21 -0
  1701. package/packages/agent/src/services/self-updater.d.ts.map +1 -0
  1702. package/packages/agent/src/services/self-updater.js +162 -0
  1703. package/packages/agent/src/services/send-handler-availability.d.ts +5 -0
  1704. package/packages/agent/src/services/send-handler-availability.d.ts.map +1 -0
  1705. package/packages/agent/src/services/send-handler-availability.js +20 -0
  1706. package/packages/agent/src/services/signal-pairing.d.ts +57 -0
  1707. package/packages/agent/src/services/signal-pairing.d.ts.map +1 -0
  1708. package/packages/agent/src/services/signal-pairing.js +407 -0
  1709. package/packages/agent/src/services/signing-policy.d.ts +44 -0
  1710. package/packages/agent/src/services/signing-policy.d.ts.map +1 -0
  1711. package/packages/agent/src/services/signing-policy.js +165 -0
  1712. package/packages/agent/src/services/skill-catalog-client.d.ts +47 -0
  1713. package/packages/agent/src/services/skill-catalog-client.d.ts.map +1 -0
  1714. package/packages/agent/src/services/skill-catalog-client.js +130 -0
  1715. package/packages/agent/src/services/skill-marketplace.d.ts +42 -0
  1716. package/packages/agent/src/services/skill-marketplace.d.ts.map +1 -0
  1717. package/packages/agent/src/services/skill-marketplace.js +689 -0
  1718. package/packages/agent/src/services/steward-evm-account.d.ts +58 -0
  1719. package/packages/agent/src/services/steward-evm-account.d.ts.map +1 -0
  1720. package/packages/agent/src/services/steward-evm-account.js +304 -0
  1721. package/packages/agent/src/services/steward-evm-bridge.d.ts +35 -0
  1722. package/packages/agent/src/services/steward-evm-bridge.d.ts.map +1 -0
  1723. package/packages/agent/src/services/steward-evm-bridge.js +99 -0
  1724. package/packages/agent/src/services/stream-manager.d.ts +121 -0
  1725. package/packages/agent/src/services/stream-manager.d.ts.map +1 -0
  1726. package/packages/agent/src/services/stream-manager.js +609 -0
  1727. package/packages/agent/src/services/telegram-account-auth.d.ts +99 -0
  1728. package/packages/agent/src/services/telegram-account-auth.d.ts.map +1 -0
  1729. package/packages/agent/src/services/telegram-account-auth.js +611 -0
  1730. package/packages/agent/src/services/tts-stream-bridge.d.ts +83 -0
  1731. package/packages/agent/src/services/tts-stream-bridge.d.ts.map +1 -0
  1732. package/packages/agent/src/services/tts-stream-bridge.js +360 -0
  1733. package/packages/agent/src/services/update-checker.d.ts +29 -0
  1734. package/packages/agent/src/services/update-checker.d.ts.map +1 -0
  1735. package/packages/agent/src/services/update-checker.js +134 -0
  1736. package/packages/agent/src/services/version-compat.d.ts +99 -0
  1737. package/packages/agent/src/services/version-compat.d.ts.map +1 -0
  1738. package/packages/agent/src/services/version-compat.js +203 -0
  1739. package/packages/agent/src/services/whatsapp-pairing.d.ts +41 -0
  1740. package/packages/agent/src/services/whatsapp-pairing.d.ts.map +1 -0
  1741. package/packages/agent/src/services/whatsapp-pairing.js +209 -0
  1742. package/packages/agent/src/shared/ui-catalog-prompt.d.ts +52 -0
  1743. package/packages/agent/src/shared/ui-catalog-prompt.d.ts.map +1 -0
  1744. package/packages/agent/src/shared/ui-catalog-prompt.js +1028 -0
  1745. package/packages/agent/src/triggers/action.d.ts +4 -0
  1746. package/packages/agent/src/triggers/action.d.ts.map +1 -0
  1747. package/packages/agent/src/triggers/action.js +316 -0
  1748. package/packages/agent/src/triggers/runtime.d.ts +26 -0
  1749. package/packages/agent/src/triggers/runtime.d.ts.map +1 -0
  1750. package/packages/agent/src/triggers/runtime.js +507 -0
  1751. package/packages/agent/src/triggers/scheduling.d.ts +76 -0
  1752. package/packages/agent/src/triggers/scheduling.d.ts.map +1 -0
  1753. package/packages/agent/src/triggers/scheduling.js +401 -0
  1754. package/packages/agent/src/triggers/types.d.ts +92 -0
  1755. package/packages/agent/src/triggers/types.d.ts.map +1 -0
  1756. package/packages/agent/src/triggers/types.js +1 -0
  1757. package/packages/agent/src/types/agent-skills.d.ts +19 -0
  1758. package/packages/agent/src/types/agent-skills.d.ts.map +1 -0
  1759. package/packages/agent/src/types/agent-skills.js +7 -0
  1760. package/packages/agent/src/types/config-like.d.ts +17 -0
  1761. package/packages/agent/src/types/config-like.d.ts.map +1 -0
  1762. package/packages/agent/src/types/config-like.js +7 -0
  1763. package/packages/agent/src/types/trajectory.d.ts +147 -0
  1764. package/packages/agent/src/types/trajectory.d.ts.map +1 -0
  1765. package/packages/agent/src/types/trajectory.js +8 -0
  1766. package/packages/agent/src/utils/exec-safety.d.ts +2 -0
  1767. package/packages/agent/src/utils/exec-safety.d.ts.map +1 -0
  1768. package/packages/agent/src/utils/exec-safety.js +21 -0
  1769. package/packages/agent/src/utils/number-parsing.d.ts +26 -0
  1770. package/packages/agent/src/utils/number-parsing.d.ts.map +1 -0
  1771. package/packages/agent/src/utils/number-parsing.js +52 -0
  1772. package/packages/agent/src/version-resolver.d.ts +2 -0
  1773. package/packages/agent/src/version-resolver.d.ts.map +1 -0
  1774. package/packages/agent/src/version-resolver.js +50 -0
  1775. package/packages/app-core/src/App.d.ts +5 -0
  1776. package/packages/app-core/src/App.d.ts.map +1 -0
  1777. package/packages/app-core/src/App.js +374 -0
  1778. package/packages/app-core/src/api/auth.d.ts +46 -0
  1779. package/packages/app-core/src/api/auth.d.ts.map +1 -0
  1780. package/packages/app-core/src/api/auth.js +149 -0
  1781. package/packages/app-core/src/api/client-agent.d.ts +507 -0
  1782. package/packages/app-core/src/api/client-agent.d.ts.map +1 -0
  1783. package/packages/app-core/src/api/client-agent.js +1180 -0
  1784. package/packages/app-core/src/api/client-automations.d.ts +8 -0
  1785. package/packages/app-core/src/api/client-automations.d.ts.map +1 -0
  1786. package/packages/app-core/src/api/client-automations.js +7 -0
  1787. package/packages/app-core/src/api/client-base.d.ts +82 -0
  1788. package/packages/app-core/src/api/client-base.d.ts.map +1 -0
  1789. package/packages/app-core/src/api/client-base.js +684 -0
  1790. package/packages/app-core/src/api/client-browser-workspace.d.ts +25 -0
  1791. package/packages/app-core/src/api/client-browser-workspace.d.ts.map +1 -0
  1792. package/packages/app-core/src/api/client-browser-workspace.js +34 -0
  1793. package/packages/app-core/src/api/client-chat.d.ts +333 -0
  1794. package/packages/app-core/src/api/client-chat.d.ts.map +1 -0
  1795. package/packages/app-core/src/api/client-chat.js +534 -0
  1796. package/packages/app-core/src/api/client-cloud.d.ts +281 -0
  1797. package/packages/app-core/src/api/client-cloud.d.ts.map +1 -0
  1798. package/packages/app-core/src/api/client-cloud.js +397 -0
  1799. package/packages/app-core/src/api/client-computeruse.d.ts +32 -0
  1800. package/packages/app-core/src/api/client-computeruse.d.ts.map +1 -0
  1801. package/packages/app-core/src/api/client-computeruse.js +16 -0
  1802. package/packages/app-core/src/api/client-local-inference.d.ts +62 -0
  1803. package/packages/app-core/src/api/client-local-inference.d.ts.map +1 -0
  1804. package/packages/app-core/src/api/client-local-inference.js +87 -0
  1805. package/packages/app-core/src/api/client-n8n.d.ts +23 -0
  1806. package/packages/app-core/src/api/client-n8n.d.ts.map +1 -0
  1807. package/packages/app-core/src/api/client-n8n.js +34 -0
  1808. package/packages/app-core/src/api/client-skills.d.ts +460 -0
  1809. package/packages/app-core/src/api/client-skills.d.ts.map +1 -0
  1810. package/packages/app-core/src/api/client-skills.js +599 -0
  1811. package/packages/app-core/src/api/client-types-babylon.d.ts +254 -0
  1812. package/packages/app-core/src/api/client-types-babylon.d.ts.map +1 -0
  1813. package/packages/app-core/src/api/client-types-babylon.js +2 -0
  1814. package/packages/app-core/src/api/client-types-chat.d.ts +318 -0
  1815. package/packages/app-core/src/api/client-types-chat.d.ts.map +1 -0
  1816. package/packages/app-core/src/api/client-types-chat.js +5 -0
  1817. package/packages/app-core/src/api/client-types-cloud.d.ts +799 -0
  1818. package/packages/app-core/src/api/client-types-cloud.d.ts.map +1 -0
  1819. package/packages/app-core/src/api/client-types-cloud.js +57 -0
  1820. package/packages/app-core/src/api/client-types-config.d.ts +554 -0
  1821. package/packages/app-core/src/api/client-types-config.d.ts.map +1 -0
  1822. package/packages/app-core/src/api/client-types-config.js +5 -0
  1823. package/packages/app-core/src/api/client-types-core.d.ts +334 -0
  1824. package/packages/app-core/src/api/client-types-core.d.ts.map +1 -0
  1825. package/packages/app-core/src/api/client-types-core.js +22 -0
  1826. package/packages/app-core/src/api/client-types-relationships.d.ts +133 -0
  1827. package/packages/app-core/src/api/client-types-relationships.d.ts.map +1 -0
  1828. package/packages/app-core/src/api/client-types-relationships.js +1 -0
  1829. package/packages/app-core/src/api/client-types.d.ts +7 -0
  1830. package/packages/app-core/src/api/client-types.d.ts.map +1 -0
  1831. package/packages/app-core/src/api/client-types.js +10 -0
  1832. package/packages/app-core/src/api/client-wallet.d.ts +125 -0
  1833. package/packages/app-core/src/api/client-wallet.d.ts.map +1 -0
  1834. package/packages/app-core/src/api/client-wallet.js +219 -0
  1835. package/packages/app-core/src/api/client.d.ts +40 -0
  1836. package/packages/app-core/src/api/client.d.ts.map +1 -0
  1837. package/packages/app-core/src/api/client.js +36 -0
  1838. package/packages/app-core/src/api/cloud-secrets.d.ts +23 -0
  1839. package/packages/app-core/src/api/cloud-secrets.d.ts.map +1 -0
  1840. package/packages/app-core/src/api/cloud-secrets.js +50 -0
  1841. package/packages/app-core/src/api/compat-route-shared.d.ts +16 -0
  1842. package/packages/app-core/src/api/compat-route-shared.d.ts.map +1 -0
  1843. package/packages/app-core/src/api/compat-route-shared.js +99 -0
  1844. package/packages/app-core/src/api/index.d.ts +2 -0
  1845. package/packages/app-core/src/api/index.d.ts.map +1 -0
  1846. package/packages/app-core/src/api/index.js +1 -0
  1847. package/packages/app-core/src/api/response.d.ts +12 -0
  1848. package/packages/app-core/src/api/response.d.ts.map +1 -0
  1849. package/packages/app-core/src/api/response.js +18 -0
  1850. package/packages/app-core/src/api/server-cloud-tts.d.ts +41 -0
  1851. package/packages/app-core/src/api/server-cloud-tts.d.ts.map +1 -0
  1852. package/packages/app-core/src/api/server-cloud-tts.js +469 -0
  1853. package/packages/app-core/src/autonomy/index.d.ts +48 -0
  1854. package/packages/app-core/src/autonomy/index.d.ts.map +1 -0
  1855. package/packages/app-core/src/autonomy/index.js +330 -0
  1856. package/packages/app-core/src/bridge/capacitor-bridge.d.ts +153 -0
  1857. package/packages/app-core/src/bridge/capacitor-bridge.d.ts.map +1 -0
  1858. package/packages/app-core/src/bridge/capacitor-bridge.js +195 -0
  1859. package/packages/app-core/src/bridge/electrobun-rpc.d.ts +57 -0
  1860. package/packages/app-core/src/bridge/electrobun-rpc.d.ts.map +1 -0
  1861. package/packages/app-core/src/bridge/electrobun-rpc.js +87 -0
  1862. package/packages/app-core/src/bridge/electrobun-runtime.d.ts +3 -0
  1863. package/packages/app-core/src/bridge/electrobun-runtime.d.ts.map +1 -0
  1864. package/packages/app-core/src/bridge/electrobun-runtime.js +34 -0
  1865. package/packages/app-core/src/bridge/gateway-discovery.d.ts +17 -0
  1866. package/packages/app-core/src/bridge/gateway-discovery.d.ts.map +1 -0
  1867. package/packages/app-core/src/bridge/gateway-discovery.js +49 -0
  1868. package/packages/app-core/src/bridge/index.d.ts +6 -0
  1869. package/packages/app-core/src/bridge/index.d.ts.map +1 -0
  1870. package/packages/app-core/src/bridge/index.js +5 -0
  1871. package/packages/app-core/src/bridge/native-plugins.d.ts +290 -0
  1872. package/packages/app-core/src/bridge/native-plugins.d.ts.map +1 -0
  1873. package/packages/app-core/src/bridge/native-plugins.js +55 -0
  1874. package/packages/app-core/src/bridge/plugin-bridge.d.ts +109 -0
  1875. package/packages/app-core/src/bridge/plugin-bridge.d.ts.map +1 -0
  1876. package/packages/app-core/src/bridge/plugin-bridge.js +201 -0
  1877. package/packages/app-core/src/bridge/storage-bridge.d.ts +39 -0
  1878. package/packages/app-core/src/bridge/storage-bridge.d.ts.map +1 -0
  1879. package/packages/app-core/src/bridge/storage-bridge.js +140 -0
  1880. package/packages/app-core/src/character/character-draft-helpers.d.ts +35 -0
  1881. package/packages/app-core/src/character/character-draft-helpers.d.ts.map +1 -0
  1882. package/packages/app-core/src/character/character-draft-helpers.js +245 -0
  1883. package/packages/app-core/src/character-catalog.d.ts +17 -0
  1884. package/packages/app-core/src/character-catalog.d.ts.map +1 -0
  1885. package/packages/app-core/src/character-catalog.js +39 -0
  1886. package/packages/app-core/src/chat/coding-agent-session-state.d.ts +16 -0
  1887. package/packages/app-core/src/chat/coding-agent-session-state.d.ts.map +1 -0
  1888. package/packages/app-core/src/chat/coding-agent-session-state.js +27 -0
  1889. package/packages/app-core/src/chat/index.d.ts +66 -0
  1890. package/packages/app-core/src/chat/index.d.ts.map +1 -0
  1891. package/packages/app-core/src/chat/index.js +239 -0
  1892. package/packages/app-core/src/components/apps/AppsCatalogGrid.d.ts +16 -0
  1893. package/packages/app-core/src/components/apps/AppsCatalogGrid.d.ts.map +1 -0
  1894. package/packages/app-core/src/components/apps/AppsCatalogGrid.js +26 -0
  1895. package/packages/app-core/src/components/apps/GameView.d.ts +18 -0
  1896. package/packages/app-core/src/components/apps/GameView.d.ts.map +1 -0
  1897. package/packages/app-core/src/components/apps/GameView.js +1055 -0
  1898. package/packages/app-core/src/components/apps/GameViewOverlay.d.ts +2 -0
  1899. package/packages/app-core/src/components/apps/GameViewOverlay.d.ts.map +1 -0
  1900. package/packages/app-core/src/components/apps/GameViewOverlay.js +120 -0
  1901. package/packages/app-core/src/components/apps/RunningAppsRow.d.ts +12 -0
  1902. package/packages/app-core/src/components/apps/RunningAppsRow.d.ts.map +1 -0
  1903. package/packages/app-core/src/components/apps/RunningAppsRow.js +34 -0
  1904. package/packages/app-core/src/components/apps/app-identity.d.ts +32 -0
  1905. package/packages/app-core/src/components/apps/app-identity.d.ts.map +1 -0
  1906. package/packages/app-core/src/components/apps/app-identity.js +133 -0
  1907. package/packages/app-core/src/components/apps/helpers.d.ts +39 -0
  1908. package/packages/app-core/src/components/apps/helpers.d.ts.map +1 -0
  1909. package/packages/app-core/src/components/apps/helpers.js +242 -0
  1910. package/packages/app-core/src/components/apps/internal-tool-apps.d.ts +7 -0
  1911. package/packages/app-core/src/components/apps/internal-tool-apps.d.ts.map +1 -0
  1912. package/packages/app-core/src/components/apps/internal-tool-apps.js +116 -0
  1913. package/packages/app-core/src/components/apps/overlay-app-api.d.ts +53 -0
  1914. package/packages/app-core/src/components/apps/overlay-app-api.d.ts.map +1 -0
  1915. package/packages/app-core/src/components/apps/overlay-app-api.js +8 -0
  1916. package/packages/app-core/src/components/apps/overlay-app-registry.d.ts +19 -0
  1917. package/packages/app-core/src/components/apps/overlay-app-registry.d.ts.map +1 -0
  1918. package/packages/app-core/src/components/apps/overlay-app-registry.js +47 -0
  1919. package/packages/app-core/src/components/apps/run-attention.d.ts +3 -0
  1920. package/packages/app-core/src/components/apps/run-attention.d.ts.map +1 -0
  1921. package/packages/app-core/src/components/apps/run-attention.js +77 -0
  1922. package/packages/app-core/src/components/apps/surfaces/registry.d.ts +11 -0
  1923. package/packages/app-core/src/components/apps/surfaces/registry.d.ts.map +1 -0
  1924. package/packages/app-core/src/components/apps/surfaces/registry.js +23 -0
  1925. package/packages/app-core/src/components/apps/surfaces/types.d.ts +10 -0
  1926. package/packages/app-core/src/components/apps/surfaces/types.d.ts.map +1 -0
  1927. package/packages/app-core/src/components/apps/surfaces/types.js +1 -0
  1928. package/packages/app-core/src/components/apps/viewer-auth.d.ts +7 -0
  1929. package/packages/app-core/src/components/apps/viewer-auth.d.ts.map +1 -0
  1930. package/packages/app-core/src/components/apps/viewer-auth.js +55 -0
  1931. package/packages/app-core/src/components/character/CharacterEditor.d.ts +12 -0
  1932. package/packages/app-core/src/components/character/CharacterEditor.d.ts.map +1 -0
  1933. package/packages/app-core/src/components/character/CharacterEditor.js +1034 -0
  1934. package/packages/app-core/src/components/character/CharacterEditorPanels.d.ts +66 -0
  1935. package/packages/app-core/src/components/character/CharacterEditorPanels.d.ts.map +1 -0
  1936. package/packages/app-core/src/components/character/CharacterEditorPanels.js +310 -0
  1937. package/packages/app-core/src/components/character/CharacterRoster.d.ts +32 -0
  1938. package/packages/app-core/src/components/character/CharacterRoster.d.ts.map +1 -0
  1939. package/packages/app-core/src/components/character/CharacterRoster.js +111 -0
  1940. package/packages/app-core/src/components/character/character-editor-helpers.d.ts +42 -0
  1941. package/packages/app-core/src/components/character/character-editor-helpers.d.ts.map +1 -0
  1942. package/packages/app-core/src/components/character/character-editor-helpers.js +58 -0
  1943. package/packages/app-core/src/components/character/character-greeting.d.ts +5 -0
  1944. package/packages/app-core/src/components/character/character-greeting.d.ts.map +1 -0
  1945. package/packages/app-core/src/components/character/character-greeting.js +22 -0
  1946. package/packages/app-core/src/components/character/character-voice-config.d.ts +33 -0
  1947. package/packages/app-core/src/components/character/character-voice-config.d.ts.map +1 -0
  1948. package/packages/app-core/src/components/character/character-voice-config.js +95 -0
  1949. package/packages/app-core/src/components/chat/AgentActivityBox.d.ts +8 -0
  1950. package/packages/app-core/src/components/chat/AgentActivityBox.d.ts.map +1 -0
  1951. package/packages/app-core/src/components/chat/AgentActivityBox.js +33 -0
  1952. package/packages/app-core/src/components/chat/AppsSection.d.ts +8 -0
  1953. package/packages/app-core/src/components/chat/AppsSection.d.ts.map +1 -0
  1954. package/packages/app-core/src/components/chat/AppsSection.js +133 -0
  1955. package/packages/app-core/src/components/chat/MessageContent.d.ts +41 -0
  1956. package/packages/app-core/src/components/chat/MessageContent.d.ts.map +1 -0
  1957. package/packages/app-core/src/components/chat/MessageContent.js +666 -0
  1958. package/packages/app-core/src/components/chat/SaveCommandModal.d.ts +9 -0
  1959. package/packages/app-core/src/components/chat/SaveCommandModal.d.ts.map +1 -0
  1960. package/packages/app-core/src/components/chat/SaveCommandModal.js +59 -0
  1961. package/packages/app-core/src/components/chat/TasksEventsPanel.d.ts +20 -0
  1962. package/packages/app-core/src/components/chat/TasksEventsPanel.d.ts.map +1 -0
  1963. package/packages/app-core/src/components/chat/TasksEventsPanel.js +11 -0
  1964. package/packages/app-core/src/components/chat/widgets/plugins/agent-orchestrator.d.ts +3 -0
  1965. package/packages/app-core/src/components/chat/widgets/plugins/agent-orchestrator.d.ts.map +1 -0
  1966. package/packages/app-core/src/components/chat/widgets/plugins/agent-orchestrator.js +165 -0
  1967. package/packages/app-core/src/components/chat/widgets/plugins/todo.d.ts +3 -0
  1968. package/packages/app-core/src/components/chat/widgets/plugins/todo.d.ts.map +1 -0
  1969. package/packages/app-core/src/components/chat/widgets/plugins/todo.js +109 -0
  1970. package/packages/app-core/src/components/chat/widgets/shared.d.ts +15 -0
  1971. package/packages/app-core/src/components/chat/widgets/shared.d.ts.map +1 -0
  1972. package/packages/app-core/src/components/chat/widgets/shared.js +7 -0
  1973. package/packages/app-core/src/components/chat/widgets/types.d.ts +16 -0
  1974. package/packages/app-core/src/components/chat/widgets/types.d.ts.map +1 -0
  1975. package/packages/app-core/src/components/chat/widgets/types.js +1 -0
  1976. package/packages/app-core/src/components/cloud/CloudSourceControls.d.ts +13 -0
  1977. package/packages/app-core/src/components/cloud/CloudSourceControls.d.ts.map +1 -0
  1978. package/packages/app-core/src/components/cloud/CloudSourceControls.js +18 -0
  1979. package/packages/app-core/src/components/cloud/CloudStatusBadge.d.ts +33 -0
  1980. package/packages/app-core/src/components/cloud/CloudStatusBadge.d.ts.map +1 -0
  1981. package/packages/app-core/src/components/cloud/CloudStatusBadge.js +93 -0
  1982. package/packages/app-core/src/components/cloud/FlaminaGuide.d.ts +10 -0
  1983. package/packages/app-core/src/components/cloud/FlaminaGuide.d.ts.map +1 -0
  1984. package/packages/app-core/src/components/cloud/FlaminaGuide.js +86 -0
  1985. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.d.ts +24 -0
  1986. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.d.ts.map +1 -0
  1987. package/packages/app-core/src/components/cloud/StripeEmbeddedCheckout.js +101 -0
  1988. package/packages/app-core/src/components/config-ui/config-control-primitives.d.ts +14 -0
  1989. package/packages/app-core/src/components/config-ui/config-control-primitives.d.ts.map +1 -0
  1990. package/packages/app-core/src/components/config-ui/config-control-primitives.js +22 -0
  1991. package/packages/app-core/src/components/config-ui/config-field.d.ts +58 -0
  1992. package/packages/app-core/src/components/config-ui/config-field.d.ts.map +1 -0
  1993. package/packages/app-core/src/components/config-ui/config-field.js +873 -0
  1994. package/packages/app-core/src/components/config-ui/config-renderer.d.ts +164 -0
  1995. package/packages/app-core/src/components/config-ui/config-renderer.d.ts.map +1 -0
  1996. package/packages/app-core/src/components/config-ui/config-renderer.js +397 -0
  1997. package/packages/app-core/src/components/config-ui/index.d.ts +5 -0
  1998. package/packages/app-core/src/components/config-ui/index.d.ts.map +1 -0
  1999. package/packages/app-core/src/components/config-ui/index.js +4 -0
  2000. package/packages/app-core/src/components/config-ui/ui-renderer.d.ts +15 -0
  2001. package/packages/app-core/src/components/config-ui/ui-renderer.d.ts.map +1 -0
  2002. package/packages/app-core/src/components/config-ui/ui-renderer.js +824 -0
  2003. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.d.ts +2 -0
  2004. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.d.ts.map +1 -0
  2005. package/packages/app-core/src/components/connectors/BlueBubblesStatusPanel.js +61 -0
  2006. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.d.ts +12 -0
  2007. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.d.ts.map +1 -0
  2008. package/packages/app-core/src/components/connectors/ConnectorSetupPanel.js +90 -0
  2009. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.d.ts +2 -0
  2010. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.d.ts.map +1 -0
  2011. package/packages/app-core/src/components/connectors/DiscordLocalConnectorPanel.js +249 -0
  2012. package/packages/app-core/src/components/connectors/IMessageStatusPanel.d.ts +2 -0
  2013. package/packages/app-core/src/components/connectors/IMessageStatusPanel.d.ts.map +1 -0
  2014. package/packages/app-core/src/components/connectors/IMessageStatusPanel.js +44 -0
  2015. package/packages/app-core/src/components/connectors/SignalQrOverlay.d.ts +7 -0
  2016. package/packages/app-core/src/components/connectors/SignalQrOverlay.d.ts.map +1 -0
  2017. package/packages/app-core/src/components/connectors/SignalQrOverlay.js +63 -0
  2018. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.d.ts +2 -0
  2019. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.d.ts.map +1 -0
  2020. package/packages/app-core/src/components/connectors/TelegramAccountConnectorPanel.js +202 -0
  2021. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.d.ts +2 -0
  2022. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.d.ts.map +1 -0
  2023. package/packages/app-core/src/components/connectors/TelegramBotSetupPanel.js +81 -0
  2024. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.d.ts +8 -0
  2025. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.d.ts.map +1 -0
  2026. package/packages/app-core/src/components/connectors/WhatsAppQrOverlay.js +52 -0
  2027. package/packages/app-core/src/components/conversations/ConversationRenameDialog.d.ts +9 -0
  2028. package/packages/app-core/src/components/conversations/ConversationRenameDialog.d.ts.map +1 -0
  2029. package/packages/app-core/src/components/conversations/ConversationRenameDialog.js +46 -0
  2030. package/packages/app-core/src/components/conversations/ConversationsSidebar.d.ts +9 -0
  2031. package/packages/app-core/src/components/conversations/ConversationsSidebar.d.ts.map +1 -0
  2032. package/packages/app-core/src/components/conversations/ConversationsSidebar.js +348 -0
  2033. package/packages/app-core/src/components/conversations/conversation-sidebar-model.d.ts +67 -0
  2034. package/packages/app-core/src/components/conversations/conversation-sidebar-model.d.ts.map +1 -0
  2035. package/packages/app-core/src/components/conversations/conversation-sidebar-model.js +227 -0
  2036. package/packages/app-core/src/components/conversations/conversation-utils.d.ts +9 -0
  2037. package/packages/app-core/src/components/conversations/conversation-utils.d.ts.map +1 -0
  2038. package/packages/app-core/src/components/conversations/conversation-utils.js +138 -0
  2039. package/packages/app-core/src/components/custom-actions/CustomActionEditor.d.ts +10 -0
  2040. package/packages/app-core/src/components/custom-actions/CustomActionEditor.d.ts.map +1 -0
  2041. package/packages/app-core/src/components/custom-actions/CustomActionEditor.js +385 -0
  2042. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.d.ts +9 -0
  2043. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.d.ts.map +1 -0
  2044. package/packages/app-core/src/components/custom-actions/CustomActionsPanel.js +158 -0
  2045. package/packages/app-core/src/components/custom-actions/CustomActionsView.d.ts +2 -0
  2046. package/packages/app-core/src/components/custom-actions/CustomActionsView.d.ts.map +1 -0
  2047. package/packages/app-core/src/components/custom-actions/CustomActionsView.js +144 -0
  2048. package/packages/app-core/src/components/custom-actions/custom-action-form.d.ts +44 -0
  2049. package/packages/app-core/src/components/custom-actions/custom-action-form.d.ts.map +1 -0
  2050. package/packages/app-core/src/components/custom-actions/custom-action-form.js +236 -0
  2051. package/packages/app-core/src/components/index.d.ts +92 -0
  2052. package/packages/app-core/src/components/index.d.ts.map +1 -0
  2053. package/packages/app-core/src/components/index.js +92 -0
  2054. package/packages/app-core/src/components/inventory/BscTradePanel.d.ts +17 -0
  2055. package/packages/app-core/src/components/inventory/BscTradePanel.d.ts.map +1 -0
  2056. package/packages/app-core/src/components/inventory/BscTradePanel.js +279 -0
  2057. package/packages/app-core/src/components/inventory/ChainIcon.d.ts +21 -0
  2058. package/packages/app-core/src/components/inventory/ChainIcon.d.ts.map +1 -0
  2059. package/packages/app-core/src/components/inventory/ChainIcon.js +69 -0
  2060. package/packages/app-core/src/components/inventory/CopyableAddress.d.ts +5 -0
  2061. package/packages/app-core/src/components/inventory/CopyableAddress.d.ts.map +1 -0
  2062. package/packages/app-core/src/components/inventory/CopyableAddress.js +14 -0
  2063. package/packages/app-core/src/components/inventory/InventoryToolbar.d.ts +29 -0
  2064. package/packages/app-core/src/components/inventory/InventoryToolbar.d.ts.map +1 -0
  2065. package/packages/app-core/src/components/inventory/InventoryToolbar.js +30 -0
  2066. package/packages/app-core/src/components/inventory/NftGrid.d.ts +10 -0
  2067. package/packages/app-core/src/components/inventory/NftGrid.d.ts.map +1 -0
  2068. package/packages/app-core/src/components/inventory/NftGrid.js +29 -0
  2069. package/packages/app-core/src/components/inventory/TokenLogo.d.ts +12 -0
  2070. package/packages/app-core/src/components/inventory/TokenLogo.d.ts.map +1 -0
  2071. package/packages/app-core/src/components/inventory/TokenLogo.js +33 -0
  2072. package/packages/app-core/src/components/inventory/TokensTable.d.ts +14 -0
  2073. package/packages/app-core/src/components/inventory/TokensTable.d.ts.map +1 -0
  2074. package/packages/app-core/src/components/inventory/TokensTable.js +25 -0
  2075. package/packages/app-core/src/components/inventory/chainConfig.d.ts +89 -0
  2076. package/packages/app-core/src/components/inventory/chainConfig.d.ts.map +1 -0
  2077. package/packages/app-core/src/components/inventory/chainConfig.js +287 -0
  2078. package/packages/app-core/src/components/inventory/constants.d.ts +52 -0
  2079. package/packages/app-core/src/components/inventory/constants.d.ts.map +1 -0
  2080. package/packages/app-core/src/components/inventory/constants.js +121 -0
  2081. package/packages/app-core/src/components/inventory/index.d.ts +9 -0
  2082. package/packages/app-core/src/components/inventory/index.d.ts.map +1 -0
  2083. package/packages/app-core/src/components/inventory/index.js +8 -0
  2084. package/packages/app-core/src/components/inventory/inventory-chain-filters.d.ts +11 -0
  2085. package/packages/app-core/src/components/inventory/inventory-chain-filters.d.ts.map +1 -0
  2086. package/packages/app-core/src/components/inventory/inventory-chain-filters.js +34 -0
  2087. package/packages/app-core/src/components/inventory/media-url.d.ts +6 -0
  2088. package/packages/app-core/src/components/inventory/media-url.d.ts.map +1 -0
  2089. package/packages/app-core/src/components/inventory/media-url.js +28 -0
  2090. package/packages/app-core/src/components/inventory/useInventoryData.d.ts +40 -0
  2091. package/packages/app-core/src/components/inventory/useInventoryData.d.ts.map +1 -0
  2092. package/packages/app-core/src/components/inventory/useInventoryData.js +355 -0
  2093. package/packages/app-core/src/components/local-inference/ActiveModelBar.d.ts +15 -0
  2094. package/packages/app-core/src/components/local-inference/ActiveModelBar.d.ts.map +1 -0
  2095. package/packages/app-core/src/components/local-inference/ActiveModelBar.js +14 -0
  2096. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.d.ts +10 -0
  2097. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.d.ts.map +1 -0
  2098. package/packages/app-core/src/components/local-inference/DeviceBridgeStatus.js +47 -0
  2099. package/packages/app-core/src/components/local-inference/DevicesPanel.d.ts +8 -0
  2100. package/packages/app-core/src/components/local-inference/DevicesPanel.d.ts.map +1 -0
  2101. package/packages/app-core/src/components/local-inference/DevicesPanel.js +44 -0
  2102. package/packages/app-core/src/components/local-inference/DownloadProgress.d.ts +7 -0
  2103. package/packages/app-core/src/components/local-inference/DownloadProgress.d.ts.map +1 -0
  2104. package/packages/app-core/src/components/local-inference/DownloadProgress.js +8 -0
  2105. package/packages/app-core/src/components/local-inference/DownloadQueue.d.ts +15 -0
  2106. package/packages/app-core/src/components/local-inference/DownloadQueue.d.ts.map +1 -0
  2107. package/packages/app-core/src/components/local-inference/DownloadQueue.js +21 -0
  2108. package/packages/app-core/src/components/local-inference/FirstRunOffer.d.ts +17 -0
  2109. package/packages/app-core/src/components/local-inference/FirstRunOffer.d.ts.map +1 -0
  2110. package/packages/app-core/src/components/local-inference/FirstRunOffer.js +57 -0
  2111. package/packages/app-core/src/components/local-inference/HardwareBadge.d.ts +12 -0
  2112. package/packages/app-core/src/components/local-inference/HardwareBadge.d.ts.map +1 -0
  2113. package/packages/app-core/src/components/local-inference/HardwareBadge.js +14 -0
  2114. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.d.ts +22 -0
  2115. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.d.ts.map +1 -0
  2116. package/packages/app-core/src/components/local-inference/HuggingFaceSearch.js +68 -0
  2117. package/packages/app-core/src/components/local-inference/LocalInferencePanel.d.ts +8 -0
  2118. package/packages/app-core/src/components/local-inference/LocalInferencePanel.d.ts.map +1 -0
  2119. package/packages/app-core/src/components/local-inference/LocalInferencePanel.js +240 -0
  2120. package/packages/app-core/src/components/local-inference/ModelCard.d.ts +20 -0
  2121. package/packages/app-core/src/components/local-inference/ModelCard.d.ts.map +1 -0
  2122. package/packages/app-core/src/components/local-inference/ModelCard.js +21 -0
  2123. package/packages/app-core/src/components/local-inference/ModelHubView.d.ts +24 -0
  2124. package/packages/app-core/src/components/local-inference/ModelHubView.d.ts.map +1 -0
  2125. package/packages/app-core/src/components/local-inference/ModelHubView.js +21 -0
  2126. package/packages/app-core/src/components/local-inference/ProvidersList.d.ts +15 -0
  2127. package/packages/app-core/src/components/local-inference/ProvidersList.d.ts.map +1 -0
  2128. package/packages/app-core/src/components/local-inference/ProvidersList.js +62 -0
  2129. package/packages/app-core/src/components/local-inference/RoutingMatrix.d.ts +13 -0
  2130. package/packages/app-core/src/components/local-inference/RoutingMatrix.d.ts.map +1 -0
  2131. package/packages/app-core/src/components/local-inference/RoutingMatrix.js +105 -0
  2132. package/packages/app-core/src/components/local-inference/SlotAssignments.d.ts +15 -0
  2133. package/packages/app-core/src/components/local-inference/SlotAssignments.d.ts.map +1 -0
  2134. package/packages/app-core/src/components/local-inference/SlotAssignments.js +58 -0
  2135. package/packages/app-core/src/components/local-inference/hub-utils.d.ts +27 -0
  2136. package/packages/app-core/src/components/local-inference/hub-utils.d.ts.map +1 -0
  2137. package/packages/app-core/src/components/local-inference/hub-utils.js +86 -0
  2138. package/packages/app-core/src/components/music/MusicPlayerGlobal.d.ts +19 -0
  2139. package/packages/app-core/src/components/music/MusicPlayerGlobal.d.ts.map +1 -0
  2140. package/packages/app-core/src/components/music/MusicPlayerGlobal.js +128 -0
  2141. package/packages/app-core/src/components/onboarding/ConnectionStep.d.ts +2 -0
  2142. package/packages/app-core/src/components/onboarding/ConnectionStep.d.ts.map +1 -0
  2143. package/packages/app-core/src/components/onboarding/ConnectionStep.js +265 -0
  2144. package/packages/app-core/src/components/onboarding/DeploymentStep.d.ts +6 -0
  2145. package/packages/app-core/src/components/onboarding/DeploymentStep.d.ts.map +1 -0
  2146. package/packages/app-core/src/components/onboarding/DeploymentStep.js +374 -0
  2147. package/packages/app-core/src/components/onboarding/FeaturesStep.d.ts +2 -0
  2148. package/packages/app-core/src/components/onboarding/FeaturesStep.d.ts.map +1 -0
  2149. package/packages/app-core/src/components/onboarding/FeaturesStep.js +136 -0
  2150. package/packages/app-core/src/components/onboarding/OnboardingPanel.d.ts +10 -0
  2151. package/packages/app-core/src/components/onboarding/OnboardingPanel.d.ts.map +1 -0
  2152. package/packages/app-core/src/components/onboarding/OnboardingPanel.js +30 -0
  2153. package/packages/app-core/src/components/onboarding/OnboardingStepNav.d.ts +2 -0
  2154. package/packages/app-core/src/components/onboarding/OnboardingStepNav.d.ts.map +1 -0
  2155. package/packages/app-core/src/components/onboarding/OnboardingStepNav.js +45 -0
  2156. package/packages/app-core/src/components/onboarding/OnboardingTabs.d.ts +10 -0
  2157. package/packages/app-core/src/components/onboarding/OnboardingTabs.d.ts.map +1 -0
  2158. package/packages/app-core/src/components/onboarding/OnboardingTabs.js +10 -0
  2159. package/packages/app-core/src/components/onboarding/OnboardingWizard.d.ts +2 -0
  2160. package/packages/app-core/src/components/onboarding/OnboardingWizard.d.ts.map +1 -0
  2161. package/packages/app-core/src/components/onboarding/OnboardingWizard.js +63 -0
  2162. package/packages/app-core/src/components/onboarding/connection/ConnectionElizaCloudPreProviderScreen.d.ts +5 -0
  2163. package/packages/app-core/src/components/onboarding/connection/ConnectionElizaCloudPreProviderScreen.d.ts.map +1 -0
  2164. package/packages/app-core/src/components/onboarding/connection/ConnectionElizaCloudPreProviderScreen.js +48 -0
  2165. package/packages/app-core/src/components/onboarding/connection/ConnectionHostingScreen.d.ts +6 -0
  2166. package/packages/app-core/src/components/onboarding/connection/ConnectionHostingScreen.d.ts.map +1 -0
  2167. package/packages/app-core/src/components/onboarding/connection/ConnectionHostingScreen.js +13 -0
  2168. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderDetailScreen.d.ts +5 -0
  2169. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderDetailScreen.d.ts.map +1 -0
  2170. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderDetailScreen.js +504 -0
  2171. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderGridScreen.d.ts +17 -0
  2172. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderGridScreen.d.ts.map +1 -0
  2173. package/packages/app-core/src/components/onboarding/connection/ConnectionProviderGridScreen.js +38 -0
  2174. package/packages/app-core/src/components/onboarding/connection/ConnectionRemoteBackendScreen.d.ts +6 -0
  2175. package/packages/app-core/src/components/onboarding/connection/ConnectionRemoteBackendScreen.d.ts.map +1 -0
  2176. package/packages/app-core/src/components/onboarding/connection/ConnectionRemoteBackendScreen.js +25 -0
  2177. package/packages/app-core/src/components/onboarding/connection/ConnectionUiRoot.d.ts +30 -0
  2178. package/packages/app-core/src/components/onboarding/connection/ConnectionUiRoot.d.ts.map +1 -0
  2179. package/packages/app-core/src/components/onboarding/connection/ConnectionUiRoot.js +19 -0
  2180. package/packages/app-core/src/components/onboarding/connection/useAdvanceOnboardingWhenElizaCloudOAuthConnected.d.ts +23 -0
  2181. package/packages/app-core/src/components/onboarding/connection/useAdvanceOnboardingWhenElizaCloudOAuthConnected.d.ts.map +1 -0
  2182. package/packages/app-core/src/components/onboarding/connection/useAdvanceOnboardingWhenElizaCloudOAuthConnected.js +31 -0
  2183. package/packages/app-core/src/components/onboarding/features/FeatureCard.d.ts +14 -0
  2184. package/packages/app-core/src/components/onboarding/features/FeatureCard.d.ts.map +1 -0
  2185. package/packages/app-core/src/components/onboarding/features/FeatureCard.js +17 -0
  2186. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.d.ts +54 -0
  2187. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.d.ts.map +1 -0
  2188. package/packages/app-core/src/components/onboarding/onboarding-form-primitives.js +55 -0
  2189. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.d.ts +40 -0
  2190. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.d.ts.map +1 -0
  2191. package/packages/app-core/src/components/onboarding/onboarding-step-chrome.js +74 -0
  2192. package/packages/app-core/src/components/pages/AdvancedPageView.d.ts +4 -0
  2193. package/packages/app-core/src/components/pages/AdvancedPageView.d.ts.map +1 -0
  2194. package/packages/app-core/src/components/pages/AdvancedPageView.js +72 -0
  2195. package/packages/app-core/src/components/pages/AppsPageView.d.ts +12 -0
  2196. package/packages/app-core/src/components/pages/AppsPageView.d.ts.map +1 -0
  2197. package/packages/app-core/src/components/pages/AppsPageView.js +59 -0
  2198. package/packages/app-core/src/components/pages/AppsView.d.ts +3 -0
  2199. package/packages/app-core/src/components/pages/AppsView.d.ts.map +1 -0
  2200. package/packages/app-core/src/components/pages/AppsView.js +329 -0
  2201. package/packages/app-core/src/components/pages/AutomationRoomChatPane.d.ts +16 -0
  2202. package/packages/app-core/src/components/pages/AutomationRoomChatPane.d.ts.map +1 -0
  2203. package/packages/app-core/src/components/pages/AutomationRoomChatPane.js +202 -0
  2204. package/packages/app-core/src/components/pages/AutomationsView.d.ts +6 -0
  2205. package/packages/app-core/src/components/pages/AutomationsView.d.ts.map +1 -0
  2206. package/packages/app-core/src/components/pages/AutomationsView.js +1024 -0
  2207. package/packages/app-core/src/components/pages/BrowserWorkspaceView.d.ts +3 -0
  2208. package/packages/app-core/src/components/pages/BrowserWorkspaceView.d.ts.map +1 -0
  2209. package/packages/app-core/src/components/pages/BrowserWorkspaceView.js +494 -0
  2210. package/packages/app-core/src/components/pages/ChatModalView.d.ts +12 -0
  2211. package/packages/app-core/src/components/pages/ChatModalView.d.ts.map +1 -0
  2212. package/packages/app-core/src/components/pages/ChatModalView.js +16 -0
  2213. package/packages/app-core/src/components/pages/ChatView.d.ts +11 -0
  2214. package/packages/app-core/src/components/pages/ChatView.d.ts.map +1 -0
  2215. package/packages/app-core/src/components/pages/ChatView.js +489 -0
  2216. package/packages/app-core/src/components/pages/ConfigPageView.d.ts +12 -0
  2217. package/packages/app-core/src/components/pages/ConfigPageView.d.ts.map +1 -0
  2218. package/packages/app-core/src/components/pages/ConfigPageView.js +279 -0
  2219. package/packages/app-core/src/components/pages/ConnectorsPageView.d.ts +8 -0
  2220. package/packages/app-core/src/components/pages/ConnectorsPageView.d.ts.map +1 -0
  2221. package/packages/app-core/src/components/pages/ConnectorsPageView.js +8 -0
  2222. package/packages/app-core/src/components/pages/DatabasePageView.d.ts +5 -0
  2223. package/packages/app-core/src/components/pages/DatabasePageView.d.ts.map +1 -0
  2224. package/packages/app-core/src/components/pages/DatabasePageView.js +33 -0
  2225. package/packages/app-core/src/components/pages/DatabaseView.d.ts +6 -0
  2226. package/packages/app-core/src/components/pages/DatabaseView.d.ts.map +1 -0
  2227. package/packages/app-core/src/components/pages/DatabaseView.js +250 -0
  2228. package/packages/app-core/src/components/pages/ElizaCloudDashboard.d.ts +12 -0
  2229. package/packages/app-core/src/components/pages/ElizaCloudDashboard.d.ts.map +1 -0
  2230. package/packages/app-core/src/components/pages/ElizaCloudDashboard.js +385 -0
  2231. package/packages/app-core/src/components/pages/HeartbeatForm.d.ts +48 -0
  2232. package/packages/app-core/src/components/pages/HeartbeatForm.d.ts.map +1 -0
  2233. package/packages/app-core/src/components/pages/HeartbeatForm.js +117 -0
  2234. package/packages/app-core/src/components/pages/HeartbeatsView.d.ts +3 -0
  2235. package/packages/app-core/src/components/pages/HeartbeatsView.d.ts.map +1 -0
  2236. package/packages/app-core/src/components/pages/HeartbeatsView.js +396 -0
  2237. package/packages/app-core/src/components/pages/InventoryView.d.ts +2 -0
  2238. package/packages/app-core/src/components/pages/InventoryView.d.ts.map +1 -0
  2239. package/packages/app-core/src/components/pages/InventoryView.js +490 -0
  2240. package/packages/app-core/src/components/pages/KnowledgeView.d.ts +6 -0
  2241. package/packages/app-core/src/components/pages/KnowledgeView.d.ts.map +1 -0
  2242. package/packages/app-core/src/components/pages/KnowledgeView.js +502 -0
  2243. package/packages/app-core/src/components/pages/LogsPageView.d.ts +6 -0
  2244. package/packages/app-core/src/components/pages/LogsPageView.d.ts.map +1 -0
  2245. package/packages/app-core/src/components/pages/LogsPageView.js +6 -0
  2246. package/packages/app-core/src/components/pages/LogsView.d.ts +2 -0
  2247. package/packages/app-core/src/components/pages/LogsView.d.ts.map +1 -0
  2248. package/packages/app-core/src/components/pages/LogsView.js +85 -0
  2249. package/packages/app-core/src/components/pages/MediaGalleryView.d.ts +6 -0
  2250. package/packages/app-core/src/components/pages/MediaGalleryView.d.ts.map +1 -0
  2251. package/packages/app-core/src/components/pages/MediaGalleryView.js +272 -0
  2252. package/packages/app-core/src/components/pages/MemoryDetailPanel.d.ts +5 -0
  2253. package/packages/app-core/src/components/pages/MemoryDetailPanel.d.ts.map +1 -0
  2254. package/packages/app-core/src/components/pages/MemoryDetailPanel.js +17 -0
  2255. package/packages/app-core/src/components/pages/MemoryViewerView.d.ts +5 -0
  2256. package/packages/app-core/src/components/pages/MemoryViewerView.d.ts.map +1 -0
  2257. package/packages/app-core/src/components/pages/MemoryViewerView.js +233 -0
  2258. package/packages/app-core/src/components/pages/PluginCard.d.ts +36 -0
  2259. package/packages/app-core/src/components/pages/PluginCard.d.ts.map +1 -0
  2260. package/packages/app-core/src/components/pages/PluginCard.js +128 -0
  2261. package/packages/app-core/src/components/pages/PluginConfigForm.d.ts +29 -0
  2262. package/packages/app-core/src/components/pages/PluginConfigForm.d.ts.map +1 -0
  2263. package/packages/app-core/src/components/pages/PluginConfigForm.js +133 -0
  2264. package/packages/app-core/src/components/pages/PluginsPageView.d.ts +9 -0
  2265. package/packages/app-core/src/components/pages/PluginsPageView.d.ts.map +1 -0
  2266. package/packages/app-core/src/components/pages/PluginsPageView.js +5 -0
  2267. package/packages/app-core/src/components/pages/PluginsView.d.ts +11 -0
  2268. package/packages/app-core/src/components/pages/PluginsView.d.ts.map +1 -0
  2269. package/packages/app-core/src/components/pages/PluginsView.js +839 -0
  2270. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.d.ts +7 -0
  2271. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.d.ts.map +1 -0
  2272. package/packages/app-core/src/components/pages/RelationshipsGraphPanel.js +395 -0
  2273. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.d.ts +5 -0
  2274. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.d.ts.map +1 -0
  2275. package/packages/app-core/src/components/pages/RelationshipsIdentityCluster.js +44 -0
  2276. package/packages/app-core/src/components/pages/RelationshipsView.d.ts +5 -0
  2277. package/packages/app-core/src/components/pages/RelationshipsView.d.ts.map +1 -0
  2278. package/packages/app-core/src/components/pages/RelationshipsView.js +391 -0
  2279. package/packages/app-core/src/components/pages/ReleaseCenterView.d.ts +2 -0
  2280. package/packages/app-core/src/components/pages/ReleaseCenterView.d.ts.map +1 -0
  2281. package/packages/app-core/src/components/pages/ReleaseCenterView.js +192 -0
  2282. package/packages/app-core/src/components/pages/RuntimeView.d.ts +5 -0
  2283. package/packages/app-core/src/components/pages/RuntimeView.d.ts.map +1 -0
  2284. package/packages/app-core/src/components/pages/RuntimeView.js +282 -0
  2285. package/packages/app-core/src/components/pages/SecretsView.d.ts +5 -0
  2286. package/packages/app-core/src/components/pages/SecretsView.d.ts.map +1 -0
  2287. package/packages/app-core/src/components/pages/SecretsView.js +245 -0
  2288. package/packages/app-core/src/components/pages/SettingsView.d.ts +6 -0
  2289. package/packages/app-core/src/components/pages/SettingsView.d.ts.map +1 -0
  2290. package/packages/app-core/src/components/pages/SettingsView.js +471 -0
  2291. package/packages/app-core/src/components/pages/SkillsView.d.ts +6 -0
  2292. package/packages/app-core/src/components/pages/SkillsView.d.ts.map +1 -0
  2293. package/packages/app-core/src/components/pages/SkillsView.js +198 -0
  2294. package/packages/app-core/src/components/pages/SqlEditorPanel.d.ts +13 -0
  2295. package/packages/app-core/src/components/pages/SqlEditorPanel.d.ts.map +1 -0
  2296. package/packages/app-core/src/components/pages/SqlEditorPanel.js +19 -0
  2297. package/packages/app-core/src/components/pages/StreamView.d.ts +4 -0
  2298. package/packages/app-core/src/components/pages/StreamView.d.ts.map +1 -0
  2299. package/packages/app-core/src/components/pages/StreamView.js +113 -0
  2300. package/packages/app-core/src/components/pages/TrajectoriesView.d.ts +9 -0
  2301. package/packages/app-core/src/components/pages/TrajectoriesView.d.ts.map +1 -0
  2302. package/packages/app-core/src/components/pages/TrajectoriesView.js +277 -0
  2303. package/packages/app-core/src/components/pages/TrajectoryDetailView.d.ts +7 -0
  2304. package/packages/app-core/src/components/pages/TrajectoryDetailView.d.ts.map +1 -0
  2305. package/packages/app-core/src/components/pages/TrajectoryDetailView.js +173 -0
  2306. package/packages/app-core/src/components/pages/TriggersView.d.ts +3 -0
  2307. package/packages/app-core/src/components/pages/TriggersView.d.ts.map +1 -0
  2308. package/packages/app-core/src/components/pages/TriggersView.js +2 -0
  2309. package/packages/app-core/src/components/pages/VectorBrowserView.d.ts +13 -0
  2310. package/packages/app-core/src/components/pages/VectorBrowserView.d.ts.map +1 -0
  2311. package/packages/app-core/src/components/pages/VectorBrowserView.js +842 -0
  2312. package/packages/app-core/src/components/pages/automation-conversations.d.ts +15 -0
  2313. package/packages/app-core/src/components/pages/automation-conversations.d.ts.map +1 -0
  2314. package/packages/app-core/src/components/pages/automation-conversations.js +190 -0
  2315. package/packages/app-core/src/components/pages/chat-view-hooks.d.ts +63 -0
  2316. package/packages/app-core/src/components/pages/chat-view-hooks.d.ts.map +1 -0
  2317. package/packages/app-core/src/components/pages/chat-view-hooks.js +531 -0
  2318. package/packages/app-core/src/components/pages/cloud-dashboard-utils.d.ts +93 -0
  2319. package/packages/app-core/src/components/pages/cloud-dashboard-utils.d.ts.map +1 -0
  2320. package/packages/app-core/src/components/pages/cloud-dashboard-utils.js +290 -0
  2321. package/packages/app-core/src/components/pages/config-page-sections.d.ts +90 -0
  2322. package/packages/app-core/src/components/pages/config-page-sections.d.ts.map +1 -0
  2323. package/packages/app-core/src/components/pages/config-page-sections.js +215 -0
  2324. package/packages/app-core/src/components/pages/database-utils.d.ts +30 -0
  2325. package/packages/app-core/src/components/pages/database-utils.d.ts.map +1 -0
  2326. package/packages/app-core/src/components/pages/database-utils.js +133 -0
  2327. package/packages/app-core/src/components/pages/heartbeat-utils.d.ts +80 -0
  2328. package/packages/app-core/src/components/pages/heartbeat-utils.d.ts.map +1 -0
  2329. package/packages/app-core/src/components/pages/heartbeat-utils.js +307 -0
  2330. package/packages/app-core/src/components/pages/knowledge-detail.d.ts +8 -0
  2331. package/packages/app-core/src/components/pages/knowledge-detail.d.ts.map +1 -0
  2332. package/packages/app-core/src/components/pages/knowledge-detail.js +84 -0
  2333. package/packages/app-core/src/components/pages/knowledge-upload.d.ts +25 -0
  2334. package/packages/app-core/src/components/pages/knowledge-upload.d.ts.map +1 -0
  2335. package/packages/app-core/src/components/pages/knowledge-upload.js +124 -0
  2336. package/packages/app-core/src/components/pages/plugin-list-utils.d.ts +82 -0
  2337. package/packages/app-core/src/components/pages/plugin-list-utils.d.ts.map +1 -0
  2338. package/packages/app-core/src/components/pages/plugin-list-utils.js +778 -0
  2339. package/packages/app-core/src/components/pages/plugin-view-connectors.d.ts +57 -0
  2340. package/packages/app-core/src/components/pages/plugin-view-connectors.d.ts.map +1 -0
  2341. package/packages/app-core/src/components/pages/plugin-view-connectors.js +272 -0
  2342. package/packages/app-core/src/components/pages/plugin-view-dialogs.d.ts +36 -0
  2343. package/packages/app-core/src/components/pages/plugin-view-dialogs.d.ts.map +1 -0
  2344. package/packages/app-core/src/components/pages/plugin-view-dialogs.js +63 -0
  2345. package/packages/app-core/src/components/pages/plugin-view-modal.d.ts +34 -0
  2346. package/packages/app-core/src/components/pages/plugin-view-modal.d.ts.map +1 -0
  2347. package/packages/app-core/src/components/pages/plugin-view-modal.js +29 -0
  2348. package/packages/app-core/src/components/pages/plugin-view-sidebar.d.ts +37 -0
  2349. package/packages/app-core/src/components/pages/plugin-view-sidebar.d.ts.map +1 -0
  2350. package/packages/app-core/src/components/pages/plugin-view-sidebar.js +48 -0
  2351. package/packages/app-core/src/components/pages/skill-detail-panel.d.ts +13 -0
  2352. package/packages/app-core/src/components/pages/skill-detail-panel.d.ts.map +1 -0
  2353. package/packages/app-core/src/components/pages/skill-detail-panel.js +161 -0
  2354. package/packages/app-core/src/components/pages/skill-marketplace.d.ts +38 -0
  2355. package/packages/app-core/src/components/pages/skill-marketplace.d.ts.map +1 -0
  2356. package/packages/app-core/src/components/pages/skill-marketplace.js +99 -0
  2357. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.d.ts +43 -0
  2358. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.d.ts.map +1 -0
  2359. package/packages/app-core/src/components/pages/useBrowserWorkspaceWalletBridge.js +318 -0
  2360. package/packages/app-core/src/components/pages/vector-browser-utils.d.ts +53 -0
  2361. package/packages/app-core/src/components/pages/vector-browser-utils.d.ts.map +1 -0
  2362. package/packages/app-core/src/components/pages/vector-browser-utils.js +246 -0
  2363. package/packages/app-core/src/components/permissions/PermissionIcon.d.ts +4 -0
  2364. package/packages/app-core/src/components/permissions/PermissionIcon.d.ts.map +1 -0
  2365. package/packages/app-core/src/components/permissions/PermissionIcon.js +13 -0
  2366. package/packages/app-core/src/components/permissions/StreamingPermissions.d.ts +21 -0
  2367. package/packages/app-core/src/components/permissions/StreamingPermissions.d.ts.map +1 -0
  2368. package/packages/app-core/src/components/permissions/StreamingPermissions.js +198 -0
  2369. package/packages/app-core/src/components/plugins/showcase-data.d.ts +4 -0
  2370. package/packages/app-core/src/components/plugins/showcase-data.d.ts.map +1 -0
  2371. package/packages/app-core/src/components/plugins/showcase-data.js +461 -0
  2372. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.d.ts +7 -0
  2373. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.d.ts.map +1 -0
  2374. package/packages/app-core/src/components/policy-controls/ApprovedAddressesSection.js +73 -0
  2375. package/packages/app-core/src/components/policy-controls/AutoApproveSection.d.ts +7 -0
  2376. package/packages/app-core/src/components/policy-controls/AutoApproveSection.d.ts.map +1 -0
  2377. package/packages/app-core/src/components/policy-controls/AutoApproveSection.js +14 -0
  2378. package/packages/app-core/src/components/policy-controls/PolicyToggle.d.ts +15 -0
  2379. package/packages/app-core/src/components/policy-controls/PolicyToggle.d.ts.map +1 -0
  2380. package/packages/app-core/src/components/policy-controls/PolicyToggle.js +12 -0
  2381. package/packages/app-core/src/components/policy-controls/RateLimitSection.d.ts +7 -0
  2382. package/packages/app-core/src/components/policy-controls/RateLimitSection.d.ts.map +1 -0
  2383. package/packages/app-core/src/components/policy-controls/RateLimitSection.js +11 -0
  2384. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.d.ts +7 -0
  2385. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.d.ts.map +1 -0
  2386. package/packages/app-core/src/components/policy-controls/SpendingLimitSection.js +15 -0
  2387. package/packages/app-core/src/components/policy-controls/TimeWindowSection.d.ts +7 -0
  2388. package/packages/app-core/src/components/policy-controls/TimeWindowSection.d.ts.map +1 -0
  2389. package/packages/app-core/src/components/policy-controls/TimeWindowSection.js +40 -0
  2390. package/packages/app-core/src/components/policy-controls/constants.d.ts +11 -0
  2391. package/packages/app-core/src/components/policy-controls/constants.d.ts.map +1 -0
  2392. package/packages/app-core/src/components/policy-controls/constants.js +41 -0
  2393. package/packages/app-core/src/components/policy-controls/helpers.d.ts +12 -0
  2394. package/packages/app-core/src/components/policy-controls/helpers.d.ts.map +1 -0
  2395. package/packages/app-core/src/components/policy-controls/helpers.js +40 -0
  2396. package/packages/app-core/src/components/policy-controls/index.d.ts +10 -0
  2397. package/packages/app-core/src/components/policy-controls/index.d.ts.map +1 -0
  2398. package/packages/app-core/src/components/policy-controls/index.js +9 -0
  2399. package/packages/app-core/src/components/policy-controls/types.d.ts +58 -0
  2400. package/packages/app-core/src/components/policy-controls/types.d.ts.map +1 -0
  2401. package/packages/app-core/src/components/policy-controls/types.js +7 -0
  2402. package/packages/app-core/src/components/release-center/shared.d.ts +13 -0
  2403. package/packages/app-core/src/components/release-center/shared.d.ts.map +1 -0
  2404. package/packages/app-core/src/components/release-center/shared.js +38 -0
  2405. package/packages/app-core/src/components/release-center/types.d.ts +79 -0
  2406. package/packages/app-core/src/components/release-center/types.d.ts.map +1 -0
  2407. package/packages/app-core/src/components/release-center/types.js +5 -0
  2408. package/packages/app-core/src/components/settings/ApiKeyConfig.d.ts +21 -0
  2409. package/packages/app-core/src/components/settings/ApiKeyConfig.d.ts.map +1 -0
  2410. package/packages/app-core/src/components/settings/ApiKeyConfig.js +111 -0
  2411. package/packages/app-core/src/components/settings/AppearanceSettingsSection.d.ts +9 -0
  2412. package/packages/app-core/src/components/settings/AppearanceSettingsSection.d.ts.map +1 -0
  2413. package/packages/app-core/src/components/settings/AppearanceSettingsSection.js +232 -0
  2414. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.d.ts +7 -0
  2415. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.d.ts.map +1 -0
  2416. package/packages/app-core/src/components/settings/DesktopWorkspaceSection.js +502 -0
  2417. package/packages/app-core/src/components/settings/LearnedSkills.d.ts +16 -0
  2418. package/packages/app-core/src/components/settings/LearnedSkills.d.ts.map +1 -0
  2419. package/packages/app-core/src/components/settings/LearnedSkills.js +90 -0
  2420. package/packages/app-core/src/components/settings/MediaSettingsSection.d.ts +4 -0
  2421. package/packages/app-core/src/components/settings/MediaSettingsSection.d.ts.map +1 -0
  2422. package/packages/app-core/src/components/settings/MediaSettingsSection.js +163 -0
  2423. package/packages/app-core/src/components/settings/MusicPlayerSettingsPanel.d.ts +7 -0
  2424. package/packages/app-core/src/components/settings/MusicPlayerSettingsPanel.d.ts.map +1 -0
  2425. package/packages/app-core/src/components/settings/MusicPlayerSettingsPanel.js +94 -0
  2426. package/packages/app-core/src/components/settings/PermissionsSection.d.ts +8 -0
  2427. package/packages/app-core/src/components/settings/PermissionsSection.d.ts.map +1 -0
  2428. package/packages/app-core/src/components/settings/PermissionsSection.js +294 -0
  2429. package/packages/app-core/src/components/settings/PolicyControlsView.d.ts +2 -0
  2430. package/packages/app-core/src/components/settings/PolicyControlsView.d.ts.map +1 -0
  2431. package/packages/app-core/src/components/settings/PolicyControlsView.js +236 -0
  2432. package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts +33 -0
  2433. package/packages/app-core/src/components/settings/ProviderSwitcher.d.ts.map +1 -0
  2434. package/packages/app-core/src/components/settings/ProviderSwitcher.js +426 -0
  2435. package/packages/app-core/src/components/settings/SubscriptionStatus.d.ts +26 -0
  2436. package/packages/app-core/src/components/settings/SubscriptionStatus.d.ts.map +1 -0
  2437. package/packages/app-core/src/components/settings/SubscriptionStatus.js +272 -0
  2438. package/packages/app-core/src/components/settings/TrainingSettings.d.ts +19 -0
  2439. package/packages/app-core/src/components/settings/TrainingSettings.d.ts.map +1 -0
  2440. package/packages/app-core/src/components/settings/TrainingSettings.js +184 -0
  2441. package/packages/app-core/src/components/settings/VoiceConfigView.d.ts +5 -0
  2442. package/packages/app-core/src/components/settings/VoiceConfigView.d.ts.map +1 -0
  2443. package/packages/app-core/src/components/settings/VoiceConfigView.js +509 -0
  2444. package/packages/app-core/src/components/settings/cloud-model-schema.d.ts +26 -0
  2445. package/packages/app-core/src/components/settings/cloud-model-schema.d.ts.map +1 -0
  2446. package/packages/app-core/src/components/settings/cloud-model-schema.js +103 -0
  2447. package/packages/app-core/src/components/settings/media-settings-providers.d.ts +13 -0
  2448. package/packages/app-core/src/components/settings/media-settings-providers.d.ts.map +1 -0
  2449. package/packages/app-core/src/components/settings/media-settings-providers.js +352 -0
  2450. package/packages/app-core/src/components/settings/media-settings-types.d.ts +33 -0
  2451. package/packages/app-core/src/components/settings/media-settings-types.d.ts.map +1 -0
  2452. package/packages/app-core/src/components/settings/media-settings-types.js +266 -0
  2453. package/packages/app-core/src/components/settings/permission-controls.d.ts +37 -0
  2454. package/packages/app-core/src/components/settings/permission-controls.d.ts.map +1 -0
  2455. package/packages/app-core/src/components/settings/permission-controls.js +403 -0
  2456. package/packages/app-core/src/components/settings/permission-types.d.ts +44 -0
  2457. package/packages/app-core/src/components/settings/permission-types.d.ts.map +1 -0
  2458. package/packages/app-core/src/components/settings/permission-types.js +215 -0
  2459. package/packages/app-core/src/components/shared/LanguageDropdown.d.ts +24 -0
  2460. package/packages/app-core/src/components/shared/LanguageDropdown.d.ts.map +1 -0
  2461. package/packages/app-core/src/components/shared/LanguageDropdown.js +29 -0
  2462. package/packages/app-core/src/components/shared/ThemeToggle.d.ts +14 -0
  2463. package/packages/app-core/src/components/shared/ThemeToggle.d.ts.map +1 -0
  2464. package/packages/app-core/src/components/shared/ThemeToggle.js +11 -0
  2465. package/packages/app-core/src/components/shared/confirm-delete-control.d.ts +19 -0
  2466. package/packages/app-core/src/components/shared/confirm-delete-control.d.ts.map +1 -0
  2467. package/packages/app-core/src/components/shared/confirm-delete-control.js +22 -0
  2468. package/packages/app-core/src/components/shell/BugReportModal.d.ts +2 -0
  2469. package/packages/app-core/src/components/shell/BugReportModal.d.ts.map +1 -0
  2470. package/packages/app-core/src/components/shell/BugReportModal.js +354 -0
  2471. package/packages/app-core/src/components/shell/CommandPalette.d.ts +2 -0
  2472. package/packages/app-core/src/components/shell/CommandPalette.d.ts.map +1 -0
  2473. package/packages/app-core/src/components/shell/CommandPalette.js +185 -0
  2474. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.d.ts +2 -0
  2475. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.d.ts.map +1 -0
  2476. package/packages/app-core/src/components/shell/ComputerUseApprovalOverlay.js +171 -0
  2477. package/packages/app-core/src/components/shell/ConnectionFailedBanner.d.ts +6 -0
  2478. package/packages/app-core/src/components/shell/ConnectionFailedBanner.d.ts.map +1 -0
  2479. package/packages/app-core/src/components/shell/ConnectionFailedBanner.js +23 -0
  2480. package/packages/app-core/src/components/shell/ConnectionLostOverlay.d.ts +2 -0
  2481. package/packages/app-core/src/components/shell/ConnectionLostOverlay.d.ts.map +1 -0
  2482. package/packages/app-core/src/components/shell/ConnectionLostOverlay.js +53 -0
  2483. package/packages/app-core/src/components/shell/Header.d.ts +2 -0
  2484. package/packages/app-core/src/components/shell/Header.d.ts.map +1 -0
  2485. package/packages/app-core/src/components/shell/Header.js +1 -0
  2486. package/packages/app-core/src/components/shell/LoadingScreen.d.ts +13 -0
  2487. package/packages/app-core/src/components/shell/LoadingScreen.d.ts.map +1 -0
  2488. package/packages/app-core/src/components/shell/LoadingScreen.js +86 -0
  2489. package/packages/app-core/src/components/shell/PairingView.d.ts +2 -0
  2490. package/packages/app-core/src/components/shell/PairingView.d.ts.map +1 -0
  2491. package/packages/app-core/src/components/shell/PairingView.js +41 -0
  2492. package/packages/app-core/src/components/shell/RestartBanner.d.ts +2 -0
  2493. package/packages/app-core/src/components/shell/RestartBanner.d.ts.map +1 -0
  2494. package/packages/app-core/src/components/shell/RestartBanner.js +39 -0
  2495. package/packages/app-core/src/components/shell/ShellOverlays.d.ts +5 -0
  2496. package/packages/app-core/src/components/shell/ShellOverlays.d.ts.map +1 -0
  2497. package/packages/app-core/src/components/shell/ShellOverlays.js +15 -0
  2498. package/packages/app-core/src/components/shell/ShortcutsOverlay.d.ts +2 -0
  2499. package/packages/app-core/src/components/shell/ShortcutsOverlay.d.ts.map +1 -0
  2500. package/packages/app-core/src/components/shell/ShortcutsOverlay.js +58 -0
  2501. package/packages/app-core/src/components/shell/StartupFailureView.d.ts +8 -0
  2502. package/packages/app-core/src/components/shell/StartupFailureView.d.ts.map +1 -0
  2503. package/packages/app-core/src/components/shell/StartupFailureView.js +148 -0
  2504. package/packages/app-core/src/components/shell/StartupShell.d.ts +12 -0
  2505. package/packages/app-core/src/components/shell/StartupShell.d.ts.map +1 -0
  2506. package/packages/app-core/src/components/shell/StartupShell.js +139 -0
  2507. package/packages/app-core/src/components/shell/SystemWarningBanner.d.ts +6 -0
  2508. package/packages/app-core/src/components/shell/SystemWarningBanner.d.ts.map +1 -0
  2509. package/packages/app-core/src/components/shell/SystemWarningBanner.js +44 -0
  2510. package/packages/app-core/src/components/stream/StatusBar.d.ts +10 -0
  2511. package/packages/app-core/src/components/stream/StatusBar.d.ts.map +1 -0
  2512. package/packages/app-core/src/components/stream/StatusBar.js +65 -0
  2513. package/packages/app-core/src/components/stream/helpers.d.ts +15 -0
  2514. package/packages/app-core/src/components/stream/helpers.d.ts.map +1 -0
  2515. package/packages/app-core/src/components/stream/helpers.js +16 -0
  2516. package/packages/app-core/src/config/app-config.d.ts +119 -0
  2517. package/packages/app-core/src/config/app-config.d.ts.map +1 -0
  2518. package/packages/app-core/src/config/app-config.js +44 -0
  2519. package/packages/app-core/src/config/boot-config-react.d.ts +5 -0
  2520. package/packages/app-core/src/config/boot-config-react.d.ts.map +1 -0
  2521. package/packages/app-core/src/config/boot-config-react.js +7 -0
  2522. package/packages/app-core/src/config/boot-config-store.d.ts +236 -0
  2523. package/packages/app-core/src/config/boot-config-store.d.ts.map +1 -0
  2524. package/packages/app-core/src/config/boot-config-store.js +144 -0
  2525. package/packages/app-core/src/config/boot-config.d.ts +6 -0
  2526. package/packages/app-core/src/config/boot-config.d.ts.map +1 -0
  2527. package/packages/app-core/src/config/boot-config.js +5 -0
  2528. package/packages/app-core/src/config/branding.d.ts +55 -0
  2529. package/packages/app-core/src/config/branding.d.ts.map +1 -0
  2530. package/packages/app-core/src/config/branding.js +23 -0
  2531. package/packages/app-core/src/config/cloud-only.d.ts +6 -0
  2532. package/packages/app-core/src/config/cloud-only.d.ts.map +1 -0
  2533. package/packages/app-core/src/config/cloud-only.js +15 -0
  2534. package/packages/app-core/src/config/config-catalog.d.ts +376 -0
  2535. package/packages/app-core/src/config/config-catalog.d.ts.map +1 -0
  2536. package/packages/app-core/src/config/config-catalog.js +724 -0
  2537. package/packages/app-core/src/config/index.d.ts +12 -0
  2538. package/packages/app-core/src/config/index.d.ts.map +1 -0
  2539. package/packages/app-core/src/config/index.js +11 -0
  2540. package/packages/app-core/src/config/plugin-auto-enable.d.ts +5 -0
  2541. package/packages/app-core/src/config/plugin-auto-enable.d.ts.map +1 -0
  2542. package/packages/app-core/src/config/plugin-auto-enable.js +47 -0
  2543. package/packages/app-core/src/config/plugin-ui-spec.d.ts +35 -0
  2544. package/packages/app-core/src/config/plugin-ui-spec.d.ts.map +1 -0
  2545. package/packages/app-core/src/config/plugin-ui-spec.js +256 -0
  2546. package/packages/app-core/src/config/ui-spec.d.ts +164 -0
  2547. package/packages/app-core/src/config/ui-spec.d.ts.map +1 -0
  2548. package/packages/app-core/src/config/ui-spec.js +13 -0
  2549. package/packages/app-core/src/config/wechat-config.d.ts +8 -0
  2550. package/packages/app-core/src/config/wechat-config.d.ts.map +1 -0
  2551. package/packages/app-core/src/config/wechat-config.js +23 -0
  2552. package/packages/app-core/src/content-packs/apply-pack.d.ts +33 -0
  2553. package/packages/app-core/src/content-packs/apply-pack.d.ts.map +1 -0
  2554. package/packages/app-core/src/content-packs/apply-pack.js +96 -0
  2555. package/packages/app-core/src/content-packs/bundled-packs.d.ts +14 -0
  2556. package/packages/app-core/src/content-packs/bundled-packs.d.ts.map +1 -0
  2557. package/packages/app-core/src/content-packs/bundled-packs.js +106 -0
  2558. package/packages/app-core/src/content-packs/index.d.ts +4 -0
  2559. package/packages/app-core/src/content-packs/index.d.ts.map +1 -0
  2560. package/packages/app-core/src/content-packs/index.js +3 -0
  2561. package/packages/app-core/src/content-packs/load-pack.d.ts +34 -0
  2562. package/packages/app-core/src/content-packs/load-pack.d.ts.map +1 -0
  2563. package/packages/app-core/src/content-packs/load-pack.js +151 -0
  2564. package/packages/app-core/src/events/index.d.ts +61 -0
  2565. package/packages/app-core/src/events/index.d.ts.map +1 -0
  2566. package/packages/app-core/src/events/index.js +50 -0
  2567. package/packages/app-core/src/hooks/index.d.ts +14 -0
  2568. package/packages/app-core/src/hooks/index.d.ts.map +1 -0
  2569. package/packages/app-core/src/hooks/index.js +13 -0
  2570. package/packages/app-core/src/hooks/useActivityEvents.d.ts +20 -0
  2571. package/packages/app-core/src/hooks/useActivityEvents.d.ts.map +1 -0
  2572. package/packages/app-core/src/hooks/useActivityEvents.js +126 -0
  2573. package/packages/app-core/src/hooks/useBugReport.d.ts +26 -0
  2574. package/packages/app-core/src/hooks/useBugReport.d.ts.map +1 -0
  2575. package/packages/app-core/src/hooks/useBugReport.js +28 -0
  2576. package/packages/app-core/src/hooks/useCanvasWindow.d.ts +38 -0
  2577. package/packages/app-core/src/hooks/useCanvasWindow.d.ts.map +1 -0
  2578. package/packages/app-core/src/hooks/useCanvasWindow.js +277 -0
  2579. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.d.ts +12 -0
  2580. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.d.ts.map +1 -0
  2581. package/packages/app-core/src/hooks/useChatAvatarVoiceBridge.js +21 -0
  2582. package/packages/app-core/src/hooks/useContextMenu.d.ts +17 -0
  2583. package/packages/app-core/src/hooks/useContextMenu.d.ts.map +1 -0
  2584. package/packages/app-core/src/hooks/useContextMenu.js +142 -0
  2585. package/packages/app-core/src/hooks/useKeyboardShortcuts.d.ts +5 -0
  2586. package/packages/app-core/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  2587. package/packages/app-core/src/hooks/useKeyboardShortcuts.js +32 -0
  2588. package/packages/app-core/src/hooks/useMediaQuery.d.ts +4 -0
  2589. package/packages/app-core/src/hooks/useMediaQuery.d.ts.map +1 -0
  2590. package/packages/app-core/src/hooks/useMediaQuery.js +30 -0
  2591. package/packages/app-core/src/hooks/useMusicPlayer.d.ts +54 -0
  2592. package/packages/app-core/src/hooks/useMusicPlayer.d.ts.map +1 -0
  2593. package/packages/app-core/src/hooks/useMusicPlayer.js +117 -0
  2594. package/packages/app-core/src/hooks/useRenderGuard.d.ts +17 -0
  2595. package/packages/app-core/src/hooks/useRenderGuard.d.ts.map +1 -0
  2596. package/packages/app-core/src/hooks/useRenderGuard.js +36 -0
  2597. package/packages/app-core/src/hooks/useSignalPairing.d.ts +12 -0
  2598. package/packages/app-core/src/hooks/useSignalPairing.d.ts.map +1 -0
  2599. package/packages/app-core/src/hooks/useSignalPairing.js +129 -0
  2600. package/packages/app-core/src/hooks/useStreamPopoutNavigation.d.ts +3 -0
  2601. package/packages/app-core/src/hooks/useStreamPopoutNavigation.d.ts.map +1 -0
  2602. package/packages/app-core/src/hooks/useStreamPopoutNavigation.js +4 -0
  2603. package/packages/app-core/src/hooks/useVoiceChat.d.ts +37 -0
  2604. package/packages/app-core/src/hooks/useVoiceChat.d.ts.map +1 -0
  2605. package/packages/app-core/src/hooks/useVoiceChat.js +1310 -0
  2606. package/packages/app-core/src/hooks/useWhatsAppPairing.d.ts +12 -0
  2607. package/packages/app-core/src/hooks/useWhatsAppPairing.d.ts.map +1 -0
  2608. package/packages/app-core/src/hooks/useWhatsAppPairing.js +95 -0
  2609. package/packages/app-core/src/hooks/voice-chat-playback.d.ts +32 -0
  2610. package/packages/app-core/src/hooks/voice-chat-playback.d.ts.map +1 -0
  2611. package/packages/app-core/src/hooks/voice-chat-playback.js +201 -0
  2612. package/packages/app-core/src/hooks/voice-chat-recording.d.ts +6 -0
  2613. package/packages/app-core/src/hooks/voice-chat-recording.d.ts.map +1 -0
  2614. package/packages/app-core/src/hooks/voice-chat-recording.js +46 -0
  2615. package/packages/app-core/src/hooks/voice-chat-types.d.ts +193 -0
  2616. package/packages/app-core/src/hooks/voice-chat-types.d.ts.map +1 -0
  2617. package/packages/app-core/src/hooks/voice-chat-types.js +185 -0
  2618. package/packages/app-core/src/i18n/index.d.ts +7 -0
  2619. package/packages/app-core/src/i18n/index.d.ts.map +1 -0
  2620. package/packages/app-core/src/i18n/index.js +57 -0
  2621. package/packages/app-core/src/i18n/locales/en.json +2715 -0
  2622. package/packages/app-core/src/i18n/locales/es.json +2644 -0
  2623. package/packages/app-core/src/i18n/locales/ko.json +2644 -0
  2624. package/packages/app-core/src/i18n/locales/pt.json +2644 -0
  2625. package/packages/app-core/src/i18n/locales/tl.json +2644 -0
  2626. package/packages/app-core/src/i18n/locales/vi.json +2644 -0
  2627. package/packages/app-core/src/i18n/locales/zh-CN.json +2644 -0
  2628. package/packages/app-core/src/i18n/messages.d.ts +6 -0
  2629. package/packages/app-core/src/i18n/messages.d.ts.map +1 -0
  2630. package/packages/app-core/src/i18n/messages.js +26 -0
  2631. package/packages/app-core/src/index.d.ts +50 -0
  2632. package/packages/app-core/src/index.d.ts.map +1 -0
  2633. package/packages/app-core/src/index.js +48 -0
  2634. package/packages/app-core/src/navigation/index.d.ts +52 -0
  2635. package/packages/app-core/src/navigation/index.d.ts.map +1 -0
  2636. package/packages/app-core/src/navigation/index.js +354 -0
  2637. package/packages/app-core/src/onboarding/connection-flow.d.ts +80 -0
  2638. package/packages/app-core/src/onboarding/connection-flow.d.ts.map +1 -0
  2639. package/packages/app-core/src/onboarding/connection-flow.js +321 -0
  2640. package/packages/app-core/src/onboarding/flow.d.ts +66 -0
  2641. package/packages/app-core/src/onboarding/flow.d.ts.map +1 -0
  2642. package/packages/app-core/src/onboarding/flow.js +100 -0
  2643. package/packages/app-core/src/onboarding/server-target.d.ts +3 -0
  2644. package/packages/app-core/src/onboarding/server-target.d.ts.map +1 -0
  2645. package/packages/app-core/src/onboarding/server-target.js +10 -0
  2646. package/packages/app-core/src/onboarding/types.d.ts +95 -0
  2647. package/packages/app-core/src/onboarding/types.d.ts.map +1 -0
  2648. package/packages/app-core/src/onboarding/types.js +6 -0
  2649. package/packages/app-core/src/onboarding-config.d.ts +61 -0
  2650. package/packages/app-core/src/onboarding-config.d.ts.map +1 -0
  2651. package/packages/app-core/src/onboarding-config.js +166 -0
  2652. package/packages/app-core/src/platform/browser-launch.d.ts +2 -0
  2653. package/packages/app-core/src/platform/browser-launch.d.ts.map +1 -0
  2654. package/packages/app-core/src/platform/browser-launch.js +135 -0
  2655. package/packages/app-core/src/platform/cloud-preference-patch.d.ts +11 -0
  2656. package/packages/app-core/src/platform/cloud-preference-patch.d.ts.map +1 -0
  2657. package/packages/app-core/src/platform/cloud-preference-patch.js +86 -0
  2658. package/packages/app-core/src/platform/desktop-permissions-client.d.ts +3 -0
  2659. package/packages/app-core/src/platform/desktop-permissions-client.d.ts.map +1 -0
  2660. package/packages/app-core/src/platform/desktop-permissions-client.js +128 -0
  2661. package/packages/app-core/src/platform/index.d.ts +15 -0
  2662. package/packages/app-core/src/platform/index.d.ts.map +1 -0
  2663. package/packages/app-core/src/platform/index.js +23 -0
  2664. package/packages/app-core/src/platform/init.d.ts +38 -0
  2665. package/packages/app-core/src/platform/init.d.ts.map +1 -0
  2666. package/packages/app-core/src/platform/init.js +161 -0
  2667. package/packages/app-core/src/platform/is-native-server.d.ts +14 -0
  2668. package/packages/app-core/src/platform/is-native-server.d.ts.map +1 -0
  2669. package/packages/app-core/src/platform/is-native-server.js +16 -0
  2670. package/packages/app-core/src/platform/onboarding-reset.d.ts +11 -0
  2671. package/packages/app-core/src/platform/onboarding-reset.d.ts.map +1 -0
  2672. package/packages/app-core/src/platform/onboarding-reset.js +127 -0
  2673. package/packages/app-core/src/platform/types.d.ts +28 -0
  2674. package/packages/app-core/src/platform/types.d.ts.map +1 -0
  2675. package/packages/app-core/src/platform/types.js +1 -0
  2676. package/packages/app-core/src/platform/window-shell.d.ts +28 -0
  2677. package/packages/app-core/src/platform/window-shell.d.ts.map +1 -0
  2678. package/packages/app-core/src/platform/window-shell.js +73 -0
  2679. package/packages/app-core/src/providers/index.d.ts +26 -0
  2680. package/packages/app-core/src/providers/index.d.ts.map +1 -0
  2681. package/packages/app-core/src/providers/index.js +107 -0
  2682. package/packages/app-core/src/runtime/channel-plugin-map.d.ts +6 -0
  2683. package/packages/app-core/src/runtime/channel-plugin-map.d.ts.map +1 -0
  2684. package/packages/app-core/src/runtime/channel-plugin-map.js +10 -0
  2685. package/packages/app-core/src/runtime/plugin-manager-guard.d.ts +12 -0
  2686. package/packages/app-core/src/runtime/plugin-manager-guard.d.ts.map +1 -0
  2687. package/packages/app-core/src/runtime/plugin-manager-guard.js +82 -0
  2688. package/packages/app-core/src/security/agent-vault-id.d.ts +14 -0
  2689. package/packages/app-core/src/security/agent-vault-id.d.ts.map +1 -0
  2690. package/packages/app-core/src/security/agent-vault-id.js +32 -0
  2691. package/packages/app-core/src/security/platform-secure-store-node.d.ts +15 -0
  2692. package/packages/app-core/src/security/platform-secure-store-node.d.ts.map +1 -0
  2693. package/packages/app-core/src/security/platform-secure-store-node.js +296 -0
  2694. package/packages/app-core/src/security/platform-secure-store.d.ts +47 -0
  2695. package/packages/app-core/src/security/platform-secure-store.d.ts.map +1 -0
  2696. package/packages/app-core/src/security/platform-secure-store.js +10 -0
  2697. package/packages/app-core/src/services/local-inference/active-model.d.ts +45 -0
  2698. package/packages/app-core/src/services/local-inference/active-model.d.ts.map +1 -0
  2699. package/packages/app-core/src/services/local-inference/active-model.js +120 -0
  2700. package/packages/app-core/src/services/local-inference/device-bridge.d.ts +124 -0
  2701. package/packages/app-core/src/services/local-inference/device-bridge.d.ts.map +1 -0
  2702. package/packages/app-core/src/services/local-inference/device-bridge.js +643 -0
  2703. package/packages/app-core/src/services/local-inference/engine.d.ts +52 -0
  2704. package/packages/app-core/src/services/local-inference/engine.d.ts.map +1 -0
  2705. package/packages/app-core/src/services/local-inference/engine.js +138 -0
  2706. package/packages/app-core/src/services/local-inference/external-scanner.d.ts +17 -0
  2707. package/packages/app-core/src/services/local-inference/external-scanner.d.ts.map +1 -0
  2708. package/packages/app-core/src/services/local-inference/external-scanner.js +261 -0
  2709. package/packages/app-core/src/services/local-inference/handler-registry.d.ts +42 -0
  2710. package/packages/app-core/src/services/local-inference/handler-registry.d.ts.map +1 -0
  2711. package/packages/app-core/src/services/local-inference/handler-registry.js +127 -0
  2712. package/packages/app-core/src/services/local-inference/hardware.d.ts +26 -0
  2713. package/packages/app-core/src/services/local-inference/hardware.d.ts.map +1 -0
  2714. package/packages/app-core/src/services/local-inference/hardware.js +139 -0
  2715. package/packages/app-core/src/services/local-inference/paths.d.ts +17 -0
  2716. package/packages/app-core/src/services/local-inference/paths.d.ts.map +1 -0
  2717. package/packages/app-core/src/services/local-inference/paths.js +34 -0
  2718. package/packages/app-core/src/services/local-inference/providers.d.ts +61 -0
  2719. package/packages/app-core/src/services/local-inference/providers.d.ts.map +1 -0
  2720. package/packages/app-core/src/services/local-inference/providers.js +231 -0
  2721. package/packages/app-core/src/services/local-inference/registry.d.ts +35 -0
  2722. package/packages/app-core/src/services/local-inference/registry.d.ts.map +1 -0
  2723. package/packages/app-core/src/services/local-inference/registry.js +108 -0
  2724. package/packages/app-core/src/services/local-inference/routing-preferences.d.ts +29 -0
  2725. package/packages/app-core/src/services/local-inference/routing-preferences.d.ts.map +1 -0
  2726. package/packages/app-core/src/services/local-inference/routing-preferences.js +71 -0
  2727. package/packages/app-core/src/services/local-inference/types.d.ts +121 -0
  2728. package/packages/app-core/src/services/local-inference/types.d.ts.map +1 -0
  2729. package/packages/app-core/src/services/local-inference/types.js +14 -0
  2730. package/packages/app-core/src/services/local-inference/verify.d.ts +39 -0
  2731. package/packages/app-core/src/services/local-inference/verify.d.ts.map +1 -0
  2732. package/packages/app-core/src/services/local-inference/verify.js +104 -0
  2733. package/packages/app-core/src/services/plugin-installer.d.ts +93 -0
  2734. package/packages/app-core/src/services/plugin-installer.d.ts.map +1 -0
  2735. package/packages/app-core/src/services/plugin-installer.js +611 -0
  2736. package/packages/app-core/src/services/steward-sidecar.d.ts +6 -0
  2737. package/packages/app-core/src/services/steward-sidecar.d.ts.map +1 -0
  2738. package/packages/app-core/src/services/steward-sidecar.js +5 -0
  2739. package/packages/app-core/src/shell/DesktopOnboardingRuntime.d.ts +9 -0
  2740. package/packages/app-core/src/shell/DesktopOnboardingRuntime.d.ts.map +1 -0
  2741. package/packages/app-core/src/shell/DesktopOnboardingRuntime.js +10 -0
  2742. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.d.ts +2 -0
  2743. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.d.ts.map +1 -0
  2744. package/packages/app-core/src/shell/DesktopSurfaceNavigationRuntime.js +48 -0
  2745. package/packages/app-core/src/shell/DesktopTrayRuntime.d.ts +11 -0
  2746. package/packages/app-core/src/shell/DesktopTrayRuntime.d.ts.map +1 -0
  2747. package/packages/app-core/src/shell/DesktopTrayRuntime.js +277 -0
  2748. package/packages/app-core/src/shell/DetachedShellRoot.d.ts +10 -0
  2749. package/packages/app-core/src/shell/DetachedShellRoot.d.ts.map +1 -0
  2750. package/packages/app-core/src/shell/DetachedShellRoot.js +92 -0
  2751. package/packages/app-core/src/shell/index.d.ts +5 -0
  2752. package/packages/app-core/src/shell/index.d.ts.map +1 -0
  2753. package/packages/app-core/src/shell/index.js +4 -0
  2754. package/packages/app-core/src/state/AppContext.d.ts +13 -0
  2755. package/packages/app-core/src/state/AppContext.d.ts.map +1 -0
  2756. package/packages/app-core/src/state/AppContext.js +1852 -0
  2757. package/packages/app-core/src/state/ChatComposerContext.d.ts +28 -0
  2758. package/packages/app-core/src/state/ChatComposerContext.d.ts.map +1 -0
  2759. package/packages/app-core/src/state/ChatComposerContext.js +30 -0
  2760. package/packages/app-core/src/state/CompanionSceneConfigContext.d.ts +27 -0
  2761. package/packages/app-core/src/state/CompanionSceneConfigContext.d.ts.map +1 -0
  2762. package/packages/app-core/src/state/CompanionSceneConfigContext.js +32 -0
  2763. package/packages/app-core/src/state/PtySessionsContext.d.ts +15 -0
  2764. package/packages/app-core/src/state/PtySessionsContext.d.ts.map +1 -0
  2765. package/packages/app-core/src/state/PtySessionsContext.js +15 -0
  2766. package/packages/app-core/src/state/TranslationContext.d.ts +29 -0
  2767. package/packages/app-core/src/state/TranslationContext.d.ts.map +1 -0
  2768. package/packages/app-core/src/state/TranslationContext.js +61 -0
  2769. package/packages/app-core/src/state/action-notice.d.ts +7 -0
  2770. package/packages/app-core/src/state/action-notice.d.ts.map +1 -0
  2771. package/packages/app-core/src/state/action-notice.js +1 -0
  2772. package/packages/app-core/src/state/agent-profile-types.d.ts +29 -0
  2773. package/packages/app-core/src/state/agent-profile-types.d.ts.map +1 -0
  2774. package/packages/app-core/src/state/agent-profile-types.js +1 -0
  2775. package/packages/app-core/src/state/agent-profiles.d.ts +16 -0
  2776. package/packages/app-core/src/state/agent-profiles.d.ts.map +1 -0
  2777. package/packages/app-core/src/state/agent-profiles.js +119 -0
  2778. package/packages/app-core/src/state/agent-startup-timing.d.ts +15 -0
  2779. package/packages/app-core/src/state/agent-startup-timing.d.ts.map +1 -0
  2780. package/packages/app-core/src/state/agent-startup-timing.js +28 -0
  2781. package/packages/app-core/src/state/chat-conversation-guards.d.ts +4 -0
  2782. package/packages/app-core/src/state/chat-conversation-guards.d.ts.map +1 -0
  2783. package/packages/app-core/src/state/chat-conversation-guards.js +15 -0
  2784. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.d.ts +30 -0
  2785. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.d.ts.map +1 -0
  2786. package/packages/app-core/src/state/complete-reset-local-state-after-wipe.js +24 -0
  2787. package/packages/app-core/src/state/config-readers.d.ts +6 -0
  2788. package/packages/app-core/src/state/config-readers.d.ts.map +1 -0
  2789. package/packages/app-core/src/state/config-readers.js +16 -0
  2790. package/packages/app-core/src/state/handle-reset-applied-from-main.d.ts +31 -0
  2791. package/packages/app-core/src/state/handle-reset-applied-from-main.d.ts.map +1 -0
  2792. package/packages/app-core/src/state/handle-reset-applied-from-main.js +38 -0
  2793. package/packages/app-core/src/state/index.d.ts +14 -0
  2794. package/packages/app-core/src/state/index.d.ts.map +1 -0
  2795. package/packages/app-core/src/state/index.js +13 -0
  2796. package/packages/app-core/src/state/internal.d.ts +9 -0
  2797. package/packages/app-core/src/state/internal.d.ts.map +1 -0
  2798. package/packages/app-core/src/state/internal.js +9 -0
  2799. package/packages/app-core/src/state/navigation-events.d.ts +12 -0
  2800. package/packages/app-core/src/state/navigation-events.d.ts.map +1 -0
  2801. package/packages/app-core/src/state/navigation-events.js +25 -0
  2802. package/packages/app-core/src/state/onboarding-bootstrap.d.ts +28 -0
  2803. package/packages/app-core/src/state/onboarding-bootstrap.d.ts.map +1 -0
  2804. package/packages/app-core/src/state/onboarding-bootstrap.js +76 -0
  2805. package/packages/app-core/src/state/onboarding-resume.d.ts +9 -0
  2806. package/packages/app-core/src/state/onboarding-resume.d.ts.map +1 -0
  2807. package/packages/app-core/src/state/onboarding-resume.js +91 -0
  2808. package/packages/app-core/src/state/parsers.d.ts +33 -0
  2809. package/packages/app-core/src/state/parsers.d.ts.map +1 -0
  2810. package/packages/app-core/src/state/parsers.js +343 -0
  2811. package/packages/app-core/src/state/persistence.d.ts +90 -0
  2812. package/packages/app-core/src/state/persistence.d.ts.map +1 -0
  2813. package/packages/app-core/src/state/persistence.js +632 -0
  2814. package/packages/app-core/src/state/shell-routing.d.ts +12 -0
  2815. package/packages/app-core/src/state/shell-routing.d.ts.map +1 -0
  2816. package/packages/app-core/src/state/shell-routing.js +21 -0
  2817. package/packages/app-core/src/state/startup-coordinator.d.ts +137 -0
  2818. package/packages/app-core/src/state/startup-coordinator.d.ts.map +1 -0
  2819. package/packages/app-core/src/state/startup-coordinator.js +250 -0
  2820. package/packages/app-core/src/state/startup-phase-hydrate.d.ts +74 -0
  2821. package/packages/app-core/src/state/startup-phase-hydrate.d.ts.map +1 -0
  2822. package/packages/app-core/src/state/startup-phase-hydrate.js +503 -0
  2823. package/packages/app-core/src/state/startup-phase-poll.d.ts +60 -0
  2824. package/packages/app-core/src/state/startup-phase-poll.d.ts.map +1 -0
  2825. package/packages/app-core/src/state/startup-phase-poll.js +258 -0
  2826. package/packages/app-core/src/state/startup-phase-restore.d.ts +49 -0
  2827. package/packages/app-core/src/state/startup-phase-restore.d.ts.map +1 -0
  2828. package/packages/app-core/src/state/startup-phase-restore.js +146 -0
  2829. package/packages/app-core/src/state/startup-phase-runtime.d.ts +34 -0
  2830. package/packages/app-core/src/state/startup-phase-runtime.d.ts.map +1 -0
  2831. package/packages/app-core/src/state/startup-phase-runtime.js +126 -0
  2832. package/packages/app-core/src/state/types.d.ts +614 -0
  2833. package/packages/app-core/src/state/types.d.ts.map +1 -0
  2834. package/packages/app-core/src/state/types.js +62 -0
  2835. package/packages/app-core/src/state/ui-preferences.d.ts +3 -0
  2836. package/packages/app-core/src/state/ui-preferences.d.ts.map +1 -0
  2837. package/packages/app-core/src/state/ui-preferences.js +1 -0
  2838. package/packages/app-core/src/state/useApp.d.ts +4 -0
  2839. package/packages/app-core/src/state/useApp.d.ts.map +1 -0
  2840. package/packages/app-core/src/state/useApp.js +32 -0
  2841. package/packages/app-core/src/state/useCharacterState.d.ts +52 -0
  2842. package/packages/app-core/src/state/useCharacterState.d.ts.map +1 -0
  2843. package/packages/app-core/src/state/useCharacterState.js +205 -0
  2844. package/packages/app-core/src/state/useChatCallbacks.d.ts +168 -0
  2845. package/packages/app-core/src/state/useChatCallbacks.d.ts.map +1 -0
  2846. package/packages/app-core/src/state/useChatCallbacks.js +734 -0
  2847. package/packages/app-core/src/state/useChatLifecycle.d.ts +104 -0
  2848. package/packages/app-core/src/state/useChatLifecycle.d.ts.map +1 -0
  2849. package/packages/app-core/src/state/useChatLifecycle.js +582 -0
  2850. package/packages/app-core/src/state/useChatSend.d.ts +79 -0
  2851. package/packages/app-core/src/state/useChatSend.d.ts.map +1 -0
  2852. package/packages/app-core/src/state/useChatSend.js +791 -0
  2853. package/packages/app-core/src/state/useChatState.d.ts +144 -0
  2854. package/packages/app-core/src/state/useChatState.d.ts.map +1 -0
  2855. package/packages/app-core/src/state/useChatState.js +251 -0
  2856. package/packages/app-core/src/state/useCloudState.d.ts +71 -0
  2857. package/packages/app-core/src/state/useCloudState.d.ts.map +1 -0
  2858. package/packages/app-core/src/state/useCloudState.js +529 -0
  2859. package/packages/app-core/src/state/useDataLoaders.d.ts +88 -0
  2860. package/packages/app-core/src/state/useDataLoaders.d.ts.map +1 -0
  2861. package/packages/app-core/src/state/useDataLoaders.js +391 -0
  2862. package/packages/app-core/src/state/useDisplayPreferences.d.ts +23 -0
  2863. package/packages/app-core/src/state/useDisplayPreferences.d.ts.map +1 -0
  2864. package/packages/app-core/src/state/useDisplayPreferences.js +64 -0
  2865. package/packages/app-core/src/state/useExportImportState.d.ts +32 -0
  2866. package/packages/app-core/src/state/useExportImportState.d.ts.map +1 -0
  2867. package/packages/app-core/src/state/useExportImportState.js +140 -0
  2868. package/packages/app-core/src/state/useLifecycleState.d.ts +123 -0
  2869. package/packages/app-core/src/state/useLifecycleState.d.ts.map +1 -0
  2870. package/packages/app-core/src/state/useLifecycleState.js +258 -0
  2871. package/packages/app-core/src/state/useLogsState.d.ts +24 -0
  2872. package/packages/app-core/src/state/useLogsState.d.ts.map +1 -0
  2873. package/packages/app-core/src/state/useLogsState.js +87 -0
  2874. package/packages/app-core/src/state/useMiscUiState.d.ts +85 -0
  2875. package/packages/app-core/src/state/useMiscUiState.d.ts.map +1 -0
  2876. package/packages/app-core/src/state/useMiscUiState.js +144 -0
  2877. package/packages/app-core/src/state/useNavigationState.d.ts +29 -0
  2878. package/packages/app-core/src/state/useNavigationState.d.ts.map +1 -0
  2879. package/packages/app-core/src/state/useNavigationState.js +122 -0
  2880. package/packages/app-core/src/state/useOnboardingCallbacks.d.ts +99 -0
  2881. package/packages/app-core/src/state/useOnboardingCallbacks.d.ts.map +1 -0
  2882. package/packages/app-core/src/state/useOnboardingCallbacks.js +720 -0
  2883. package/packages/app-core/src/state/useOnboardingCompat.d.ts +60 -0
  2884. package/packages/app-core/src/state/useOnboardingCompat.d.ts.map +1 -0
  2885. package/packages/app-core/src/state/useOnboardingCompat.js +110 -0
  2886. package/packages/app-core/src/state/useOnboardingState.d.ts +126 -0
  2887. package/packages/app-core/src/state/useOnboardingState.d.ts.map +1 -0
  2888. package/packages/app-core/src/state/useOnboardingState.js +257 -0
  2889. package/packages/app-core/src/state/usePairingState.d.ts +21 -0
  2890. package/packages/app-core/src/state/usePairingState.d.ts.map +1 -0
  2891. package/packages/app-core/src/state/usePairingState.js +60 -0
  2892. package/packages/app-core/src/state/usePluginsSkillsState.d.ts +131 -0
  2893. package/packages/app-core/src/state/usePluginsSkillsState.d.ts.map +1 -0
  2894. package/packages/app-core/src/state/usePluginsSkillsState.js +572 -0
  2895. package/packages/app-core/src/state/useStartupCoordinator.d.ts +40 -0
  2896. package/packages/app-core/src/state/useStartupCoordinator.d.ts.map +1 -0
  2897. package/packages/app-core/src/state/useStartupCoordinator.js +177 -0
  2898. package/packages/app-core/src/state/useTriggersState.d.ts +29 -0
  2899. package/packages/app-core/src/state/useTriggersState.d.ts.map +1 -0
  2900. package/packages/app-core/src/state/useTriggersState.js +198 -0
  2901. package/packages/app-core/src/state/useWalletState.d.ts +97 -0
  2902. package/packages/app-core/src/state/useWalletState.d.ts.map +1 -0
  2903. package/packages/app-core/src/state/useWalletState.js +492 -0
  2904. package/packages/app-core/src/state/vrm.d.ts +16 -0
  2905. package/packages/app-core/src/state/vrm.d.ts.map +1 -0
  2906. package/packages/app-core/src/state/vrm.js +88 -0
  2907. package/packages/app-core/src/test-support/test-helpers.d.ts +111 -0
  2908. package/packages/app-core/src/test-support/test-helpers.d.ts.map +1 -0
  2909. package/packages/app-core/src/test-support/test-helpers.js +401 -0
  2910. package/packages/app-core/src/themes/apply-theme.d.ts +24 -0
  2911. package/packages/app-core/src/themes/apply-theme.d.ts.map +1 -0
  2912. package/packages/app-core/src/themes/apply-theme.js +131 -0
  2913. package/packages/app-core/src/types/index.d.ts +658 -0
  2914. package/packages/app-core/src/types/index.d.ts.map +1 -0
  2915. package/packages/app-core/src/types/index.js +4 -0
  2916. package/packages/app-core/src/utils/asset-url.d.ts +24 -0
  2917. package/packages/app-core/src/utils/asset-url.d.ts.map +1 -0
  2918. package/packages/app-core/src/utils/asset-url.js +137 -0
  2919. package/packages/app-core/src/utils/assistant-text.d.ts +2 -0
  2920. package/packages/app-core/src/utils/assistant-text.d.ts.map +1 -0
  2921. package/packages/app-core/src/utils/assistant-text.js +166 -0
  2922. package/packages/app-core/src/utils/character-message-examples.d.ts +7 -0
  2923. package/packages/app-core/src/utils/character-message-examples.d.ts.map +1 -0
  2924. package/packages/app-core/src/utils/character-message-examples.js +121 -0
  2925. package/packages/app-core/src/utils/clipboard.d.ts +2 -0
  2926. package/packages/app-core/src/utils/clipboard.d.ts.map +1 -0
  2927. package/packages/app-core/src/utils/clipboard.js +38 -0
  2928. package/packages/app-core/src/utils/desktop-bug-report.d.ts +35 -0
  2929. package/packages/app-core/src/utils/desktop-bug-report.d.ts.map +1 -0
  2930. package/packages/app-core/src/utils/desktop-bug-report.js +47 -0
  2931. package/packages/app-core/src/utils/desktop-dialogs.d.ts +24 -0
  2932. package/packages/app-core/src/utils/desktop-dialogs.d.ts.map +1 -0
  2933. package/packages/app-core/src/utils/desktop-dialogs.js +149 -0
  2934. package/packages/app-core/src/utils/desktop-workspace.d.ts +86 -0
  2935. package/packages/app-core/src/utils/desktop-workspace.d.ts.map +1 -0
  2936. package/packages/app-core/src/utils/desktop-workspace.js +162 -0
  2937. package/packages/app-core/src/utils/eliza-cloud-model-route.d.ts +3 -0
  2938. package/packages/app-core/src/utils/eliza-cloud-model-route.d.ts.map +1 -0
  2939. package/packages/app-core/src/utils/eliza-cloud-model-route.js +9 -0
  2940. package/packages/app-core/src/utils/eliza-globals.d.ts +15 -0
  2941. package/packages/app-core/src/utils/eliza-globals.d.ts.map +1 -0
  2942. package/packages/app-core/src/utils/eliza-globals.js +50 -0
  2943. package/packages/app-core/src/utils/env.d.ts +31 -0
  2944. package/packages/app-core/src/utils/env.d.ts.map +1 -0
  2945. package/packages/app-core/src/utils/env.js +51 -0
  2946. package/packages/app-core/src/utils/format.d.ts +66 -0
  2947. package/packages/app-core/src/utils/format.d.ts.map +1 -0
  2948. package/packages/app-core/src/utils/format.js +121 -0
  2949. package/packages/app-core/src/utils/index.d.ts +14 -0
  2950. package/packages/app-core/src/utils/index.d.ts.map +1 -0
  2951. package/packages/app-core/src/utils/index.js +13 -0
  2952. package/packages/app-core/src/utils/knowledge-upload-image.d.ts +27 -0
  2953. package/packages/app-core/src/utils/knowledge-upload-image.d.ts.map +1 -0
  2954. package/packages/app-core/src/utils/knowledge-upload-image.js +146 -0
  2955. package/packages/app-core/src/utils/labels.d.ts +6 -0
  2956. package/packages/app-core/src/utils/labels.d.ts.map +1 -0
  2957. package/packages/app-core/src/utils/labels.js +41 -0
  2958. package/packages/app-core/src/utils/name-tokens.d.ts +6 -0
  2959. package/packages/app-core/src/utils/name-tokens.d.ts.map +1 -0
  2960. package/packages/app-core/src/utils/name-tokens.js +9 -0
  2961. package/packages/app-core/src/utils/number-parsing.d.ts +44 -0
  2962. package/packages/app-core/src/utils/number-parsing.d.ts.map +1 -0
  2963. package/packages/app-core/src/utils/number-parsing.js +56 -0
  2964. package/packages/app-core/src/utils/openExternalUrl.d.ts +21 -0
  2965. package/packages/app-core/src/utils/openExternalUrl.d.ts.map +1 -0
  2966. package/packages/app-core/src/utils/openExternalUrl.js +67 -0
  2967. package/packages/app-core/src/utils/owner-name.d.ts +3 -0
  2968. package/packages/app-core/src/utils/owner-name.d.ts.map +1 -0
  2969. package/packages/app-core/src/utils/owner-name.js +7 -0
  2970. package/packages/app-core/src/utils/serialise.d.ts +12 -0
  2971. package/packages/app-core/src/utils/serialise.d.ts.map +1 -0
  2972. package/packages/app-core/src/utils/serialise.js +21 -0
  2973. package/packages/app-core/src/utils/streaming-text.d.ts +9 -0
  2974. package/packages/app-core/src/utils/streaming-text.d.ts.map +1 -0
  2975. package/packages/app-core/src/utils/streaming-text.js +112 -0
  2976. package/packages/app-core/src/utils/subscription-auth.d.ts +9 -0
  2977. package/packages/app-core/src/utils/subscription-auth.d.ts.map +1 -0
  2978. package/packages/app-core/src/utils/subscription-auth.js +48 -0
  2979. package/packages/app-core/src/utils/trajectory-format.d.ts +6 -0
  2980. package/packages/app-core/src/utils/trajectory-format.d.ts.map +1 -0
  2981. package/packages/app-core/src/utils/trajectory-format.js +43 -0
  2982. package/packages/app-core/src/utils/tts-debug.d.ts +9 -0
  2983. package/packages/app-core/src/utils/tts-debug.d.ts.map +1 -0
  2984. package/packages/app-core/src/utils/tts-debug.js +68 -0
  2985. package/packages/app-core/src/voice/character-voice-config.d.ts +9 -0
  2986. package/packages/app-core/src/voice/character-voice-config.d.ts.map +1 -0
  2987. package/packages/app-core/src/voice/character-voice-config.js +83 -0
  2988. package/packages/app-core/src/voice/index.d.ts +3 -0
  2989. package/packages/app-core/src/voice/index.d.ts.map +1 -0
  2990. package/packages/app-core/src/voice/index.js +2 -0
  2991. package/packages/app-core/src/voice/types.d.ts +40 -0
  2992. package/packages/app-core/src/voice/types.d.ts.map +1 -0
  2993. package/packages/app-core/src/voice/types.js +295 -0
  2994. package/packages/app-core/src/wallet-rpc.d.ts +9 -0
  2995. package/packages/app-core/src/wallet-rpc.d.ts.map +1 -0
  2996. package/packages/app-core/src/wallet-rpc.js +133 -0
  2997. package/packages/app-core/src/widgets/WidgetHost.d.ts +27 -0
  2998. package/packages/app-core/src/widgets/WidgetHost.d.ts.map +1 -0
  2999. package/packages/app-core/src/widgets/WidgetHost.js +54 -0
  3000. package/packages/app-core/src/widgets/index.d.ts +6 -0
  3001. package/packages/app-core/src/widgets/index.d.ts.map +1 -0
  3002. package/packages/app-core/src/widgets/index.js +2 -0
  3003. package/packages/app-core/src/widgets/registry.d.ts +58 -0
  3004. package/packages/app-core/src/widgets/registry.d.ts.map +1 -0
  3005. package/packages/app-core/src/widgets/registry.js +170 -0
  3006. package/packages/app-core/src/widgets/types.d.ts +50 -0
  3007. package/packages/app-core/src/widgets/types.d.ts.map +1 -0
  3008. package/packages/app-core/src/widgets/types.js +1 -0
  3009. package/packages/shared/src/connectors.d.ts +13 -0
  3010. package/packages/shared/src/connectors.d.ts.map +1 -0
  3011. package/packages/shared/src/connectors.js +96 -0
  3012. package/packages/shared/src/contracts/apps.d.ts +257 -0
  3013. package/packages/shared/src/contracts/apps.d.ts.map +1 -0
  3014. package/packages/shared/src/contracts/apps.js +188 -0
  3015. package/packages/shared/src/contracts/awareness.d.ts +38 -0
  3016. package/packages/shared/src/contracts/awareness.d.ts.map +1 -0
  3017. package/packages/shared/src/contracts/awareness.js +7 -0
  3018. package/packages/shared/src/contracts/cloud-topology.d.ts +13 -0
  3019. package/packages/shared/src/contracts/cloud-topology.d.ts.map +1 -0
  3020. package/packages/shared/src/contracts/cloud-topology.js +71 -0
  3021. package/packages/shared/src/contracts/config.d.ts +146 -0
  3022. package/packages/shared/src/contracts/config.d.ts.map +1 -0
  3023. package/packages/shared/src/contracts/config.js +4 -0
  3024. package/packages/shared/src/contracts/content-pack.d.ts +131 -0
  3025. package/packages/shared/src/contracts/content-pack.d.ts.map +1 -0
  3026. package/packages/shared/src/contracts/content-pack.js +102 -0
  3027. package/packages/shared/src/contracts/drop.d.ts +20 -0
  3028. package/packages/shared/src/contracts/drop.d.ts.map +1 -0
  3029. package/packages/shared/src/contracts/drop.js +4 -0
  3030. package/packages/shared/src/contracts/index.d.ts +13 -0
  3031. package/packages/shared/src/contracts/index.d.ts.map +1 -0
  3032. package/packages/shared/src/contracts/index.js +12 -0
  3033. package/packages/shared/src/contracts/lifeops-extensions.d.ts +181 -0
  3034. package/packages/shared/src/contracts/lifeops-extensions.d.ts.map +1 -0
  3035. package/packages/shared/src/contracts/lifeops-extensions.js +30 -0
  3036. package/packages/shared/src/contracts/lifeops.d.ts +1622 -0
  3037. package/packages/shared/src/contracts/lifeops.d.ts.map +1 -0
  3038. package/packages/shared/src/contracts/lifeops.js +368 -0
  3039. package/packages/shared/src/contracts/onboarding.d.ts +448 -0
  3040. package/packages/shared/src/contracts/onboarding.d.ts.map +1 -0
  3041. package/packages/shared/src/contracts/onboarding.js +1021 -0
  3042. package/packages/shared/src/contracts/permissions.d.ts +38 -0
  3043. package/packages/shared/src/contracts/permissions.d.ts.map +1 -0
  3044. package/packages/shared/src/contracts/permissions.js +4 -0
  3045. package/packages/shared/src/contracts/service-routing.d.ts +77 -0
  3046. package/packages/shared/src/contracts/service-routing.d.ts.map +1 -0
  3047. package/packages/shared/src/contracts/service-routing.js +225 -0
  3048. package/packages/shared/src/contracts/theme.d.ts +136 -0
  3049. package/packages/shared/src/contracts/theme.d.ts.map +1 -0
  3050. package/packages/shared/src/contracts/theme.js +133 -0
  3051. package/packages/shared/src/contracts/verification.d.ts +9 -0
  3052. package/packages/shared/src/contracts/verification.d.ts.map +1 -0
  3053. package/packages/shared/src/contracts/verification.js +4 -0
  3054. package/packages/shared/src/contracts/wallet.d.ts +553 -0
  3055. package/packages/shared/src/contracts/wallet.d.ts.map +1 -0
  3056. package/packages/shared/src/contracts/wallet.js +60 -0
  3057. package/packages/shared/src/env-utils.d.ts +5 -0
  3058. package/packages/shared/src/env-utils.d.ts.map +1 -0
  3059. package/packages/shared/src/env-utils.impl.d.ts +2 -0
  3060. package/packages/shared/src/env-utils.impl.d.ts.map +1 -0
  3061. package/packages/shared/src/env-utils.impl.js +9 -0
  3062. package/packages/shared/src/env-utils.js +4 -0
  3063. package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts +1054 -0
  3064. package/packages/shared/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
  3065. package/packages/shared/src/i18n/generated/validation-keyword-data.js +1057 -0
  3066. package/packages/shared/src/i18n/keyword-matching.d.ts +23 -0
  3067. package/packages/shared/src/i18n/keyword-matching.d.ts.map +1 -0
  3068. package/packages/shared/src/i18n/keyword-matching.js +112 -0
  3069. package/packages/shared/src/i18n/validation-keywords.d.ts +13 -0
  3070. package/packages/shared/src/i18n/validation-keywords.d.ts.map +1 -0
  3071. package/packages/shared/src/i18n/validation-keywords.js +12 -0
  3072. package/packages/shared/src/index.d.ts +13 -0
  3073. package/packages/shared/src/index.d.ts.map +1 -0
  3074. package/packages/shared/src/index.js +12 -0
  3075. package/packages/shared/src/onboarding-presets.characters.d.ts +22 -0
  3076. package/packages/shared/src/onboarding-presets.characters.d.ts.map +1 -0
  3077. package/packages/shared/src/onboarding-presets.characters.js +2616 -0
  3078. package/packages/shared/src/onboarding-presets.d.ts +40 -0
  3079. package/packages/shared/src/onboarding-presets.d.ts.map +1 -0
  3080. package/packages/shared/src/onboarding-presets.js +180 -0
  3081. package/packages/shared/src/onboarding-presets.shared.d.ts +2 -0
  3082. package/packages/shared/src/onboarding-presets.shared.d.ts.map +1 -0
  3083. package/packages/shared/src/onboarding-presets.shared.js +7 -0
  3084. package/packages/shared/src/restart.d.ts +27 -0
  3085. package/packages/shared/src/restart.d.ts.map +1 -0
  3086. package/packages/shared/src/restart.js +28 -0
  3087. package/packages/shared/src/runtime-env.d.ts +82 -0
  3088. package/packages/shared/src/runtime-env.d.ts.map +1 -0
  3089. package/packages/shared/src/runtime-env.js +241 -0
  3090. package/packages/shared/src/settings-debug.d.ts +20 -0
  3091. package/packages/shared/src/settings-debug.d.ts.map +1 -0
  3092. package/packages/shared/src/settings-debug.js +114 -0
  3093. package/packages/shared/src/spoken-text.d.ts +2 -0
  3094. package/packages/shared/src/spoken-text.d.ts.map +1 -0
  3095. package/packages/shared/src/spoken-text.js +56 -0
  3096. package/packages/shared/src/themes/presets.d.ts +15 -0
  3097. package/packages/shared/src/themes/presets.d.ts.map +1 -0
  3098. package/packages/shared/src/themes/presets.js +788 -0
  3099. package/packages/shared/src/types.d.ts +27 -0
  3100. package/packages/shared/src/types.d.ts.map +1 -0
  3101. package/packages/shared/src/types.js +1 -0
  3102. package/packages/shared/src/validation-keywords.d.ts +2 -0
  3103. package/packages/shared/src/validation-keywords.d.ts.map +1 -0
  3104. package/packages/shared/src/validation-keywords.js +1 -0
  3105. package/packages/skills/src/formatter.d.ts +44 -0
  3106. package/packages/skills/src/formatter.d.ts.map +1 -0
  3107. package/packages/skills/src/formatter.js +181 -0
  3108. package/packages/skills/src/frontmatter.d.ts +51 -0
  3109. package/packages/skills/src/frontmatter.d.ts.map +1 -0
  3110. package/packages/skills/src/frontmatter.js +155 -0
  3111. package/packages/skills/src/index.d.ts +29 -0
  3112. package/packages/skills/src/index.d.ts.map +1 -0
  3113. package/packages/skills/src/index.js +31 -0
  3114. package/packages/skills/src/loader.d.ts +33 -0
  3115. package/packages/skills/src/loader.d.ts.map +1 -0
  3116. package/packages/skills/src/loader.js +369 -0
  3117. package/packages/skills/src/resolver.d.ts +35 -0
  3118. package/packages/skills/src/resolver.d.ts.map +1 -0
  3119. package/packages/skills/src/resolver.js +143 -0
  3120. package/packages/skills/src/types.d.ts +238 -0
  3121. package/packages/skills/src/types.d.ts.map +1 -0
  3122. package/packages/skills/src/types.js +1 -0
  3123. package/packages/typescript/src/action-docs.d.ts +22 -0
  3124. package/packages/typescript/src/action-docs.d.ts.map +1 -0
  3125. package/packages/typescript/src/action-docs.js +95 -0
  3126. package/packages/typescript/src/actions.d.ts +29 -0
  3127. package/packages/typescript/src/actions.d.ts.map +1 -0
  3128. package/packages/typescript/src/actions.js +473 -0
  3129. package/packages/typescript/src/character-utils.d.ts +138 -0
  3130. package/packages/typescript/src/character-utils.d.ts.map +1 -0
  3131. package/packages/typescript/src/character-utils.js +271 -0
  3132. package/packages/typescript/src/character.d.ts +68 -0
  3133. package/packages/typescript/src/character.d.ts.map +1 -0
  3134. package/packages/typescript/src/character.js +155 -0
  3135. package/packages/typescript/src/connection.d.ts +45 -0
  3136. package/packages/typescript/src/connection.d.ts.map +1 -0
  3137. package/packages/typescript/src/connection.js +149 -0
  3138. package/packages/typescript/src/constants/index.d.ts +7 -0
  3139. package/packages/typescript/src/constants/index.d.ts.map +1 -0
  3140. package/packages/typescript/src/constants/index.js +6 -0
  3141. package/packages/typescript/src/constants/secrets.d.ts +99 -0
  3142. package/packages/typescript/src/constants/secrets.d.ts.map +1 -0
  3143. package/packages/typescript/src/constants/secrets.js +239 -0
  3144. package/packages/typescript/src/database/inMemoryAdapter.d.ts +285 -0
  3145. package/packages/typescript/src/database/inMemoryAdapter.d.ts.map +1 -0
  3146. package/packages/typescript/src/database/inMemoryAdapter.js +1149 -0
  3147. package/packages/typescript/src/database.d.ts +426 -0
  3148. package/packages/typescript/src/database.d.ts.map +1 -0
  3149. package/packages/typescript/src/database.js +24 -0
  3150. package/packages/typescript/src/entities.d.ts +11 -0
  3151. package/packages/typescript/src/entities.d.ts.map +1 -0
  3152. package/packages/typescript/src/entities.js +437 -0
  3153. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts +3 -0
  3154. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts.map +1 -0
  3155. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.js +142 -0
  3156. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts +3 -0
  3157. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts.map +1 -0
  3158. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.js +183 -0
  3159. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts +3 -0
  3160. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts.map +1 -0
  3161. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.js +148 -0
  3162. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts +21 -0
  3163. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts.map +1 -0
  3164. package/packages/typescript/src/features/advanced-capabilities/actions/index.js +20 -0
  3165. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts +3 -0
  3166. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts.map +1 -0
  3167. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.js +181 -0
  3168. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts +3 -0
  3169. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts.map +1 -0
  3170. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.js +102 -0
  3171. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts +13 -0
  3172. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts.map +1 -0
  3173. package/packages/typescript/src/features/advanced-capabilities/actions/roles.js +317 -0
  3174. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts +3 -0
  3175. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts.map +1 -0
  3176. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.js +135 -0
  3177. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts +3 -0
  3178. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts.map +1 -0
  3179. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.js +176 -0
  3180. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts +15 -0
  3181. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts.map +1 -0
  3182. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.js +476 -0
  3183. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts +22 -0
  3184. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts.map +1 -0
  3185. package/packages/typescript/src/features/advanced-capabilities/actions/settings.js +823 -0
  3186. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts +3 -0
  3187. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts.map +1 -0
  3188. package/packages/typescript/src/features/advanced-capabilities/actions/think.js +84 -0
  3189. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts +3 -0
  3190. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts.map +1 -0
  3191. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.js +134 -0
  3192. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts +3 -0
  3193. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts.map +1 -0
  3194. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.js +193 -0
  3195. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts +3 -0
  3196. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts.map +1 -0
  3197. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.js +199 -0
  3198. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts +43 -0
  3199. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts.map +1 -0
  3200. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.js +372 -0
  3201. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts +4 -0
  3202. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts.map +1 -0
  3203. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.js +150 -0
  3204. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts +4 -0
  3205. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts.map +1 -0
  3206. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.js +136 -0
  3207. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts +4 -0
  3208. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts.map +1 -0
  3209. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.js +84 -0
  3210. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts +4 -0
  3211. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts.map +1 -0
  3212. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.js +112 -0
  3213. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts +16 -0
  3214. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts.map +1 -0
  3215. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.js +192 -0
  3216. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts +4 -0
  3217. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts.map +1 -0
  3218. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.js +138 -0
  3219. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts +4 -0
  3220. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts.map +1 -0
  3221. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.js +96 -0
  3222. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts +4 -0
  3223. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts.map +1 -0
  3224. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.js +139 -0
  3225. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts +4 -0
  3226. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts.map +1 -0
  3227. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.js +138 -0
  3228. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts +39 -0
  3229. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts.map +1 -0
  3230. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.js +78 -0
  3231. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts +4 -0
  3232. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts.map +1 -0
  3233. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.js +62 -0
  3234. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts +16 -0
  3235. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts.map +1 -0
  3236. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.js +162 -0
  3237. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts +65 -0
  3238. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts.map +1 -0
  3239. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.js +352 -0
  3240. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts +24 -0
  3241. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts.map +1 -0
  3242. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.js +63 -0
  3243. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts +29 -0
  3244. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts.map +1 -0
  3245. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.js +195 -0
  3246. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts +15 -0
  3247. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts.map +1 -0
  3248. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.js +164 -0
  3249. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts +92 -0
  3250. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts.map +1 -0
  3251. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.js +4 -0
  3252. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.d.ts +20 -0
  3253. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.d.ts.map +1 -0
  3254. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.js +362 -0
  3255. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts +11 -0
  3256. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts.map +1 -0
  3257. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.js +10 -0
  3258. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts +3 -0
  3259. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts.map +1 -0
  3260. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.js +633 -0
  3261. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts +3 -0
  3262. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts.map +1 -0
  3263. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.js +640 -0
  3264. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts +25 -0
  3265. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts.map +1 -0
  3266. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.js +362 -0
  3267. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts +21 -0
  3268. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts.map +1 -0
  3269. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.js +541 -0
  3270. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts +12 -0
  3271. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts.map +1 -0
  3272. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.js +14 -0
  3273. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts +3 -0
  3274. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts.map +1 -0
  3275. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.js +70 -0
  3276. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts +3 -0
  3277. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts.map +1 -0
  3278. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.js +256 -0
  3279. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts +12 -0
  3280. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts.map +1 -0
  3281. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.js +41 -0
  3282. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts +49 -0
  3283. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts.map +1 -0
  3284. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.js +78 -0
  3285. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts +159 -0
  3286. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts.map +1 -0
  3287. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.js +192 -0
  3288. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts +10 -0
  3289. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts.map +1 -0
  3290. package/packages/typescript/src/features/advanced-capabilities/experience/index.js +8 -0
  3291. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts +3 -0
  3292. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts.map +1 -0
  3293. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.js +51 -0
  3294. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts +46 -0
  3295. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts.map +1 -0
  3296. package/packages/typescript/src/features/advanced-capabilities/experience/service.js +569 -0
  3297. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts +95 -0
  3298. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts.map +1 -0
  3299. package/packages/typescript/src/features/advanced-capabilities/experience/types.js +22 -0
  3300. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts +34 -0
  3301. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts.map +1 -0
  3302. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.js +106 -0
  3303. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts +25 -0
  3304. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts.map +1 -0
  3305. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.js +116 -0
  3306. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts +13 -0
  3307. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts.map +1 -0
  3308. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.js +152 -0
  3309. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts +101 -0
  3310. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts.map +1 -0
  3311. package/packages/typescript/src/features/advanced-capabilities/form/builder.js +362 -0
  3312. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts +16 -0
  3313. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts.map +1 -0
  3314. package/packages/typescript/src/features/advanced-capabilities/form/builtins.js +245 -0
  3315. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts +32 -0
  3316. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts.map +1 -0
  3317. package/packages/typescript/src/features/advanced-capabilities/form/defaults.js +98 -0
  3318. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts +12 -0
  3319. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts.map +1 -0
  3320. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.js +231 -0
  3321. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts +24 -0
  3322. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts.map +1 -0
  3323. package/packages/typescript/src/features/advanced-capabilities/form/extraction.js +319 -0
  3324. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts +22 -0
  3325. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts.map +1 -0
  3326. package/packages/typescript/src/features/advanced-capabilities/form/index.js +52 -0
  3327. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts +41 -0
  3328. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts.map +1 -0
  3329. package/packages/typescript/src/features/advanced-capabilities/form/intent.js +119 -0
  3330. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts +11 -0
  3331. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts.map +1 -0
  3332. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.js +166 -0
  3333. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts +66 -0
  3334. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts.map +1 -0
  3335. package/packages/typescript/src/features/advanced-capabilities/form/service.js +912 -0
  3336. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts +26 -0
  3337. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts.map +1 -0
  3338. package/packages/typescript/src/features/advanced-capabilities/form/storage.js +228 -0
  3339. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts +10 -0
  3340. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts.map +1 -0
  3341. package/packages/typescript/src/features/advanced-capabilities/form/template.js +56 -0
  3342. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts +40 -0
  3343. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts.map +1 -0
  3344. package/packages/typescript/src/features/advanced-capabilities/form/ttl.js +107 -0
  3345. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts +589 -0
  3346. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts.map +1 -0
  3347. package/packages/typescript/src/features/advanced-capabilities/form/types.js +71 -0
  3348. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts +24 -0
  3349. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts.map +1 -0
  3350. package/packages/typescript/src/features/advanced-capabilities/form/validation.js +311 -0
  3351. package/packages/typescript/src/features/advanced-capabilities/index.d.ts +47 -0
  3352. package/packages/typescript/src/features/advanced-capabilities/index.d.ts.map +1 -0
  3353. package/packages/typescript/src/features/advanced-capabilities/index.js +114 -0
  3354. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts +7 -0
  3355. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts.map +1 -0
  3356. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.js +1299 -0
  3357. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts +53 -0
  3358. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts.map +1 -0
  3359. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.js +429 -0
  3360. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts +10 -0
  3361. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts.map +1 -0
  3362. package/packages/typescript/src/features/advanced-capabilities/personality/index.js +8 -0
  3363. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts +8 -0
  3364. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts.map +1 -0
  3365. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.js +57 -0
  3366. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts +71 -0
  3367. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts.map +1 -0
  3368. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.js +498 -0
  3369. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts +18 -0
  3370. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts.map +1 -0
  3371. package/packages/typescript/src/features/advanced-capabilities/personality/types.js +8 -0
  3372. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts +3 -0
  3373. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts.map +1 -0
  3374. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.js +77 -0
  3375. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts +11 -0
  3376. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts.map +1 -0
  3377. package/packages/typescript/src/features/advanced-capabilities/providers/facts.js +162 -0
  3378. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts +3 -0
  3379. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts.map +1 -0
  3380. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.js +112 -0
  3381. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts +13 -0
  3382. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts.map +1 -0
  3383. package/packages/typescript/src/features/advanced-capabilities/providers/index.js +12 -0
  3384. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts +9 -0
  3385. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts.map +1 -0
  3386. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.js +83 -0
  3387. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts +15 -0
  3388. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts.map +1 -0
  3389. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.js +125 -0
  3390. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts +19 -0
  3391. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts.map +1 -0
  3392. package/packages/typescript/src/features/advanced-capabilities/providers/roles.js +180 -0
  3393. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts +7 -0
  3394. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts.map +1 -0
  3395. package/packages/typescript/src/features/advanced-capabilities/providers/settings.js +294 -0
  3396. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts +3 -0
  3397. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts.map +1 -0
  3398. package/packages/typescript/src/features/advanced-memory/evaluators/index.js +2 -0
  3399. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts +3 -0
  3400. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts.map +1 -0
  3401. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.js +198 -0
  3402. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts +3 -0
  3403. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts.map +1 -0
  3404. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.js +240 -0
  3405. package/packages/typescript/src/features/advanced-memory/index.d.ts +16 -0
  3406. package/packages/typescript/src/features/advanced-memory/index.d.ts.map +1 -0
  3407. package/packages/typescript/src/features/advanced-memory/index.js +26 -0
  3408. package/packages/typescript/src/features/advanced-memory/prompts.d.ts +2 -0
  3409. package/packages/typescript/src/features/advanced-memory/prompts.d.ts.map +1 -0
  3410. package/packages/typescript/src/features/advanced-memory/prompts.js +1 -0
  3411. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts +3 -0
  3412. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts.map +1 -0
  3413. package/packages/typescript/src/features/advanced-memory/providers/context-summary.js +85 -0
  3414. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts +3 -0
  3415. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts.map +1 -0
  3416. package/packages/typescript/src/features/advanced-memory/providers/index.js +2 -0
  3417. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts +3 -0
  3418. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts.map +1 -0
  3419. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.js +92 -0
  3420. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts +5 -0
  3421. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts.map +1 -0
  3422. package/packages/typescript/src/features/advanced-memory/schemas/index.js +3 -0
  3423. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts +10 -0
  3424. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts.map +1 -0
  3425. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.js +65 -0
  3426. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts +10 -0
  3427. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts.map +1 -0
  3428. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.js +45 -0
  3429. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts +10 -0
  3430. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts.map +1 -0
  3431. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.js +66 -0
  3432. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts +38 -0
  3433. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts.map +1 -0
  3434. package/packages/typescript/src/features/advanced-memory/services/memory-service.js +367 -0
  3435. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts +10 -0
  3436. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts.map +1 -0
  3437. package/packages/typescript/src/features/advanced-memory/trajectory.js +33 -0
  3438. package/packages/typescript/src/features/advanced-memory/types.d.ts +68 -0
  3439. package/packages/typescript/src/features/advanced-memory/types.d.ts.map +1 -0
  3440. package/packages/typescript/src/features/advanced-memory/types.js +6 -0
  3441. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts +6 -0
  3442. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts.map +1 -0
  3443. package/packages/typescript/src/features/advanced-planning/actions/chain-example.js +181 -0
  3444. package/packages/typescript/src/features/advanced-planning/index.d.ts +5 -0
  3445. package/packages/typescript/src/features/advanced-planning/index.d.ts.map +1 -0
  3446. package/packages/typescript/src/features/advanced-planning/index.js +20 -0
  3447. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts +3 -0
  3448. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts.map +1 -0
  3449. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.js +105 -0
  3450. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts +77 -0
  3451. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts.map +1 -0
  3452. package/packages/typescript/src/features/advanced-planning/services/planning-service.js +875 -0
  3453. package/packages/typescript/src/features/advanced-planning/types.d.ts +78 -0
  3454. package/packages/typescript/src/features/advanced-planning/types.d.ts.map +1 -0
  3455. package/packages/typescript/src/features/advanced-planning/types.js +1 -0
  3456. package/packages/typescript/src/features/autonomy/action.d.ts +14 -0
  3457. package/packages/typescript/src/features/autonomy/action.d.ts.map +1 -0
  3458. package/packages/typescript/src/features/autonomy/action.js +177 -0
  3459. package/packages/typescript/src/features/autonomy/execution-facade.d.ts +22 -0
  3460. package/packages/typescript/src/features/autonomy/execution-facade.d.ts.map +1 -0
  3461. package/packages/typescript/src/features/autonomy/execution-facade.js +150 -0
  3462. package/packages/typescript/src/features/autonomy/index.d.ts +11 -0
  3463. package/packages/typescript/src/features/autonomy/index.d.ts.map +1 -0
  3464. package/packages/typescript/src/features/autonomy/index.js +13 -0
  3465. package/packages/typescript/src/features/autonomy/providers.d.ts +21 -0
  3466. package/packages/typescript/src/features/autonomy/providers.d.ts.map +1 -0
  3467. package/packages/typescript/src/features/autonomy/providers.js +154 -0
  3468. package/packages/typescript/src/features/autonomy/routes.d.ts +11 -0
  3469. package/packages/typescript/src/features/autonomy/routes.d.ts.map +1 -0
  3470. package/packages/typescript/src/features/autonomy/routes.js +158 -0
  3471. package/packages/typescript/src/features/autonomy/service.d.ts +138 -0
  3472. package/packages/typescript/src/features/autonomy/service.d.ts.map +1 -0
  3473. package/packages/typescript/src/features/autonomy/service.js +813 -0
  3474. package/packages/typescript/src/features/autonomy/types.d.ts +31 -0
  3475. package/packages/typescript/src/features/autonomy/types.d.ts.map +1 -0
  3476. package/packages/typescript/src/features/autonomy/types.js +6 -0
  3477. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts +4 -0
  3478. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts.map +1 -0
  3479. package/packages/typescript/src/features/basic-capabilities/actions/choice.js +278 -0
  3480. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts +3 -0
  3481. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts.map +1 -0
  3482. package/packages/typescript/src/features/basic-capabilities/actions/ignore.js +23 -0
  3483. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts +10 -0
  3484. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts.map +1 -0
  3485. package/packages/typescript/src/features/basic-capabilities/actions/index.js +9 -0
  3486. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts +3 -0
  3487. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts.map +1 -0
  3488. package/packages/typescript/src/features/basic-capabilities/actions/none.js +26 -0
  3489. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts +3 -0
  3490. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts.map +1 -0
  3491. package/packages/typescript/src/features/basic-capabilities/actions/reply.js +80 -0
  3492. package/packages/typescript/src/features/basic-capabilities/index.d.ts +108 -0
  3493. package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -0
  3494. package/packages/typescript/src/features/basic-capabilities/index.js +1026 -0
  3495. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts +7 -0
  3496. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts.map +1 -0
  3497. package/packages/typescript/src/features/basic-capabilities/providers/actionState.js +232 -0
  3498. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts +35 -0
  3499. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts.map +1 -0
  3500. package/packages/typescript/src/features/basic-capabilities/providers/actions.js +104 -0
  3501. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts +20 -0
  3502. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts.map +1 -0
  3503. package/packages/typescript/src/features/basic-capabilities/providers/attachments.js +94 -0
  3504. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts +17 -0
  3505. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts.map +1 -0
  3506. package/packages/typescript/src/features/basic-capabilities/providers/character.js +190 -0
  3507. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts +11 -0
  3508. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts.map +1 -0
  3509. package/packages/typescript/src/features/basic-capabilities/providers/choice.js +86 -0
  3510. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts +12 -0
  3511. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts.map +1 -0
  3512. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.js +50 -0
  3513. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts +11 -0
  3514. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts.map +1 -0
  3515. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.js +56 -0
  3516. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts +7 -0
  3517. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts.map +1 -0
  3518. package/packages/typescript/src/features/basic-capabilities/providers/entities.js +39 -0
  3519. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts +27 -0
  3520. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts.map +1 -0
  3521. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.js +107 -0
  3522. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts +19 -0
  3523. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts.map +1 -0
  3524. package/packages/typescript/src/features/basic-capabilities/providers/index.js +18 -0
  3525. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts +5 -0
  3526. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts.map +1 -0
  3527. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.js +22 -0
  3528. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts +18 -0
  3529. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts.map +1 -0
  3530. package/packages/typescript/src/features/basic-capabilities/providers/providers.js +75 -0
  3531. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts +14 -0
  3532. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts.map +1 -0
  3533. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.js +323 -0
  3534. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts +12 -0
  3535. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts.map +1 -0
  3536. package/packages/typescript/src/features/basic-capabilities/providers/time.js +36 -0
  3537. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts +8 -0
  3538. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts.map +1 -0
  3539. package/packages/typescript/src/features/basic-capabilities/providers/world.js +212 -0
  3540. package/packages/typescript/src/features/index.d.ts +58 -0
  3541. package/packages/typescript/src/features/index.d.ts.map +1 -0
  3542. package/packages/typescript/src/features/index.js +155 -0
  3543. package/packages/typescript/src/features/knowledge/actions.d.ts +5 -0
  3544. package/packages/typescript/src/features/knowledge/actions.d.ts.map +1 -0
  3545. package/packages/typescript/src/features/knowledge/actions.js +269 -0
  3546. package/packages/typescript/src/features/knowledge/config.d.ts +5 -0
  3547. package/packages/typescript/src/features/knowledge/config.d.ts.map +1 -0
  3548. package/packages/typescript/src/features/knowledge/config.js +147 -0
  3549. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts +53 -0
  3550. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts.map +1 -0
  3551. package/packages/typescript/src/features/knowledge/ctx-embeddings.js +412 -0
  3552. package/packages/typescript/src/features/knowledge/docs-loader.d.ts +9 -0
  3553. package/packages/typescript/src/features/knowledge/docs-loader.d.ts.map +1 -0
  3554. package/packages/typescript/src/features/knowledge/docs-loader.js +202 -0
  3555. package/packages/typescript/src/features/knowledge/document-processor.d.ts +26 -0
  3556. package/packages/typescript/src/features/knowledge/document-processor.d.ts.map +1 -0
  3557. package/packages/typescript/src/features/knowledge/document-processor.js +618 -0
  3558. package/packages/typescript/src/features/knowledge/documents-provider.d.ts +3 -0
  3559. package/packages/typescript/src/features/knowledge/documents-provider.d.ts.map +1 -0
  3560. package/packages/typescript/src/features/knowledge/documents-provider.js +107 -0
  3561. package/packages/typescript/src/features/knowledge/index.d.ts +16 -0
  3562. package/packages/typescript/src/features/knowledge/index.d.ts.map +1 -0
  3563. package/packages/typescript/src/features/knowledge/index.js +29 -0
  3564. package/packages/typescript/src/features/knowledge/llm.d.ts +27 -0
  3565. package/packages/typescript/src/features/knowledge/llm.d.ts.map +1 -0
  3566. package/packages/typescript/src/features/knowledge/llm.js +444 -0
  3567. package/packages/typescript/src/features/knowledge/provider.d.ts +3 -0
  3568. package/packages/typescript/src/features/knowledge/provider.d.ts.map +1 -0
  3569. package/packages/typescript/src/features/knowledge/provider.js +62 -0
  3570. package/packages/typescript/src/features/knowledge/service.d.ts +76 -0
  3571. package/packages/typescript/src/features/knowledge/service.d.ts.map +1 -0
  3572. package/packages/typescript/src/features/knowledge/service.js +511 -0
  3573. package/packages/typescript/src/features/knowledge/types.d.ts +144 -0
  3574. package/packages/typescript/src/features/knowledge/types.d.ts.map +1 -0
  3575. package/packages/typescript/src/features/knowledge/types.js +57 -0
  3576. package/packages/typescript/src/features/knowledge/utils.d.ts +17 -0
  3577. package/packages/typescript/src/features/knowledge/utils.d.ts.map +1 -0
  3578. package/packages/typescript/src/features/knowledge/utils.js +313 -0
  3579. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts +3 -0
  3580. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts.map +1 -0
  3581. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.js +65 -0
  3582. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts +3 -0
  3583. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts.map +1 -0
  3584. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.js +63 -0
  3585. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts +4 -0
  3586. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts.map +1 -0
  3587. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.js +232 -0
  3588. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts +28 -0
  3589. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts.map +1 -0
  3590. package/packages/typescript/src/features/plugin-manager/coreExtensions.js +54 -0
  3591. package/packages/typescript/src/features/plugin-manager/index.d.ts +25 -0
  3592. package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -0
  3593. package/packages/typescript/src/features/plugin-manager/index.js +53 -0
  3594. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts +5 -0
  3595. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts.map +1 -0
  3596. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.js +104 -0
  3597. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts +5 -0
  3598. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts.map +1 -0
  3599. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.js +105 -0
  3600. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts +5 -0
  3601. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts.map +1 -0
  3602. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.js +93 -0
  3603. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts +9 -0
  3604. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts.map +1 -0
  3605. package/packages/typescript/src/features/plugin-manager/providers/relevance.js +224 -0
  3606. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts +76 -0
  3607. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts.map +1 -0
  3608. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.js +479 -0
  3609. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts +31 -0
  3610. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts.map +1 -0
  3611. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.js +57 -0
  3612. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts +68 -0
  3613. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts.map +1 -0
  3614. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.js +1007 -0
  3615. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts +84 -0
  3616. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts.map +1 -0
  3617. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.js +402 -0
  3618. package/packages/typescript/src/features/plugin-manager/types.d.ts +142 -0
  3619. package/packages/typescript/src/features/plugin-manager/types.d.ts.map +1 -0
  3620. package/packages/typescript/src/features/plugin-manager/types.js +13 -0
  3621. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts +4 -0
  3622. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts.map +1 -0
  3623. package/packages/typescript/src/features/plugin-manager/utils/paths.js +32 -0
  3624. package/packages/typescript/src/features/secrets/actions/index.d.ts +7 -0
  3625. package/packages/typescript/src/features/secrets/actions/index.d.ts.map +1 -0
  3626. package/packages/typescript/src/features/secrets/actions/index.js +6 -0
  3627. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts +12 -0
  3628. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts.map +1 -0
  3629. package/packages/typescript/src/features/secrets/actions/manage-secret.js +278 -0
  3630. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts +3 -0
  3631. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts.map +1 -0
  3632. package/packages/typescript/src/features/secrets/actions/request-secret.js +105 -0
  3633. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts +12 -0
  3634. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts.map +1 -0
  3635. package/packages/typescript/src/features/secrets/actions/set-secret.js +223 -0
  3636. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts +184 -0
  3637. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts.map +1 -0
  3638. package/packages/typescript/src/features/secrets/crypto/encryption.js +373 -0
  3639. package/packages/typescript/src/features/secrets/crypto/index.d.ts +5 -0
  3640. package/packages/typescript/src/features/secrets/crypto/index.d.ts.map +1 -0
  3641. package/packages/typescript/src/features/secrets/crypto/index.js +16 -0
  3642. package/packages/typescript/src/features/secrets/onboarding/action.d.ts +12 -0
  3643. package/packages/typescript/src/features/secrets/onboarding/action.d.ts.map +1 -0
  3644. package/packages/typescript/src/features/secrets/onboarding/action.js +337 -0
  3645. package/packages/typescript/src/features/secrets/onboarding/config.d.ts +99 -0
  3646. package/packages/typescript/src/features/secrets/onboarding/config.d.ts.map +1 -0
  3647. package/packages/typescript/src/features/secrets/onboarding/config.js +240 -0
  3648. package/packages/typescript/src/features/secrets/onboarding/index.d.ts +13 -0
  3649. package/packages/typescript/src/features/secrets/onboarding/index.d.ts.map +1 -0
  3650. package/packages/typescript/src/features/secrets/onboarding/index.js +12 -0
  3651. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts +16 -0
  3652. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts.map +1 -0
  3653. package/packages/typescript/src/features/secrets/onboarding/provider.js +231 -0
  3654. package/packages/typescript/src/features/secrets/onboarding/service.d.ts +134 -0
  3655. package/packages/typescript/src/features/secrets/onboarding/service.d.ts.map +1 -0
  3656. package/packages/typescript/src/features/secrets/onboarding/service.js +436 -0
  3657. package/packages/typescript/src/features/secrets/providers/index.d.ts +5 -0
  3658. package/packages/typescript/src/features/secrets/providers/index.d.ts.map +1 -0
  3659. package/packages/typescript/src/features/secrets/providers/index.js +4 -0
  3660. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts +22 -0
  3661. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts.map +1 -0
  3662. package/packages/typescript/src/features/secrets/providers/secrets-status.js +160 -0
  3663. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts +182 -0
  3664. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts.map +1 -0
  3665. package/packages/typescript/src/features/secrets/services/plugin-activator.js +617 -0
  3666. package/packages/typescript/src/features/secrets/services/secrets.d.ts +183 -0
  3667. package/packages/typescript/src/features/secrets/services/secrets.d.ts.map +1 -0
  3668. package/packages/typescript/src/features/secrets/services/secrets.js +566 -0
  3669. package/packages/typescript/src/features/secrets/storage/character-store.d.ts +63 -0
  3670. package/packages/typescript/src/features/secrets/storage/character-store.d.ts.map +1 -0
  3671. package/packages/typescript/src/features/secrets/storage/character-store.js +265 -0
  3672. package/packages/typescript/src/features/secrets/storage/component-store.d.ts +47 -0
  3673. package/packages/typescript/src/features/secrets/storage/component-store.d.ts.map +1 -0
  3674. package/packages/typescript/src/features/secrets/storage/component-store.js +264 -0
  3675. package/packages/typescript/src/features/secrets/storage/index.d.ts +10 -0
  3676. package/packages/typescript/src/features/secrets/storage/index.d.ts.map +1 -0
  3677. package/packages/typescript/src/features/secrets/storage/index.js +8 -0
  3678. package/packages/typescript/src/features/secrets/storage/interface.d.ts +52 -0
  3679. package/packages/typescript/src/features/secrets/storage/interface.d.ts.map +1 -0
  3680. package/packages/typescript/src/features/secrets/storage/interface.js +92 -0
  3681. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts +44 -0
  3682. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts.map +1 -0
  3683. package/packages/typescript/src/features/secrets/storage/memory-store.js +142 -0
  3684. package/packages/typescript/src/features/secrets/storage/world-store.d.ts +52 -0
  3685. package/packages/typescript/src/features/secrets/storage/world-store.d.ts.map +1 -0
  3686. package/packages/typescript/src/features/secrets/storage/world-store.js +292 -0
  3687. package/packages/typescript/src/features/secrets/types.d.ts +438 -0
  3688. package/packages/typescript/src/features/secrets/types.d.ts.map +1 -0
  3689. package/packages/typescript/src/features/secrets/types.js +57 -0
  3690. package/packages/typescript/src/features/secrets/validation.d.ts +33 -0
  3691. package/packages/typescript/src/features/secrets/validation.d.ts.map +1 -0
  3692. package/packages/typescript/src/features/secrets/validation.js +389 -0
  3693. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts +10 -0
  3694. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts.map +1 -0
  3695. package/packages/typescript/src/features/shared/schedule-follow-up-response.js +49 -0
  3696. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts +289 -0
  3697. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts.map +1 -0
  3698. package/packages/typescript/src/features/trajectories/TrajectoriesService.js +1423 -0
  3699. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts +23 -0
  3700. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts.map +1 -0
  3701. package/packages/typescript/src/features/trajectories/action-interceptor.js +178 -0
  3702. package/packages/typescript/src/features/trajectories/art-format.d.ts +32 -0
  3703. package/packages/typescript/src/features/trajectories/art-format.d.ts.map +1 -0
  3704. package/packages/typescript/src/features/trajectories/art-format.js +221 -0
  3705. package/packages/typescript/src/features/trajectories/export.d.ts +40 -0
  3706. package/packages/typescript/src/features/trajectories/export.d.ts.map +1 -0
  3707. package/packages/typescript/src/features/trajectories/export.js +99 -0
  3708. package/packages/typescript/src/features/trajectories/game-rewards.d.ts +14 -0
  3709. package/packages/typescript/src/features/trajectories/game-rewards.d.ts.map +1 -0
  3710. package/packages/typescript/src/features/trajectories/game-rewards.js +20 -0
  3711. package/packages/typescript/src/features/trajectories/index.d.ts +24 -0
  3712. package/packages/typescript/src/features/trajectories/index.d.ts.map +1 -0
  3713. package/packages/typescript/src/features/trajectories/index.js +253 -0
  3714. package/packages/typescript/src/features/trajectories/integration.d.ts +59 -0
  3715. package/packages/typescript/src/features/trajectories/integration.d.ts.map +1 -0
  3716. package/packages/typescript/src/features/trajectories/integration.js +83 -0
  3717. package/packages/typescript/src/features/trajectories/reward-service.d.ts +24 -0
  3718. package/packages/typescript/src/features/trajectories/reward-service.d.ts.map +1 -0
  3719. package/packages/typescript/src/features/trajectories/reward-service.js +89 -0
  3720. package/packages/typescript/src/features/trajectories/types.d.ts +261 -0
  3721. package/packages/typescript/src/features/trajectories/types.d.ts.map +1 -0
  3722. package/packages/typescript/src/features/trajectories/types.js +1 -0
  3723. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts +3 -0
  3724. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts.map +1 -0
  3725. package/packages/typescript/src/features/trust/actions/evaluateTrust.js +225 -0
  3726. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts +3 -0
  3727. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts.map +1 -0
  3728. package/packages/typescript/src/features/trust/actions/hasTrustEngine.js +3 -0
  3729. package/packages/typescript/src/features/trust/actions/index.d.ts +6 -0
  3730. package/packages/typescript/src/features/trust/actions/index.d.ts.map +1 -0
  3731. package/packages/typescript/src/features/trust/actions/index.js +5 -0
  3732. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts +3 -0
  3733. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts.map +1 -0
  3734. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.js +189 -0
  3735. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts +3 -0
  3736. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts.map +1 -0
  3737. package/packages/typescript/src/features/trust/actions/requestElevation.js +165 -0
  3738. package/packages/typescript/src/features/trust/actions/roles.d.ts +3 -0
  3739. package/packages/typescript/src/features/trust/actions/roles.d.ts.map +1 -0
  3740. package/packages/typescript/src/features/trust/actions/roles.js +295 -0
  3741. package/packages/typescript/src/features/trust/actions/settings.d.ts +5 -0
  3742. package/packages/typescript/src/features/trust/actions/settings.d.ts.map +1 -0
  3743. package/packages/typescript/src/features/trust/actions/settings.js +603 -0
  3744. package/packages/typescript/src/features/trust/evaluators/index.d.ts +4 -0
  3745. package/packages/typescript/src/features/trust/evaluators/index.d.ts.map +1 -0
  3746. package/packages/typescript/src/features/trust/evaluators/index.js +3 -0
  3747. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts +3 -0
  3748. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts.map +1 -0
  3749. package/packages/typescript/src/features/trust/evaluators/reflection.js +290 -0
  3750. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts +3 -0
  3751. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts.map +1 -0
  3752. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.js +270 -0
  3753. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts +3 -0
  3754. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts.map +1 -0
  3755. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.js +201 -0
  3756. package/packages/typescript/src/features/trust/index.d.ts +23 -0
  3757. package/packages/typescript/src/features/trust/index.d.ts.map +1 -0
  3758. package/packages/typescript/src/features/trust/index.js +96 -0
  3759. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts +3 -0
  3760. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts.map +1 -0
  3761. package/packages/typescript/src/features/trust/providers/adminTrust.js +49 -0
  3762. package/packages/typescript/src/features/trust/providers/index.d.ts +6 -0
  3763. package/packages/typescript/src/features/trust/providers/index.d.ts.map +1 -0
  3764. package/packages/typescript/src/features/trust/providers/index.js +5 -0
  3765. package/packages/typescript/src/features/trust/providers/roles.d.ts +4 -0
  3766. package/packages/typescript/src/features/trust/providers/roles.d.ts.map +1 -0
  3767. package/packages/typescript/src/features/trust/providers/roles.js +142 -0
  3768. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts +3 -0
  3769. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts.map +1 -0
  3770. package/packages/typescript/src/features/trust/providers/securityStatus.js +110 -0
  3771. package/packages/typescript/src/features/trust/providers/settings.d.ts +3 -0
  3772. package/packages/typescript/src/features/trust/providers/settings.d.ts.map +1 -0
  3773. package/packages/typescript/src/features/trust/providers/settings.js +222 -0
  3774. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts +3 -0
  3775. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts.map +1 -0
  3776. package/packages/typescript/src/features/trust/providers/trustProfile.js +68 -0
  3777. package/packages/typescript/src/features/trust/schema.d.ts +1170 -0
  3778. package/packages/typescript/src/features/trust/schema.d.ts.map +1 -0
  3779. package/packages/typescript/src/features/trust/schema.js +108 -0
  3780. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts +40 -0
  3781. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts.map +1 -0
  3782. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.js +317 -0
  3783. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts +62 -0
  3784. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts.map +1 -0
  3785. package/packages/typescript/src/features/trust/services/CredentialProtector.js +417 -0
  3786. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts +142 -0
  3787. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts.map +1 -0
  3788. package/packages/typescript/src/features/trust/services/SecurityModule.js +1057 -0
  3789. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts +53 -0
  3790. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts.map +1 -0
  3791. package/packages/typescript/src/features/trust/services/SecurityStore.js +123 -0
  3792. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts +81 -0
  3793. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts.map +1 -0
  3794. package/packages/typescript/src/features/trust/services/TrustEngine.js +621 -0
  3795. package/packages/typescript/src/features/trust/services/adminContext.d.ts +3 -0
  3796. package/packages/typescript/src/features/trust/services/adminContext.d.ts.map +1 -0
  3797. package/packages/typescript/src/features/trust/services/adminContext.js +32 -0
  3798. package/packages/typescript/src/features/trust/services/db.d.ts +12 -0
  3799. package/packages/typescript/src/features/trust/services/db.d.ts.map +1 -0
  3800. package/packages/typescript/src/features/trust/services/db.js +10 -0
  3801. package/packages/typescript/src/features/trust/services/wrappers.d.ts +56 -0
  3802. package/packages/typescript/src/features/trust/services/wrappers.d.ts.map +1 -0
  3803. package/packages/typescript/src/features/trust/services/wrappers.js +124 -0
  3804. package/packages/typescript/src/features/trust/types/permissions.d.ts +185 -0
  3805. package/packages/typescript/src/features/trust/types/permissions.d.ts.map +1 -0
  3806. package/packages/typescript/src/features/trust/types/permissions.js +58 -0
  3807. package/packages/typescript/src/features/trust/types/security.d.ts +114 -0
  3808. package/packages/typescript/src/features/trust/types/security.d.ts.map +1 -0
  3809. package/packages/typescript/src/features/trust/types/security.js +15 -0
  3810. package/packages/typescript/src/features/trust/types/trust.d.ts +179 -0
  3811. package/packages/typescript/src/features/trust/types/trust.d.ts.map +1 -0
  3812. package/packages/typescript/src/features/trust/types/trust.js +25 -0
  3813. package/packages/typescript/src/generated/action-docs.d.ts +2799 -0
  3814. package/packages/typescript/src/generated/action-docs.d.ts.map +1 -0
  3815. package/packages/typescript/src/generated/action-docs.js +4034 -0
  3816. package/packages/typescript/src/generated/spec-helpers.d.ts +49 -0
  3817. package/packages/typescript/src/generated/spec-helpers.d.ts.map +1 -0
  3818. package/packages/typescript/src/generated/spec-helpers.js +78 -0
  3819. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts +1056 -0
  3820. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
  3821. package/packages/typescript/src/i18n/generated/validation-keyword-data.js +1056 -0
  3822. package/packages/typescript/src/i18n/validation-keywords.d.ts +25 -0
  3823. package/packages/typescript/src/i18n/validation-keywords.d.ts.map +1 -0
  3824. package/packages/typescript/src/i18n/validation-keywords.js +112 -0
  3825. package/packages/typescript/src/index.d.ts +12 -0
  3826. package/packages/typescript/src/index.d.ts.map +1 -0
  3827. package/packages/typescript/src/index.js +13 -0
  3828. package/packages/typescript/src/index.node.d.ts +82 -0
  3829. package/packages/typescript/src/index.node.d.ts.map +1 -0
  3830. package/packages/typescript/src/index.node.js +115 -0
  3831. package/packages/typescript/src/logger.d.ts +121 -0
  3832. package/packages/typescript/src/logger.d.ts.map +1 -0
  3833. package/packages/typescript/src/logger.js +1023 -0
  3834. package/packages/typescript/src/markdown/chunk.d.ts +50 -0
  3835. package/packages/typescript/src/markdown/chunk.d.ts.map +1 -0
  3836. package/packages/typescript/src/markdown/chunk.js +268 -0
  3837. package/packages/typescript/src/markdown/code-spans.d.ts +42 -0
  3838. package/packages/typescript/src/markdown/code-spans.d.ts.map +1 -0
  3839. package/packages/typescript/src/markdown/code-spans.js +89 -0
  3840. package/packages/typescript/src/markdown/fences.d.ts +50 -0
  3841. package/packages/typescript/src/markdown/fences.d.ts.map +1 -0
  3842. package/packages/typescript/src/markdown/fences.js +90 -0
  3843. package/packages/typescript/src/markdown/frontmatter.d.ts +24 -0
  3844. package/packages/typescript/src/markdown/frontmatter.d.ts.map +1 -0
  3845. package/packages/typescript/src/markdown/frontmatter.js +151 -0
  3846. package/packages/typescript/src/markdown/index.d.ts +18 -0
  3847. package/packages/typescript/src/markdown/index.d.ts.map +1 -0
  3848. package/packages/typescript/src/markdown/index.js +17 -0
  3849. package/packages/typescript/src/markdown/ir.d.ts +101 -0
  3850. package/packages/typescript/src/markdown/ir.d.ts.map +1 -0
  3851. package/packages/typescript/src/markdown/ir.js +789 -0
  3852. package/packages/typescript/src/media/fetch.d.ts +39 -0
  3853. package/packages/typescript/src/media/fetch.d.ts.map +1 -0
  3854. package/packages/typescript/src/media/fetch.js +205 -0
  3855. package/packages/typescript/src/media/index.d.ts +8 -0
  3856. package/packages/typescript/src/media/index.d.ts.map +1 -0
  3857. package/packages/typescript/src/media/index.js +7 -0
  3858. package/packages/typescript/src/media/mime.d.ts +51 -0
  3859. package/packages/typescript/src/media/mime.d.ts.map +1 -0
  3860. package/packages/typescript/src/media/mime.js +225 -0
  3861. package/packages/typescript/src/memory.d.ts +40 -0
  3862. package/packages/typescript/src/memory.d.ts.map +1 -0
  3863. package/packages/typescript/src/memory.js +58 -0
  3864. package/packages/typescript/src/network/fetch-guard.d.ts +34 -0
  3865. package/packages/typescript/src/network/fetch-guard.d.ts.map +1 -0
  3866. package/packages/typescript/src/network/fetch-guard.js +136 -0
  3867. package/packages/typescript/src/network/index.d.ts +11 -0
  3868. package/packages/typescript/src/network/index.d.ts.map +1 -0
  3869. package/packages/typescript/src/network/index.js +10 -0
  3870. package/packages/typescript/src/network/ssrf.d.ts +58 -0
  3871. package/packages/typescript/src/network/ssrf.d.ts.map +1 -0
  3872. package/packages/typescript/src/network/ssrf.js +252 -0
  3873. package/packages/typescript/src/optimization/ab-analysis.d.ts +3 -0
  3874. package/packages/typescript/src/optimization/ab-analysis.d.ts.map +1 -0
  3875. package/packages/typescript/src/optimization/ab-analysis.js +8 -0
  3876. package/packages/typescript/src/optimization-root-dir.d.ts +8 -0
  3877. package/packages/typescript/src/optimization-root-dir.d.ts.map +1 -0
  3878. package/packages/typescript/src/optimization-root-dir.js +14 -0
  3879. package/packages/typescript/src/plugin-lifecycle.d.ts +16 -0
  3880. package/packages/typescript/src/plugin-lifecycle.d.ts.map +1 -0
  3881. package/packages/typescript/src/plugin-lifecycle.js +590 -0
  3882. package/packages/typescript/src/plugin.d.ts +13 -0
  3883. package/packages/typescript/src/plugin.d.ts.map +1 -0
  3884. package/packages/typescript/src/plugin.js +341 -0
  3885. package/packages/typescript/src/plugins/index.d.ts +9 -0
  3886. package/packages/typescript/src/plugins/index.d.ts.map +1 -0
  3887. package/packages/typescript/src/plugins/index.js +8 -0
  3888. package/packages/typescript/src/plugins/native-features.d.ts +14 -0
  3889. package/packages/typescript/src/plugins/native-features.d.ts.map +1 -0
  3890. package/packages/typescript/src/plugins/native-features.js +59 -0
  3891. package/packages/typescript/src/prompts.d.ts +88 -0
  3892. package/packages/typescript/src/prompts.d.ts.map +1 -0
  3893. package/packages/typescript/src/prompts.js +1134 -0
  3894. package/packages/typescript/src/providers/onboarding-progress.d.ts +19 -0
  3895. package/packages/typescript/src/providers/onboarding-progress.d.ts.map +1 -0
  3896. package/packages/typescript/src/providers/onboarding-progress.js +268 -0
  3897. package/packages/typescript/src/providers/skill-eligibility.d.ts +28 -0
  3898. package/packages/typescript/src/providers/skill-eligibility.d.ts.map +1 -0
  3899. package/packages/typescript/src/providers/skill-eligibility.js +179 -0
  3900. package/packages/typescript/src/provisioning.d.ts +54 -0
  3901. package/packages/typescript/src/provisioning.d.ts.map +1 -0
  3902. package/packages/typescript/src/provisioning.js +209 -0
  3903. package/packages/typescript/src/roles.d.ts +70 -0
  3904. package/packages/typescript/src/roles.d.ts.map +1 -0
  3905. package/packages/typescript/src/roles.js +544 -0
  3906. package/packages/typescript/src/runtime-composition.d.ts +129 -0
  3907. package/packages/typescript/src/runtime-composition.d.ts.map +1 -0
  3908. package/packages/typescript/src/runtime-composition.js +335 -0
  3909. package/packages/typescript/src/runtime.d.ts +918 -0
  3910. package/packages/typescript/src/runtime.d.ts.map +1 -0
  3911. package/packages/typescript/src/runtime.js +5973 -0
  3912. package/packages/typescript/src/schemas/agent.d.ts +7 -0
  3913. package/packages/typescript/src/schemas/agent.d.ts.map +1 -0
  3914. package/packages/typescript/src/schemas/agent.js +112 -0
  3915. package/packages/typescript/src/schemas/cache.d.ts +7 -0
  3916. package/packages/typescript/src/schemas/cache.d.ts.map +1 -0
  3917. package/packages/typescript/src/schemas/cache.js +55 -0
  3918. package/packages/typescript/src/schemas/channel-participant.d.ts +7 -0
  3919. package/packages/typescript/src/schemas/channel-participant.d.ts.map +1 -0
  3920. package/packages/typescript/src/schemas/channel-participant.js +49 -0
  3921. package/packages/typescript/src/schemas/channel.d.ts +7 -0
  3922. package/packages/typescript/src/schemas/channel.d.ts.map +1 -0
  3923. package/packages/typescript/src/schemas/channel.js +94 -0
  3924. package/packages/typescript/src/schemas/character.d.ts +445 -0
  3925. package/packages/typescript/src/schemas/character.d.ts.map +1 -0
  3926. package/packages/typescript/src/schemas/character.js +309 -0
  3927. package/packages/typescript/src/schemas/component.d.ts +7 -0
  3928. package/packages/typescript/src/schemas/component.d.ts.map +1 -0
  3929. package/packages/typescript/src/schemas/component.js +156 -0
  3930. package/packages/typescript/src/schemas/embedding.d.ts +7 -0
  3931. package/packages/typescript/src/schemas/embedding.d.ts.map +1 -0
  3932. package/packages/typescript/src/schemas/embedding.js +89 -0
  3933. package/packages/typescript/src/schemas/entity-identity.d.ts +29 -0
  3934. package/packages/typescript/src/schemas/entity-identity.d.ts.map +1 -0
  3935. package/packages/typescript/src/schemas/entity-identity.js +334 -0
  3936. package/packages/typescript/src/schemas/entity.d.ts +7 -0
  3937. package/packages/typescript/src/schemas/entity.d.ts.map +1 -0
  3938. package/packages/typescript/src/schemas/entity.js +69 -0
  3939. package/packages/typescript/src/schemas/index.d.ts +77 -0
  3940. package/packages/typescript/src/schemas/index.d.ts.map +1 -0
  3941. package/packages/typescript/src/schemas/index.js +75 -0
  3942. package/packages/typescript/src/schemas/log.d.ts +6 -0
  3943. package/packages/typescript/src/schemas/log.d.ts.map +1 -0
  3944. package/packages/typescript/src/schemas/log.js +93 -0
  3945. package/packages/typescript/src/schemas/memory.d.ts +7 -0
  3946. package/packages/typescript/src/schemas/memory.d.ts.map +1 -0
  3947. package/packages/typescript/src/schemas/memory.js +167 -0
  3948. package/packages/typescript/src/schemas/message-server-agent.d.ts +7 -0
  3949. package/packages/typescript/src/schemas/message-server-agent.d.ts.map +1 -0
  3950. package/packages/typescript/src/schemas/message-server-agent.js +58 -0
  3951. package/packages/typescript/src/schemas/message-server.d.ts +6 -0
  3952. package/packages/typescript/src/schemas/message-server.d.ts.map +1 -0
  3953. package/packages/typescript/src/schemas/message-server.js +62 -0
  3954. package/packages/typescript/src/schemas/message.d.ts +7 -0
  3955. package/packages/typescript/src/schemas/message.d.ts.map +1 -0
  3956. package/packages/typescript/src/schemas/message.js +106 -0
  3957. package/packages/typescript/src/schemas/pairing-allowlist.d.ts +7 -0
  3958. package/packages/typescript/src/schemas/pairing-allowlist.d.ts.map +1 -0
  3959. package/packages/typescript/src/schemas/pairing-allowlist.js +76 -0
  3960. package/packages/typescript/src/schemas/pairing-request.d.ts +7 -0
  3961. package/packages/typescript/src/schemas/pairing-request.d.ts.map +1 -0
  3962. package/packages/typescript/src/schemas/pairing-request.js +96 -0
  3963. package/packages/typescript/src/schemas/participant.d.ts +6 -0
  3964. package/packages/typescript/src/schemas/participant.d.ts.map +1 -0
  3965. package/packages/typescript/src/schemas/participant.js +91 -0
  3966. package/packages/typescript/src/schemas/relationship.d.ts +7 -0
  3967. package/packages/typescript/src/schemas/relationship.d.ts.map +1 -0
  3968. package/packages/typescript/src/schemas/relationship.js +102 -0
  3969. package/packages/typescript/src/schemas/room.d.ts +6 -0
  3970. package/packages/typescript/src/schemas/room.d.ts.map +1 -0
  3971. package/packages/typescript/src/schemas/room.js +86 -0
  3972. package/packages/typescript/src/schemas/server.d.ts +7 -0
  3973. package/packages/typescript/src/schemas/server.d.ts.map +1 -0
  3974. package/packages/typescript/src/schemas/server.js +33 -0
  3975. package/packages/typescript/src/schemas/task.d.ts +6 -0
  3976. package/packages/typescript/src/schemas/task.d.ts.map +1 -0
  3977. package/packages/typescript/src/schemas/task.js +95 -0
  3978. package/packages/typescript/src/schemas/world.d.ts +6 -0
  3979. package/packages/typescript/src/schemas/world.d.ts.map +1 -0
  3980. package/packages/typescript/src/schemas/world.js +64 -0
  3981. package/packages/typescript/src/search.d.ts +359 -0
  3982. package/packages/typescript/src/search.d.ts.map +1 -0
  3983. package/packages/typescript/src/search.js +1580 -0
  3984. package/packages/typescript/src/secrets.d.ts +6 -0
  3985. package/packages/typescript/src/secrets.d.ts.map +1 -0
  3986. package/packages/typescript/src/secrets.js +28 -0
  3987. package/packages/typescript/src/security/external-content.d.ts +96 -0
  3988. package/packages/typescript/src/security/external-content.d.ts.map +1 -0
  3989. package/packages/typescript/src/security/external-content.js +252 -0
  3990. package/packages/typescript/src/security/index.d.ts +12 -0
  3991. package/packages/typescript/src/security/index.d.ts.map +1 -0
  3992. package/packages/typescript/src/security/index.js +13 -0
  3993. package/packages/typescript/src/security/redact.d.ts +111 -0
  3994. package/packages/typescript/src/security/redact.d.ts.map +1 -0
  3995. package/packages/typescript/src/security/redact.js +254 -0
  3996. package/packages/typescript/src/services/agentEvent.d.ts +297 -0
  3997. package/packages/typescript/src/services/agentEvent.d.ts.map +1 -0
  3998. package/packages/typescript/src/services/agentEvent.js +422 -0
  3999. package/packages/typescript/src/services/approval.d.ts +169 -0
  4000. package/packages/typescript/src/services/approval.d.ts.map +1 -0
  4001. package/packages/typescript/src/services/approval.js +399 -0
  4002. package/packages/typescript/src/services/embedding.d.ts +29 -0
  4003. package/packages/typescript/src/services/embedding.d.ts.map +1 -0
  4004. package/packages/typescript/src/services/embedding.js +211 -0
  4005. package/packages/typescript/src/services/followUp.d.ts +48 -0
  4006. package/packages/typescript/src/services/followUp.d.ts.map +1 -0
  4007. package/packages/typescript/src/services/followUp.js +333 -0
  4008. package/packages/typescript/src/services/hook.d.ts +85 -0
  4009. package/packages/typescript/src/services/hook.d.ts.map +1 -0
  4010. package/packages/typescript/src/services/hook.js +396 -0
  4011. package/packages/typescript/src/services/message.d.ts +107 -0
  4012. package/packages/typescript/src/services/message.d.ts.map +1 -0
  4013. package/packages/typescript/src/services/message.js +3844 -0
  4014. package/packages/typescript/src/services/onboarding-cli.d.ts +240 -0
  4015. package/packages/typescript/src/services/onboarding-cli.d.ts.map +1 -0
  4016. package/packages/typescript/src/services/onboarding-cli.js +688 -0
  4017. package/packages/typescript/src/services/onboarding-rpc.d.ts +225 -0
  4018. package/packages/typescript/src/services/onboarding-rpc.d.ts.map +1 -0
  4019. package/packages/typescript/src/services/onboarding-rpc.js +318 -0
  4020. package/packages/typescript/src/services/onboarding-state.d.ts +155 -0
  4021. package/packages/typescript/src/services/onboarding-state.d.ts.map +1 -0
  4022. package/packages/typescript/src/services/onboarding-state.js +706 -0
  4023. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts +23 -0
  4024. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts.map +1 -0
  4025. package/packages/typescript/src/services/optimized-prompt-resolver.js +50 -0
  4026. package/packages/typescript/src/services/optimized-prompt.d.ts +117 -0
  4027. package/packages/typescript/src/services/optimized-prompt.d.ts.map +1 -0
  4028. package/packages/typescript/src/services/optimized-prompt.js +256 -0
  4029. package/packages/typescript/src/services/pairing-integration.d.ts +96 -0
  4030. package/packages/typescript/src/services/pairing-integration.d.ts.map +1 -0
  4031. package/packages/typescript/src/services/pairing-integration.js +145 -0
  4032. package/packages/typescript/src/services/pairing-migration.d.ts +105 -0
  4033. package/packages/typescript/src/services/pairing-migration.d.ts.map +1 -0
  4034. package/packages/typescript/src/services/pairing-migration.js +283 -0
  4035. package/packages/typescript/src/services/pairing.d.ts +80 -0
  4036. package/packages/typescript/src/services/pairing.d.ts.map +1 -0
  4037. package/packages/typescript/src/services/pairing.js +253 -0
  4038. package/packages/typescript/src/services/plugin-hooks.d.ts +112 -0
  4039. package/packages/typescript/src/services/plugin-hooks.d.ts.map +1 -0
  4040. package/packages/typescript/src/services/plugin-hooks.js +163 -0
  4041. package/packages/typescript/src/services/relationships.d.ts +350 -0
  4042. package/packages/typescript/src/services/relationships.d.ts.map +1 -0
  4043. package/packages/typescript/src/services/relationships.js +1613 -0
  4044. package/packages/typescript/src/services/task-scheduler.d.ts +28 -0
  4045. package/packages/typescript/src/services/task-scheduler.d.ts.map +1 -0
  4046. package/packages/typescript/src/services/task-scheduler.js +89 -0
  4047. package/packages/typescript/src/services/task.d.ts +130 -0
  4048. package/packages/typescript/src/services/task.d.ts.map +1 -0
  4049. package/packages/typescript/src/services/task.js +536 -0
  4050. package/packages/typescript/src/services/tool-policy.d.ts +186 -0
  4051. package/packages/typescript/src/services/tool-policy.d.ts.map +1 -0
  4052. package/packages/typescript/src/services/tool-policy.js +332 -0
  4053. package/packages/typescript/src/services/trajectories.d.ts +34 -0
  4054. package/packages/typescript/src/services/trajectories.d.ts.map +1 -0
  4055. package/packages/typescript/src/services/trajectories.js +1 -0
  4056. package/packages/typescript/src/services.d.ts +61 -0
  4057. package/packages/typescript/src/services.d.ts.map +1 -0
  4058. package/packages/typescript/src/services.js +99 -0
  4059. package/packages/typescript/src/sessions/index.d.ts +17 -0
  4060. package/packages/typescript/src/sessions/index.d.ts.map +1 -0
  4061. package/packages/typescript/src/sessions/index.js +29 -0
  4062. package/packages/typescript/src/sessions/provider.d.ts +71 -0
  4063. package/packages/typescript/src/sessions/provider.d.ts.map +1 -0
  4064. package/packages/typescript/src/sessions/provider.js +243 -0
  4065. package/packages/typescript/src/sessions/session-key.d.ts +201 -0
  4066. package/packages/typescript/src/sessions/session-key.d.ts.map +1 -0
  4067. package/packages/typescript/src/sessions/session-key.js +396 -0
  4068. package/packages/typescript/src/sessions/types.d.ts +197 -0
  4069. package/packages/typescript/src/sessions/types.d.ts.map +1 -0
  4070. package/packages/typescript/src/sessions/types.js +68 -0
  4071. package/packages/typescript/src/settings.d.ts +99 -0
  4072. package/packages/typescript/src/settings.d.ts.map +1 -0
  4073. package/packages/typescript/src/settings.js +409 -0
  4074. package/packages/typescript/src/should-respond.d.ts +2 -0
  4075. package/packages/typescript/src/should-respond.d.ts.map +1 -0
  4076. package/packages/typescript/src/should-respond.js +16 -0
  4077. package/packages/typescript/src/streaming-context.d.ts +88 -0
  4078. package/packages/typescript/src/streaming-context.d.ts.map +1 -0
  4079. package/packages/typescript/src/streaming-context.js +160 -0
  4080. package/packages/typescript/src/trajectory-context.d.ts +39 -0
  4081. package/packages/typescript/src/trajectory-context.d.ts.map +1 -0
  4082. package/packages/typescript/src/trajectory-context.js +85 -0
  4083. package/packages/typescript/src/trajectory-utils.d.ts +73 -0
  4084. package/packages/typescript/src/trajectory-utils.d.ts.map +1 -0
  4085. package/packages/typescript/src/trajectory-utils.js +124 -0
  4086. package/packages/typescript/src/types/agent.d.ts +62 -0
  4087. package/packages/typescript/src/types/agent.d.ts.map +1 -0
  4088. package/packages/typescript/src/types/agent.js +5 -0
  4089. package/packages/typescript/src/types/agentEvent.d.ts +258 -0
  4090. package/packages/typescript/src/types/agentEvent.d.ts.map +1 -0
  4091. package/packages/typescript/src/types/agentEvent.js +11 -0
  4092. package/packages/typescript/src/types/channel-config.d.ts +167 -0
  4093. package/packages/typescript/src/types/channel-config.d.ts.map +1 -0
  4094. package/packages/typescript/src/types/channel-config.js +7 -0
  4095. package/packages/typescript/src/types/components.d.ts +358 -0
  4096. package/packages/typescript/src/types/components.d.ts.map +1 -0
  4097. package/packages/typescript/src/types/components.js +1 -0
  4098. package/packages/typescript/src/types/database.d.ts +1079 -0
  4099. package/packages/typescript/src/types/database.d.ts.map +1 -0
  4100. package/packages/typescript/src/types/database.js +9 -0
  4101. package/packages/typescript/src/types/environment.d.ts +73 -0
  4102. package/packages/typescript/src/types/environment.d.ts.map +1 -0
  4103. package/packages/typescript/src/types/environment.js +16 -0
  4104. package/packages/typescript/src/types/events.d.ts +403 -0
  4105. package/packages/typescript/src/types/events.d.ts.map +1 -0
  4106. package/packages/typescript/src/types/events.js +85 -0
  4107. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts +400 -0
  4108. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts.map +1 -0
  4109. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.js +72 -0
  4110. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts +364 -0
  4111. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts.map +1 -0
  4112. package/packages/typescript/src/types/generated/eliza/v1/components_pb.js +68 -0
  4113. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts +694 -0
  4114. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts.map +1 -0
  4115. package/packages/typescript/src/types/generated/eliza/v1/database_pb.js +172 -0
  4116. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts +299 -0
  4117. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts.map +1 -0
  4118. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.js +52 -0
  4119. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts +746 -0
  4120. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts.map +1 -0
  4121. package/packages/typescript/src/types/generated/eliza/v1/events_pb.js +357 -0
  4122. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts +799 -0
  4123. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts.map +1 -0
  4124. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.js +172 -0
  4125. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts +63 -0
  4126. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts.map +1 -0
  4127. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.js +18 -0
  4128. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts +290 -0
  4129. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts.map +1 -0
  4130. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.js +53 -0
  4131. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts +160 -0
  4132. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts.map +1 -0
  4133. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.js +88 -0
  4134. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts +214 -0
  4135. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts.map +1 -0
  4136. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.js +78 -0
  4137. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts +653 -0
  4138. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts.map +1 -0
  4139. package/packages/typescript/src/types/generated/eliza/v1/model_pb.js +237 -0
  4140. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts +147 -0
  4141. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts.map +1 -0
  4142. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.js +27 -0
  4143. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts +286 -0
  4144. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts.map +1 -0
  4145. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.js +86 -0
  4146. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts +263 -0
  4147. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts.map +1 -0
  4148. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.js +38 -0
  4149. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts +137 -0
  4150. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts.map +1 -0
  4151. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.js +27 -0
  4152. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts +2687 -0
  4153. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts.map +1 -0
  4154. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.js +392 -0
  4155. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts +144 -0
  4156. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts.map +1 -0
  4157. package/packages/typescript/src/types/generated/eliza/v1/service_pb.js +99 -0
  4158. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts +146 -0
  4159. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts.map +1 -0
  4160. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.js +32 -0
  4161. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts +259 -0
  4162. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts.map +1 -0
  4163. package/packages/typescript/src/types/generated/eliza/v1/state_pb.js +44 -0
  4164. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts +120 -0
  4165. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts.map +1 -0
  4166. package/packages/typescript/src/types/generated/eliza/v1/task_pb.js +53 -0
  4167. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts +205 -0
  4168. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts.map +1 -0
  4169. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.js +89 -0
  4170. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts +47 -0
  4171. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts.map +1 -0
  4172. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.js +16 -0
  4173. package/packages/typescript/src/types/hook.d.ts +338 -0
  4174. package/packages/typescript/src/types/hook.d.ts.map +1 -0
  4175. package/packages/typescript/src/types/hook.js +73 -0
  4176. package/packages/typescript/src/types/index.d.ts +42 -0
  4177. package/packages/typescript/src/types/index.d.ts.map +1 -0
  4178. package/packages/typescript/src/types/index.js +50 -0
  4179. package/packages/typescript/src/types/knowledge.d.ts +49 -0
  4180. package/packages/typescript/src/types/knowledge.d.ts.map +1 -0
  4181. package/packages/typescript/src/types/knowledge.js +1 -0
  4182. package/packages/typescript/src/types/memory-storage.d.ts +28 -0
  4183. package/packages/typescript/src/types/memory-storage.d.ts.map +1 -0
  4184. package/packages/typescript/src/types/memory-storage.js +13 -0
  4185. package/packages/typescript/src/types/memory.d.ts +438 -0
  4186. package/packages/typescript/src/types/memory.d.ts.map +1 -0
  4187. package/packages/typescript/src/types/memory.js +16 -0
  4188. package/packages/typescript/src/types/message-service.d.ts +169 -0
  4189. package/packages/typescript/src/types/message-service.d.ts.map +1 -0
  4190. package/packages/typescript/src/types/message-service.js +1 -0
  4191. package/packages/typescript/src/types/messaging.d.ts +358 -0
  4192. package/packages/typescript/src/types/messaging.d.ts.map +1 -0
  4193. package/packages/typescript/src/types/messaging.js +27 -0
  4194. package/packages/typescript/src/types/model.d.ts +697 -0
  4195. package/packages/typescript/src/types/model.d.ts.map +1 -0
  4196. package/packages/typescript/src/types/model.js +247 -0
  4197. package/packages/typescript/src/types/onboarding.d.ts +319 -0
  4198. package/packages/typescript/src/types/onboarding.d.ts.map +1 -0
  4199. package/packages/typescript/src/types/onboarding.js +97 -0
  4200. package/packages/typescript/src/types/pairing.d.ts +124 -0
  4201. package/packages/typescript/src/types/pairing.d.ts.map +1 -0
  4202. package/packages/typescript/src/types/pairing.js +32 -0
  4203. package/packages/typescript/src/types/payment.d.ts +45 -0
  4204. package/packages/typescript/src/types/payment.d.ts.map +1 -0
  4205. package/packages/typescript/src/types/payment.js +1 -0
  4206. package/packages/typescript/src/types/pipeline-hooks.d.ts +234 -0
  4207. package/packages/typescript/src/types/pipeline-hooks.d.ts.map +1 -0
  4208. package/packages/typescript/src/types/pipeline-hooks.js +111 -0
  4209. package/packages/typescript/src/types/plugin-manifest.d.ts +381 -0
  4210. package/packages/typescript/src/types/plugin-manifest.d.ts.map +1 -0
  4211. package/packages/typescript/src/types/plugin-manifest.js +10 -0
  4212. package/packages/typescript/src/types/plugin-store.d.ts +173 -0
  4213. package/packages/typescript/src/types/plugin-store.d.ts.map +1 -0
  4214. package/packages/typescript/src/types/plugin-store.js +1 -0
  4215. package/packages/typescript/src/types/plugin.d.ts +336 -0
  4216. package/packages/typescript/src/types/plugin.d.ts.map +1 -0
  4217. package/packages/typescript/src/types/plugin.js +1 -0
  4218. package/packages/typescript/src/types/primitives.d.ts +176 -0
  4219. package/packages/typescript/src/types/primitives.d.ts.map +1 -0
  4220. package/packages/typescript/src/types/primitives.js +41 -0
  4221. package/packages/typescript/src/types/prompt-batcher.d.ts +126 -0
  4222. package/packages/typescript/src/types/prompt-batcher.d.ts.map +1 -0
  4223. package/packages/typescript/src/types/prompt-batcher.js +6 -0
  4224. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts +41 -0
  4225. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts.map +1 -0
  4226. package/packages/typescript/src/types/prompt-optimization-hooks.js +1 -0
  4227. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts +22 -0
  4228. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts.map +1 -0
  4229. package/packages/typescript/src/types/prompt-optimization-score-card.js +72 -0
  4230. package/packages/typescript/src/types/prompt-optimization-trace.d.ts +53 -0
  4231. package/packages/typescript/src/types/prompt-optimization-trace.d.ts.map +1 -0
  4232. package/packages/typescript/src/types/prompt-optimization-trace.js +19 -0
  4233. package/packages/typescript/src/types/prompts.d.ts +39 -0
  4234. package/packages/typescript/src/types/prompts.d.ts.map +1 -0
  4235. package/packages/typescript/src/types/prompts.js +7 -0
  4236. package/packages/typescript/src/types/proto.d.ts +60 -0
  4237. package/packages/typescript/src/types/proto.d.ts.map +1 -0
  4238. package/packages/typescript/src/types/proto.js +53 -0
  4239. package/packages/typescript/src/types/runtime.d.ts +445 -0
  4240. package/packages/typescript/src/types/runtime.d.ts.map +1 -0
  4241. package/packages/typescript/src/types/runtime.js +1 -0
  4242. package/packages/typescript/src/types/schema-builder.d.ts +43 -0
  4243. package/packages/typescript/src/types/schema-builder.d.ts.map +1 -0
  4244. package/packages/typescript/src/types/schema-builder.js +16 -0
  4245. package/packages/typescript/src/types/schema.d.ts +99 -0
  4246. package/packages/typescript/src/types/schema.d.ts.map +1 -0
  4247. package/packages/typescript/src/types/schema.js +11 -0
  4248. package/packages/typescript/src/types/service-interfaces.d.ts +1200 -0
  4249. package/packages/typescript/src/types/service-interfaces.d.ts.map +1 -0
  4250. package/packages/typescript/src/types/service-interfaces.js +81 -0
  4251. package/packages/typescript/src/types/service.d.ts +175 -0
  4252. package/packages/typescript/src/types/service.d.ts.map +1 -0
  4253. package/packages/typescript/src/types/service.js +79 -0
  4254. package/packages/typescript/src/types/settings.d.ts +36 -0
  4255. package/packages/typescript/src/types/settings.d.ts.map +1 -0
  4256. package/packages/typescript/src/types/settings.js +1 -0
  4257. package/packages/typescript/src/types/state.d.ts +251 -0
  4258. package/packages/typescript/src/types/state.d.ts.map +1 -0
  4259. package/packages/typescript/src/types/state.js +1 -0
  4260. package/packages/typescript/src/types/streaming.d.ts +93 -0
  4261. package/packages/typescript/src/types/streaming.d.ts.map +1 -0
  4262. package/packages/typescript/src/types/streaming.js +21 -0
  4263. package/packages/typescript/src/types/task.d.ts +122 -0
  4264. package/packages/typescript/src/types/task.d.ts.map +1 -0
  4265. package/packages/typescript/src/types/task.js +1 -0
  4266. package/packages/typescript/src/types/tee.d.ts +3 -0
  4267. package/packages/typescript/src/types/tee.d.ts.map +1 -0
  4268. package/packages/typescript/src/types/tee.js +1 -0
  4269. package/packages/typescript/src/types/testing.d.ts +15 -0
  4270. package/packages/typescript/src/types/testing.d.ts.map +1 -0
  4271. package/packages/typescript/src/types/testing.js +1 -0
  4272. package/packages/typescript/src/types/tools.d.ts +166 -0
  4273. package/packages/typescript/src/types/tools.d.ts.map +1 -0
  4274. package/packages/typescript/src/types/tools.js +380 -0
  4275. package/packages/typescript/src/types/trigger.d.ts +42 -0
  4276. package/packages/typescript/src/types/trigger.d.ts.map +1 -0
  4277. package/packages/typescript/src/types/trigger.js +1 -0
  4278. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts +52 -0
  4279. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts.map +1 -0
  4280. package/packages/typescript/src/utils/batch-queue/batch-processor.js +126 -0
  4281. package/packages/typescript/src/utils/batch-queue/index.d.ts +97 -0
  4282. package/packages/typescript/src/utils/batch-queue/index.d.ts.map +1 -0
  4283. package/packages/typescript/src/utils/batch-queue/index.js +175 -0
  4284. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts +53 -0
  4285. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts.map +1 -0
  4286. package/packages/typescript/src/utils/batch-queue/priority-queue.js +128 -0
  4287. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts +18 -0
  4288. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts.map +1 -0
  4289. package/packages/typescript/src/utils/batch-queue/semaphore.js +34 -0
  4290. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts +57 -0
  4291. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts.map +1 -0
  4292. package/packages/typescript/src/utils/batch-queue/task-drain.js +150 -0
  4293. package/packages/typescript/src/utils/batch-queue.d.ts +20 -0
  4294. package/packages/typescript/src/utils/batch-queue.d.ts.map +1 -0
  4295. package/packages/typescript/src/utils/batch-queue.js +19 -0
  4296. package/packages/typescript/src/utils/boolean.d.ts +50 -0
  4297. package/packages/typescript/src/utils/boolean.d.ts.map +1 -0
  4298. package/packages/typescript/src/utils/boolean.js +73 -0
  4299. package/packages/typescript/src/utils/buffer.d.ts +107 -0
  4300. package/packages/typescript/src/utils/buffer.d.ts.map +1 -0
  4301. package/packages/typescript/src/utils/buffer.js +229 -0
  4302. package/packages/typescript/src/utils/channel-utils.d.ts +274 -0
  4303. package/packages/typescript/src/utils/channel-utils.d.ts.map +1 -0
  4304. package/packages/typescript/src/utils/channel-utils.js +337 -0
  4305. package/packages/typescript/src/utils/context-catalog.d.ts +6 -0
  4306. package/packages/typescript/src/utils/context-catalog.d.ts.map +1 -0
  4307. package/packages/typescript/src/utils/context-catalog.js +126 -0
  4308. package/packages/typescript/src/utils/context-routing.d.ts +25 -0
  4309. package/packages/typescript/src/utils/context-routing.d.ts.map +1 -0
  4310. package/packages/typescript/src/utils/context-routing.js +164 -0
  4311. package/packages/typescript/src/utils/crypto-compat.d.ts +83 -0
  4312. package/packages/typescript/src/utils/crypto-compat.d.ts.map +1 -0
  4313. package/packages/typescript/src/utils/crypto-compat.js +368 -0
  4314. package/packages/typescript/src/utils/deterministic.d.ts +9 -0
  4315. package/packages/typescript/src/utils/deterministic.d.ts.map +1 -0
  4316. package/packages/typescript/src/utils/deterministic.js +70 -0
  4317. package/packages/typescript/src/utils/environment.d.ts +125 -0
  4318. package/packages/typescript/src/utils/environment.d.ts.map +1 -0
  4319. package/packages/typescript/src/utils/environment.js +290 -0
  4320. package/packages/typescript/src/utils/example-names.d.ts +3 -0
  4321. package/packages/typescript/src/utils/example-names.d.ts.map +1 -0
  4322. package/packages/typescript/src/utils/example-names.js +30 -0
  4323. package/packages/typescript/src/utils/json-llm.d.ts +17 -0
  4324. package/packages/typescript/src/utils/json-llm.d.ts.map +1 -0
  4325. package/packages/typescript/src/utils/json-llm.js +32 -0
  4326. package/packages/typescript/src/utils/model-errors.d.ts +3 -0
  4327. package/packages/typescript/src/utils/model-errors.d.ts.map +1 -0
  4328. package/packages/typescript/src/utils/model-errors.js +23 -0
  4329. package/packages/typescript/src/utils/node.d.ts +8 -0
  4330. package/packages/typescript/src/utils/node.d.ts.map +1 -0
  4331. package/packages/typescript/src/utils/node.js +12 -0
  4332. package/packages/typescript/src/utils/paths.d.ts +97 -0
  4333. package/packages/typescript/src/utils/paths.d.ts.map +1 -0
  4334. package/packages/typescript/src/utils/paths.js +204 -0
  4335. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts +163 -0
  4336. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts.map +1 -0
  4337. package/packages/typescript/src/utils/prompt-batcher/batcher.js +896 -0
  4338. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts +15 -0
  4339. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts.map +1 -0
  4340. package/packages/typescript/src/utils/prompt-batcher/dispatcher.js +230 -0
  4341. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts +66 -0
  4342. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts.map +1 -0
  4343. package/packages/typescript/src/utils/prompt-batcher/shared.js +101 -0
  4344. package/packages/typescript/src/utils/prompt-batcher.d.ts +5 -0
  4345. package/packages/typescript/src/utils/prompt-batcher.d.ts.map +1 -0
  4346. package/packages/typescript/src/utils/prompt-batcher.js +4 -0
  4347. package/packages/typescript/src/utils/retry.d.ts +128 -0
  4348. package/packages/typescript/src/utils/retry.d.ts.map +1 -0
  4349. package/packages/typescript/src/utils/retry.js +190 -0
  4350. package/packages/typescript/src/utils/server-health.d.ts +35 -0
  4351. package/packages/typescript/src/utils/server-health.d.ts.map +1 -0
  4352. package/packages/typescript/src/utils/server-health.js +76 -0
  4353. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts +12 -0
  4354. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts.map +1 -0
  4355. package/packages/typescript/src/utils/slice-to-fit-budget.js +36 -0
  4356. package/packages/typescript/src/utils/state-dir.d.ts +19 -0
  4357. package/packages/typescript/src/utils/state-dir.d.ts.map +1 -0
  4358. package/packages/typescript/src/utils/state-dir.js +24 -0
  4359. package/packages/typescript/src/utils/streaming.d.ts +275 -0
  4360. package/packages/typescript/src/utils/streaming.d.ts.map +1 -0
  4361. package/packages/typescript/src/utils/streaming.js +774 -0
  4362. package/packages/typescript/src/utils/text-normalize.d.ts +23 -0
  4363. package/packages/typescript/src/utils/text-normalize.d.ts.map +1 -0
  4364. package/packages/typescript/src/utils/text-normalize.js +42 -0
  4365. package/packages/typescript/src/utils/text-splitting.d.ts +14 -0
  4366. package/packages/typescript/src/utils/text-splitting.d.ts.map +1 -0
  4367. package/packages/typescript/src/utils/text-splitting.js +66 -0
  4368. package/packages/typescript/src/utils/toon.d.ts +8 -0
  4369. package/packages/typescript/src/utils/toon.d.ts.map +1 -0
  4370. package/packages/typescript/src/utils/toon.js +346 -0
  4371. package/packages/typescript/src/utils/type-guards.d.ts +25 -0
  4372. package/packages/typescript/src/utils/type-guards.d.ts.map +1 -0
  4373. package/packages/typescript/src/utils/type-guards.js +73 -0
  4374. package/packages/typescript/src/utils/union-find.d.ts +30 -0
  4375. package/packages/typescript/src/utils/union-find.d.ts.map +1 -0
  4376. package/packages/typescript/src/utils/union-find.js +81 -0
  4377. package/packages/typescript/src/utils.d.ts +192 -0
  4378. package/packages/typescript/src/utils.d.ts.map +1 -0
  4379. package/packages/typescript/src/utils.js +1120 -0
  4380. package/packages/typescript/src/validation/index.d.ts +8 -0
  4381. package/packages/typescript/src/validation/index.d.ts.map +1 -0
  4382. package/packages/typescript/src/validation/index.js +7 -0
  4383. package/packages/typescript/src/validation/keywords.d.ts +26 -0
  4384. package/packages/typescript/src/validation/keywords.d.ts.map +1 -0
  4385. package/packages/typescript/src/validation/keywords.js +76 -0
  4386. package/packages/typescript/src/validation/secrets.d.ts +94 -0
  4387. package/packages/typescript/src/validation/secrets.d.ts.map +1 -0
  4388. package/packages/typescript/src/validation/secrets.js +399 -0
  4389. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts +9 -0
  4390. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts.map +1 -0
  4391. package/packages/ui/src/components/composites/chat/chat-attachment-strip.js +8 -0
  4392. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts +14 -0
  4393. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts.map +1 -0
  4394. package/packages/ui/src/components/composites/chat/chat-bubble.js +14 -0
  4395. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts +10 -0
  4396. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts.map +1 -0
  4397. package/packages/ui/src/components/composites/chat/chat-composer-shell.js +16 -0
  4398. package/packages/ui/src/components/composites/chat/chat-composer.d.ts +39 -0
  4399. package/packages/ui/src/components/composites/chat/chat-composer.d.ts.map +1 -0
  4400. package/packages/ui/src/components/composites/chat/chat-composer.js +148 -0
  4401. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts +21 -0
  4402. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts.map +1 -0
  4403. package/packages/ui/src/components/composites/chat/chat-conversation-item.js +120 -0
  4404. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts +22 -0
  4405. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts.map +1 -0
  4406. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.js +14 -0
  4407. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts +19 -0
  4408. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts.map +1 -0
  4409. package/packages/ui/src/components/composites/chat/chat-empty-state.js +8 -0
  4410. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts +14 -0
  4411. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts.map +1 -0
  4412. package/packages/ui/src/components/composites/chat/chat-message-actions.js +10 -0
  4413. package/packages/ui/src/components/composites/chat/chat-message.d.ts +18 -0
  4414. package/packages/ui/src/components/composites/chat/chat-message.d.ts.map +1 -0
  4415. package/packages/ui/src/components/composites/chat/chat-message.js +275 -0
  4416. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts +54 -0
  4417. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts.map +1 -0
  4418. package/packages/ui/src/components/composites/chat/chat-sidebar.js +64 -0
  4419. package/packages/ui/src/components/composites/chat/chat-source.d.ts +20 -0
  4420. package/packages/ui/src/components/composites/chat/chat-source.d.ts.map +1 -0
  4421. package/packages/ui/src/components/composites/chat/chat-source.js +132 -0
  4422. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts +18 -0
  4423. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts.map +1 -0
  4424. package/packages/ui/src/components/composites/chat/chat-thread-layout.js +28 -0
  4425. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts +19 -0
  4426. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts.map +1 -0
  4427. package/packages/ui/src/components/composites/chat/chat-transcript.js +82 -0
  4428. package/packages/ui/src/components/composites/chat/chat-types.d.ts +90 -0
  4429. package/packages/ui/src/components/composites/chat/chat-types.d.ts.map +1 -0
  4430. package/packages/ui/src/components/composites/chat/chat-types.js +1 -0
  4431. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts +10 -0
  4432. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts.map +1 -0
  4433. package/packages/ui/src/components/composites/chat/chat-typing-indicator.js +11 -0
  4434. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts +8 -0
  4435. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts.map +1 -0
  4436. package/packages/ui/src/components/composites/chat/create-task-popover.js +44 -0
  4437. package/packages/ui/src/components/composites/chat/index.d.ts +17 -0
  4438. package/packages/ui/src/components/composites/chat/index.d.ts.map +1 -0
  4439. package/packages/ui/src/components/composites/chat/index.js +16 -0
  4440. package/packages/ui/src/components/composites/form-field/form-field.d.ts +14 -0
  4441. package/packages/ui/src/components/composites/form-field/form-field.d.ts.map +1 -0
  4442. package/packages/ui/src/components/composites/form-field/form-field.js +8 -0
  4443. package/packages/ui/src/components/composites/form-field/index.d.ts +2 -0
  4444. package/packages/ui/src/components/composites/form-field/index.d.ts.map +1 -0
  4445. package/packages/ui/src/components/composites/form-field/index.js +1 -0
  4446. package/packages/ui/src/components/composites/index.d.ts +27 -0
  4447. package/packages/ui/src/components/composites/index.d.ts.map +1 -0
  4448. package/packages/ui/src/components/composites/index.js +26 -0
  4449. package/packages/ui/src/components/composites/page-panel/index.d.ts +29 -0
  4450. package/packages/ui/src/components/composites/page-panel/index.d.ts.map +1 -0
  4451. package/packages/ui/src/components/composites/page-panel/index.js +28 -0
  4452. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts +4 -0
  4453. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts.map +1 -0
  4454. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.js +60 -0
  4455. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts +3 -0
  4456. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts.map +1 -0
  4457. package/packages/ui/src/components/composites/page-panel/page-panel-empty.js +15 -0
  4458. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts +5 -0
  4459. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts.map +1 -0
  4460. package/packages/ui/src/components/composites/page-panel/page-panel-frame.js +9 -0
  4461. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts +7 -0
  4462. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts.map +1 -0
  4463. package/packages/ui/src/components/composites/page-panel/page-panel-header.js +30 -0
  4464. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts +3 -0
  4465. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts.map +1 -0
  4466. package/packages/ui/src/components/composites/page-panel/page-panel-loading.js +13 -0
  4467. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts +7 -0
  4468. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts.map +1 -0
  4469. package/packages/ui/src/components/composites/page-panel/page-panel-root.js +17 -0
  4470. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts +4 -0
  4471. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts.map +1 -0
  4472. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.js +6 -0
  4473. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts +66 -0
  4474. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts.map +1 -0
  4475. package/packages/ui/src/components/composites/page-panel/page-panel-types.js +1 -0
  4476. package/packages/ui/src/components/composites/search/index.d.ts +3 -0
  4477. package/packages/ui/src/components/composites/search/index.d.ts.map +1 -0
  4478. package/packages/ui/src/components/composites/search/index.js +2 -0
  4479. package/packages/ui/src/components/composites/search/search-input.d.ts.map +1 -0
  4480. package/packages/ui/src/components/composites/search/search-input.js +10 -0
  4481. package/packages/ui/src/components/composites/search/searchbar.d.ts +18 -0
  4482. package/packages/ui/src/components/composites/search/searchbar.d.ts.map +1 -0
  4483. package/packages/ui/src/components/composites/search/searchbar.js +25 -0
  4484. package/packages/ui/src/components/composites/sidebar/index.d.ts +11 -0
  4485. package/packages/ui/src/components/composites/sidebar/index.d.ts.map +1 -0
  4486. package/packages/ui/src/components/composites/sidebar/index.js +10 -0
  4487. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts +15 -0
  4488. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts.map +1 -0
  4489. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.js +292 -0
  4490. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts +4 -0
  4491. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts.map +1 -0
  4492. package/packages/ui/src/components/composites/sidebar/sidebar-body.js +7 -0
  4493. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts +11 -0
  4494. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts.map +1 -0
  4495. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.js +13 -0
  4496. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts +78 -0
  4497. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts.map +1 -0
  4498. package/packages/ui/src/components/composites/sidebar/sidebar-content.js +94 -0
  4499. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts +3 -0
  4500. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts.map +1 -0
  4501. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.js +14 -0
  4502. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts +3 -0
  4503. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts.map +1 -0
  4504. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.js +6 -0
  4505. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts +9 -0
  4506. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts.map +1 -0
  4507. package/packages/ui/src/components/composites/sidebar/sidebar-header.js +6 -0
  4508. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts +3 -0
  4509. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts.map +1 -0
  4510. package/packages/ui/src/components/composites/sidebar/sidebar-panel.js +18 -0
  4511. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts +4 -0
  4512. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts.map +1 -0
  4513. package/packages/ui/src/components/composites/sidebar/sidebar-root.js +448 -0
  4514. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts +3 -0
  4515. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts.map +1 -0
  4516. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.js +18 -0
  4517. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts +59 -0
  4518. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts.map +1 -0
  4519. package/packages/ui/src/components/composites/sidebar/sidebar-types.js +1 -0
  4520. package/packages/ui/src/components/composites/skills/index.d.ts +2 -0
  4521. package/packages/ui/src/components/composites/skills/index.d.ts.map +1 -0
  4522. package/packages/ui/src/components/composites/skills/index.js +1 -0
  4523. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts +16 -0
  4524. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts.map +1 -0
  4525. package/packages/ui/src/components/composites/skills/skill-sidebar-item.js +7 -0
  4526. package/packages/ui/src/components/composites/trajectories/index.d.ts +5 -0
  4527. package/packages/ui/src/components/composites/trajectories/index.d.ts.map +1 -0
  4528. package/packages/ui/src/components/composites/trajectories/index.js +4 -0
  4529. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts +13 -0
  4530. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts.map +1 -0
  4531. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.js +13 -0
  4532. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts +34 -0
  4533. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts.map +1 -0
  4534. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.js +14 -0
  4535. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts +26 -0
  4536. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts.map +1 -0
  4537. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.js +46 -0
  4538. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts +15 -0
  4539. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts.map +1 -0
  4540. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.js +8 -0
  4541. package/packages/ui/src/components/primitives/index.d.ts +26 -0
  4542. package/packages/ui/src/components/primitives/index.d.ts.map +1 -0
  4543. package/packages/ui/src/components/primitives/index.js +25 -0
  4544. package/packages/ui/src/components/shell/Header.d.ts +12 -0
  4545. package/packages/ui/src/components/shell/Header.d.ts.map +1 -0
  4546. package/packages/ui/src/components/shell/Header.js +133 -0
  4547. package/packages/ui/src/components/shell/ShellHeaderControls.d.ts +39 -0
  4548. package/packages/ui/src/components/shell/ShellHeaderControls.d.ts.map +1 -0
  4549. package/packages/ui/src/components/shell/ShellHeaderControls.js +70 -0
  4550. package/packages/ui/src/components/ui/admin-dialog.d.ts +50 -0
  4551. package/packages/ui/src/components/ui/admin-dialog.d.ts.map +1 -0
  4552. package/packages/ui/src/components/ui/admin-dialog.js +48 -0
  4553. package/packages/ui/src/components/ui/badge.d.ts +10 -0
  4554. package/packages/ui/src/components/ui/badge.d.ts.map +1 -0
  4555. package/packages/ui/src/components/ui/badge.js +21 -0
  4556. package/packages/ui/src/components/ui/banner.d.ts +17 -0
  4557. package/packages/ui/src/components/ui/banner.d.ts.map +1 -0
  4558. package/packages/ui/src/components/ui/banner.js +29 -0
  4559. package/packages/ui/src/components/ui/button.d.ts +13 -0
  4560. package/packages/ui/src/components/ui/button.d.ts.map +1 -0
  4561. package/packages/ui/src/components/ui/button.js +40 -0
  4562. package/packages/ui/src/components/ui/card.d.ts +15 -0
  4563. package/packages/ui/src/components/ui/card.d.ts.map +1 -0
  4564. package/packages/ui/src/components/ui/card.js +32 -0
  4565. package/packages/ui/src/components/ui/checkbox.d.ts.map +1 -0
  4566. package/packages/ui/src/components/ui/confirm-delete.d.ts +20 -0
  4567. package/packages/ui/src/components/ui/confirm-delete.d.ts.map +1 -0
  4568. package/packages/ui/src/components/ui/confirm-delete.js +16 -0
  4569. package/packages/ui/src/components/ui/confirm-dialog.d.ts +49 -0
  4570. package/packages/ui/src/components/ui/confirm-dialog.d.ts.map +1 -0
  4571. package/packages/ui/src/components/ui/confirm-dialog.js +90 -0
  4572. package/packages/ui/src/components/ui/connection-status.d.ts +15 -0
  4573. package/packages/ui/src/components/ui/connection-status.d.ts.map +1 -0
  4574. package/packages/ui/src/components/ui/connection-status.js +25 -0
  4575. package/packages/ui/src/components/ui/copy-button.d.ts.map +1 -0
  4576. package/packages/ui/src/components/ui/dialog.d.ts +25 -0
  4577. package/packages/ui/src/components/ui/dialog.d.ts.map +1 -0
  4578. package/packages/ui/src/components/ui/dialog.js +23 -0
  4579. package/packages/ui/src/components/ui/drawer-sheet.d.ts +19 -0
  4580. package/packages/ui/src/components/ui/drawer-sheet.d.ts.map +1 -0
  4581. package/packages/ui/src/components/ui/drawer-sheet.js +21 -0
  4582. package/packages/ui/src/components/ui/dropdown-menu.d.ts.map +1 -0
  4583. package/packages/ui/src/components/ui/dropdown-menu.js +35 -0
  4584. package/packages/ui/src/components/ui/empty-state.d.ts.map +1 -0
  4585. package/packages/ui/src/components/ui/error-boundary.d.ts +22 -0
  4586. package/packages/ui/src/components/ui/error-boundary.d.ts.map +1 -0
  4587. package/packages/ui/src/components/ui/error-boundary.js +27 -0
  4588. package/packages/ui/src/components/ui/field-switch.d.ts +8 -0
  4589. package/packages/ui/src/components/ui/field-switch.d.ts.map +1 -0
  4590. package/packages/ui/src/components/ui/field-switch.js +10 -0
  4591. package/packages/ui/src/components/ui/field.d.ts +12 -0
  4592. package/packages/ui/src/components/ui/field.d.ts.map +1 -0
  4593. package/packages/ui/src/components/ui/field.js +21 -0
  4594. package/packages/ui/src/components/ui/form-select.d.ts +14 -0
  4595. package/packages/ui/src/components/ui/form-select.d.ts.map +1 -0
  4596. package/packages/ui/src/components/ui/form-select.js +9 -0
  4597. package/packages/ui/src/components/ui/grid.d.ts +10 -0
  4598. package/packages/ui/src/components/ui/grid.d.ts.map +1 -0
  4599. package/packages/ui/src/components/ui/grid.js +31 -0
  4600. package/packages/ui/src/components/ui/input.d.ts +12 -0
  4601. package/packages/ui/src/components/ui/input.d.ts.map +1 -0
  4602. package/packages/ui/src/components/ui/input.js +29 -0
  4603. package/packages/ui/src/components/ui/label.d.ts +5 -0
  4604. package/packages/ui/src/components/ui/label.d.ts.map +1 -0
  4605. package/packages/ui/src/components/ui/label.js +10 -0
  4606. package/packages/ui/src/components/ui/new-action-button.d.ts +7 -0
  4607. package/packages/ui/src/components/ui/new-action-button.d.ts.map +1 -0
  4608. package/packages/ui/src/components/ui/new-action-button.js +13 -0
  4609. package/packages/ui/src/components/ui/popover.d.ts.map +1 -0
  4610. package/packages/ui/src/components/ui/save-footer.d.ts.map +1 -0
  4611. package/packages/ui/src/components/ui/save-footer.js +10 -0
  4612. package/packages/ui/src/components/ui/section-card.d.ts.map +1 -0
  4613. package/packages/ui/src/components/ui/section-card.js +10 -0
  4614. package/packages/ui/src/components/ui/segmented-control.d.ts +18 -0
  4615. package/packages/ui/src/components/ui/segmented-control.d.ts.map +1 -0
  4616. package/packages/ui/src/components/ui/segmented-control.js +10 -0
  4617. package/packages/ui/src/components/ui/select.d.ts.map +1 -0
  4618. package/packages/ui/src/components/ui/select.js +27 -0
  4619. package/packages/ui/src/components/ui/separator.d.ts.map +1 -0
  4620. package/packages/ui/src/components/ui/settings-controls.d.ts +41 -0
  4621. package/packages/ui/src/components/ui/settings-controls.d.ts.map +1 -0
  4622. package/packages/ui/src/components/ui/settings-controls.js +60 -0
  4623. package/packages/ui/src/components/ui/skeleton.d.ts.map +1 -0
  4624. package/packages/ui/src/components/ui/skeleton.js +24 -0
  4625. package/packages/ui/src/components/ui/slider.d.ts.map +1 -0
  4626. package/packages/ui/src/components/ui/slider.js +7 -0
  4627. package/packages/ui/src/components/ui/sonner.d.ts +2 -0
  4628. package/packages/ui/src/components/ui/sonner.d.ts.map +1 -0
  4629. package/packages/ui/src/components/ui/sonner.js +1 -0
  4630. package/packages/ui/src/components/ui/spinner.d.ts.map +1 -0
  4631. package/packages/ui/src/components/ui/stack.d.ts +11 -0
  4632. package/packages/ui/src/components/ui/stack.d.ts.map +1 -0
  4633. package/packages/ui/src/components/ui/stack.js +40 -0
  4634. package/packages/ui/src/components/ui/status-badge.d.ts +27 -0
  4635. package/packages/ui/src/components/ui/status-badge.d.ts.map +1 -0
  4636. package/packages/ui/src/components/ui/status-badge.js +70 -0
  4637. package/packages/ui/src/components/ui/switch.d.ts.map +1 -0
  4638. package/packages/ui/src/components/ui/switch.js +7 -0
  4639. package/packages/ui/src/components/ui/tabs.d.ts.map +1 -0
  4640. package/packages/ui/src/components/ui/tabs.js +12 -0
  4641. package/packages/ui/src/components/ui/tag-editor.d.ts +12 -0
  4642. package/packages/ui/src/components/ui/tag-editor.d.ts.map +1 -0
  4643. package/packages/ui/src/components/ui/tag-editor.js +34 -0
  4644. package/packages/ui/src/components/ui/tag-input.d.ts +3 -0
  4645. package/packages/ui/src/components/ui/tag-input.d.ts.map +1 -0
  4646. package/packages/ui/src/components/ui/tag-input.js +1 -0
  4647. package/packages/ui/src/components/ui/textarea.d.ts +12 -0
  4648. package/packages/ui/src/components/ui/textarea.d.ts.map +1 -0
  4649. package/packages/ui/src/components/ui/textarea.js +29 -0
  4650. package/packages/ui/src/components/ui/themed-select.d.ts +22 -0
  4651. package/packages/ui/src/components/ui/themed-select.d.ts.map +1 -0
  4652. package/packages/ui/src/components/ui/themed-select.js +137 -0
  4653. package/packages/ui/src/components/ui/tooltip-extended.d.ts +54 -0
  4654. package/packages/ui/src/components/ui/tooltip-extended.d.ts.map +1 -0
  4655. package/packages/ui/src/components/ui/tooltip-extended.js +116 -0
  4656. package/packages/ui/src/components/ui/tooltip.d.ts +18 -0
  4657. package/packages/ui/src/components/ui/tooltip.d.ts.map +1 -0
  4658. package/packages/ui/src/components/ui/tooltip.js +13 -0
  4659. package/packages/ui/src/components/ui/typography.d.ts +15 -0
  4660. package/packages/ui/src/components/ui/typography.d.ts.map +1 -0
  4661. package/packages/ui/src/components/ui/typography.js +46 -0
  4662. package/packages/ui/src/hooks/index.d.ts +6 -0
  4663. package/packages/ui/src/hooks/index.d.ts.map +1 -0
  4664. package/packages/ui/src/hooks/index.js +5 -0
  4665. package/packages/ui/src/hooks/useClickOutside.d.ts +3 -0
  4666. package/packages/ui/src/hooks/useClickOutside.d.ts.map +1 -0
  4667. package/packages/ui/src/hooks/useClickOutside.js +22 -0
  4668. package/packages/ui/src/hooks/useDocumentVisibility.d.ts +3 -0
  4669. package/packages/ui/src/hooks/useDocumentVisibility.d.ts.map +1 -0
  4670. package/packages/ui/src/hooks/useDocumentVisibility.js +28 -0
  4671. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts +13 -0
  4672. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  4673. package/packages/ui/src/hooks/useKeyboardShortcuts.js +34 -0
  4674. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts +16 -0
  4675. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts.map +1 -0
  4676. package/packages/ui/src/hooks/useLinkedSidebarSelection.js +117 -0
  4677. package/packages/ui/src/hooks/useTimeout.d.ts +5 -0
  4678. package/packages/ui/src/hooks/useTimeout.d.ts.map +1 -0
  4679. package/packages/ui/src/hooks/useTimeout.js +26 -0
  4680. package/packages/ui/src/index.d.ts +8 -0
  4681. package/packages/ui/src/index.d.ts.map +1 -0
  4682. package/packages/ui/src/index.js +7 -0
  4683. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts +11 -0
  4684. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts.map +1 -0
  4685. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.js +37 -0
  4686. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts +2 -0
  4687. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts.map +1 -0
  4688. package/packages/ui/src/layouts/chat-panel-layout/index.js +1 -0
  4689. package/packages/ui/src/layouts/content-layout/content-layout.d.ts +21 -0
  4690. package/packages/ui/src/layouts/content-layout/content-layout.d.ts.map +1 -0
  4691. package/packages/ui/src/layouts/content-layout/content-layout.js +5 -0
  4692. package/packages/ui/src/layouts/content-layout/index.d.ts +2 -0
  4693. package/packages/ui/src/layouts/content-layout/index.d.ts.map +1 -0
  4694. package/packages/ui/src/layouts/content-layout/index.js +1 -0
  4695. package/packages/ui/src/layouts/index.d.ts +5 -0
  4696. package/packages/ui/src/layouts/index.d.ts.map +1 -0
  4697. package/packages/ui/src/layouts/index.js +4 -0
  4698. package/packages/ui/src/layouts/layout-test-utils.d.ts +6 -0
  4699. package/packages/ui/src/layouts/layout-test-utils.d.ts.map +1 -0
  4700. package/packages/ui/src/layouts/layout-test-utils.js +36 -0
  4701. package/packages/ui/src/layouts/page-layout/index.d.ts +5 -0
  4702. package/packages/ui/src/layouts/page-layout/index.d.ts.map +1 -0
  4703. package/packages/ui/src/layouts/page-layout/index.js +4 -0
  4704. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts +5 -0
  4705. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts.map +1 -0
  4706. package/packages/ui/src/layouts/page-layout/page-layout-header.js +5 -0
  4707. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts +3 -0
  4708. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts.map +1 -0
  4709. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.js +18 -0
  4710. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts +15 -0
  4711. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts.map +1 -0
  4712. package/packages/ui/src/layouts/page-layout/page-layout-types.js +1 -0
  4713. package/packages/ui/src/layouts/page-layout/page-layout.d.ts +3 -0
  4714. package/packages/ui/src/layouts/page-layout/page-layout.d.ts.map +1 -0
  4715. package/packages/ui/src/layouts/page-layout/page-layout.js +5 -0
  4716. package/packages/ui/src/layouts/workspace-layout/index.d.ts +3 -0
  4717. package/packages/ui/src/layouts/workspace-layout/index.d.ts.map +1 -0
  4718. package/packages/ui/src/layouts/workspace-layout/index.js +2 -0
  4719. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts +19 -0
  4720. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts.map +1 -0
  4721. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.js +1 -0
  4722. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts +3 -0
  4723. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts.map +1 -0
  4724. package/packages/ui/src/layouts/workspace-layout/workspace-layout.js +59 -0
  4725. package/packages/ui/src/lib/floating-layers.d.ts +17 -0
  4726. package/packages/ui/src/lib/floating-layers.d.ts.map +1 -0
  4727. package/packages/ui/src/lib/floating-layers.js +20 -0
  4728. package/packages/ui/src/lib/utils.d.ts +3 -0
  4729. package/packages/ui/src/lib/utils.d.ts.map +1 -0
  4730. package/packages/ui/src/lib/utils.js +5 -0
  4731. package/packages/ui/src/stories/layout-story-fixtures.d.ts +14 -0
  4732. package/packages/ui/src/stories/layout-story-fixtures.d.ts.map +1 -0
  4733. package/packages/ui/src/stories/layout-story-fixtures.js +33 -0
  4734. package/packages/ui/src/types/onboarding.d.ts +8 -0
  4735. package/packages/ui/src/types/onboarding.d.ts.map +1 -0
  4736. package/packages/ui/src/types/onboarding.js +17 -0
  4737. package/styles/electrobun-mac-window-drag.css +85 -0
  4738. package/styles/theme.css +7 -0
  4739. package/README.md +0 -6
  4740. package/dist/components/ui/badge.d.ts +0 -10
  4741. package/dist/components/ui/badge.d.ts.map +0 -1
  4742. package/dist/components/ui/badge.js +0 -20
  4743. package/dist/components/ui/banner.d.ts +0 -18
  4744. package/dist/components/ui/banner.d.ts.map +0 -1
  4745. package/dist/components/ui/banner.js +0 -27
  4746. package/dist/components/ui/button.d.ts +0 -12
  4747. package/dist/components/ui/button.d.ts.map +0 -1
  4748. package/dist/components/ui/button.js +0 -33
  4749. package/dist/components/ui/card.d.ts +0 -9
  4750. package/dist/components/ui/card.d.ts.map +0 -1
  4751. package/dist/components/ui/card.js +0 -16
  4752. package/dist/components/ui/chat-atoms.d.ts +0 -26
  4753. package/dist/components/ui/chat-atoms.d.ts.map +0 -1
  4754. package/dist/components/ui/chat-atoms.js +0 -17
  4755. package/dist/components/ui/checkbox.d.ts.map +0 -1
  4756. package/dist/components/ui/confirm-delete.d.ts +0 -12
  4757. package/dist/components/ui/confirm-delete.d.ts.map +0 -1
  4758. package/dist/components/ui/confirm-delete.js +0 -13
  4759. package/dist/components/ui/confirm-dialog.d.ts +0 -24
  4760. package/dist/components/ui/confirm-dialog.d.ts.map +0 -1
  4761. package/dist/components/ui/confirm-dialog.js +0 -55
  4762. package/dist/components/ui/connection-status.d.ts +0 -9
  4763. package/dist/components/ui/connection-status.d.ts.map +0 -1
  4764. package/dist/components/ui/connection-status.js +0 -25
  4765. package/dist/components/ui/copy-button.d.ts.map +0 -1
  4766. package/dist/components/ui/dialog.d.ts +0 -20
  4767. package/dist/components/ui/dialog.d.ts.map +0 -1
  4768. package/dist/components/ui/dialog.js +0 -22
  4769. package/dist/components/ui/dropdown-menu.d.ts.map +0 -1
  4770. package/dist/components/ui/dropdown-menu.js +0 -35
  4771. package/dist/components/ui/empty-state.d.ts.map +0 -1
  4772. package/dist/components/ui/error-boundary.d.ts +0 -18
  4773. package/dist/components/ui/error-boundary.d.ts.map +0 -1
  4774. package/dist/components/ui/error-boundary.js +0 -27
  4775. package/dist/components/ui/grid.d.ts +0 -11
  4776. package/dist/components/ui/grid.d.ts.map +0 -1
  4777. package/dist/components/ui/grid.js +0 -30
  4778. package/dist/components/ui/input.d.ts +0 -6
  4779. package/dist/components/ui/input.d.ts.map +0 -1
  4780. package/dist/components/ui/input.js +0 -8
  4781. package/dist/components/ui/label.d.ts +0 -6
  4782. package/dist/components/ui/label.d.ts.map +0 -1
  4783. package/dist/components/ui/label.js +0 -9
  4784. package/dist/components/ui/popover.d.ts.map +0 -1
  4785. package/dist/components/ui/save-footer.d.ts.map +0 -1
  4786. package/dist/components/ui/save-footer.js +0 -9
  4787. package/dist/components/ui/search-bar.d.ts +0 -17
  4788. package/dist/components/ui/search-bar.d.ts.map +0 -1
  4789. package/dist/components/ui/search-bar.js +0 -19
  4790. package/dist/components/ui/search-input.d.ts.map +0 -1
  4791. package/dist/components/ui/search-input.js +0 -9
  4792. package/dist/components/ui/section-card.d.ts.map +0 -1
  4793. package/dist/components/ui/section-card.js +0 -9
  4794. package/dist/components/ui/select.d.ts.map +0 -1
  4795. package/dist/components/ui/select.js +0 -26
  4796. package/dist/components/ui/separator.d.ts.map +0 -1
  4797. package/dist/components/ui/skeleton.d.ts.map +0 -1
  4798. package/dist/components/ui/skeleton.js +0 -25
  4799. package/dist/components/ui/slider.d.ts.map +0 -1
  4800. package/dist/components/ui/slider.js +0 -7
  4801. package/dist/components/ui/sonner.d.ts +0 -5
  4802. package/dist/components/ui/sonner.d.ts.map +0 -1
  4803. package/dist/components/ui/sonner.js +0 -15
  4804. package/dist/components/ui/spinner.d.ts.map +0 -1
  4805. package/dist/components/ui/stack.d.ts +0 -13
  4806. package/dist/components/ui/stack.d.ts.map +0 -1
  4807. package/dist/components/ui/stack.js +0 -39
  4808. package/dist/components/ui/status-badge.d.ts +0 -20
  4809. package/dist/components/ui/status-badge.d.ts.map +0 -1
  4810. package/dist/components/ui/status-badge.js +0 -41
  4811. package/dist/components/ui/switch.d.ts.map +0 -1
  4812. package/dist/components/ui/switch.js +0 -7
  4813. package/dist/components/ui/tabs.d.ts.map +0 -1
  4814. package/dist/components/ui/tabs.js +0 -12
  4815. package/dist/components/ui/tag-editor.d.ts +0 -24
  4816. package/dist/components/ui/tag-editor.d.ts.map +0 -1
  4817. package/dist/components/ui/tag-editor.js +0 -32
  4818. package/dist/components/ui/tag-input.d.ts +0 -19
  4819. package/dist/components/ui/tag-input.d.ts.map +0 -1
  4820. package/dist/components/ui/tag-input.js +0 -28
  4821. package/dist/components/ui/textarea.d.ts +0 -6
  4822. package/dist/components/ui/textarea.d.ts.map +0 -1
  4823. package/dist/components/ui/textarea.js +0 -8
  4824. package/dist/components/ui/themed-select.d.ts +0 -27
  4825. package/dist/components/ui/themed-select.d.ts.map +0 -1
  4826. package/dist/components/ui/themed-select.js +0 -57
  4827. package/dist/components/ui/tooltip-extended.d.ts +0 -76
  4828. package/dist/components/ui/tooltip-extended.d.ts.map +0 -1
  4829. package/dist/components/ui/tooltip-extended.js +0 -128
  4830. package/dist/components/ui/tooltip.d.ts +0 -8
  4831. package/dist/components/ui/tooltip.d.ts.map +0 -1
  4832. package/dist/components/ui/tooltip.js +0 -10
  4833. package/dist/components/ui/typography.d.ts +0 -17
  4834. package/dist/components/ui/typography.d.ts.map +0 -1
  4835. package/dist/components/ui/typography.js +0 -44
  4836. package/dist/index.d.ts +0 -42
  4837. package/dist/index.d.ts.map +0 -1
  4838. package/dist/index.js +0 -43
  4839. package/dist/lib/button-styles.d.ts +0 -12
  4840. package/dist/lib/button-styles.d.ts.map +0 -1
  4841. package/dist/lib/button-styles.js +0 -11
  4842. package/dist/lib/utils.d.ts +0 -6
  4843. package/dist/lib/utils.d.ts.map +0 -1
  4844. package/dist/lib/utils.js +0 -8
  4845. package/dist/package.json +0 -64
  4846. package/dist/styles/theme.css +0 -193
  4847. package/src/styles/theme.css +0 -193
  4848. /package/{dist/components/ui → packages/ui/src/components/composites/search}/search-input.d.ts +0 -0
  4849. /package/{dist → packages/ui/src}/components/ui/checkbox.d.ts +0 -0
  4850. /package/{dist → packages/ui/src}/components/ui/checkbox.js +0 -0
  4851. /package/{dist → packages/ui/src}/components/ui/copy-button.d.ts +0 -0
  4852. /package/{dist → packages/ui/src}/components/ui/copy-button.js +0 -0
  4853. /package/{dist → packages/ui/src}/components/ui/dropdown-menu.d.ts +0 -0
  4854. /package/{dist → packages/ui/src}/components/ui/empty-state.d.ts +0 -0
  4855. /package/{dist → packages/ui/src}/components/ui/empty-state.js +0 -0
  4856. /package/{dist → packages/ui/src}/components/ui/popover.d.ts +0 -0
  4857. /package/{dist → packages/ui/src}/components/ui/popover.js +0 -0
  4858. /package/{dist → packages/ui/src}/components/ui/save-footer.d.ts +0 -0
  4859. /package/{dist → packages/ui/src}/components/ui/section-card.d.ts +0 -0
  4860. /package/{dist → packages/ui/src}/components/ui/select.d.ts +0 -0
  4861. /package/{dist → packages/ui/src}/components/ui/separator.d.ts +0 -0
  4862. /package/{dist → packages/ui/src}/components/ui/separator.js +0 -0
  4863. /package/{dist → packages/ui/src}/components/ui/skeleton.d.ts +0 -0
  4864. /package/{dist → packages/ui/src}/components/ui/slider.d.ts +0 -0
  4865. /package/{dist → packages/ui/src}/components/ui/spinner.d.ts +0 -0
  4866. /package/{dist → packages/ui/src}/components/ui/spinner.js +0 -0
  4867. /package/{dist → packages/ui/src}/components/ui/switch.d.ts +0 -0
  4868. /package/{dist → packages/ui/src}/components/ui/tabs.d.ts +0 -0
@@ -0,0 +1,2644 @@
1
+ {
2
+ "actions.refresh": "Refresh",
3
+ "advancedpageview.Database": "Cơ sở dữ liệu",
4
+ "advancedpageview.DatabaseDescription": "Bảng, phương tiện và trình duyệt vector",
5
+ "advancedpageview.Desktop": "Máy tính để bàn",
6
+ "advancedpageview.DesktopDescription": "Chẩn đoán runtime gốc, cửa sổ tách rời, hộp thoại tệp, bảng nhớ tạm và các điều khiển shell",
7
+ "advancedpageview.Logs": "Nhật ký",
8
+ "advancedpageview.LogsDescription": "Nhật ký runtime và dịch vụ",
9
+ "advancedpageview.Memories": "Memories",
10
+ "advancedpageview.MemoriesDescription": "Memories and vector browser",
11
+ "advancedpageview.Plugins": "Plugin",
12
+ "advancedpageview.PluginsDescription": "Tính năng và đầu nối",
13
+ "advancedpageview.Relationships": "Relationships",
14
+ "advancedpageview.RelationshipsDescription": "Con người, danh tính, dữ kiện và mối quan hệ xuyên kênh",
15
+ "advancedpageview.Runtime": "Thời gian chạy",
16
+ "advancedpageview.RuntimeDescription": "Kiểm tra sâu đối tượng runtime và thứ tự tải",
17
+ "advancedpageview.Security": "Bảo mật",
18
+ "advancedpageview.SecurityDescription": "Kho khóa API và thông tin xác thực",
19
+ "advancedpageview.Skills": "Kỹ năng",
20
+ "advancedpageview.SkillsDescription": "Kỹ năng tác tử tùy chỉnh",
21
+ "advancedpageview.Trajectories": "Quỹ đạo",
22
+ "advancedpageview.TrajectoriesDescription": "Lịch sử và phân tích cuộc gọi LLM",
23
+ "agentactivitybox.Error": "Lỗi",
24
+ "agentactivitybox.Running": "Đang chạy",
25
+ "agentactivitybox.RunningTool": "Đang chạy {{tool}}",
26
+ "agentactivitybox.WaitingForInput": "Đang chờ đầu vào",
27
+ "apikeyconfig.configured": "đã cấu hình",
28
+ "apikeyconfig.error": "Lỗi: {{message}}",
29
+ "apikeyconfig.failed": "thất bại",
30
+ "apikeyconfig.fetchModels": "Lấy Models",
31
+ "apikeyconfig.fetching": "Đang lấy...",
32
+ "apikeyconfig.loadedModels": "Đã tải {{count}} models",
33
+ "apikeyconfig.save": "Lưu",
34
+ "apikeyconfig.saved": "Đã lưu",
35
+ "apikeyconfig.saving": "Đang lưu...",
36
+ "appsview.Active": "Hoạt động",
37
+ "appsview.ActiveOnly": "Chỉ đang bật",
38
+ "appsview.Auth": "Xác thực",
39
+ "appsview.Back": "Quay lại",
40
+ "appsview.Capabilities": "Tính năng",
41
+ "appsview.CurrentGameOpened": "Đã mở trò chơi hiện tại trong tab mới.",
42
+ "appsview.Disabled": "tắt",
43
+ "appsview.EmptyCatalogHint": "Làm mới danh mục hoặc quay lại sau khi có thêm gói ứng dụng được cài đặt.",
44
+ "appsview.EmptySearchHint": "Hãy thử tìm kiếm rộng hơn hoặc xóa bộ lọc để duyệt toàn bộ danh mục.",
45
+ "appsview.EmptyStateDescription": "Duyệt danh mục, xem chi tiết khởi chạy và tiếp tục các phiên đang hoạt động từ một nơi.",
46
+ "appsview.EmptyStateTitle": "Chọn một ứng dụng để xem chi tiết",
47
+ "appsview.Enabled": "bật",
48
+ "appsview.GameRunning": "Trò chơi đang chạy",
49
+ "appsview.HelperText": "Chọn một ô ứng dụng để xem chi tiết khởi chạy, trạng thái phiên hiện tại và các thao tác trình xem khả dụng.",
50
+ "appsview.IframeAuthMissing": "{{name}} yêu cầu xác thực iframe nhưng chưa có payload xác thực nào được cấu hình.",
51
+ "appsview.Inactive": "Không hoạt động",
52
+ "appsview.Launch": "Trải nghiệm",
53
+ "appsview.LaunchFailed": "Không thể khởi chạy {{name}}: {{message}}",
54
+ "appsview.LaunchType": "Kiểu chạy",
55
+ "appsview.LaunchedNoViewer": "Đã khởi chạy {{name}} nhưng chưa có trình xem hoặc URL nào được cấu hình.",
56
+ "appsview.Launching": "Đang khởi chạy...",
57
+ "appsview.LoadError": "Không thể tải ứng dụng: {{message}}",
58
+ "appsview.Loading": "Đang tải...",
59
+ "appsview.NetworkError": "lỗi mạng",
60
+ "appsview.NoAppsAvailable": "Không có ứng dụng nào",
61
+ "appsview.NoAppsMatchSearch": "Không có ứng dụng nào khớp với tìm kiếm này",
62
+ "appsview.NoDescriptionAvailable": "Không có mô tả.",
63
+ "appsview.NoRunningApps": "No app runs are active right now.",
64
+ "appsview.NoRunningAppsHint": "Launch a game from the catalog and it will appear here as a reattachable run.",
65
+ "appsview.Open": "Mở {{name}}",
66
+ "appsview.OpenInTab": "Mở trong Tab",
67
+ "appsview.OpenedInNewTab": "Đã mở {{name}} trong tab mới.",
68
+ "appsview.PopupBlocked": "Cửa sổ bật lên bị chặn. Hãy cho phép cửa sổ bật lên rồi thử lại.",
69
+ "appsview.PopupBlockedOpen": "Trình chặn cửa sổ bật lên đã chặn việc mở {{name}}. Hãy cho phép cửa sổ bật lên rồi thử lại.",
70
+ "appsview.Repository": "Kho lưu trữ",
71
+ "appsview.Results": "{{count}} kết quả",
72
+ "appsview.Resume": "Tiếp tục",
73
+ "appsview.ResumeSession": "Tiếp tục",
74
+ "appsview.RunAttention": "Cần chú ý",
75
+ "appsview.Running": "Đang chạy",
76
+ "appsview.RunningNow": "Running now",
77
+ "appsview.Sandbox": "Hộp cát",
78
+ "appsview.Search": "Tìm kiếm ứng dụng",
79
+ "appsview.SearchPlaceholder": "Tìm theo tên hoặc mô tả",
80
+ "appsview.URL": "URL",
81
+ "appsview.Viewer": "Giao diện (Viewer)",
82
+ "aria.advancedNavigation": "Điều hướng nâng cao",
83
+ "aria.agentVoiceOff": "Tắt giọng nói đại lý",
84
+ "aria.agentVoiceOn": "Bật giọng nói đại lý",
85
+ "aria.attachImage": "Đính kèm hình ảnh",
86
+ "aria.chatMessage": "Tin nhắn trò chuyện",
87
+ "aria.chatWorkspace": "Không gian làm việc trò chuyện",
88
+ "aria.close": "Đóng",
89
+ "aria.closeConsole": "Đóng bảng điều khiển",
90
+ "aria.closeConsolePanel": "Đóng bảng điều khiển bên",
91
+ "aria.closeNavMenu": "Đóng menu điều hướng",
92
+ "aria.closePanel": "Đóng bảng",
93
+ "aria.databaseViews": "Các chế độ xem cơ sở dữ liệu",
94
+ "aria.deleteMessage": "Xóa tin nhắn",
95
+ "aria.dragOverlay": "Kéo lớp phủ",
96
+ "aria.editMessage": "Chỉnh sửa tin nhắn",
97
+ "aria.expandChatsPanel": "Mở rộng bảng chat",
98
+ "aria.knowledgeUpload": "Điều khiển tải lên kiến thức",
99
+ "aria.navMenu": "Menu điều hướng",
100
+ "aria.openChatsPanel": "Mở bảng chat",
101
+ "aria.openNavMenu": "Mở menu điều hướng",
102
+ "aria.playMessage": "Phát tin nhắn",
103
+ "aria.reconnecting": "Đang kết nối lại",
104
+ "aria.searchLogs": "Tìm kiếm nhật ký",
105
+ "aria.switchShellView": "Chuyển chế độ xem shell",
106
+ "aria.toggleTheme": "Chuyển đổi giao diện",
107
+ "aria.upload": "Tải lên",
108
+ "avatarselector.GitLfsPointer": ".vrm này là con trỏ Git LFS, không phải tệp mô hình thực. Trước tiên hãy tải xuống tệp VRM thực tế.",
109
+ "avatarselector.InvalidAvatarFile": "Tệp hình đại diện không hợp lệ",
110
+ "avatarselector.InvalidVrmBinary": "Tệp VRM không hợp lệ. Chọn một tệp nhị phân .vrm thực.",
111
+ "avatarselector.ReadSelectedFile": "Không thể đọc tập tin đó. Hãy thử một .vrm khác.",
112
+ "avatarselector.SelectVrmFile": "Vui lòng chọn tệp .vrm.",
113
+ "avatarselector.UploadCustomVrm": "Tải .vrm tuỳ chỉnh (click hoặc kéo thả)",
114
+ "avatarselector.UploadVRM": "Tải VRM lên",
115
+ "avatarselector.dropVrm": "thả .vrm",
116
+ "browserworkspace.ActionFailed": "Browser action failed.",
117
+ "browserworkspace.Active": "Active",
118
+ "browserworkspace.AddressPlaceholder": "Enter a URL",
119
+ "browserworkspace.Background": "Background",
120
+ "browserworkspace.Close": "Close",
121
+ "browserworkspace.DesktopBridge": "Desktop bridge",
122
+ "browserworkspace.EmptyDescription": "Open a page here, or let the agent create tabs through the {{appName}} browser workspace plugin.",
123
+ "browserworkspace.EmptyTitle": "No browser tabs yet",
124
+ "browserworkspace.Go": "Go",
125
+ "browserworkspace.LastSeen": "Last seen {{time}}",
126
+ "browserworkspace.LoadFailed": "Failed to load browser workspace.",
127
+ "browserworkspace.Loading": "Loading browser workspace",
128
+ "browserworkspace.NewTab": "New tab",
129
+ "browserworkspace.NoTabsOpen": "No tabs open yet.",
130
+ "browserworkspace.Open": "Open",
131
+ "browserworkspace.OpenExternal": "Open external",
132
+ "browserworkspace.OpenInitialBrowseFailed": "Failed to open the requested browser tab.",
133
+ "browserworkspace.OpenTabs": "Open tabs",
134
+ "browserworkspace.SidebarLabel": "Browser workspace",
135
+ "browserworkspace.Tabs": "Tabs",
136
+ "browserworkspace.Visible": "Visible",
137
+ "browserworkspace.WebWorkspace": "Web iframe workspace",
138
+ "bsctradepanel.BNB": "BNB:",
139
+ "bsctradepanel.BNB1": "BNB",
140
+ "bsctradepanel.Buy": "Mua",
141
+ "bsctradepanel.ConfirmTrade": "Xác nhận {{side}} giao dịch",
142
+ "bsctradepanel.Confirmations": "Xác nhận:",
143
+ "bsctradepanel.CopyApprovalTX": "Copy TX Approval",
144
+ "bsctradepanel.CopySwapTX": "Copy TX Swap",
145
+ "bsctradepanel.EnterValidBnbAmount": "Trước tiên, hãy nhập số lượng BNB hợp lệ.",
146
+ "bsctradepanel.EnterValidTokenAddress": "Trước tiên hãy nhập địa chỉ hợp đồng mã thông báo hợp lệ.",
147
+ "bsctradepanel.ExecuteTrade": "Thực hiện giao dịch",
148
+ "bsctradepanel.LatestQuote": "Báo giá mới nhất",
149
+ "bsctradepanel.Pending": "Đang chờ...",
150
+ "bsctradepanel.PolicyRejected": "Chính sách bị từ chối",
151
+ "bsctradepanel.Preflight": "Kiểm tra trước",
152
+ "bsctradepanel.PreflightChecksFailed": "Kiểm tra trước chuyến bay không thành công.",
153
+ "bsctradepanel.PreflightChecksPassed": "Kiểm tra trước chuyến bay đã được thông qua.",
154
+ "bsctradepanel.Quote": "Báo giá",
155
+ "bsctradepanel.QuoteReady": "Trích dẫn đã sẵn sàng: {{amount}} {{symbol}}",
156
+ "bsctradepanel.RefreshStatus": "Làm mới trạng thái",
157
+ "bsctradepanel.RequiresWalletSign": "Cần ký ví để hoàn tất.",
158
+ "bsctradepanel.Sell": "Bán",
159
+ "bsctradepanel.SellQuoteReady": "Báo giá bán đã sẵn sàng: {{amount}} {{symbol}}",
160
+ "bsctradepanel.SignSwapTransactionInWallet": "Ký giao dịch hoán đổi vào ví của bạn để hoàn tất giao dịch.",
161
+ "bsctradepanel.StewardPolicyRejected": "Chính sách tiếp viên bị từ chối: {{reason}}",
162
+ "bsctradepanel.StewardPolicyRejectedTransaction": "Chính sách tiếp viên đã từ chối giao dịch này",
163
+ "bsctradepanel.TokenAddedToWatchlist": "Mã thông báo được thêm vào danh sách theo dõi.",
164
+ "bsctradepanel.TokenContractAddre": "Địa chỉ contract token (0x...)",
165
+ "bsctradepanel.TradeNotReady": "Giao dịch chưa sẵn sàng",
166
+ "bsctradepanel.TradeReady": "Sẵn sàng giao dịch",
167
+ "bsctradepanel.TradeSignedViaStewardVault": "Giao dịch được ký qua Steward vault và gửi trên chuỗi.",
168
+ "bsctradepanel.ViewTx": "Xem tx",
169
+ "bsctradepanel.WaitingForStewardApproval": "Giao dịch đang chờ phê duyệt chính sách của Steward.",
170
+ "bsctradepanel.WaitingForStewardPolicyApproval": "Đang chờ phê duyệt chính sách của Người quản lý…",
171
+ "bsctradepanel.WalletReadyForBscTradingChecks": "Ví đã sẵn sàng để kiểm tra giao dịch BSC.",
172
+ "bsctradepanel.trade": "giao dịch?",
173
+ "bugreportmodal.22X": "22.x",
174
+ "bugreportmodal.ActualBehavior": "Hành vi thực tế",
175
+ "bugreportmodal.AddLogs": "Thêm nhật ký",
176
+ "bugreportmodal.AnthropicOpenAI": "Nhân loại / OpenAI / Ollama",
177
+ "bugreportmodal.BugReportSubmitted": "Đã gửi báo lỗi",
178
+ "bugreportmodal.Close": "Đóng",
179
+ "bugreportmodal.DescribeTheActual": "Mô tả kết quả thực tế.",
180
+ "bugreportmodal.DescribeTheExpecte": "Mô tả kết quả mong đợi.",
181
+ "bugreportmodal.DescribeTheIssueY": "Mô tả vấn đề bạn gặp phải.",
182
+ "bugreportmodal.DescriptionHint": "Mô tả những gì đã xảy ra và tại sao nó lại bất ngờ.",
183
+ "bugreportmodal.DiagnosticsSharedSuccessfully": "Chẩn đoán đã được chia sẻ thành công.",
184
+ "bugreportmodal.Environment": "Môi trường",
185
+ "bugreportmodal.ExpectedBehavior": "Hành vi mong đợi",
186
+ "bugreportmodal.HideLogs": "Ẩn nhật ký",
187
+ "bugreportmodal.Logs": "Nhật ký",
188
+ "bugreportmodal.LogsHint": "Chỉ dán các lỗi, dấu vết hoặc đầu ra bảng điều khiển có liên quan.",
189
+ "bugreportmodal.ModelProvider": "Nhà cung cấp Model",
190
+ "bugreportmodal.NodeVersion": "Phiên bản nút",
191
+ "bugreportmodal.Other": "Khác",
192
+ "bugreportmodal.PasteRelevantError": "Dán log lỗi liên quan",
193
+ "bugreportmodal.ReportABug": "Báo lỗi",
194
+ "bugreportmodal.ReportCopiedToClipboard": "Đã sao chép báo cáo vào clipboard.",
195
+ "bugreportmodal.ReproductionPrompt": "Hãy giúp chúng tôi tái hiện vấn đề bằng các bước cụ thể và thông tin chi tiết về môi trường.",
196
+ "bugreportmodal.Select": "Chọn...",
197
+ "bugreportmodal.StepsHint": "Bao gồm đường dẫn đáng tin cậy ngắn nhất tái tạo lỗi.",
198
+ "bugreportmodal.StepsToReproduce": "Các bước tái hiện",
199
+ "bugreportmodal.Times": "X",
200
+ "bugreportmodal.YourBugReportHas": "Báo lỗi đã được gửi thành công.",
201
+ "bugreportmodal.attachLogs": "Đính kèm nhật ký khởi động",
202
+ "bugreportmodal.attachSystemInfo": "Đính kèm thông tin hệ thống",
203
+ "bugreportmodal.copied": "Đã copy!",
204
+ "bugreportmodal.copiedDiagnostics": "Đã sao chép chẩn đoán!",
205
+ "bugreportmodal.copyAndOpenGitHub": "Copy & mở GitHub",
206
+ "bugreportmodal.copyDiagnostics": "Sao chép chẩn đoán",
207
+ "bugreportmodal.descriptionRequired": "Mô tả và các bước tái hiện là bắt buộc nha.",
208
+ "bugreportmodal.openLogsFolder": "Mở thư mục nhật ký",
209
+ "bugreportmodal.saveBundle": "Lưu gói báo cáo",
210
+ "bugreportmodal.savingBundle": "Gói tiết kiệm...",
211
+ "bugreportmodal.stepsPlaceholder": "1. Vào...\n2. Click vào...\n3. Thấy...",
212
+ "bugreportmodal.submit": "Gửi",
213
+ "bugreportmodal.submitting": "Đang gửi...",
214
+ "charactereditor.AboutMe": "Giới thiệu",
215
+ "charactereditor.AboutMePlaceholder": "Mô tả agent của bạn...",
216
+ "charactereditor.AddInline": "+ thêm",
217
+ "charactereditor.AddPost": "Thêm Bài viết",
218
+ "charactereditor.AgentNamePlaceholder": "Tên agent",
219
+ "charactereditor.ChatExamples": "Ví dụ Chat",
220
+ "charactereditor.ConversationN": "Đoạn hội thoại {n}",
221
+ "charactereditor.CustomizeBtn": "Tuỳ chỉnh",
222
+ "charactereditor.ExportJSON": "Xuất JSON",
223
+ "charactereditor.Generate": "tạo",
224
+ "charactereditor.Generating": "đang tạo...",
225
+ "charactereditor.LoadingCharacterData": "Đang tải dữ liệu nhân vật...",
226
+ "charactereditor.Name": "Tên",
227
+ "charactereditor.NoChatExamples": "Chưa có ví dụ chat.",
228
+ "charactereditor.NoPostExamples": "Chưa có ví dụ bài viết.",
229
+ "charactereditor.PageContextDesc.examples": "Các cuộc trò chuyện và bài đăng mẫu mà mô hình có thể bắt chước.",
230
+ "charactereditor.PageContextDesc.identity": "Tên, giọng nói, tiểu sử và lời nhắc của hệ thống - tác nhân là ai và nó sẽ hoạt động như thế nào.",
231
+ "charactereditor.PageContextDesc.style": "Các quy tắc ngắn điều chỉnh giọng điệu và cách diễn đạt trong cuộc trò chuyện và bài đăng.",
232
+ "charactereditor.PageContextTitle.examples": "Cuộc trò chuyện và bài đăng mẫu",
233
+ "charactereditor.PageContextTitle.identity": "Hồ sơ & chỉ đường",
234
+ "charactereditor.PageContextTitle.style": "Phong cách nói",
235
+ "charactereditor.PostExamples": "Ví dụ Bài viết",
236
+ "charactereditor.Regenerate": "tạo lại",
237
+ "charactereditor.Reset": "Khôi phục",
238
+ "charactereditor.ResetToDefaults": "Khôi phục mặc định",
239
+ "charactereditor.Save": "Lưu",
240
+ "charactereditor.Saved": "Đã lưu",
241
+ "charactereditor.Saving": "đang lưu...",
242
+ "charactereditor.SelectAVoice": "Chọn giọng nói",
243
+ "charactereditor.SelectBtn": "Chọn",
244
+ "charactereditor.SystemPrompt": "Lời nhắc hệ thống",
245
+ "charactereditor.SystemPromptPlaceholder": "Viết ở ngôi thứ nhất...",
246
+ "charactereditor.TabCharacter": "Nhân vật",
247
+ "charactereditor.TabExamples": "Ví dụ",
248
+ "charactereditor.TabKnowledge": "Tri thức",
249
+ "charactereditor.TabPersonality": "Tính cách",
250
+ "charactereditor.TabStyles": "Phong cách",
251
+ "charactereditor.TabbedEditorGroupLabel": "Trình chỉnh sửa ký tự - các phần được gắn thẻ",
252
+ "charactereditor.UploadVRM": "Tải lên",
253
+ "charactereditor.Voice": "Giọng nói",
254
+ "characterroster.LoadingPresets": "Đang tải cài đặt trước ký tự...",
255
+ "chat.agentStarting": "Agent đang khởi động...",
256
+ "chat.agentType": "Đại lý",
257
+ "chat.conversations": "Conversations",
258
+ "chat.createTask": "Tạo nhiệm vụ lập trình",
259
+ "chat.createTaskButton": "Tạo",
260
+ "chat.createTaskTitle": "Tạo nhiệm vụ lập trình",
261
+ "chat.inferenceCloudNotConnected": "Eliza Cloud đang bật hoặc tin nhắn trước dùng model trên cloud, nhưng {{appName}} chưa kết nối. Đăng nhập hoặc thêm API key tại Cài đặt → Cloud.",
262
+ "chat.inferenceStreamInterrupted": "Tin nhắn trước chưa stream xong (lỗi kết nối hoặc model). Xem log hoặc cấu hình model, hoặc thử lại.",
263
+ "chat.inputPlaceholder": "Nhập tin nhắn...",
264
+ "chat.inputPlaceholderNarrow": "Tin nhắn...",
265
+ "chat.listening": "Đang nghe...",
266
+ "chat.micTitleIdleEnhanced": "Nhập bằng giọng nói - câu trả lời của trợ lý sử dụng TTS thần kinh (ElevenLabs). Thay đổi trong Cài đặt → Giọng nói.",
267
+ "chat.micTitleIdleStandard": "Nhập bằng giọng nói - trợ lý sử dụng giọng nói của thiết bị. TTS thần kinh và thanh toán: Cài đặt → Giọng nói.",
268
+ "chat.releaseToSend": "Thả để gửi...",
269
+ "chat.send": "Gửi",
270
+ "chat.stopGeneration": "Dừng tạo",
271
+ "chat.stopListening": "Dừng nghe",
272
+ "chat.stopSpeaking": "Dừng nói",
273
+ "chat.taskDescriptionPlaceholder": "Mô tả những gì cần xây dựng...",
274
+ "chat.voiceInput": "Nhập giọng nói",
275
+ "chatmessage.DeleteMessage": "Xoá tin nhắn",
276
+ "chatmessage.ResponseInterrupte": "(Phản hồi bị gián đoạn)",
277
+ "chatmessage.SaveAndResend": "Lưu và gửi lại",
278
+ "chatmessage.Saving": "Đang lưu...",
279
+ "chatview.AttachImage": "Đính kèm ảnh",
280
+ "chatview.RemoveImage": "Xoá ảnh",
281
+ "chatview.SilenceEndFirstTo": "Im lặng end→first token:",
282
+ "chatview.msEndVoiceStart": "ms · kết thúc→bắt đầu bằng giọng nói:",
283
+ "chatview.msFirst": "cô\n · câu đầu tiên:",
284
+ "chatsidebar.Apps": "Ứng dụng",
285
+ "chatsidebar.OpenView": "Mở chế độ xem",
286
+ "cloudonboarding.ClickToOpenLogin": "Bấm vào đây để mở trang đăng nhập",
287
+ "cloudonboarding.ConnectButton": "Kết nối với đám mây Eliza",
288
+ "cloudonboarding.ConnectToElizaCloud": "Kết nối với Eliza Cloud để bắt đầu",
289
+ "cloudonboarding.ConnectedSetupAgent": "Đã kết nối! Đang thiết lập đại lý của bạn...",
290
+ "cloudonboarding.WaitingForLogin": "Đang chờ đăng nhập...",
291
+ "cloudsourcecontrols.Offline": "Ngoại tuyến",
292
+ "codingagentcontrolchip.ActiveSessions": "{{count}} phiên coding đang hoạt động",
293
+ "codingagentcontrolchip.StopAll": "Dừng tất cả",
294
+ "codingagentcontrolchip.StopAllTitle": "Dừng tất cả phiên tác vụ coding agent",
295
+ "codingagentsettingssection.AgentSelectionStra": "Chiến lược chọn Agent",
296
+ "codingagentsettingssection.AgentUsedWhenNoE": "Agent dùng khi không chỉ định loại trong yêu cầu spawn.",
297
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyFixed": "Luôn dùng agent mặc định đã chọn khi không chỉ định.",
298
+ "codingagentsettingssection.AgentUsedWhenNoEStrategyRanked": "Tự chọn agent tốt nhất dựa trên tỷ lệ thành công.",
299
+ "codingagentsettingssection.Anthropic": "Anthropic",
300
+ "codingagentsettingssection.AnthropicApiKey": "Anthropic API Key",
301
+ "codingagentsettingssection.AnthropicApiKeyDesc": "For Claude Code and Aider (Anthropic provider).",
302
+ "codingagentsettingssection.AppliesToAllNewlySpawned": " — áp dụng cho mọi agent mới spawn trừ khi ghi đè.",
303
+ "codingagentsettingssection.AuthenticateAgent": "Authenticate {{agent}}",
304
+ "codingagentsettingssection.AuthenticatingAgent": "Authenticating {{agent}}...",
305
+ "codingagentsettingssection.AutoSaveFailed": "Failed to save settings: {{error}}",
306
+ "codingagentsettingssection.Availability": "Khả dụng:",
307
+ "codingagentsettingssection.CloudPaired": "Using your Eliza Cloud account for coding agent LLM calls.",
308
+ "codingagentsettingssection.CloudUnpaired": "No Eliza Cloud account connected. Pair your account in the Cloud settings section first.",
309
+ "codingagentsettingssection.CodingDirectory": "Coding Directory",
310
+ "codingagentsettingssection.CodingDirectoryDesc": "Where coding agent scratch workspaces are created.",
311
+ "codingagentsettingssection.Default": "Mặc định",
312
+ "codingagentsettingssection.DefaultAgentType": "Loại Agent mặc định",
313
+ "codingagentsettingssection.DefaultPermissionL": "Mức quyền mặc định",
314
+ "codingagentsettingssection.EnterDeviceCodePrefix": "Enter code",
315
+ "codingagentsettingssection.EnterDeviceCodeSuffix": "at the sign-in page.",
316
+ "codingagentsettingssection.FastModel": "Model nhanh",
317
+ "codingagentsettingssection.Fixed": "Cố định",
318
+ "codingagentsettingssection.Google": "Google",
319
+ "codingagentsettingssection.GoogleApiKey": "Google API Key",
320
+ "codingagentsettingssection.GoogleApiKeyDesc": "For Gemini CLI and Aider (Google provider).",
321
+ "codingagentsettingssection.InstallWith": "Cài với",
322
+ "codingagentsettingssection.Installed": "Đã cài",
323
+ "codingagentsettingssection.LlmProvider": "LLM Provider",
324
+ "codingagentsettingssection.LlmProviderApiKeys": "API Keys",
325
+ "codingagentsettingssection.LlmProviderCloud": "Eliza Cloud",
326
+ "codingagentsettingssection.LlmProviderDescApiKeys": "Provide your own API keys for each provider (Anthropic, OpenAI, Google).",
327
+ "codingagentsettingssection.LlmProviderDescCloud": "Route all agent LLM calls through Eliza Cloud. Gemini CLI is not supported.",
328
+ "codingagentsettingssection.LlmProviderDescSubscription": "Use each CLI's built-in login (Claude Code, Codex, and Gemini subscriptions).",
329
+ "codingagentsettingssection.LlmProviderSubscription": "CLI Subscription",
330
+ "codingagentsettingssection.LoadingCodingAgent": "Đang tải cấu hình coding agent...",
331
+ "codingagentsettingssection.ModelsFetched": "Models lấy từ API provider. Đây là tuỳ chọn — CLI có thể ghi đè.",
332
+ "codingagentsettingssection.NoSupportedCLIs": "Không tìm thấy CLI coding agent hỗ trợ. Cài ít nhất: Claude, Gemini, Codex, hoặc Aider.",
333
+ "codingagentsettingssection.NotInstalled": "Chưa cài",
334
+ "codingagentsettingssection.OpenAI": "OpenAI",
335
+ "codingagentsettingssection.OpenSignInPage": "Open sign-in page →",
336
+ "codingagentsettingssection.OpenaiApiKey": "OpenAI API Key",
337
+ "codingagentsettingssection.OpenaiApiKeyDesc": "For Codex and Aider (OpenAI provider).",
338
+ "codingagentsettingssection.PowerfulModel": "Model mạnh",
339
+ "codingagentsettingssection.PresetAutonomous": "Tự chủ",
340
+ "codingagentsettingssection.PresetAutonomousDesc": "Mọi công cụ tự duyệt",
341
+ "codingagentsettingssection.PresetPermissive": "Dễ dãi",
342
+ "codingagentsettingssection.PresetPermissiveDesc": "File tự duyệt, hỏi shell",
343
+ "codingagentsettingssection.PresetReadOnly": "Chỉ đọc",
344
+ "codingagentsettingssection.PresetReadOnlyDesc": "Chỉ công cụ đọc",
345
+ "codingagentsettingssection.PresetStandardDesc": "Đọc + ghi, hỏi shell/network",
346
+ "codingagentsettingssection.Provider": "Nhà cung cấp",
347
+ "codingagentsettingssection.RankedAutoSelect": "Xếp hạng (tự chọn tốt nhất)",
348
+ "codingagentsettingssection.RetentionAlwaysKeep": "Always keep",
349
+ "codingagentsettingssection.RetentionAskMe": "Ask me",
350
+ "codingagentsettingssection.RetentionEphemeral": "Ephemeral",
351
+ "codingagentsettingssection.Retry": "Retry",
352
+ "codingagentsettingssection.ScratchRetention": "Scratch Retention",
353
+ "codingagentsettingssection.ScratchRetentionDesc": "What happens to scratch workspace code when a task finishes.",
354
+ "codingagentsettingssection.Unknown": "Không rõ",
355
+ "codingagentsettingssection.UsingFallback": "Dùng danh sách model dự phòng — cấu hình API key để xem đủ models.",
356
+ "commandpalette.Description": "Tìm kiếm lệnh và chuyển thẳng đến hành động.",
357
+ "commandpalette.NoCommandsFound": "Không tìm thấy lệnh",
358
+ "commandpalette.ResultsLabel": "Kết quả lệnh",
359
+ "commandpalette.SearchLabel": "Lệnh tìm kiếm",
360
+ "commandpalette.Title": "Bảng lệnh",
361
+ "commandpalette.TypeToSearchComma": "Gõ để tìm lệnh...",
362
+ "common.cancel": "Huỷ",
363
+ "common.clear": "Thông thoáng",
364
+ "common.close": "Đóng",
365
+ "common.connect": "Connect",
366
+ "common.connected": "Connected",
367
+ "common.connecting": "Đang khởi động…",
368
+ "common.continue": "Tiếp tục",
369
+ "common.disconnect": "Disconnect",
370
+ "common.disconnecting": "Đang ngắt kết nối…",
371
+ "common.error": "Lỗi",
372
+ "common.export": "Xuất",
373
+ "common.exporting": "Đang xuất...",
374
+ "common.hide": "Ẩn",
375
+ "common.loading": "Đang tải",
376
+ "common.notConnected": "Not connected",
377
+ "common.off": "TẮT",
378
+ "common.on": "BẬT",
379
+ "common.refresh": "Làm mới",
380
+ "common.remove": "Xóa",
381
+ "common.restart": "Khởi động lại agent",
382
+ "common.restarting": "Đang khởi động lại…",
383
+ "common.retry": "Thử lại",
384
+ "common.running": "Đang chạy...",
385
+ "common.save": "Cứu",
386
+ "common.send": "Gửi",
387
+ "common.submitting": "Đang gửi…",
388
+ "common.unknown": "Không rõ",
389
+ "common.validating": "Validating…",
390
+ "common.version": "Phiên bản",
391
+ "companion.agentVoiceOff": "Tắt giọng agent",
392
+ "companion.agentVoiceOn": "Bật giọng agent",
393
+ "companion.avatarPreviewAlt": "Xem trước avatar",
394
+ "companion.exitToApps": "Thoát về Apps",
395
+ "companion.newChat": "Chat mới",
396
+ "companion.newChatButton": "Chat mới",
397
+ "companion.voiceToggle": "Giọng nói",
398
+ "config-field.AddItem": "Thêm mục",
399
+ "config-field.AddRow": "Thêm dòng",
400
+ "config-field.Configured": "Đã cấu hình",
401
+ "config-field.CustomComponent": "Component custom:",
402
+ "config-field.Default": "Mặc định",
403
+ "config-field.Edit": "Sửa",
404
+ "config-field.EnterAFilePathOr": "Nhập đường dẫn file hoặc dán vào đây.",
405
+ "config-field.Key": "Chìa khóa",
406
+ "config-field.KeyValue": "JSON key-value",
407
+ "config-field.MoveDown": "Di xuống",
408
+ "config-field.MoveUp": "Di lên",
409
+ "config-field.NoMatches": "Không tìm thấy",
410
+ "config-field.NoOptionsDefined": "Chưa có tùy chọn",
411
+ "config-field.None": "Không có",
412
+ "config-field.NothingToPreview": "Không có gì để xem",
413
+ "config-field.Preview": "Xem trước",
414
+ "config-field.RemoveRow": "Xóa dòng",
415
+ "config-field.Times": "×",
416
+ "config-field.Value": "Giá trị",
417
+ "config-field.options": "tùy chọn",
418
+ "config-renderer.Advanced": "Nâng cao",
419
+ "config-renderer.Rarr": "→",
420
+ "config-renderer.attention": "chú ý",
421
+ "config-renderer.requiredFieldsConf": "trường bắt buộc đã cấu hình",
422
+ "config-renderer.total": "tổng",
423
+ "configpageview.AlchemyApiKey": "Khóa API giả kim",
424
+ "configpageview.AnkrApiKey": "Khóa API Ankr",
425
+ "configpageview.ApiKeyPlaceholder": "Nhập API key",
426
+ "configpageview.ApiKeySetPlaceholder": "Đã cài đặt — để trống để giữ nguyên",
427
+ "configpageview.BSC": "BSC",
428
+ "configpageview.BSCDesc": "Chuỗi thông minh BNB",
429
+ "configpageview.BirdeyeApiKey": "Khóa API Birdeye",
430
+ "configpageview.CloudLoginRequiredSvgTitle": "Yêu cầu đăng nhập Eliza Cloud",
431
+ "configpageview.CloudModeDesc": "RPC được quản lý cho tất cả các chuỗi. Không cần khóa API.",
432
+ "configpageview.CloudModeSvgTitle": "Eliza Cloud quản lý RPC",
433
+ "configpageview.CloudModeTitle": "Đám Mây Eliza",
434
+ "configpageview.CloudServices": "Dịch vụ Cloud",
435
+ "configpageview.CloudServicesDesc": "Chọn dịch vụ từ Eliza Cloud. Tắt inference nếu bạn muốn dùng API key của riêng mình.",
436
+ "configpageview.Config": "Cấu hình",
437
+ "configpageview.ConnectedToElizaCloud": "Đã kết nối Eliza Cloud",
438
+ "configpageview.Connecting": "Đang kết nối...",
439
+ "configpageview.Credits": "Tín dụng:",
440
+ "configpageview.CustomModeDesc": "Mang theo khóa API của riêng bạn. Cấu hình cho mỗi chuỗi.",
441
+ "configpageview.CustomModeSvgTitle": "Cấu hình RPC tùy chỉnh",
442
+ "configpageview.CustomModeTitle": "RPC tùy chỉnh",
443
+ "configpageview.CustomRpcProviders": "Nhà cung cấp RPC tùy chỉnh",
444
+ "configpageview.EVM": "EVM",
445
+ "configpageview.EVMDesc": "Ethereum, Base, Arbitrum",
446
+ "configpageview.ElizaCloudKeyInvalid": "Khóa Eliza Cloud không hợp lệ",
447
+ "configpageview.FixInCloudSettings": "Khắc phục trong cài đặt Đám mây",
448
+ "configpageview.HeliusApiKey": "Khóa API Helius",
449
+ "configpageview.InfuraApiKey": "Khóa API Infura",
450
+ "configpageview.LegacyRawRpcWarning": "RPC thô cũ vẫn hoạt động cho {{chains}}. Lưu lại lựa chọn nhà cung cấp được hỗ trợ để di chuyển hoàn toàn.",
451
+ "configpageview.LogIn": "Đăng nhập",
452
+ "configpageview.Mainnet": "Mạng chính",
453
+ "configpageview.ManagedRpcDesc": "Nhận các điểm cuối RPC được quản lý cho EVM, BSC và Solana mà không cần khóa API.",
454
+ "configpageview.NodeRealBscRpcUrl": "URL RPC NodeReal BSC",
455
+ "configpageview.QuickNodeBscRpcUrl": "URL RPC QuickNode BSC",
456
+ "configpageview.RequiresElizaCloud": "Yêu cầu Eliza Cloud",
457
+ "configpageview.RestartRequired": "Cần khởi động lại",
458
+ "configpageview.Secrets": "Bí mật",
459
+ "configpageview.SecretsVault": "Kho bí mật",
460
+ "configpageview.SecretsVault1": "Kho bí mật",
461
+ "configpageview.Solana": "Solana",
462
+ "configpageview.SolanaDesc": "Mạng chính Solana",
463
+ "configpageview.Testnet": "Mạng thử nghiệm",
464
+ "configpageview.TopUp": "Nạp thêm",
465
+ "configpageview.WalletNetwork": "Mạng ví",
466
+ "configpageview.WalletNetworkDesc": "Chọn Mainnet để lấy tiền trực tiếp hoặc Testnet để thực hành.",
467
+ "configpageview.WalletProvidersAnd": "Nhà cung cấp ví và bí mật.",
468
+ "confirmdeletecontrol.Cancel": "Hủy bỏ",
469
+ "confirmdeletecontrol.Confirm": "Xác nhận",
470
+ "confirmdeletecontrol.Delete": "Xóa",
471
+ "confirmdeletecontrol.DeletePrompt": "Xóa?",
472
+ "connectionfailedbanner.ConnectionLostAfte": "Mất kết nối sau",
473
+ "connectionfailedbanner.ReconnectingAtt": "Đang kết nối lại... (lần thử",
474
+ "connectionfailedbanner.attemptsRealTime": "lần. Cập nhật realtime đã tạm dừng.",
475
+ "connectionlostoverlay.AttemptsExhausted": "Realtime reconnect attempts exhausted: {{attempts}}.",
476
+ "connectionlostoverlay.ConnectionLost": "Connection Lost",
477
+ "connectionlostoverlay.ConnectionLostBody": "{{appName}} can’t talk to the local backend anymore. Restart the app or retry the connection once the server is back.",
478
+ "connectionlostoverlay.LostBackendConnection": "Lost backend connection.",
479
+ "connectionlostoverlay.Restart": "Restart",
480
+ "connectionlostoverlay.Restarting": "Restarting...",
481
+ "conversations.chats": "Chats",
482
+ "conversations.closePanel": "Đóng bảng",
483
+ "conversations.daysAgo": "{{count}} ngày trước",
484
+ "conversations.delete": "Xoá cuộc trò chuyện",
485
+ "conversations.deleteConfirm": "Xoá?",
486
+ "conversations.deleteNo": "Không",
487
+ "conversations.deleteYes": "Có",
488
+ "conversations.filterScope": "Nguồn",
489
+ "conversations.filterWorld": "Máy chủ / thế giới",
490
+ "conversations.hoursAgo": "{{count}} giờ trước",
491
+ "conversations.justNow": "vừa xong",
492
+ "conversations.minutesAgo": "{{count}} phút trước",
493
+ "conversations.newChat": "+ Chat mới",
494
+ "conversations.noMatchingChats": "Không có chat nào khớp với tìm kiếm của bạn",
495
+ "conversations.none": "Chưa có cuộc trò chuyện",
496
+ "conversations.noneConnectors": "Chưa có cuộc trò chuyện",
497
+ "conversations.none{{appName}}": "Chưa có cuộc trò chuyện",
498
+ "conversations.rename": "Đổi tên cuộc trò chuyện",
499
+ "conversations.renameDialogDescription": "Nhập tiêu đề bất kỳ hoặc dùng Gợi ý để tạo từ cuộc trò chuyện này (dùng mô hình đã cấu hình).",
500
+ "conversations.renameDialogLabel": "Tiêu đề chủ đề",
501
+ "conversations.renameDialogSave": "Lưu",
502
+ "conversations.renameDialogSaving": "Đang lưu…",
503
+ "conversations.renameDialogSuggest": "Gợi ý",
504
+ "conversations.renameDialogSuggesting": "Đang gợi ý…",
505
+ "conversations.renameDialogTitle": "Đổi chủ đề cuộc trò chuyện",
506
+ "conversations.scopeAllConnectors": "Tất cả trình kết nối",
507
+ "conversations.scopeAllWorlds": "Tất cả thế giới",
508
+ "conversations.scope{{appName}}": "{{appName}}",
509
+ "conversations.scopeUnknownWorld": "Thế giới chưa xác định",
510
+ "conversations.searchChats": "Tìm kiếm chat",
511
+ "customactioneditor.Add": "+ Thêm",
512
+ "customactioneditor.AddParameter": "+ Thêm tham số",
513
+ "customactioneditor.AliasesOptional": "Bí danh (tuỳ chọn)",
514
+ "customactioneditor.AvailableParams": "// Available: params.paramName, fetch()\\nreturn { result: params.input };",
515
+ "customactioneditor.BodyTemplateOptio": "Body Template (tuỳ chọn)",
516
+ "customactioneditor.CommaSeparatedAlte": "Các tên thay thế, cách nhau bằng dấu phẩy.",
517
+ "customactioneditor.CommandTemplate": "Mẫu lệnh",
518
+ "customactioneditor.DescribeWhatYouWa": "Mô tả bạn muốn action này làm gì",
519
+ "customactioneditor.Duration": "Thời gian:",
520
+ "customactioneditor.Error": "Lỗi:",
521
+ "customactioneditor.HandlerType": "Loại Handler",
522
+ "customactioneditor.HeaderName": "Header-Name",
523
+ "customactioneditor.HeadersOptional": "Headers (tuỳ chọn)",
524
+ "customactioneditor.JavaScriptCode": "Mã JavaScript",
525
+ "customactioneditor.MYACTION": "MY_ACTION",
526
+ "customactioneditor.Parameters": "Tham số",
527
+ "customactioneditor.SYNONYMONESYNONYM": "SYNONYM_ONE, SYNONYM_TWO",
528
+ "customactioneditor.Saving": "Đang lưu...",
529
+ "customactioneditor.Test": "Kiểm tra",
530
+ "customactioneditor.TestAction": "Hành động thử nghiệm",
531
+ "customactioneditor.Testing": "Đang thử nghiệm...",
532
+ "customactioneditor.TheAgentWillGener": "Agent sẽ tạo cấu hình action để bạn xem và chỉnh.",
533
+ "customactioneditor.WhatDoesThisActio": "Action này làm gì?",
534
+ "customactioneditor.eGCheckIfAWebs": "VD: Kiểm tra website có hoạt động không",
535
+ "customactioneditor.echoMessage": "echo {{message}} > /tmp/output.txt",
536
+ "customactioneditor.forParameterSubsti": "để thay thế tham số",
537
+ "customactioneditor.httpsApiExample": "https://api.example.com/{{param}}",
538
+ "customactioneditor.paramName": "paramName",
539
+ "customactioneditor.valueOrParam": "giá trị hoặc {{param}}",
540
+ "customactionspanel.ActionSummary": "tổng cộng {{actionCount}} · đã bật {{enabledCount}}",
541
+ "customactionspanel.AliasCountOne": "{{count}} bí danh",
542
+ "customactionspanel.AliasCountOther": "{{count}} bí danh",
543
+ "customactionspanel.CustomActions": "Actions tuỳ chỉnh",
544
+ "customactionspanel.DeleteAction": "Xoá action",
545
+ "customactionspanel.DeleteFailed": "Không thể xóa hành động này. Hãy thử lại.",
546
+ "customactionspanel.EditAction": "Sửa action",
547
+ "customactionspanel.HandlerTypeCode": "Mã",
548
+ "customactionspanel.HandlerTypeHttp": "HTTP",
549
+ "customactionspanel.HandlerTypeShell": "Vỏ",
550
+ "customactionspanel.LoadFailed": "Không thể tải hành động tùy chỉnh. Hãy thử lại.",
551
+ "customactionspanel.LoadingYourActions": "Đang tải actions...",
552
+ "customactionspanel.NewCustomAction": "+ Action tuỳ chỉnh mới",
553
+ "customactionspanel.NoActionsMatchSearch": "Không có gì phù hợp với tìm kiếm đó.",
554
+ "customactionspanel.NoActionsYet": "Chưa có hành động tùy chỉnh nào. Làm một cái để bắt đầu.",
555
+ "customactionspanel.SearchByNameDesc": "Tìm theo tên, mô tả, bí danh...",
556
+ "customactionspanel.UpdateFailed": "Không thể cập nhật hành động này. Hãy thử lại.",
557
+ "customactionsview.ActionCountOne": "{{count}} hành động",
558
+ "customactionsview.ActionCountOther": "{{count}} hành động",
559
+ "customactionsview.ActionRegistry": "Sổ đăng ký hành động",
560
+ "customactionsview.ActionRegistryDescription": "Tạo các định nghĩa hành động có thể sử dụng lại, sắp xếp các trình xử lý và nhanh chóng chuyển đổi hoặc sửa đổi các khối xây dựng tự động hóa mà không cần tìm hiểu sâu về cấu hình.",
561
+ "customactionsview.AllActions": "Mọi hành động",
562
+ "customactionsview.Cancel": "Hủy bỏ",
563
+ "customactionsview.CreateAction": "Tạo Action",
564
+ "customactionsview.CustomActions": "Hành động tùy chỉnh",
565
+ "customactionsview.Delete": "Xóa",
566
+ "customactionsview.DeleteCustomActionMessage": "Bạn có chắc chắn muốn xóa \"{{name}}\" không?",
567
+ "customactionsview.DeleteCustomActionTitle": "Xóa hành động tùy chỉnh",
568
+ "customactionsview.Disabled": "Đã tắt",
569
+ "customactionsview.EmptyDescription": "Tạo, nhập và quản lý các hành động tùy chỉnh từ một nơi để các tác vụ lặp lại luôn nhất quán và dễ kích hoạt.",
570
+ "customactionsview.EmptyTitle": "Xây dựng các hành động có thể tái sử dụng cho quy trình công việc mạnh mẽ.",
571
+ "customactionsview.Enabled": "Bật",
572
+ "customactionsview.Filtered": "Đã lọc",
573
+ "customactionsview.Handler": "Người xử lý",
574
+ "customactionsview.ImportFailedMessage": "Không thể nhập hành động. Vui lòng kiểm tra định dạng tập tin.",
575
+ "customactionsview.ImportFailedTitle": "Nhập không thành công",
576
+ "customactionsview.LoadingActions": "Đang tải actions...",
577
+ "customactionsview.NoActionsMatchFiltersDescription": "Hãy thử tên khác, loại trình xử lý hoặc xóa trường tìm kiếm để xem mọi hành động đã lưu.",
578
+ "customactionsview.NoActionsMatchFiltersTitle": "Không có hành động nào phù hợp với bộ lọc hiện tại của bạn.",
579
+ "customactionsview.NoDescriptionYet": "Chưa có mô tả. Mở hành động này để ghi lại thời điểm nó nên chạy và những gì nó nên làm.",
580
+ "customactionsview.ParameterCountOne": "tham số {{count}}",
581
+ "customactionsview.ParameterCountOther": "{{count}} thông số",
582
+ "customactionsview.SearchActionsByNa": "Tìm action theo tên hoặc mô tả...",
583
+ "customactionsview.SearchAndManage": "Tìm kiếm và quản lý",
584
+ "customactionsview.parameter": "tham số",
585
+ "databasepageview.Vectors": "Vectơ",
586
+ "databaseview.CellValue": "Giá trị ô",
587
+ "databaseview.ChooseATableFrom": "Chọn bảng từ sidebar",
588
+ "databaseview.Database": "Cơ sở dữ liệu",
589
+ "databaseview.DatabaseNotAvailab": "Database không khả dụng",
590
+ "databaseview.EditorModes": "Chế độ soạn thảo cơ sở dữ liệu",
591
+ "databaseview.EmptyTableDescription": "Bảng này đã được kết nối và sẵn sàng, nhưng chưa có hàng nào.",
592
+ "databaseview.FailedToLoadTable": "Không tải được bảng: {{message}}",
593
+ "databaseview.FailedToLoadTables": "Không tải được bảng: {{message}}",
594
+ "databaseview.FilterTables": "Lọc bảng...",
595
+ "databaseview.Loading": "Đang tải...",
596
+ "databaseview.NULL": "NULL",
597
+ "databaseview.Prev": "Trước",
598
+ "databaseview.QueryFailed": "Truy vấn không thành công: {{message}}",
599
+ "databaseview.QueryNoRowsDescription": "Truy vấn đã hoàn tất thành công nhưng không trả về hàng nào.",
600
+ "databaseview.QueryReturnedNoRo": "Query không trả về dòng nào",
601
+ "databaseview.QueryWorkspaceInfo": "Viết các truy vấn đặc biệt và kiểm tra kết quả mà không cần rời khỏi không gian làm việc của cơ sở dữ liệu.",
602
+ "databaseview.RecentQueries": "Query gần đây",
603
+ "databaseview.RowCountLabel": "{{count}} hàng",
604
+ "databaseview.RowCountSummary": "{{count}} {{rowLabel}}{{range}}",
605
+ "databaseview.Rows": "hàng",
606
+ "databaseview.SELECTFROMMemori": "SELECT * FROM memories LIMIT 100;",
607
+ "databaseview.SQLEditor": "Trình soạn thảo SQL",
608
+ "databaseview.SQLWorkspace": "SQL Không gian làm việc",
609
+ "databaseview.SQLWorkspaceDescription": "Chạy các truy vấn đặc biệt, kiểm tra kết quả và sử dụng lại SQL gần đây từ thanh bên.",
610
+ "databaseview.SelectATable": "Chọn một bảng",
611
+ "databaseview.ShowingRange": "· hiển thị {{start}}-{{end}}",
612
+ "databaseview.TableBrowser": "Trình duyệt bảng",
613
+ "databaseview.TableEditor": "Trình sửa bảng",
614
+ "databaseview.TableIsEmpty": "Bảng trống",
615
+ "databaseview.TableWorkspaceDescription": "Kiểm tra hàng, sắp xếp cột và xem lại cấu trúc bảng ở một nơi.",
616
+ "databaseview.Tables": "Bảng",
617
+ "databaseview.TheDatabaseViewer": "Trình xem database chỉ khả dụng khi agent runtime đang chạy.",
618
+ "databaseview.columns": "cột",
619
+ "databaseview.hideSidebar": "Ẩn sidebar",
620
+ "databaseview.row": "dòng",
621
+ "databaseview.rows": "hàng",
622
+ "databaseview.runQuery": "Chạy Query",
623
+ "databaseview.showSidebar": "Hiện sidebar",
624
+ "databaseview.tables": "bảng",
625
+ "desktopworkspacesection.AgentRestartRequested": "Đã yêu cầu khởi động lại đại lý.",
626
+ "desktopworkspacesection.ClearClipboard": "Xóa bảng tạm",
627
+ "desktopworkspacesection.ClipboardAndPaths": "Bảng nhớ tạm + Đường dẫn",
628
+ "desktopworkspacesection.ClipboardAndPathsDescription": "Đọc, xóa và ghi văn bản vào clipboard, sau đó mở hoặc hiển thị các đường dẫn đã lưu.",
629
+ "desktopworkspacesection.ClipboardDetailsUnavailable": "Chi tiết bảng nhớ tạm không có sẵn.",
630
+ "desktopworkspacesection.ClipboardDraft": "Bản nháp bảng nhớ tạm",
631
+ "desktopworkspacesection.ClipboardTextUnavailable": "Văn bản bảng nhớ tạm không có sẵn.",
632
+ "desktopworkspacesection.CopyDraft": "Sao chép bản nháp",
633
+ "desktopworkspacesection.DesktopActionFailed": "Hành động trên máy tính để bàn không thành công.",
634
+ "desktopworkspacesection.DesktopDiagnosticsUnavailable": "Chẩn đoán máy tính để bàn không có sẵn.",
635
+ "desktopworkspacesection.DesktopRelaunchRequested": "Đã yêu cầu khởi chạy lại máy tính để bàn.",
636
+ "desktopworkspacesection.DesktopToolsOnlyAvailable": "Các công cụ không gian làm việc trên máy tính để bàn chỉ khả dụng trong thời gian chạy máy tính để bàn Electrobun.",
637
+ "desktopworkspacesection.DetachedSurfaces": "Bề mặt tách rời",
638
+ "desktopworkspacesection.DetachedSurfacesDescription": "Khởi chạy các bề mặt Electrobun gốc mà không cần điều hướng khỏi lớp vỏ chính.",
639
+ "desktopworkspacesection.Diagnostics": "Chẩn đoán",
640
+ "desktopworkspacesection.DiagnosticsDescription": "Phiên bản, cửa sổ, màn hình, khay nhớ tạm và trạng thái đường dẫn từ vỏ máy tính để bàn.",
641
+ "desktopworkspacesection.DisableAutoLaunch": "Tắt Tự động khởi chạy",
642
+ "desktopworkspacesection.EnableAutoLaunch": "Bật Tự động khởi chạy",
643
+ "desktopworkspacesection.FileDialogCompleted": "Hộp thoại tập tin đã hoàn tất.",
644
+ "desktopworkspacesection.FocusWindow": "Cửa sổ lấy nét",
645
+ "desktopworkspacesection.FolderDialogCompleted": "Hộp thoại thư mục đã hoàn tất.",
646
+ "desktopworkspacesection.Formats": "Định dạng:",
647
+ "desktopworkspacesection.HideWindow": "Ẩn cửa sổ",
648
+ "desktopworkspacesection.LaunchHiddenOnLogin": "Khởi chạy Ẩn khi đăng nhập",
649
+ "desktopworkspacesection.LaunchVisibleOnLogin": "Khởi chạy Hiển thị khi đăng nhập",
650
+ "desktopworkspacesection.Lifecycle": "Vòng đời",
651
+ "desktopworkspacesection.LifecycleDescription": "Khởi động lại chương trình phụ trợ, khởi chạy lại ứng dụng hoặc chuyển đổi hành vi tự động khởi chạy.",
652
+ "desktopworkspacesection.MaximizeWindow": "Phóng to cửa sổ",
653
+ "desktopworkspacesection.MinimizeWindow": "Thu nhỏ cửa sổ",
654
+ "desktopworkspacesection.NativeFileDialogs": "Hộp thoại tệp gốc",
655
+ "desktopworkspacesection.NativeFileDialogsDescription": "Kiểm tra tệp, thư mục và hộp thoại lưu cũng như kiểm tra các đường dẫn được trả về.",
656
+ "desktopworkspacesection.NoPathSelectedYet": "Chưa có đường dẫn nào được chọn.",
657
+ "desktopworkspacesection.NotificationBody": "Kiểm tra thông báo không gian làm việc trên máy tính để bàn.",
658
+ "desktopworkspacesection.NotificationSent": "Đã gửi thông báo.",
659
+ "desktopworkspacesection.NotificationTitle": "Máy tính để bàn",
660
+ "desktopworkspacesection.OpenDesktopSettingsWindow": "Mở cửa sổ cài đặt màn hình",
661
+ "desktopworkspacesection.OpenDialogResult": "Kết quả hộp thoại mở",
662
+ "desktopworkspacesection.OpenFilesDialog": "Hộp thoại mở tệp",
663
+ "desktopworkspacesection.OpenFolderDialog": "Hộp thoại mở thư mục",
664
+ "desktopworkspacesection.OpenSavedPath": "Mở đường dẫn đã lưu",
665
+ "desktopworkspacesection.OpenedDetachedDesktopSettingsWindow": "Đã mở cửa sổ cài đặt máy tính để bàn tách rời.",
666
+ "desktopworkspacesection.OpenedSavedPath": "Đã mở đường dẫn đã lưu.",
667
+ "desktopworkspacesection.PlainText": "văn bản thuần túy",
668
+ "desktopworkspacesection.ReadClipboard": "Đọc bảng nhớ tạm",
669
+ "desktopworkspacesection.RefreshDiagnostics": "Làm mới chẩn đoán",
670
+ "desktopworkspacesection.Relaunch": "Khởi chạy lại",
671
+ "desktopworkspacesection.RestartAgent": "Khởi động lại đại lý",
672
+ "desktopworkspacesection.RestoreWindow": "Khôi phục cửa sổ",
673
+ "desktopworkspacesection.RevealSavedPath": "Tiết lộ đường dẫn đã lưu",
674
+ "desktopworkspacesection.RevealedSavedPath": "Tiết lộ đường dẫn đã lưu.",
675
+ "desktopworkspacesection.SaveDialogCompleted": "Hộp thoại lưu đã hoàn tất.",
676
+ "desktopworkspacesection.SaveDialogResult": "Lưu kết quả hộp thoại",
677
+ "desktopworkspacesection.SaveFile": "Lưu tập tin",
678
+ "desktopworkspacesection.SaveFileDialog": "Hộp thoại Lưu tệp",
679
+ "desktopworkspacesection.SelectFiles": "Chọn tập tin",
680
+ "desktopworkspacesection.SelectFolder": "Chọn thư mục",
681
+ "desktopworkspacesection.SendTestNotification": "Gửi thông báo kiểm tra",
682
+ "desktopworkspacesection.ShowWindow": "Hiển thị cửa sổ",
683
+ "desktopworkspacesection.SurfaceOpened": "Đã mở {{surface}}.",
684
+ "desktopworkspacesection.UnmaximizeWindow": "Không phóng to cửa sổ",
685
+ "desktopworkspacesection.WindowControls": "Điều khiển cửa sổ",
686
+ "desktopworkspacesection.WindowControlsDescription": "Kiểm soát cửa sổ máy tính để bàn chính trực tiếp từ cài đặt.",
687
+ "desktopworkspacesection.surface.chat.label": "Cửa sổ trò chuyện",
688
+ "desktopworkspacesection.surface.cloud.label": "Cửa sổ đám mây",
689
+ "desktopworkspacesection.surface.connectors.label": "Cửa sổ kết nối",
690
+ "desktopworkspacesection.surface.plugins.label": "Cửa sổ plugin",
691
+ "desktopworkspacesection.surface.release.label": "Trung tâm phát hành",
692
+ "desktopworkspacesection.surface.triggers.label": "Cửa sổ nhịp tim",
693
+ "detachedshell.SetupInProgress": "Đang thiết lập",
694
+ "detachedshell.SetupInProgressDesc": "Trước tiên hãy hoàn tất quá trình giới thiệu trong cửa sổ chính. Cửa sổ này sẽ khả dụng khi đại lý của bạn sẵn sàng.",
695
+ "detachedshell.UnknownView": "Chế độ xem không xác định: {{view}}",
696
+ "elizaclouddashboard.AccountIdApiKeyOnly": "Chỉ dùng API key — đăng nhập qua trình duyệt để hiển thị ID người dùng trên cloud.",
697
+ "elizaclouddashboard.AccountIdSessionNoUserId": "Không hiển thị ID người dùng — cloud vẫn hoạt động.",
698
+ "elizaclouddashboard.AdminLock": "Admin lock",
699
+ "elizaclouddashboard.AdvancedDashboard": "Dashboard nâng cao",
700
+ "elizaclouddashboard.AgentName": "Tên Agent",
701
+ "elizaclouddashboard.AgentWalletDetected": "Đã phát hiện ví agent. Nạp tiền vào ví trước khi trả bằng crypto.",
702
+ "elizaclouddashboard.AgentWalletFunded": "Đã phát hiện ví agent có tiền. Lấy báo giá rồi trả từ ví khi có chi tiết chuyển.",
703
+ "elizaclouddashboard.Agents": "Đại lý",
704
+ "elizaclouddashboard.AutoTopUp": "Tự động nạp",
705
+ "elizaclouddashboard.AutoTopUpAmountRange": "Số tiền tự động nạp tiền phải nằm trong khoảng từ ${{min}} đến ${{max}}.",
706
+ "elizaclouddashboard.AutoTopUpNeedsPaymentMethod": "Thanh toán bằng thẻ một lần để lưu phương thức trước khi bật tự động nạp.",
707
+ "elizaclouddashboard.AutoTopUpPaymentReady": "Đã lưu phương thức thanh toán, có thể bật tự động nạp.",
708
+ "elizaclouddashboard.AutoTopUpThresholdRange": "Ngưỡng nạp tiền tự động phải nằm trong khoảng từ ${{min}} đến ${{max}}.",
709
+ "elizaclouddashboard.Billing": "Thanh toán",
710
+ "elizaclouddashboard.BillingSettingsUpdated": "Đã cập nhật cài đặt thanh toán.",
711
+ "elizaclouddashboard.BillingSummaryUnavailable": "Tóm tắt thanh toán không có sẵn.",
712
+ "elizaclouddashboard.BotNickname": "Bot nickname",
713
+ "elizaclouddashboard.BscOnlyAgentWalletPayment": "Thanh toán qua ví đại lý hiện chỉ được chuyển cho báo giá BSC.",
714
+ "elizaclouddashboard.CheckoutProviderNote": "Stripe vẫn hosted vì Eliza Cloud trả về URL checkout. Báo giá crypto nằm trong app.",
715
+ "elizaclouddashboard.CheckoutSessionMissing": "Eliza Cloud đã không trả lại phiên thanh toán.",
716
+ "elizaclouddashboard.CloudAgentsComingSoon": "Đại lý đám mây sắp ra mắt",
717
+ "elizaclouddashboard.CloudAgentsComingSoonDesc": "Eliza Cloud đang được chuẩn bị sản xuất. Bạn sẽ sớm có thể triển khai và quản lý các tác nhân đám mây tại đây.",
718
+ "elizaclouddashboard.CloudDashboard": "Bảng điều khiển Cloud",
719
+ "elizaclouddashboard.ConnectDiscord": "Connect Discord",
720
+ "elizaclouddashboard.ConnectElizaCloud": "Kết nối Eliza Cloud",
721
+ "elizaclouddashboard.ConnectGitHub": "Kết nối GitHub",
722
+ "elizaclouddashboard.CreditsCritical": "Nguy hiểm",
723
+ "elizaclouddashboard.CreditsHealthy": "Khoẻ",
724
+ "elizaclouddashboard.CreditsLabel": "tín chỉ",
725
+ "elizaclouddashboard.CreditsLow": "Sắp hết",
726
+ "elizaclouddashboard.CryptoPaymentFailed": "Thanh toán bằng tiền điện tử không thành công.",
727
+ "elizaclouddashboard.CryptoPaymentSubmitted": "Thanh toán bằng tiền điện tử được gửi từ ví đại lý{{note}}.",
728
+ "elizaclouddashboard.CryptoQuoteMissingTransferDetails": "Báo giá tiền điện tử thiếu chi tiết chuyển khoản.",
729
+ "elizaclouddashboard.DatabaseStatus": "Trạng thái cơ sở dữ liệu",
730
+ "elizaclouddashboard.Deploy": "Triển khai",
731
+ "elizaclouddashboard.DeployNewAgent": "Deploy Agent mới",
732
+ "elizaclouddashboard.DisconnectDiscord": "Disconnect",
733
+ "elizaclouddashboard.DisconnectGitHub": "Ngắt kết nối",
734
+ "elizaclouddashboard.Discord": "Discord",
735
+ "elizaclouddashboard.DiscordActions": "Action Toggles",
736
+ "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.",
737
+ "elizaclouddashboard.DiscordAdvanced": "Advanced",
738
+ "elizaclouddashboard.DiscordChunkLimit": "Text chunk limit",
739
+ "elizaclouddashboard.DiscordConnectedAt": "Linked {{time}}",
740
+ "elizaclouddashboard.DiscordDisconnectFailed": "Failed to disconnect managed Discord.",
741
+ "elizaclouddashboard.DiscordDisconnected": "Managed Discord disconnected from this agent.",
742
+ "elizaclouddashboard.DiscordDmEnabled": "DMs enabled",
743
+ "elizaclouddashboard.DiscordDmPolicy": "DM Policy",
744
+ "elizaclouddashboard.DiscordDmPolicyLabel": "Policy",
745
+ "elizaclouddashboard.DiscordExecApprovals": "Exec approvals via DM",
746
+ "elizaclouddashboard.DiscordFormatting": "Message Formatting",
747
+ "elizaclouddashboard.DiscordGroupDms": "Group DMs",
748
+ "elizaclouddashboard.DiscordGuildMembersIntent": "Guild Members",
749
+ "elizaclouddashboard.DiscordGuildSettings": "Guild Settings",
750
+ "elizaclouddashboard.DiscordIntents": "Privileged Intents",
751
+ "elizaclouddashboard.DiscordIntentsWarning": "Privileged intents require opt-in via the Discord Developer Portal. Enable them there first or the bot will fail to connect.",
752
+ "elizaclouddashboard.DiscordManagedAppUnavailable": "The shared Discord app is not configured on Eliza Cloud yet.",
753
+ "elizaclouddashboard.DiscordMaxLines": "Max lines per message",
754
+ "elizaclouddashboard.DiscordPluralKit": "PluralKit integration",
755
+ "elizaclouddashboard.DiscordPresenceIntent": "Presence",
756
+ "elizaclouddashboard.DiscordReactionNotifs": "Reaction notifications",
757
+ "elizaclouddashboard.DiscordRequireMention": "Require @mention",
758
+ "elizaclouddashboard.DiscordSaveSettings": "Save Discord Settings",
759
+ "elizaclouddashboard.DiscordSettings": "Discord Settings",
760
+ "elizaclouddashboard.DiscordSettingsLoadError": "Could not load Discord settings. The cloud endpoint may not be available yet.",
761
+ "elizaclouddashboard.DiscordSettingsSaveFailed": "Failed to save Discord settings.",
762
+ "elizaclouddashboard.DiscordSettingsSaved": "Discord settings saved.",
763
+ "elizaclouddashboard.DiscordSetupContinuesInBrowser": "Finish Discord setup in your browser, then return here.",
764
+ "elizaclouddashboard.DiscordSetupFailed": "Failed to start Discord setup.",
765
+ "elizaclouddashboard.ElizaCloudNotConnected": "Chưa kết nối Eliza Cloud.",
766
+ "elizaclouddashboard.ElizaCloudNotConnectedSettings": "Chưa kết nối Eliza Cloud - cấu hình trong Cài đặt -> AI Model",
767
+ "elizaclouddashboard.EnterTopUpAmountMinimum": "Nhập số tiền nạp ít nhất là ${{amount}}.",
768
+ "elizaclouddashboard.FailedToLoadBillingData": "Không tải được dữ liệu thanh toán.",
769
+ "elizaclouddashboard.FailedToLoadCloudAgents": "Không thể tải tác nhân đám mây",
770
+ "elizaclouddashboard.FailedToOpenInstance": "Không mở được phiên bản Eliza Cloud.",
771
+ "elizaclouddashboard.FailedToOpenWebUI": "Không mở được giao diện Web cho agent này.",
772
+ "elizaclouddashboard.FailedToRequestCryptoQuote": "Không thể yêu cầu báo giá tiền điện tử.",
773
+ "elizaclouddashboard.FailedToStartCheckout": "Không thể bắt đầu thanh toán.",
774
+ "elizaclouddashboard.FailedToUpdateBillingSettings": "Không cập nhật được cài đặt thanh toán.",
775
+ "elizaclouddashboard.GitHub": "GitHub",
776
+ "elizaclouddashboard.GitHubAccount": "Tài khoản",
777
+ "elizaclouddashboard.GitHubConnectedAt": "Đã liên kết {{time}}",
778
+ "elizaclouddashboard.GitHubDisconnectFailed": "Không thể ngắt kết nối GitHub.",
779
+ "elizaclouddashboard.GitHubDisconnected": "GitHub đã ngắt kết nối khỏi agent này.",
780
+ "elizaclouddashboard.GitHubOAuthCopy": "Kết nối tài khoản GitHub để agent này có thể đẩy code, tạo pull request và quản lý issues thay bạn.",
781
+ "elizaclouddashboard.GitHubOAuthUnavailable": "GitHub OAuth chưa được cấu hình trên Eliza Cloud.",
782
+ "elizaclouddashboard.GitHubScopes": "Phạm vi",
783
+ "elizaclouddashboard.GitHubSetupContinuesInBrowser": "Hoàn tất xác thực GitHub trong trình duyệt, sau đó quay lại đây.",
784
+ "elizaclouddashboard.GitHubSetupFailed": "Không thể bắt đầu thiết lập GitHub.",
785
+ "elizaclouddashboard.Heartbeat": "Nhịp tim",
786
+ "elizaclouddashboard.Hosted": "Được lưu trữ",
787
+ "elizaclouddashboard.LaunchConnectionMissing": "Eliza Cloud không trả lại kết nối khởi chạy.",
788
+ "elizaclouddashboard.LearnMore": "Tìm hiểu thêm",
789
+ "elizaclouddashboard.LiveLogs": "Nhật ký trực tiếp",
790
+ "elizaclouddashboard.ManageInstance": "Quản lý instance và tài nguyên Eliza Cloud.",
791
+ "elizaclouddashboard.ManagedDiscordConnectFailed": "Managed Discord setup did not complete.",
792
+ "elizaclouddashboard.ManagedDiscordConnectedNotice": "Managed Discord connected to {{guild}}.{{statusNote}}",
793
+ "elizaclouddashboard.ManagedDiscordConnectedNoticeFallback": "Managed Discord connected.{{statusNote}}",
794
+ "elizaclouddashboard.ManagedDiscordRestartedSuffix": " The agent restarted and is ready.",
795
+ "elizaclouddashboard.ManagedGithubConnectFailed": "Thiết lập GitHub chưa hoàn tất.",
796
+ "elizaclouddashboard.ManagedGithubConnectedNotice": "Tài khoản GitHub đã được kết nối với agent này.",
797
+ "elizaclouddashboard.ManagedGithubLinkFailed": "Không thể liên kết GitHub với agent.",
798
+ "elizaclouddashboard.MinAmountPlaceholder": "Tối thiểu ${{amount}}",
799
+ "elizaclouddashboard.NewToElizaCloud": "Mới dùng Eliza Cloud?",
800
+ "elizaclouddashboard.NoAgentWalletDetected": "Chưa có ví agent. Tạo hoặc import trong Cài đặt trước khi nạp crypto.",
801
+ "elizaclouddashboard.NoGitHubLinkedYet": "Chưa liên kết tài khoản nào",
802
+ "elizaclouddashboard.NoHeartbeatYet": "Chưa có nhịp tim",
803
+ "elizaclouddashboard.NoLogsAvailableDeploying": "Không có nhật ký có sẵn. Đang triển khai...",
804
+ "elizaclouddashboard.NoServerLinkedYet": "No server linked yet",
805
+ "elizaclouddashboard.NoSetupNeeded": "Không cần cài đặt",
806
+ "elizaclouddashboard.OnNetwork": "trên {{network}}",
807
+ "elizaclouddashboard.OpenBrowserBilling": "Mở thanh toán trên trình duyệt",
808
+ "elizaclouddashboard.OpenedManagedInstance": "Đã mở phiên bản Eliza Cloud được quản lý.",
809
+ "elizaclouddashboard.Pay": "Trả tiền",
810
+ "elizaclouddashboard.PayFromWallet": "Thanh toán từ ví",
811
+ "elizaclouddashboard.PayWithCard": "Trả bằng thẻ",
812
+ "elizaclouddashboard.PayWithCrypto": "Trả bằng crypto",
813
+ "elizaclouddashboard.PolicyRejected": "Chính sách bị từ chối",
814
+ "elizaclouddashboard.PopupBlocked": "Popup bị chặn. Vui lòng cho phép popup và thử lại.",
815
+ "elizaclouddashboard.ReconnectDiscord": "Reconnect / change server",
816
+ "elizaclouddashboard.ReconnectGitHub": "Kết nối lại / đổi tài khoản",
817
+ "elizaclouddashboard.RefillWhenBelow": "Nạp tiền khi ở bên dưới",
818
+ "elizaclouddashboard.RequiresUserSignMode": "Ví này yêu cầu chế độ đăng nhập của người dùng để thanh toán bằng tiền điện tử.",
819
+ "elizaclouddashboard.SavePaymentMethodBeforeAutoTopUp": "Lưu phương thức thanh toán thông qua thanh toán bằng thẻ trước khi bật tính năng tự động nạp tiền.",
820
+ "elizaclouddashboard.ScaleYourAgents": "Đưa agent lên cloud để chạy 24/7, suy luận nâng cao và hiện diện đa nền tảng.",
821
+ "elizaclouddashboard.Secure": "An toàn",
822
+ "elizaclouddashboard.Server": "Server",
823
+ "elizaclouddashboard.SharedAppId": "Shared app ID: {{id}}",
824
+ "elizaclouddashboard.Status": "Trạng thái",
825
+ "elizaclouddashboard.StewardPolicyRejected": "Chính sách tiếp viên bị từ chối: {{reason}}",
826
+ "elizaclouddashboard.StewardPolicyRejectedTransfer": "Chính sách tiếp viên đã từ chối chuyển khoản: {{reason}}",
827
+ "elizaclouddashboard.SubmittedPayment": "Đã gửi {{currency}} khoản thanh toán: {{hash}}_PH_2__",
828
+ "elizaclouddashboard.ToggleAutoTopUp": "Bật/tắt tự động nạp",
829
+ "elizaclouddashboard.TopUpAmount": "Số tiền nạp thêm",
830
+ "elizaclouddashboard.TopUpCredits": "Nạp Credits",
831
+ "elizaclouddashboard.TransactionPendingApproval": "Giao dịch đang chờ phê duyệt chính sách của Người quản lý.",
832
+ "elizaclouddashboard.TransferAwaitingApproval": "Việc chuyển nhượng đang chờ phê duyệt chính sách của Steward.",
833
+ "elizaclouddashboard.UnsignedPaymentRequest": "Cloud trả lại yêu cầu thanh toán chưa được ký. Ký tên từ luồng ví để hoàn tất thanh toán.",
834
+ "elizaclouddashboard.ViaStewardVault": "(thông qua hầm Steward)",
835
+ "elizaclouddashboard.WhoeverLinksBecomesAdmin": "Whoever completes setup becomes admin",
836
+ "elizaclouddashboard.agentDetails": "Chi tiết đại lý",
837
+ "elizaclouddashboard.created": "Tạo lúc",
838
+ "elizaclouddashboard.node": "Node",
839
+ "elizaclouddashboard.open": "Mở",
840
+ "elizaclouddashboard.statusFailed": "Thất bại",
841
+ "elizaclouddashboard.statusProvisioning": "Đang thiết lập",
842
+ "elizaclouddashboard.statusQueued": "Đang chờ",
843
+ "elizaclouddashboard.statusRunning": "Đang chạy",
844
+ "elizaclouddashboard.statusStopped": "Đã dừng",
845
+ "elizaclouddashboard.unnamedAgent": "Agent chưa đặt tên",
846
+ "emotepicker.Emotes": "Emotes",
847
+ "emotepicker.NoEmotesFound": "Không tìm thấy emote",
848
+ "emotepicker.SearchEmotes": "Tìm emotes...",
849
+ "finetuningview.ActivateModel": "Kích hoạt mô hình",
850
+ "finetuningview.ActivatedModelMessage": "Mô hình đã kích hoạt {{id}} là {{providerModel}}.",
851
+ "finetuningview.Activating": "Đang kích hoạt...",
852
+ "finetuningview.ActiveIndicator": "· tích cực",
853
+ "finetuningview.ActiveJob": "Job đang chạy:",
854
+ "finetuningview.AdapterPath": "Đường dẫn adapter:",
855
+ "finetuningview.Agent": "Đại lý:",
856
+ "finetuningview.AutoBuildDatasetF": "Tự tạo dataset từ trajectories",
857
+ "finetuningview.BaseModelForOllam": "Base model cho Ollama (tuỳ chọn)",
858
+ "finetuningview.BaseModelOptional": "Base model (tuỳ chọn)",
859
+ "finetuningview.BatchSizeOptional": "Batch size (tuỳ chọn)",
860
+ "finetuningview.BenchmarkAction": "Điểm chuẩn",
861
+ "finetuningview.BenchmarkStatusMessage": "Điểm chuẩn {{status}} cho {{id}}.",
862
+ "finetuningview.Benchmarking": "Đang đo điểm chuẩn...",
863
+ "finetuningview.BuildDataset": "Xây dựng tập dữ liệu",
864
+ "finetuningview.BuildDatasetsFrom": "Tạo dataset từ trajectory thực, chạy training, rồi import và kích hoạt model.",
865
+ "finetuningview.Building": "Xây dựng...",
866
+ "finetuningview.BuiltDatasetMessage": "Tập dữ liệu được xây dựng {{id}} ({{count}} mẫu).",
867
+ "finetuningview.Calls": "Cuộc gọi:",
868
+ "finetuningview.Cancel": "Hủy bỏ",
869
+ "finetuningview.CancelledJobMessage": "Công việc đã hủy {{id}}.",
870
+ "finetuningview.Cancelling": "Đang hủy...",
871
+ "finetuningview.ChooseATrajectory": "Chọn trajectory để xem.",
872
+ "finetuningview.DataReview": "Đánh giá dữ liệu",
873
+ "finetuningview.Dataset": "Bộ dữ liệu:",
874
+ "finetuningview.DatasetBuild": "Xây dựng tập dữ liệu",
875
+ "finetuningview.Datasets": "Bộ dữ liệu:",
876
+ "finetuningview.Datasets1": "Bộ dữ liệu",
877
+ "finetuningview.FailedJobs": "Jobs thất bại:",
878
+ "finetuningview.FailedToActivateModel": "Không thể kích hoạt mô hình.",
879
+ "finetuningview.FailedToBenchmarkModel": "Không thể so sánh mô hình điểm chuẩn.",
880
+ "finetuningview.FailedToBuildDataset": "Không xây dựng được tập dữ liệu.",
881
+ "finetuningview.FailedToCancelJob": "Không hủy được {{id}}.",
882
+ "finetuningview.FailedToImportModelToOllama": "Không thể nhập mô hình vào Ollama.",
883
+ "finetuningview.FailedToLoadTrajectoryDetail": "Không thể tải chi tiết quỹ đạo.",
884
+ "finetuningview.FailedToRefreshState": "Không thể làm mới trạng thái tinh chỉnh.",
885
+ "finetuningview.FailedToRunSmokeTest": "Không thể chạy thử nghiệm khói.",
886
+ "finetuningview.FailedToStartTrainingJob": "Không thể bắt đầu công việc đào tạo.",
887
+ "finetuningview.FineTuning": "Tinh chỉnh",
888
+ "finetuningview.ImportToOllama": "Nhập khẩu vào Ollama",
889
+ "finetuningview.ImportedModelToOllamaMessage": "Đã nhập mẫu {{id}} vào Ollama{{ollamaModel}}.",
890
+ "finetuningview.Importing": "Đang nhập khẩu...",
891
+ "finetuningview.IterationsOptional": "Iterations (tuỳ chọn)",
892
+ "finetuningview.LatestTrajectories": "Trajectories mới nhất",
893
+ "finetuningview.LearningRateOptio": "Learning rate (tuỳ chọn)",
894
+ "finetuningview.LimitTrajectories": "Giới hạn trajectories (VD: 250)",
895
+ "finetuningview.LiveTrainingEvents": "Sự kiện Training trực tiếp",
896
+ "finetuningview.LoadingFineTuning": "Đang tải fine-tuning...",
897
+ "finetuningview.LoadingTrajectoryD": "Đang tải chi tiết trajectory...",
898
+ "finetuningview.MinLLMCallsPerTr": "Số LLM call tối thiểu mỗi trajectory",
899
+ "finetuningview.Model": "Mô hình:",
900
+ "finetuningview.ModelActions": "Thao tác Model",
901
+ "finetuningview.ModelOps": "Hoạt động mẫu",
902
+ "finetuningview.Models": "Mô hình:",
903
+ "finetuningview.NoDatasetsYet": "Chưa có dataset.",
904
+ "finetuningview.NoJobsYet": "Chưa có job.",
905
+ "finetuningview.NoLiveEventsYet": "Chưa có sự kiện. Bắt đầu job để stream tiến trình.",
906
+ "finetuningview.NoTrainedModelsYe": "Chưa có model đã train.",
907
+ "finetuningview.NoTrajectoriesFoun": "Chưa tìm thấy trajectory.",
908
+ "finetuningview.NoTrajectoriesTableFound": "Chưa tìm thấy bảng quỹ đạo. Tạo quỹ đạo đầu tiên.",
909
+ "finetuningview.Offline": "ngoại tuyến",
910
+ "finetuningview.OllamaModelNameO": "Tên model Ollama (tuỳ chọn)",
911
+ "finetuningview.OllamaURL": "URL Ollama",
912
+ "finetuningview.Overview": "Tổng quan",
913
+ "finetuningview.ProviderModelEG": "Provider model (VD: \"ollama/my-model\")",
914
+ "finetuningview.QueuedJobs": "Jobs đang chờ:",
915
+ "finetuningview.Ready": "sẵn sàng",
916
+ "finetuningview.RefreshAll": "Làm mới tất cả",
917
+ "finetuningview.RefreshDatasets": "Làm mới Datasets",
918
+ "finetuningview.RefreshJobs": "Làm mới Jobs",
919
+ "finetuningview.Restart": "Khởi động lại",
920
+ "finetuningview.RestartAgentMessage": "Kích hoạt mô hình đã được lưu. Khởi động lại tác nhân ngay bây giờ để tải mô hình mới?",
921
+ "finetuningview.RestartAgentTitle": "Khởi động lại đại lý",
922
+ "finetuningview.Reward": "· Phần thưởng:",
923
+ "finetuningview.Reward1": "Phần thưởng:",
924
+ "finetuningview.RunSmokePrompt": "Chạy nhắc nhở khói",
925
+ "finetuningview.RunningJobs": "Jobs đang chạy:",
926
+ "finetuningview.Runtime": "Thời gian chạy:",
927
+ "finetuningview.RuntimeNotStarted": "Thời gian chạy đại lý chưa được bắt đầu.",
928
+ "finetuningview.SelectAJobToInsp": "Chọn job để xem log.",
929
+ "finetuningview.SelectAModelToIm": "Chọn model để import hoặc kích hoạt.",
930
+ "finetuningview.SelectedJobLogs": "Log job đã chọn",
931
+ "finetuningview.SelectedTrajectory": "Trajectory đã chọn",
932
+ "finetuningview.SmokeTestCompleted": "Kiểm tra khói đã hoàn thành.",
933
+ "finetuningview.StartTrainingJob": "Bắt đầu công việc đào tạo",
934
+ "finetuningview.StartedTrainingJobMessage": "Bắt đầu công việc đào tạo {{id}}.",
935
+ "finetuningview.Starting": "Đang bắt đầu...",
936
+ "finetuningview.Status": "Trạng thái",
937
+ "finetuningview.Status1": "Trạng thái:",
938
+ "finetuningview.Streaming": "Truyền phát",
939
+ "finetuningview.Testing": "Đang thử nghiệm...",
940
+ "finetuningview.TrainedModels": "Models đã train",
941
+ "finetuningview.Training": "đào tạo",
942
+ "finetuningview.TrainingJobs": "Việc làm đào tạo",
943
+ "finetuningview.Trajectories": "Quỹ đạo",
944
+ "finetuningview.Trajectory": "Quỹ đạo:",
945
+ "finetuningview.Unavailable": "Không có sẵn",
946
+ "finetuningview.backend": "phụ trợ:",
947
+ "finetuningview.benchmark": "điểm chuẩn:",
948
+ "finetuningview.cpu": "CPU",
949
+ "finetuningview.cuda": "cuda",
950
+ "finetuningview.mlx": "mlx",
951
+ "finetuningview.samples": "mẫu ·",
952
+ "finetuningview.trajectories": "quỹ đạo",
953
+ "finetuningview.trajectoryRowsAvai": "dòng trajectory khả dụng.",
954
+ "flaminaguide.CharacterImpactLabel": "Nó ảnh hưởng đến nhân vật như thế nào:",
955
+ "flaminaguide.Dismiss": "Loại bỏ",
956
+ "flaminaguide.Done": "Xong",
957
+ "flaminaguide.FinishSetupLater": "Hoàn tất thiết lập sau",
958
+ "flaminaguide.FinishSetupLaterDescription": "Flamina giữ con đường nhanh chóng mở. Những mục nâng cao này có thể được hoàn thành bất cứ lúc nào.",
959
+ "flaminaguide.IfYouSkipLabel": "Nếu bạn bỏ qua:",
960
+ "flaminaguide.Open": "Mở",
961
+ "flaminaguide.WhenToUseLabel": "Khi nào nên sử dụng nó:",
962
+ "flaminaguide.permissions.characterImpact": "Điều này ảnh hưởng đến những gì nhân vật có thể nhìn, nghe và điều khiển cục bộ.",
963
+ "flaminaguide.permissions.description": "Quyền kiểm soát những gì nhân vật của bạn có thể nhìn thấy hoặc làm trên máy này.",
964
+ "flaminaguide.permissions.recommended": "Mặc định được đề xuất: chỉ cấp những quyền bạn cần ngay hôm nay và trì hoãn những quyền còn lại.",
965
+ "flaminaguide.permissions.skipEffect": "Nếu bạn bỏ qua, nhân vật vẫn bắt đầu nhưng các hành động nhận biết hệ thống sẽ không khả dụng cho đến khi bạn bật chúng.",
966
+ "flaminaguide.permissions.title": "Quyền và quyền truy cập hệ thống",
967
+ "flaminaguide.permissions.whenToUse": "Cấp chúng ngay bây giờ nếu bạn muốn nhân vật kiểm tra màn hình, sử dụng thiết bị hoặc kiểm soát các khả năng cục bộ.",
968
+ "flaminaguide.provider.characterImpact": "Điều này ảnh hưởng đến cách nhân vật đưa ra lý do, tốc độ phản hồi và chất lượng đầu ra tổng thể.",
969
+ "flaminaguide.provider.description": "Điều này chọn nguồn thông minh đằng sau nhân vật của bạn.",
970
+ "flaminaguide.provider.recommended": "Mặc định được đề xuất: sử dụng nhà cung cấp được phát hiện hoặc được đề xuất hàng đầu, sau đó tinh chỉnh nhà cung cấp đó sau trong cài đặt.",
971
+ "flaminaguide.provider.skipEffect": "Nếu bạn bỏ qua, ứng dụng sẽ sử dụng lộ trình được đề xuất để bạn có thể bắt đầu trước.",
972
+ "flaminaguide.provider.title": "Mô hình và nhà cung cấp",
973
+ "flaminaguide.provider.whenToUse": "Hãy chọn ngay bây giờ nếu bạn quan tâm đến phong cách lập luận, độ trễ hoặc đường dẫn đăng ký.",
974
+ "flaminaguide.rpc.characterImpact": "Điều này ảnh hưởng đến quyền truy cập của nhân vật vào ví, chuỗi và thực thi bên ngoài.",
975
+ "flaminaguide.rpc.description": "Cài đặt RPC quyết định xem nhân vật của bạn có thể tiếp cận chuỗi, ví và các hành động onchain bên ngoài hay không.",
976
+ "flaminaguide.rpc.recommended": "Mặc định được đề xuất: bỏ qua ngay bây giờ trừ khi quyền truy cập onchain là một phần của trải nghiệm chạy đầu tiên mà bạn cần.",
977
+ "flaminaguide.rpc.skipEffect": "Nếu bạn bỏ qua, nhân vật vẫn hoạt động để trò chuyện và thiết lập nhưng các hành động kết nối chuỗi vẫn bị hạn chế.",
978
+ "flaminaguide.rpc.title": "RPC và truy cập chuỗi",
979
+ "flaminaguide.rpc.whenToUse": "Định cấu hình tính năng này nếu nhân vật cần kiểm tra số dư, ký hành động hoặc làm việc trực tiếp với chuỗi.",
980
+ "flaminaguide.tasks.permissions.description": "Chỉ cấp quyền truy cập cục bộ cần thiết cho hành vi nhận biết hệ thống.",
981
+ "flaminaguide.tasks.permissions.label": "Quyền",
982
+ "flaminaguide.tasks.provider.description": "Chọn hoặc tinh chỉnh mô hình/nhà cung cấp cung cấp năng lượng cho nhân vật.",
983
+ "flaminaguide.tasks.provider.label": "Thiết lập nhà cung cấp",
984
+ "flaminaguide.tasks.rpc.description": "Thêm kết nối chuỗi nếu nhân vật cần ví hoặc hành động trên chuỗi.",
985
+ "flaminaguide.tasks.rpc.label": "thiết lập RPC",
986
+ "flaminaguide.tasks.voice.description": "Điều chỉnh âm thanh của nhân vật mà không ảnh hưởng đến danh tính đã lưu của nhân vật đó.",
987
+ "flaminaguide.tasks.voice.label": "Thiết lập giọng nói",
988
+ "flaminaguide.voice.characterImpact": "Điều này ảnh hưởng đến cách nhân vật phát ra âm thanh và cảm nhận khi tương tác bằng giọng nói.",
989
+ "flaminaguide.voice.description": "Cài đặt giọng nói định hình cách phát âm của ký tự chứ không phải liệu ký tự đó có được lưu hay không.",
990
+ "flaminaguide.voice.recommended": "Mặc định được đề xuất: lưu nhân vật trước, sau đó điều chỉnh giọng nói khi cấu hình cốt lõi cảm thấy phù hợp.",
991
+ "flaminaguide.voice.skipEffect": "Nếu bạn bỏ qua, danh tính nhân vật vẫn được lưu và hoạt động; chỉ có lớp giọng nói vẫn bị trì hoãn.",
992
+ "flaminaguide.voice.title": "Giọng nói và cách trình bày",
993
+ "flaminaguide.voice.whenToUse": "Định cấu hình tính năng này khi đầu ra bằng giọng nói quan trọng đối với trải nghiệm hoặc bạn muốn có một phong cách trình bày cụ thể.",
994
+ "format.duration.days": "{{value}}ngày",
995
+ "format.duration.hours": "{{value}}giờ",
996
+ "format.duration.minutes": "{{value}}phút",
997
+ "format.duration.seconds": "{{value}}giây",
998
+ "game.agentActivity": "Hoạt động Agent",
999
+ "game.backToApps": "Về Ứng dụng",
1000
+ "game.chatPlaceholder": "Nhập tin nhắn...",
1001
+ "game.connected": "Đã kết nối",
1002
+ "game.connecting": "Đang kết nối...",
1003
+ "game.disableOverlay": "Tắt overlay",
1004
+ "game.disconnected": "Mất kết nối",
1005
+ "game.hideLogs": "Ẩn log",
1006
+ "game.keepOnTop": "Luôn ở trên",
1007
+ "game.keepVisible": "Giữ hiển thị",
1008
+ "game.launching": "Đang khởi chạy...",
1009
+ "game.noActiveSession": "Không có phiên nào đang chạy",
1010
+ "game.noAgentActivity": "Không có hoạt động của Agent",
1011
+ "game.openInNativeWindow": "Mở trong cửa sổ gốc",
1012
+ "game.openInNewTab": "Mở tab mới",
1013
+ "game.showLogs": "Hiện log",
1014
+ "game.stop": "Dừng",
1015
+ "game.stopping": "Đang dừng...",
1016
+ "game.unpinOverlay": "Bỏ ghim overlay",
1017
+ "gameview.AgentResponseNotice": "Đại lý: {{response}}",
1018
+ "gameview.BoundsUnavailable": "Giới hạn không có sẵn.",
1019
+ "gameview.CapturedNativeGameSnapshot": "Đã chụp ảnh chụp nhanh trò chơi gốc.",
1020
+ "gameview.CommandSentToAgent": "Lệnh được gửi đến đại lý.",
1021
+ "gameview.CommandSentToAppRun": "Đã gửi lệnh tới lần chạy ứng dụng.",
1022
+ "gameview.CommandSentToAppSession": "Đã gửi lệnh tới phiên ứng dụng.",
1023
+ "gameview.FailedToSend": "Không gửi được: {{message}}",
1024
+ "gameview.FailedToStop": "Không dừng được: {{message}}",
1025
+ "gameview.FocusWindow": "Cửa sổ lấy nét",
1026
+ "gameview.FocusedNativeGameWindow": "Cửa sổ trò chơi gốc tập trung.",
1027
+ "gameview.Game": "trò chơi",
1028
+ "gameview.GameWindowNotReadyYet": "Cửa sổ trò chơi chưa sẵn sàng.",
1029
+ "gameview.GpuDiagnosticsWindowHidden": "Cửa sổ chẩn đoán GPU bị ẩn.",
1030
+ "gameview.GpuDiagnosticsWindowReady": "Cửa sổ chẩn đoán GPU đã sẵn sàng.",
1031
+ "gameview.GpuDiagnosticsWindowShown": "Cửa sổ chẩn đoán GPU được hiển thị.",
1032
+ "gameview.HidNativeGameWindow": "Ẩn cửa sổ trò chơi gốc.",
1033
+ "gameview.HideDashboard": "Ẩn bảng điều khiển",
1034
+ "gameview.HideGpuWindow": "Ẩn cửa sổ GPU",
1035
+ "gameview.HideWindow": "Ẩn cửa sổ",
1036
+ "gameview.LaunchGpuDiagnostics": "Khởi chạy Chẩn đoán GPU",
1037
+ "gameview.LogLoadFailed": "Không tải được nhật ký: {{message}}",
1038
+ "gameview.MobileSurfaceChat": "Chat",
1039
+ "gameview.MobileSurfaceDashboard": "Bảng điều khiển",
1040
+ "gameview.MobileSurfaceGame": "Trò chơi",
1041
+ "gameview.NativeGameActionFailed": "Hành động trò chơi gốc không thành công.",
1042
+ "gameview.NativeGameStateRefreshed": "Đã làm mới trạng thái trò chơi gốc.",
1043
+ "gameview.Pause": "Tạm dừng",
1044
+ "gameview.PopupBlocked": "Cửa sổ bật lên bị chặn. Cho phép cửa sổ bật lên và thử lại.",
1045
+ "gameview.Recommendations": "Đề xuất",
1046
+ "gameview.RefreshNativeState": "Làm mới trạng thái gốc",
1047
+ "gameview.Resume": "Tiếp tục",
1048
+ "gameview.RunSteeringUnsupported": "Lần chạy này chưa có kênh điều khiển.",
1049
+ "gameview.SessionControlFailed": "Không thể cập nhật phiên: {{message}}",
1050
+ "gameview.SessionControlSent": "Đã cập nhật điều khiển phiên.",
1051
+ "gameview.SessionControlUnsupported": "Lần chạy này không có điều khiển phiên.",
1052
+ "gameview.ShowDashboard": "Hiện bảng điều khiển",
1053
+ "gameview.ShowGpuWindow": "Hiển thị cửa sổ GPU",
1054
+ "gameview.ShowWindow": "Hiển thị cửa sổ",
1055
+ "gameview.ShownNativeGameWindow": "Hiển thị cửa sổ trò chơi gốc.",
1056
+ "gameview.SnapshotUnavailable": "Ảnh chụp nhanh không có sẵn.",
1057
+ "gameview.SnapshotWindow": "Cửa sổ chụp nhanh",
1058
+ "gameview.UpdatingSession": "Đang cập nhật phiên…",
1059
+ "gameview.ViewerAttachFailed": "Không thể gắn trình xem: {{message}}",
1060
+ "gameview.ViewerAttached": "Đã gắn trình xem.",
1061
+ "gameview.ViewerAuthSent": "Đã gửi xác thực người xem.",
1062
+ "gameview.ViewerDetachFailed": "Không thể tách trình xem: {{message}}",
1063
+ "gameview.ViewerDetached": "Đã tách trình xem.",
1064
+ "gameview.ViewerUnavailable": "Không có trình xem hoặc URL khởi chạy nào cho lần chạy này.",
1065
+ "gameview.WaitingForNativeGameWindow": "Đang chờ cửa sổ trò chơi gốc.",
1066
+ "gameview.postMessageAuth": "Xác thực postMessage",
1067
+ "gameviewoverlay.CloseOverlay": "Đóng overlay",
1068
+ "gameviewoverlay.Expand": "Mở rộng",
1069
+ "gameviewoverlay.ExpandBackToApps": "Mở rộng về tab Ứng dụng",
1070
+ "header.Cloud": "đám mây",
1071
+ "header.CloudCreditsBalanc": "Số dư credit Cloud",
1072
+ "header.MobileNavigationDescription": "Chuyển đổi giữa các phần {{appName}} từ ngăn điều hướng trên thiết bị di động.",
1073
+ "header.characterMode": "Chỉnh nhân vật",
1074
+ "header.companionMode": "Chế độ bạn đồng hành",
1075
+ "header.elizaCloudAuthRejected": "Cloud key không hợp lệ",
1076
+ "header.nativeMode": "Chế độ gốc",
1077
+ "heartbeatsview.BackToList": "← Quay lại",
1078
+ "heartbeatsview.EveryIntervalUnit": "Mọi {{interval}} {{unit}}",
1079
+ "heartbeatsview.SaveAsTemplate": "Lưu dưới dạng mẫu",
1080
+ "heartbeatsview.TemplateLoadedNotice": "Đã tải mẫu \"{{name}}\". Tùy chỉnh và tạo.",
1081
+ "heartbeatsview.Templates": "Mẫu",
1082
+ "heartbeatsview.createFirstHeartbeat": "Tạo heartbeat đầu tiên",
1083
+ "heartbeatsview.createHeartbeat": "Tạo Heartbeat",
1084
+ "heartbeatsview.cronFieldDay": "ngày",
1085
+ "heartbeatsview.cronFieldHour": "giờ",
1086
+ "heartbeatsview.cronFieldMinute": "phút",
1087
+ "heartbeatsview.cronFieldMonth": "tháng",
1088
+ "heartbeatsview.cronFieldWeekday": "thứ",
1089
+ "heartbeatsview.cronPrefix": "Cron:",
1090
+ "heartbeatsview.deleteMessage": "Xoá \"{{name}}\"?",
1091
+ "heartbeatsview.deleteTitle": "Xoá Heartbeat",
1092
+ "heartbeatsview.disable": "Tắt",
1093
+ "heartbeatsview.duplicate": "Nhân bản",
1094
+ "heartbeatsview.durationUnitDays": "ngày",
1095
+ "heartbeatsview.durationUnitHours": "giờ",
1096
+ "heartbeatsview.durationUnitMinutes": "phút",
1097
+ "heartbeatsview.durationUnitSeconds": "giây",
1098
+ "heartbeatsview.editHeartbeat": "Sửa Heartbeat",
1099
+ "heartbeatsview.editTitle": "Sửa: {{name}}",
1100
+ "heartbeatsview.emDash": "—",
1101
+ "heartbeatsview.emptyStateDescription": "Dùng nút Heartbeat mới để tạo tác vụ tự động lặp lại hoặc theo lịch.",
1102
+ "heartbeatsview.enable": "Bật",
1103
+ "heartbeatsview.every": "Mỗi",
1104
+ "heartbeatsview.heartbeatSingular": "Nhịp tim",
1105
+ "heartbeatsview.interval": "Khoảng cách",
1106
+ "heartbeatsview.maxRuns": "Chạy tối đa",
1107
+ "heartbeatsview.newHeartbeat": "Heartbeat mới",
1108
+ "heartbeatsview.nextRun": "Lần chạy tiếp",
1109
+ "heartbeatsview.noMatchingHeartbeats": "Không có heartbeat nào khớp với tìm kiếm của bạn",
1110
+ "heartbeatsview.noRunsYetMessage": "Chưa có lần chạy nào. Hãy chạy thủ công để bắt đầu.",
1111
+ "heartbeatsview.notScheduled": "Chưa lên lịch",
1112
+ "heartbeatsview.notYetRun": "Chưa chạy",
1113
+ "heartbeatsview.once": "Một lần",
1114
+ "heartbeatsview.onceAt": "Một lần lúc {{time}}",
1115
+ "heartbeatsview.pause": "Tạm dừng",
1116
+ "heartbeatsview.resume": "Tiếp tục",
1117
+ "heartbeatsview.runCountPlural": "{{count}} lần chạy",
1118
+ "heartbeatsview.runStats": "Thống kê chạy",
1119
+ "heartbeatsview.saveChanges": "Lưu thay đổi",
1120
+ "heartbeatsview.schedule": "Lịch",
1121
+ "heartbeatsview.searchHeartbeats": "Tìm kiếm heartbeat",
1122
+ "heartbeatsview.selectAHeartbeat": "Chọn một Heartbeat",
1123
+ "heartbeatsview.statusFailed": "Thất bại",
1124
+ "heartbeatsview.statusPaused": "Tạm dừng",
1125
+ "heartbeatsview.statusQueued": "Đang chờ",
1126
+ "heartbeatsview.statusSkipped": "Bỏ qua",
1127
+ "heartbeatsview.template.crypto.instructions": "Kiểm tra giá hiện tại của BTC, ETH và SOL. Tóm tắt các biến động đáng kể trong giờ qua.",
1128
+ "heartbeatsview.template.crypto.name": "Kiểm tra giá tiền mã hóa",
1129
+ "heartbeatsview.template.journal.instructions": "Viết một gợi ý nhật ký ngắn gọn và sâu sắc cho người dùng dựa trên các sự kiện hiện tại hoặc chủ đề theo mùa. Giữ trong 2 câu trở xuống.",
1130
+ "heartbeatsview.template.journal.name": "Nhật ký hàng ngày",
1131
+ "heartbeatsview.template.trending.instructions": "Quét các chủ đề nổi bật trên crypto Twitter và tin tức công nghệ. Đưa ra tóm tắt 3 điểm đáng chú ý.",
1132
+ "heartbeatsview.template.trending.name": "Tóm tắt xu hướng",
1133
+ "heartbeatsview.unlimited": "Không giới hạn",
1134
+ "heartbeatsview.validationCronFiveFields": "Biểu thức cron phải có đúng 5 trường (phút giờ ngày tháng thứ).",
1135
+ "heartbeatsview.validationCronInvalidField": "Trường cron {{field}} không hợp lệ: \"{{value}}\"",
1136
+ "heartbeatsview.validationCronRequired": "Biểu thức cron là bắt buộc.",
1137
+ "heartbeatsview.validationDisplayNameRequired": "Tên hiển thị là bắt buộc.",
1138
+ "heartbeatsview.validationInstructionsRequired": "Hướng dẫn là bắt buộc.",
1139
+ "heartbeatsview.validationIntervalPositive": "Khoảng cách phải là số dương.",
1140
+ "heartbeatsview.validationMaxRunsPositive": "Số lần chạy tối đa phải là số nguyên dương.",
1141
+ "heartbeatsview.validationScheduledTimeInvalid": "Thời gian lên lịch phải là ISO date-time hợp lệ.",
1142
+ "heartbeatsview.validationScheduledTimeRequired": "Thời gian lên lịch là bắt buộc cho heartbeat một lần.",
1143
+ "inboxview.EmptyRoom": "No messages in this chat yet.",
1144
+ "inboxview.Loading": "Loading messages…",
1145
+ "inboxview.ReadOnlyReplyHint": "Read-only view. Reply from the {{source}} app — the connector plugin handles outbound messages.",
1146
+ "inboxview.ReplyHint": "Sent through the connected {{source}} account on this device.",
1147
+ "inboxview.ReplyPlaceholder": "Reply in {{source}}",
1148
+ "inboxview.Send": "Send",
1149
+ "inboxview.SendFailed": "Failed to send message.",
1150
+ "inboxview.Sending": "Sending…",
1151
+ "inboxview.Title": "Inbox",
1152
+ "inboxview.TotalCountShort": "messages",
1153
+ "inventoryview.Chain": "Chuỗi",
1154
+ "inventoryview.ChainAccessNotConfiguredBody": "Kết nối qua Eliza Cloud hoặc cấu hình quyền truy cập RPC cho {{chain}} trong Settings để tải số dư.",
1155
+ "inventoryview.ChainAccessNotConfiguredTitle": "Quyền truy cập cho {{chain}} chưa được cấu hình.",
1156
+ "inventoryview.ChainHidden": "{{chain}} — đã ẩn",
1157
+ "inventoryview.ChainHiddenClickToShow": "{{chain}} — đã ẩn (bấm để hiện)",
1158
+ "inventoryview.ChainInlineError": "{{chain}}: {{message}}",
1159
+ "inventoryview.ChainNoWalletConfigured": "{{chain}} — chưa cấu hình ví",
1160
+ "inventoryview.ChainShownClickToHide": "{{chain}} — đang hiển thị (bấm để ẩn)",
1161
+ "inventoryview.ChainVisible": "{{chain}} — hiển thị",
1162
+ "inventoryview.ConnectedAndReady": "Đã kết nối và sẵn sàng",
1163
+ "inventoryview.LegacyRpcConfigBody": "Lưu lại một nhà cung cấp được hỗ trợ trong Settings để hoàn tất quá trình chuyển đổi.",
1164
+ "inventoryview.LegacyRpcConfigTitle": "{{chain}} đang dùng cấu hình RPC thô cũ.",
1165
+ "inventoryview.NeedsRpcSetup": "Cần thiết lập RPC",
1166
+ "inventoryview.NoWalletAddressYet": "Chưa có địa chỉ ví",
1167
+ "inventoryview.RetryFetchingBalances": "Thử tải lại số dư của {{chain}}",
1168
+ "inventoryview.SolanaRpcNotConfigured": "RPC Solana chưa được cấu hình.",
1169
+ "inventoryview.SolanaRpcNotConfiguredBody": "Kết nối qua Eliza Cloud hoặc cấu hình HELIUS_API_KEY / SOLANA_RPC_URL trong Settings để tải số dư Solana.",
1170
+ "inventoryview.StewardVaultConnected": "Kho Steward đã kết nối",
1171
+ "inventoryview.ThisChainLowercase": "chuỗi này",
1172
+ "inventoryview.VisibleAssets": "{{count}} tài sản đang hiển thị",
1173
+ "inventoryview.chainLowercase": "chuỗi",
1174
+ "knowledge.ui.search": "Tìm",
1175
+ "knowledge.ui.searchPlaceholder": "Tìm kiếm tri thức...",
1176
+ "knowledge.ui.searching": "Đang tìm...",
1177
+ "knowledgeview.AddFromURL": "Thêm từ URL",
1178
+ "knowledgeview.Batch": "lô",
1179
+ "knowledgeview.ChooseFiles": "Chọn file",
1180
+ "knowledgeview.ClearSearch": "Xóa tìm kiếm",
1181
+ "knowledgeview.DeletedDocument": "Tài liệu đã xóa ({{count}} đoạn đã bị xóa)",
1182
+ "knowledgeview.Details": "Chi tiết",
1183
+ "knowledgeview.Document": "tài liệu",
1184
+ "knowledgeview.DocumentsCount": "{{count}} docs",
1185
+ "knowledgeview.DropFilesHereToUpload": "Thả tập tin vào đây để tải lên",
1186
+ "knowledgeview.DropFilesOrFoldersToUpload": "Thả tập tin hoặc thư mục để tải lên",
1187
+ "knowledgeview.FailedToDeleteDocument": "Không thể xóa tài liệu",
1188
+ "knowledgeview.FailedToDeleteDocumentWithMessage": "Không xóa được tài liệu: {{message}}",
1189
+ "knowledgeview.FailedToImportFromUrl": "Không thể nhập từ URL: {{message}}",
1190
+ "knowledgeview.FailedToLoadDocument": "Không tải được tài liệu",
1191
+ "knowledgeview.FailedToLoadKnowledgeData": "Không tải được dữ liệu kiến thức",
1192
+ "knowledgeview.FailedToReadFile": "Không đọc được tập tin",
1193
+ "knowledgeview.FormatsCount": "{{count}} định dạng",
1194
+ "knowledgeview.Fragment": "Phân đoạn",
1195
+ "knowledgeview.FragmentCountMany": "{{count}} mảnh vỡ",
1196
+ "knowledgeview.FragmentCountOne": "1 mảnh",
1197
+ "knowledgeview.Fragments1": "Phân đoạn (",
1198
+ "knowledgeview.FragmentsLabel": "Mảnh vỡ",
1199
+ "knowledgeview.FromUrl": "Từ URL",
1200
+ "knowledgeview.ImageCouldNotBeCompressed": "Không thể nén hình ảnh xuống dưới {{limit}} để xử lý.",
1201
+ "knowledgeview.IncludeAIImageDes": "Xử lý ảnh",
1202
+ "knowledgeview.KnowledgeServiceIs": "Dịch vụ tri thức đang tải...",
1203
+ "knowledgeview.LargeFilesDetected": "{{count}} đã phát hiện (các) tệp lớn.",
1204
+ "knowledgeview.LoadingDocuments": "Đang tải tài liệu...",
1205
+ "knowledgeview.Match": "% khớp",
1206
+ "knowledgeview.NoDocumentSelected": "Không có tài liệu nào được chọn",
1207
+ "knowledgeview.NoDocumentSelectedDesc": "Tải tệp lên hoặc chọn một mục từ thanh bên để bắt đầu xem các đoạn và siêu dữ liệu.",
1208
+ "knowledgeview.NoDocumentsYet": "Chưa có tài liệu",
1209
+ "knowledgeview.NoFragmentsFound": "Không tìm thấy phân đoạn",
1210
+ "knowledgeview.NoMatchingDocuments": "Không có tài liệu phù hợp",
1211
+ "knowledgeview.NoNonEmptyFiles": "Không có tệp nào trống được chọn.",
1212
+ "knowledgeview.NoPreview": "Bản xem trước toàn văn không có sẵn",
1213
+ "knowledgeview.NoPreviewDesc": "Các đoạn được lập chỉ mục vẫn có sẵn bên dưới cho loại tài liệu này.",
1214
+ "knowledgeview.NoResultsFound": "Không tìm thấy kết quả",
1215
+ "knowledgeview.NoSupportedNonEmptyFiles": "Không có tệp không trống được hỗ trợ nào được chọn.",
1216
+ "knowledgeview.OpenDocument": "Mở {{filename}}",
1217
+ "knowledgeview.PasteAURLToImpor": "Dán URL để import nội dung. Link YouTube sẽ tự phiên âm.",
1218
+ "knowledgeview.Position": "Vị trí:",
1219
+ "knowledgeview.Preparing": "Đang chuẩn bị...",
1220
+ "knowledgeview.PreparingFile": "Đang chuẩn bị: {{filename}}",
1221
+ "knowledgeview.Preview": "Xem trước",
1222
+ "knowledgeview.SearchFailed": "Tìm kiếm không thành công: {{message}}",
1223
+ "knowledgeview.SearchTips": "Hãy thử tên tệp, chủ đề hoặc cụm từ từ nội dung tài liệu.",
1224
+ "knowledgeview.ServiceDidNotBecomeAvailable": "Dịch vụ kiến thức đã không có sẵn. Vui lòng tải lại trang.",
1225
+ "knowledgeview.Source": "Nguồn:",
1226
+ "knowledgeview.TotalFragmentsCount": "{{count}} mảnh",
1227
+ "knowledgeview.Type": "Loại:",
1228
+ "knowledgeview.UnknownDeleteError": "Lỗi xóa không xác định",
1229
+ "knowledgeview.UnknownDocument": "Tài liệu không xác định",
1230
+ "knowledgeview.UnknownImportError": "Lỗi nhập không xác định",
1231
+ "knowledgeview.UnknownSearchError": "Lỗi tìm kiếm không xác định",
1232
+ "knowledgeview.UnknownUploadError": "Lỗi tải lên không xác định",
1233
+ "knowledgeview.Upload": "Tải lên",
1234
+ "knowledgeview.UploadFailed": "Tải lên không thành công",
1235
+ "knowledgeview.UploadFilesOrImpo": "Tải file hoặc import từ URL để bắt đầu",
1236
+ "knowledgeview.UploadLargeFiles": "Tải lên các tệp lớn",
1237
+ "knowledgeview.UploadLargeFilesDetail": "Quá trình tải lên có thể mất nhiều thời gian hơn và có thể làm tăng chi phí nhúng hoặc hiển thị.",
1238
+ "knowledgeview.UploadPayloadExceedsLimit": "Tải trọng tải lên là {{size}}, vượt quá giới hạn hiện tại ({{limit}}).",
1239
+ "knowledgeview.UploadSupportedTypes": "Tài liệu, PDF, JSON, CSV và hình ảnh được hỗ trợ.",
1240
+ "knowledgeview.UploadTooLarge": "Tải lên quá lớn. Hãy thử chia tập tin này.",
1241
+ "knowledgeview.Uploaded": "Đã tải lên",
1242
+ "knowledgeview.UploadingBatchStartingWith": "Đang tải lên lô bắt đầu bằng {{label}}",
1243
+ "knowledgeview.UploadingProgress": "Đang tải lên {{current}}/{{total}}P2__",
1244
+ "knowledgeview.YouTube": "YouTube",
1245
+ "knowledgeview.httpsExampleCom": "https://example.com/document.pdf hoặc URL YouTube",
1246
+ "lifeopsoverview.OpenView": "Mở chế độ xem LifeOps",
1247
+ "lifeopsoverview.Reminders": "Nhắc nhở",
1248
+ "lifeopsoverview.ReminderLadderDetail": "Nhắc nhở:",
1249
+ "loadingscreen.Loading": "Đang tải",
1250
+ "loadingscreen.LoadingAvatar": "Đang tải hình đại diện",
1251
+ "logspageview.AgentRuntimeLogsW": "Log runtime agent với bộ lọc.",
1252
+ "logsview.ActiveFilter": "{{count}} bộ lọc đang hoạt động",
1253
+ "logsview.ActiveFilters": "{{count}} bộ lọc đang hoạt động",
1254
+ "logsview.AllLevels": "Tất cả mức",
1255
+ "logsview.AllSources": "Tất cả nguồn",
1256
+ "logsview.AllTags": "Tất cả tag",
1257
+ "logsview.ClearFilters": "Xoá bộ lọc",
1258
+ "logsview.Debug": "Gỡ lỗi",
1259
+ "logsview.Error": "Lỗi",
1260
+ "logsview.FilterLogs": "Lọc nhật ký",
1261
+ "logsview.FilterLogsDescription": "Thu hẹp luồng runtime theo văn bản, mức độ, nguồn hoặc thẻ để sự cố hiện tại nổi bật mà vẫn giữ được ngữ cảnh xung quanh.",
1262
+ "logsview.Info": "Thông tin",
1263
+ "logsview.Level": "Mức",
1264
+ "logsview.LoadFailed": "Failed to load logs: {{message}}",
1265
+ "logsview.Message": "Thông điệp",
1266
+ "logsview.NoLogEntries": "Không có log",
1267
+ "logsview.NoLogEntriesMatchingFilters": "Không có mục nhật ký nào khớp với bộ lọc.",
1268
+ "logsview.NoLogEntriesMatchingFiltersDescription": "Hãy mở rộng bộ lọc nhật ký hiện tại để đưa các mục trở lại chế độ xem.",
1269
+ "logsview.NoLogEntriesYet": "Chưa có mục nhật ký nào.",
1270
+ "logsview.NoLogEntriesYetDescription": "Các sự kiện runtime và dịch vụ mới sẽ xuất hiện ở đây khi hệ thống phát chúng.",
1271
+ "logsview.SearchLogs": "Tìm log...",
1272
+ "logsview.ShowingEntries": "Đang hiển thị {{count}} mục",
1273
+ "logsview.ShowingEntry": "Đang hiển thị {{count}} mục",
1274
+ "logsview.Source": "Nguồn",
1275
+ "logsview.Tags": "Thẻ",
1276
+ "logsview.Time": "Thời gian",
1277
+ "logsview.Warn": "Cảnh báo",
1278
+ "mediagalleryview.All": "Tất cả",
1279
+ "mediagalleryview.AllMedia": "Tất cả phương tiện truyền thông",
1280
+ "mediagalleryview.Audio": "Âm thanh",
1281
+ "mediagalleryview.AudioPreview": "Xem trước âm thanh",
1282
+ "mediagalleryview.Images": "Hình ảnh",
1283
+ "mediagalleryview.ItemCountMany": "{{count}} mục",
1284
+ "mediagalleryview.ItemCountOne": "{{count}} mục",
1285
+ "mediagalleryview.LoadFailed": "Không tải được phương tiện: {{message}}",
1286
+ "mediagalleryview.Media": "Phương tiện truyền thông",
1287
+ "mediagalleryview.MediaDetails": "Chi tiết phương tiện",
1288
+ "mediagalleryview.MediaItem": "Mục phương tiện",
1289
+ "mediagalleryview.NoFilterMatchesDescription": "Không có mục nào phù hợp với bộ lọc hiện tại.",
1290
+ "mediagalleryview.NoMediaDetectedDescription": "Không phát hiện thấy hình ảnh, video hoặc tệp âm thanh nào trong cơ sở dữ liệu.",
1291
+ "mediagalleryview.NoMediaFound": "Không tìm thấy media",
1292
+ "mediagalleryview.ScanningForMedia": "Đang quét media...",
1293
+ "mediagalleryview.SearchActive": "Tìm kiếm đang hoạt động",
1294
+ "mediagalleryview.SearchMedia": "Tìm media...",
1295
+ "mediagalleryview.Source": "Nguồn",
1296
+ "mediagalleryview.SourceLabel": "Nguồn:",
1297
+ "mediagalleryview.Type": "Kiểu",
1298
+ "mediagalleryview.Video": "Băng hình",
1299
+ "mediagalleryview.item": "mục",
1300
+ "mediasettingssection.APISourceForCategory": "Nguồn API {{category}}:",
1301
+ "mediasettingssection.AnthropicApiKey": "Khóa API nhân loại",
1302
+ "mediasettingssection.ApiKeySetLeaveBlank": "Đã có API key — để trống nếu giữ nguyên",
1303
+ "mediasettingssection.AudioMusic": "Âm thanh / Nhạc",
1304
+ "mediasettingssection.Camera": "Camera",
1305
+ "mediasettingssection.CameraPermissionRequestSent": "Đã gửi yêu cầu cấp quyền cho máy ảnh.",
1306
+ "mediasettingssection.CameraPreviewStarted": "Đã bắt đầu xem trước máy ảnh.",
1307
+ "mediasettingssection.CameraPreviewStopped": "Đã dừng xem trước máy ảnh.",
1308
+ "mediasettingssection.CameraPreviewUnavailable": "Xem trước máy ảnh không có sẵn.",
1309
+ "mediasettingssection.CameraRecordingStarted": "Quá trình ghi camera bắt đầu.",
1310
+ "mediasettingssection.CameraRecordingStopped": "Quá trình ghi của camera đã dừng.",
1311
+ "mediasettingssection.CameraRecordingUnavailable": "Ghi camera không có sẵn.",
1312
+ "mediasettingssection.CameraSwitched": "Máy ảnh đã chuyển đổi.",
1313
+ "mediasettingssection.CapturePhoto": "chụp ảnh",
1314
+ "mediasettingssection.ChirpV3": "Chirp v3",
1315
+ "mediasettingssection.ChirpV35": "Chirp v3.5",
1316
+ "mediasettingssection.Claude35Sonnet": "Claude 3.5 Sonnet",
1317
+ "mediasettingssection.Claude3Haiku": "Claude 3 Haiku",
1318
+ "mediasettingssection.ClaudeSonnet4": "Claude Sonnet 4",
1319
+ "mediasettingssection.DALLE2": "DALL-E 2",
1320
+ "mediasettingssection.DALLE3": "DALL-E 3",
1321
+ "mediasettingssection.DesktopOnly": "Các điều khiển chụp màn hình và camera gốc chỉ khả dụng trong thời gian chạy Electrobun.",
1322
+ "mediasettingssection.Duration": "Duration",
1323
+ "mediasettingssection.EnterApiKey": "Nhập API key...",
1324
+ "mediasettingssection.FalApiKey": "Khóa API FAL",
1325
+ "mediasettingssection.FastFlux": "Thông lượng nhanh",
1326
+ "mediasettingssection.Flux": "Flux",
1327
+ "mediasettingssection.Flux2Flex": "Thông lượng 2 Flex",
1328
+ "mediasettingssection.FluxDev": "Thông lượng phát triển",
1329
+ "mediasettingssection.FluxKontextPro": "Flux Kontext Pro",
1330
+ "mediasettingssection.FluxPro": "Flux Pro",
1331
+ "mediasettingssection.FluxProV11": "Flux Pro v1.1",
1332
+ "mediasettingssection.FluxSchnell": "thông lượng Schnell",
1333
+ "mediasettingssection.GPT4Turbo": "GPT-4 Turbo",
1334
+ "mediasettingssection.GPT4o": "GPT-4o",
1335
+ "mediasettingssection.GPT4oMini": "GPT-4o Mini",
1336
+ "mediasettingssection.Gemini15Flash": "Song Tử 1.5 Flash",
1337
+ "mediasettingssection.Gemini15Pro": "Song Tử 1.5 Pro",
1338
+ "mediasettingssection.Gemini20Flash": "Song Tử 2.0 Flash",
1339
+ "mediasettingssection.GenerateGroupHint": "Sử dụng các tab để chuyển đổi danh mục; cài đặt bên dưới áp dụng cho tab đã chọn.",
1340
+ "mediasettingssection.GenerateGroupRegionLabel": "Tạo phương tiện truyền thông theo danh mục",
1341
+ "mediasettingssection.GenerateGroupTitle": "Generation",
1342
+ "mediasettingssection.GoogleApiKey": "Khóa API của Google",
1343
+ "mediasettingssection.GrokImagineXAI": "Hãy tưởng tượng Grok (xAI)",
1344
+ "mediasettingssection.GrokVideoXAI": "Video Grok (xAI)",
1345
+ "mediasettingssection.GrokXAI": "Grok (xAI)",
1346
+ "mediasettingssection.HD": "HD",
1347
+ "mediasettingssection.HunyuanVideo": "Video Hunyuan",
1348
+ "mediasettingssection.ImageGeneration": "Tạo ảnh",
1349
+ "mediasettingssection.ImageToVideo": "Ảnh sang Video",
1350
+ "mediasettingssection.Kling30": "Kling 3.0",
1351
+ "mediasettingssection.Kling30Pro": "Kling 3.0 Pro",
1352
+ "mediasettingssection.KlingImageO3": "Hình ảnh Kling O3",
1353
+ "mediasettingssection.KlingImageV3": "Hình ảnh Kling v3",
1354
+ "mediasettingssection.KlingO3": "Kling O3",
1355
+ "mediasettingssection.KlingO3Pro": "Kling O3 Pro",
1356
+ "mediasettingssection.LTX219B": "LTX-2 19B",
1357
+ "mediasettingssection.LastSavedPath": "Đường dẫn được lưu lần cuối: {{path}}",
1358
+ "mediasettingssection.LoadingMediaConfig": "Đang tải cấu hình media...",
1359
+ "mediasettingssection.LumaDreamMachine": "Máy mơ ước Luma",
1360
+ "mediasettingssection.MaxDurationSecond": "Thời lượng tối đa (giây)",
1361
+ "mediasettingssection.MediaApiSourceCategory.audio": "Âm thanh",
1362
+ "mediasettingssection.MediaApiSourceCategory.image": "Hình ảnh",
1363
+ "mediasettingssection.MediaApiSourceCategory.video": "Video",
1364
+ "mediasettingssection.MediaApiSourceCategory.vision": "Thị giác",
1365
+ "mediasettingssection.MinimaxHailuo": "Hailuo Minimax",
1366
+ "mediasettingssection.Mochi1": "Mochi 1",
1367
+ "mediasettingssection.Model": "Model",
1368
+ "mediasettingssection.NanoBananaProGoo": "Nano Banana Pro (Google)",
1369
+ "mediasettingssection.NativeCaptureControls": "Điều khiển chụp gốc",
1370
+ "mediasettingssection.NativeCaptureControlsDesc": "Các công cụ xem trước, chụp, ghi và chụp ảnh màn hình của máy ảnh thuộc sở hữu của thời gian chạy trên máy tính để bàn.",
1371
+ "mediasettingssection.NativeMediaActionFailed": "Hành động truyền thông gốc không thành công.",
1372
+ "mediasettingssection.NativeMediaStateRefreshed": "Đã làm mới trạng thái phương tiện gốc.",
1373
+ "mediasettingssection.NeedsSetup": "Cần cài đặt",
1374
+ "mediasettingssection.NoCameraDevices": "Không có thiết bị máy ảnh",
1375
+ "mediasettingssection.NoPhotoCapturedYet": "Chưa có ảnh nào được chụp.",
1376
+ "mediasettingssection.NoSavedCapturePathYet": "Chưa có đường dẫn chụp nào được lưu.",
1377
+ "mediasettingssection.NoScreenSources": "Không có nguồn màn hình",
1378
+ "mediasettingssection.OpenAIApiKey": "Khóa API OpenAI",
1379
+ "mediasettingssection.OpenSavedCapture": "Mở ảnh chụp đã lưu",
1380
+ "mediasettingssection.OpenScreenPermissionSettings": "Mở cài đặt quyền màn hình",
1381
+ "mediasettingssection.OpenedSavedCapture": "Đã mở ảnh chụp đã lưu.",
1382
+ "mediasettingssection.OpenedScreenRecordingSettings": "Đã mở cài đặt ghi màn hình.",
1383
+ "mediasettingssection.OtherModels": "Models khác",
1384
+ "mediasettingssection.PauseRecording": "Tạm dừng ghi",
1385
+ "mediasettingssection.Paused": "paused",
1386
+ "mediasettingssection.Permission": "Permission",
1387
+ "mediasettingssection.PermissionStatus.denied": "Denied",
1388
+ "mediasettingssection.PermissionStatus.granted": "Granted",
1389
+ "mediasettingssection.PermissionStatus.not-applicable": "Không áp dụng",
1390
+ "mediasettingssection.PermissionStatus.not-determined": "Chưa đặt",
1391
+ "mediasettingssection.PermissionStatus.restricted": "Restricted",
1392
+ "mediasettingssection.PermissionStatus.unknown": "Unknown",
1393
+ "mediasettingssection.PhotoCaptureCompleted": "Chụp ảnh xong.",
1394
+ "mediasettingssection.PhotoCaptureRequested": "Yêu cầu chụp ảnh.",
1395
+ "mediasettingssection.PhotoCaptureUnavailable": "Chụp ảnh không có sẵn.",
1396
+ "mediasettingssection.PhotoCapturedInMemory": "Hình ảnh được chụp trong bộ nhớ.",
1397
+ "mediasettingssection.PixverseV45": "Pixverse v4.5",
1398
+ "mediasettingssection.Provider": "Nhà cung cấp:",
1399
+ "mediasettingssection.ProviderHintAnthropicVision": "Tầm nhìn của Claude",
1400
+ "mediasettingssection.ProviderHintElevenLabs": "Hiệu ứng âm thanh",
1401
+ "mediasettingssection.ProviderHintFalImage": "Thông lượng 2, Kling, Recraft, Grok",
1402
+ "mediasettingssection.ProviderHintFalVideo": "Veo 3, Sora 2, Kling 3, Minimax",
1403
+ "mediasettingssection.ProviderHintGoogleImage": "Hình ảnh 3",
1404
+ "mediasettingssection.ProviderHintGoogleVideo": "Veo",
1405
+ "mediasettingssection.ProviderHintGoogleVision": "Tầm nhìn Song Tử",
1406
+ "mediasettingssection.ProviderHintOpenAIVideo": "Sora",
1407
+ "mediasettingssection.ProviderHintOpenAIVision": "Tầm nhìn GPT-4o",
1408
+ "mediasettingssection.ProviderHintSuno": "Tạo nhạc",
1409
+ "mediasettingssection.ProviderHintXAIAurora": "Aurora",
1410
+ "mediasettingssection.ProviderHintXAIVision": "tầm nhìn Grok",
1411
+ "mediasettingssection.Quality": "Chất lượng",
1412
+ "mediasettingssection.Recording": "Recording",
1413
+ "mediasettingssection.RecraftV3": "Làm lại V3",
1414
+ "mediasettingssection.RequestCameraPermission": "Yêu cầu quyền sử dụng máy ảnh",
1415
+ "mediasettingssection.ResumeRecording": "Tiếp tục ghi âm",
1416
+ "mediasettingssection.ScreenCapture": "Chụp màn hình",
1417
+ "mediasettingssection.ScreenRecordingPaused": "Quá trình ghi màn hình đã tạm dừng.",
1418
+ "mediasettingssection.ScreenRecordingResumed": "Quá trình ghi màn hình đã tiếp tục.",
1419
+ "mediasettingssection.ScreenRecordingStarted": "Quá trình ghi màn hình đã bắt đầu.",
1420
+ "mediasettingssection.ScreenRecordingStopped": "Quá trình ghi màn hình đã dừng.",
1421
+ "mediasettingssection.ScreenRecordingUnavailable": "Ghi màn hình không có sẵn.",
1422
+ "mediasettingssection.ScreenSourceSwitched": "Đã chuyển nguồn màn hình.",
1423
+ "mediasettingssection.ScreenshotCapturedAndSaved": "Ảnh chụp màn hình được chụp và lưu.",
1424
+ "mediasettingssection.ScreenshotUnavailable": "Ảnh chụp màn hình không có sẵn.",
1425
+ "mediasettingssection.SelectCameraFirst": "Select a camera device first.",
1426
+ "mediasettingssection.SelectScreenSourceFirst": "Select a screen source first.",
1427
+ "mediasettingssection.Sora2": "Sora 2",
1428
+ "mediasettingssection.Sora2Pro": "Sora 2 Pro",
1429
+ "mediasettingssection.StableDiffusion3": "Khuếch tán ổn định 3",
1430
+ "mediasettingssection.Standard": "Tiêu chuẩn",
1431
+ "mediasettingssection.StartCameraRecording": "Bắt đầu ghi camera",
1432
+ "mediasettingssection.StartPreview": "Bắt đầu xem trước",
1433
+ "mediasettingssection.StartScreenRecording": "Bắt đầu ghi màn hình",
1434
+ "mediasettingssection.StopCameraRecording": "Dừng ghi hình camera",
1435
+ "mediasettingssection.StopPreview": "Dừng xem trước",
1436
+ "mediasettingssection.StopScreenRecording": "Dừng ghi màn hình",
1437
+ "mediasettingssection.SunoApiKey": "Khóa API Suno",
1438
+ "mediasettingssection.SwitchCamera": "Chuyển đổi máy ảnh",
1439
+ "mediasettingssection.SwitchSource": "Chuyển nguồn",
1440
+ "mediasettingssection.TakeScreenshot": "Chụp ảnh màn hình",
1441
+ "mediasettingssection.TextToVideo": "Text sang Video",
1442
+ "mediasettingssection.Veo31": "Veo 3.1",
1443
+ "mediasettingssection.Veo31Fast": "Veo 3.1 Nhanh",
1444
+ "mediasettingssection.Veo31Google": "Veo 3.1 (Google)",
1445
+ "mediasettingssection.VideoGeneration": "Tạo video",
1446
+ "mediasettingssection.VisionAnalysis": "Vision (Phân tích)",
1447
+ "mediasettingssection.Wan22": "Vạn 2.2",
1448
+ "mediasettingssection.XAIApiKey": "Khóa API xAI",
1449
+ "memoryviewer.SearchPeople": "Search people…",
1450
+ "messagecontent.Active": "Đang hoạt động",
1451
+ "messagecontent.ConnectorsTabLabel": "Plugin > Trình kết nối",
1452
+ "messagecontent.DisablePlugin": "Vô hiệu hóa",
1453
+ "messagecontent.DisablePluginFailed": "Không thể tắt plugin này.",
1454
+ "messagecontent.Disabling": "Đang tắt...",
1455
+ "messagecontent.EnablePlugin": "Kích hoạt plugin",
1456
+ "messagecontent.EnablePluginFailed": "Không thể kích hoạt plugin này.",
1457
+ "messagecontent.Enabling": "Đang bật...",
1458
+ "messagecontent.FeaturesTabLabel": "Plugin > Tính năng",
1459
+ "messagecontent.HideJson": "Ẩn JSON",
1460
+ "messagecontent.Inactive": "Không hoạt động",
1461
+ "messagecontent.InteractiveUI": "Giao diện tương tác",
1462
+ "messagecontent.LoadPluginInfoFailed": "Không thể tải thông tin plugin.",
1463
+ "messagecontent.LoadingConfiguration": "Đang tải cấu hình {{pluginId}}...",
1464
+ "messagecontent.NoConfigurablePara": "Không có tham số cấu hình.",
1465
+ "messagecontent.PluginConfigurationTitle": "{{name}} Cấu hình",
1466
+ "messagecontent.PluginEnabledInlineNotice": "{{name}} được bật.",
1467
+ "messagecontent.PluginEnabledNotice": "{{name}} đang bật. Tìm nó trong {{tabLabel}}.",
1468
+ "messagecontent.PluginNotFound": "Không tìm thấy plugin \"{{pluginId}}\".",
1469
+ "messagecontent.SaveFailed": "Không thể lưu các thay đổi.",
1470
+ "messagecontent.Saving": "Đang lưu...",
1471
+ "messagecontent.SystemTabLabel": "Plugin > Hệ thống",
1472
+ "messagecontent.ViewJson": "Xem JSON",
1473
+ "musicplayersettings.AudioElementHint": "Khi có bài đang phát, hãy dùng các điều khiển để nghe luồng của agent (WebM/Opus).",
1474
+ "musicplayersettings.Description": "Sử dụng các tuyến HTTP của plugin-music-player. Bật Music Library và Music Player trong Plugins, rồi yêu cầu agent phát nội dung cho guild thiết bị này (mặc định: {{appName}}-desktop).",
1475
+ "musicplayersettings.NoTrack": "Hiện không có bài nào đang phát.",
1476
+ "musicplayersettings.NowPlaying": "Đang phát",
1477
+ "musicplayersettings.PollFailed": "Không thể kết nối tới endpoint now-playing.",
1478
+ "musicplayersettings.ResolvingUrls": "Đang phân giải URL phát…",
1479
+ "musicplayersettings.StreamBase": "URL luồng",
1480
+ "musicplayersettings.Title": "Trình phát nhạc của agent",
1481
+ "nav.advanced": "Nâng cao",
1482
+ "nav.apps": "Ứng dụng",
1483
+ "nav.back": "Back",
1484
+ "nav.browser": "Trình duyệt",
1485
+ "nav.character": "Nhân vật",
1486
+ "nav.chat": "Trò chuyện",
1487
+ "nav.companion": "Bạn đồng hành",
1488
+ "nav.heartbeats": "Nhịp tim",
1489
+ "nav.inventory": "Kho đồ",
1490
+ "nav.knowledge": "Tri thức",
1491
+ "nav.lifeops": "LifeOps",
1492
+ "nav.settings": "Cài đặt",
1493
+ "nav.social": "Kết nối",
1494
+ "nav.stream": "Phát sóng",
1495
+ "nav.wallet": "Ví",
1496
+ "notice.elizaCloudAuthRejected": "Eliza Cloud đã từ chối API key; gọi model sẽ thất bại. Mở Cài đặt → Cloud để đăng nhập lại hoặc dán key mới từ elizacloud.ai.",
1497
+ "onboarding.addAnotherProvider": "Thêm nhà cung cấp khác",
1498
+ "onboarding.allConfigured": "Mọi thứ đã cấu hình. Bạn có thể chỉnh cài đặt bất cứ lúc nào.",
1499
+ "onboarding.almostThere": "Sắp xong rồi!",
1500
+ "onboarding.apiKey": "Khóa API",
1501
+ "onboarding.assetsLoadingInBackground": "Assets are still finishing in the background.",
1502
+ "onboarding.assetsLoadingProgress": "Loading assets... {{loaded}} (critical {{critical}})",
1503
+ "onboarding.assetsReady": "Assets ready - character selection should open instantly.",
1504
+ "onboarding.authCodeInstructions": "Sau khi đăng nhập, bạn sẽ nhận mã xác thực.\nCopy và dán bên dưới.",
1505
+ "onboarding.autoDetected": "Tự động phát hiện",
1506
+ "onboarding.back": "← Quay lại",
1507
+ "onboarding.chatgptSubscriptionReady": "ChatGPT subscription sẵn sàng sử dụng.",
1508
+ "onboarding.checkExistingSetup": "Dùng Eliza hiện có",
1509
+ "onboarding.chooseProvider": "Chọn AI provider",
1510
+ "onboarding.claudeSubscriptionReady": "Claude subscription sẵn sàng sử dụng.",
1511
+ "onboarding.clickHere": "bấm vào đây",
1512
+ "onboarding.cloudLoginBtn": "Đăng nhập Eliza Cloud",
1513
+ "onboarding.cloudLoginBusy": "Đang chờ đăng nhập trên trình duyệt...",
1514
+ "onboarding.cloudLoginConnected": "✓ Đã kết nối Eliza Cloud",
1515
+ "onboarding.cloudLoginDesc": "Kết nối tài khoản Eliza Cloud của bạn để đồng bộ cài đặt và sử dụng giọng nói đám mây hoặc bỏ qua nếu bạn muốn chạy ngoại tuyến.",
1516
+ "onboarding.cloudLoginRetry": "Thử lại đăng nhập",
1517
+ "onboarding.cloudLoginTitle": "{{appName}} / Đám mây Eliza",
1518
+ "onboarding.companionReady": "Cài đặt hoàn tất.",
1519
+ "onboarding.completeLogin": "Hoàn tất đăng nhập",
1520
+ "onboarding.completed": "Đã hoàn thành",
1521
+ "onboarding.configureAiLater": "Set up later",
1522
+ "onboarding.confirm": "Xác nhận",
1523
+ "onboarding.connect": "Kết nối",
1524
+ "onboarding.connectAccount": "Kết nối tài khoản",
1525
+ "onboarding.connected": "Đã kết nối",
1526
+ "onboarding.connectedToChatGPT": "Đã kết nối ChatGPT",
1527
+ "onboarding.connectedToClaude": "Đã kết nối Claude",
1528
+ "onboarding.connecting": "Đang kết nối...",
1529
+ "onboarding.continueLimitedSetup": "Tiếp tục với thiết lập giới hạn",
1530
+ "onboarding.continueOffline": "Tiếp tục Ngoại tuyến",
1531
+ "onboarding.copyEntireUrl": ". Copy toàn bộ URL từ thanh địa chỉ trình duyệt.",
1532
+ "onboarding.customModel": "Model tuỳ chỉnh...",
1533
+ "onboarding.customSetup": "tuỳ chỉnh",
1534
+ "onboarding.decryptionPasswordPlaceholder": "Mật khẩu giải mã...",
1535
+ "onboarding.deployment.remoteLabel": "Connect to a remote agent",
1536
+ "onboarding.deployment.remoteTokenPlaceholder": "Access token (optional)",
1537
+ "onboarding.deployment.remoteUrlPlaceholder": "https://your-agent.example.com",
1538
+ "onboarding.deployment.subtitle": "Where should your agent run?",
1539
+ "onboarding.deployment.title": "Choose your setup",
1540
+ "onboarding.detectedFromClaudeCode": "Được phát hiện từ mã Claude",
1541
+ "onboarding.detectedFromCodex": "Được phát hiện từ Codex",
1542
+ "onboarding.detectedFromEnv": "Được phát hiện từ env",
1543
+ "onboarding.detectedFromKeychain": "Được phát hiện từ chuỗi khóa",
1544
+ "onboarding.elevenLabsApiKey": "Khóa ElevenLabs API",
1545
+ "onboarding.enter": "Vào",
1546
+ "onboarding.enterApiKey": "Nhập API key...",
1547
+ "onboarding.enterSetupToken": "Nhập setup token",
1548
+ "onboarding.exchangeFailed": "Trao đổi không thành công",
1549
+ "onboarding.exchangeFailedWithMessage": "Trao đổi không thành công: {{message}}",
1550
+ "onboarding.existingSetupDesc": "Chúng tôi đã tìm thấy một cài đặt Eliza hiện có trên thiết bị này. Bạn có thể tiếp tục với nó hoặc chuyển sang cài đặt tuỳ chỉnh.",
1551
+ "onboarding.failedToGetAuthUrl": "Không lấy được URL xác thực",
1552
+ "onboarding.failedToStartLogin": "Không bắt đầu đăng nhập được: {{message}}",
1553
+ "onboarding.features.browser.desc": "Pair with the LifeOps browser extension for web automation.",
1554
+ "onboarding.features.browser.name": "Browser",
1555
+ "onboarding.features.connect": "Connect",
1556
+ "onboarding.features.continue": "Continue",
1557
+ "onboarding.features.continueWithout": "Continue without features",
1558
+ "onboarding.features.crypto.desc": "Enable blockchain capabilities with Solana and EVM wallets.",
1559
+ "onboarding.features.crypto.name": "Crypto Wallet",
1560
+ "onboarding.features.disable": "Disable",
1561
+ "onboarding.features.discord.desc": "Connect your agent to Discord. Fully managed via Eliza Cloud.",
1562
+ "onboarding.features.discord.name": "Discord",
1563
+ "onboarding.features.enable": "Enable",
1564
+ "onboarding.features.managed": "Managed",
1565
+ "onboarding.features.managedSection": "Managed connectors",
1566
+ "onboarding.features.optionalSection": "Optional capabilities",
1567
+ "onboarding.features.phone.desc": "Get a cloud phone number for your agent. SMS and voice via Eliza Cloud.",
1568
+ "onboarding.features.phone.name": "Phone",
1569
+ "onboarding.features.skip": "Skip for now",
1570
+ "onboarding.features.subtitle": "Connect platforms and capabilities. You can always change these later in Settings.",
1571
+ "onboarding.features.telegram.desc": "Message your agent on Telegram. Fully managed via Eliza Cloud.",
1572
+ "onboarding.features.telegram.name": "Telegram",
1573
+ "onboarding.features.title": "Enable features",
1574
+ "onboarding.freeCredits": "Credits miễn phí để bắt đầu.",
1575
+ "onboarding.getOneHere": "Lấy key tại đây",
1576
+ "onboarding.getStarted": "Bắt đầu",
1577
+ "onboarding.hostingElizaCloudDesc": "Dùng Eliza Cloud cho hosting được quản lý và chạy 24/7.",
1578
+ "onboarding.hostingLocal": "Máy cục bộ",
1579
+ "onboarding.hostingLocalDesc": "Chạy backend trên máy này.",
1580
+ "onboarding.hostingQuestion": "{{appName}} nên chạy ở đâu?",
1581
+ "onboarding.hostingRemote": "Từ xa",
1582
+ "onboarding.hostingRemoteDesc": "Kết nối backend có sẵn bằng địa chỉ và access key.",
1583
+ "onboarding.hostingTitle": "Lưu trữ",
1584
+ "onboarding.importDesc": "Chọn file <code>.eliza-agent</code> đã xuất và nhập mật khẩu giải mã.",
1585
+ "onboarding.importing": "Đang import...",
1586
+ "onboarding.keyFormatWarning": "Định dạng key có vẻ sai. Kiểm tra lại và thử lại.",
1587
+ "onboarding.login": "Đăng nhập",
1588
+ "onboarding.loginSessionExpired": "Phiên đăng nhập hết hạn. Bấm 'Làm lại từ đầu' và thử lại.",
1589
+ "onboarding.loginWithAnthropic": "Đăng nhập bằng Claude",
1590
+ "onboarding.loginWithOpenAI": "Đăng nhập bằng OpenAI",
1591
+ "onboarding.modelPlaceholder": "provider/model (ví dụ: anthropic/claude-3.5-sonnet)",
1592
+ "onboarding.networkError": "Lỗi mạng — kiểm tra kết nối và thử lại.",
1593
+ "onboarding.neuralLinkTitle": "Kết nối thần kinh",
1594
+ "onboarding.next": "Tiếp",
1595
+ "onboarding.noAuthUrlReturned": "Không có URL xác thực được trả về từ đăng nhập",
1596
+ "onboarding.oauthLogin": "Đăng nhập OAuth",
1597
+ "onboarding.ollamaNoConfig": "Không cần cấu hình. Ollama sẽ tự động được dùng.",
1598
+ "onboarding.openLoginPageInBrowser": "Mở trang đăng nhập trong trình duyệt",
1599
+ "onboarding.openLoginPageInBrowserDesc": "Mở trang đăng nhập trong trình duyệt để tiếp tục.",
1600
+ "onboarding.openThisLinkToLogIn": "Mở liên kết này để đăng nhập:",
1601
+ "onboarding.passwordMinError": "Mật khẩu ít nhất 4 ký tự.",
1602
+ "onboarding.paste": "Dán",
1603
+ "onboarding.pasteAuthCode": "Dán mã xác thực...",
1604
+ "onboarding.piCredentialsHint": "Dùng credentials từ ~/.pi/agent/auth.json.",
1605
+ "onboarding.piDropdownHint": " Chọn từ dropdown hoặc chọn model tuỳ chỉnh.",
1606
+ "onboarding.piManualHint": " Nhập provider/model thủ công nếu muốn ghi đè.",
1607
+ "onboarding.primaryModelOptional": "Model chính (tuỳ chọn)",
1608
+ "onboarding.readyTitle": "Sẵn sàng",
1609
+ "onboarding.recommended": "Khuyên dùng",
1610
+ "onboarding.redirectInstructions": "Sau khi đăng nhập, trình duyệt sẽ chuyển đến",
1611
+ "onboarding.redirectUrl": "URL chuyển hướng",
1612
+ "onboarding.redirectUrlPlaceholder": "http://localhost:1455/...",
1613
+ "onboarding.remoteAccessKey": "Phím truy cập",
1614
+ "onboarding.remoteAccessKeyPlaceholder": "Dán giá trị ELIZA_API_TOKEN",
1615
+ "onboarding.remoteAddress": "Địa chỉ backend",
1616
+ "onboarding.remoteAddressPlaceholder": "https://my-eliza.example.com",
1617
+ "onboarding.remoteConnect": "Kết nối backend từ xa",
1618
+ "onboarding.remoteConnectedDesc": "Đã kết nối backend {{appName}} từ xa. Tiếp tục cấu hình tại đây.",
1619
+ "onboarding.remoteTitle": "{{appName}} từ xa",
1620
+ "onboarding.reportIssue": "Báo cáo vấn đề",
1621
+ "onboarding.requiresChatGPTSub": "Cần ChatGPT Plus hoặc Pro subscription.",
1622
+ "onboarding.requiresClaudeSub": "Cần Claude Pro hoặc Max subscription.",
1623
+ "onboarding.restore": "Khôi phục",
1624
+ "onboarding.rpcAlchemyHint": "Bao gồm Ethereum, Base, Arbitrum, Optimism, Polygon và BSC.",
1625
+ "onboarding.rpcAlchemyKey": "Khóa API giả kim",
1626
+ "onboarding.rpcAlchemyPlaceholder": "Nhập khóa API Alchemy",
1627
+ "onboarding.rpcBirdeyeHint": "Dữ liệu thị trường Solana tùy chọn để có mức độ bao phủ mã thông báo phong phú hơn.",
1628
+ "onboarding.rpcBirdeyeKey": "Khóa API Birdeye (Solana)",
1629
+ "onboarding.rpcBirdeyePlaceholder": "Nhập khóa API Birdeye (tùy chọn)",
1630
+ "onboarding.rpcBringKeys": "Mang Key riêng",
1631
+ "onboarding.rpcBringKeysDescription": "Kết nối các nhà cung cấp RPC ưa thích của bạn cho các chuỗi nơi bạn muốn kiểm soát trực tiếp.",
1632
+ "onboarding.rpcBringKeysProviders": "Giả kim thuật, QuickNode, Helius",
1633
+ "onboarding.rpcConnectedCloud": "Đã kết nối qua Eliza Cloud",
1634
+ "onboarding.rpcDesc": "RPC cho agent truy cập blockchain cho ví & giao dịch. Có thể bỏ qua và cấu hình sau trong Cài đặt.",
1635
+ "onboarding.rpcElizaCloud": "Dùng Eliza Cloud",
1636
+ "onboarding.rpcElizaCloudDesc": "Đã bao gồm mọi chain. Không cần API key.",
1637
+ "onboarding.rpcHeliusHint": "Dữ liệu mã thông báo và RPC của mạng chính Solana.",
1638
+ "onboarding.rpcHeliusKey": "Khóa API Helius (Solana)",
1639
+ "onboarding.rpcHeliusPlaceholder": "Nhập khóa API Helius",
1640
+ "onboarding.rpcQuestion": "Cấu hình RPC blockchain?",
1641
+ "onboarding.rpcSkip": "Bỏ qua",
1642
+ "onboarding.rpcTitle": "Truy cập Blockchain",
1643
+ "onboarding.saveClaudeSubscription": "Lưu gói đăng ký Claude",
1644
+ "onboarding.savedMyKeys": "Tiếp tục",
1645
+ "onboarding.savingClaudeSubscription": "Đang lưu gói đăng ký Claude...",
1646
+ "onboarding.selectFileError": "Chọn file xuất trước khi import.",
1647
+ "onboarding.selectModel": "Chọn Model",
1648
+ "onboarding.setupToken": "Mã thông báo thiết lập",
1649
+ "onboarding.setupTokenInstructions": "Cách lấy setup token:\n\n• Cách A: Chạy claude setup-token trong terminal\n\n• Cách B: Vào claude.ai/settings/api → \"Claude Code\" → \"Use setup token\"",
1650
+ "onboarding.skip": "Bỏ qua",
1651
+ "onboarding.startOver": "Làm lại từ đầu",
1652
+ "onboarding.stepLabel": "Bước {{current}} trong số {{total}}",
1653
+ "onboarding.stepName.cloudLogin": "Đám Mây Eliza",
1654
+ "onboarding.stepName.deployment": "Setup",
1655
+ "onboarding.stepName.features": "Features",
1656
+ "onboarding.stepName.hosting": "Lưu trữ",
1657
+ "onboarding.stepName.identity": "Danh tính",
1658
+ "onboarding.stepName.launch": "Khởi chạy",
1659
+ "onboarding.stepName.permissions": "Quyền hạn",
1660
+ "onboarding.stepName.providers": "Nhà cung cấp AI",
1661
+ "onboarding.stepName.voice": "Giọng nói",
1662
+ "onboarding.stepNavigation": "Điều hướng bước giới thiệu",
1663
+ "onboarding.stepSub.cloudLogin": "Tài khoản",
1664
+ "onboarding.stepSub.deployment": "Where to run",
1665
+ "onboarding.stepSub.features": "Connectors & capabilities",
1666
+ "onboarding.stepSub.hosting": "Chạy ở đâu?",
1667
+ "onboarding.stepSub.identity": "Chọn phong cách của bạn",
1668
+ "onboarding.stepSub.launch": "Sẵn sàng",
1669
+ "onboarding.stepSub.permissions": "Truy cập hệ thống",
1670
+ "onboarding.stepSub.providers": "Liên kết thần kinh",
1671
+ "onboarding.stepSub.voice": "Nhà cung cấp",
1672
+ "onboarding.systemAccessTitle": "Truy cập hệ thống",
1673
+ "onboarding.useDefaultModel": "Dùng model mặc định",
1674
+ "onboarding.useExistingKey": "Dùng nếu bạn đã có key.",
1675
+ "onboarding.useExistingSetup": "Tiếp tục với cài đặt hiện có",
1676
+ "onboarding.voiceProviderDesc": "Chọn nhà cung cấp giọng nói ưa thích của bạn cho Eliza hoặc bỏ qua để chỉ sử dụng văn bản.",
1677
+ "onboarding.voiceProviderTitle": "Thiết lập Nhà cung cấp Giọng nói",
1678
+ "onboarding.welcomeDesc": "AI companion gần sẵn sàng. Kết nối Eliza Cloud để bắt đầu trong vài giây.",
1679
+ "onboarding.welcomeTitle": "Chào mừng đến {{appName}}",
1680
+ "pairingview.AskTheServerOwner": "Hỏi chủ server lấy API token.",
1681
+ "pairingview.EnablePairingOnTh": "Bật ghép nối trên server và khởi động lại {{appName}}.",
1682
+ "pairingview.EnterPairingCode": "Nhập mã ghép nối",
1683
+ "pairingview.EnterThePairingCo": "Nhập mã ghép nối từ log server để xác thực.",
1684
+ "pairingview.Expired": "Đã hết hạn",
1685
+ "pairingview.ExpiresIn": "Hết hạn sau {{time}}",
1686
+ "pairingview.NextSteps": "Bước tiếp theo:",
1687
+ "pairingview.PairingCode": "Mã ghép nối",
1688
+ "pairingview.PairingInProgress": "Đang ghép nối...",
1689
+ "pairingview.PairingIsNotEnabl": "Ghép nối chưa bật trên server này.",
1690
+ "pairingview.PairingRequired": "Cần ghép nối",
1691
+ "pairingview.PairingSetupDocs": "Tài liệu ghép nối",
1692
+ "pairingview.Submit": "Gửi",
1693
+ "permissionssection.AllowAll": "Cho phép tất cả",
1694
+ "permissionssection.BrowserPermissions": "Quyền trình duyệt",
1695
+ "permissionssection.CapabilitiesDescription": "Chỉ bật các khả năng cấp cao hơn sau khi có sẵn các quyền thời gian chạy cần thiết.",
1696
+ "permissionssection.CapabilitiesRequire": "Các tính năng cần quyền hệ thống liệt kê trên.",
1697
+ "permissionssection.CheckAccess": "Kiểm tra quyền",
1698
+ "permissionssection.CheckingPermissions": "Đang kiểm tra quyền...",
1699
+ "permissionssection.Disable": "Vô hiệu hóa",
1700
+ "permissionssection.DisableShellAccess": "Vô hiệu hóa quyền truy cập shell",
1701
+ "permissionssection.Disabled": "Đã tắt",
1702
+ "permissionssection.Enable": "Kích hoạt",
1703
+ "permissionssection.EnableShellAccess": "Cho phép truy cập shell",
1704
+ "permissionssection.Enabled": "Đã bật",
1705
+ "permissionssection.Grant": "Cấp quyền",
1706
+ "permissionssection.GrantPermissions": "Cấp quyền",
1707
+ "permissionssection.GrantPermissionsNote": "Cấp quyền để bật các tính năng như nhập liệu bằng giọng nói và điều khiển máy tính.",
1708
+ "permissionssection.GrantPermissionsTo": "Cấp quyền để mở khoá tính năng desktop.",
1709
+ "permissionssection.GrantRequiredPermissionsFirst": "Cấp quyền cần thiết trước tiên",
1710
+ "permissionssection.GrantingPermissions": "Cấp...",
1711
+ "permissionssection.LoadingPermissions": "Đang tải quyền...",
1712
+ "permissionssection.LocalRuntime": "Thời gian chạy cục bộ",
1713
+ "permissionssection.MacGrantAccessNote": "macOS yêu cầu quyền Trợ năng để điều khiển máy tính. Mở Cài đặt hệ thống → Quyền riêng tư & Bảo mật để cấp quyền truy cập.",
1714
+ "permissionssection.MacSystemPermissionsDescription": "Xem lại các quyền gốc mà {{appName}} cần để điều khiển máy tính để bàn, nhập giọng nói và phân tích hình ảnh. Các thay đổi của macOS có thể yêu cầu mở Cài đặt hệ thống.",
1715
+ "permissionssection.MissingPermissions": "Thiếu quyền",
1716
+ "permissionssection.MobileOnboardingDesc": "Cho phép truy cập để thiết bị stream đến cloud agent.",
1717
+ "permissionssection.MobileStreamingDesc": "Thiết bị stream camera, mic, và màn hình đến agent Eliza Cloud.",
1718
+ "permissionssection.OpenSettings": "Mở Cài đặt",
1719
+ "permissionssection.PermissionGrantNote": "Việc cấp ngay bây giờ sẽ yêu cầu những gì có thể được phê duyệt ngay lập tức và mở Cài đặt cho mọi thứ phải được bật ở đó.",
1720
+ "permissionssection.PermissionReadyNote": "Tất cả các quyền cần thiết đã sẵn sàng. Tiếp tục khi bạn đã sẵn sàng.",
1721
+ "permissionssection.PermissionSkipNote": "Việc bỏ qua sẽ khóa các tính năng của máy tính để bàn cho đến khi bạn cấp các quyền còn thiếu trong Cài đặt.",
1722
+ "permissionssection.PluginNotAvailable": "Plugin không có sẵn",
1723
+ "permissionssection.PluginUnavailable": "Plugin không có sẵn",
1724
+ "permissionssection.Refreshing": "Đang làm mới...",
1725
+ "permissionssection.StreamingPermissions": "Quyền phát sóng",
1726
+ "permissionssection.SystemPermissions": "Quyền hệ thống",
1727
+ "permissionssection.SystemPermissionsDescription": "Cấp quyền truy cập thời gian chạy cần thiết để nhập bằng giọng nói, chụp ảnh, tác vụ shell và các tính năng tự động hóa máy tính để bàn.",
1728
+ "permissionssection.UnableToCheckPerm": "Không thể kiểm tra quyền.",
1729
+ "permissionssection.UnableToLoadPermi": "Không thể tải quyền.",
1730
+ "permissionssection.WebOnboardingDesc": "Cho phép trình duyệt truy cập camera, mic, và màn hình để stream cho agent.",
1731
+ "permissionssection.WebStreamingDesc": "Cho phép trình duyệt truy cập camera, mic, và màn hình để stream cho agent.",
1732
+ "permissionssection.badge.notAsked": "không được hỏi",
1733
+ "permissionssection.badge.off": "Tắt",
1734
+ "permissionssection.badge.offInSettings": "Tắt trong Cài đặt",
1735
+ "pluginsview.23FieldDemos": "demo trường",
1736
+ "pluginsview.AllowAllChats": "Cho phép tất cả các cuộc trò chuyện",
1737
+ "pluginsview.AllowSpecificChatsOnly": "Chỉ cho phép các cuộc trò chuyện cụ thể",
1738
+ "pluginsview.Applying": "Áp dụng",
1739
+ "pluginsview.ApplyingPluginChan": "Đang áp dụng thay đổi plugin và chờ agent khởi động lại...",
1740
+ "pluginsview.AvailableCount": "{{count}} có sẵn",
1741
+ "pluginsview.Back": "Quay lại",
1742
+ "pluginsview.BlueBubblesConnected": "BlueBubbles đã kết nối.",
1743
+ "pluginsview.BlueBubblesNotConnected": "BlueBubbles chưa kết nối. Lưu URL máy chủ và mật khẩu ở trên, sau đó làm mới.",
1744
+ "pluginsview.BlueBubblesWebhookHint": "Trỏ webhook BlueBubbles đến máy chủ API {{appName}} để các sự kiện iMessage mới được truyền vào hộp thư đến hợp nhất.",
1745
+ "pluginsview.BlueBubblesWebhookTarget": "Đích webhook",
1746
+ "pluginsview.BotRespondsAnyChat": "Bot sẽ trả lời trong bất kỳ cuộc trò chuyện nào",
1747
+ "pluginsview.BotRespondsListedChatIds": "Bot sẽ chỉ phản hồi trong ID trò chuyện được liệt kê",
1748
+ "pluginsview.Cancel": "Hủy",
1749
+ "pluginsview.Collapse": "Sụp đổ",
1750
+ "pluginsview.ConnectionMode": "Chế độ kết nối",
1751
+ "pluginsview.ConnectionTestFailed": "Không thành công: {{error}}",
1752
+ "pluginsview.ConnectionTestFailedDialog": "✕ {{error}}",
1753
+ "pluginsview.ConnectionTestPassed": "Được rồi ({{durationMs}}ms)",
1754
+ "pluginsview.ConnectionTestPassedDialog": "✓ Được rồi ({{durationMs}}ms)",
1755
+ "pluginsview.DEMO": "DEMO",
1756
+ "pluginsview.DiscordDeveloperPortal": "Lấy API token của bạn tại đây",
1757
+ "pluginsview.DiscordInviteBot": "Mời agent của bạn",
1758
+ "pluginsview.DiscordLocalAuthorize": "Authorize Discord desktop",
1759
+ "pluginsview.DiscordLocalAuthorizePrompt": "Authorize {{appName}} against the local Discord desktop app to read notifications, subscribe to channels, and send replies through macOS UI automation.",
1760
+ "pluginsview.DiscordLocalAuthorized": "Discord desktop is authorized.",
1761
+ "pluginsview.DiscordLocalAuthorizing": "Authorizing…",
1762
+ "pluginsview.DiscordLocalChannels": "Subscribed channels",
1763
+ "pluginsview.DiscordLocalDisconnecting": "Disconnecting…",
1764
+ "pluginsview.DiscordLocalGuild": "Server",
1765
+ "pluginsview.DiscordLocalIpcPath": "Discord IPC socket",
1766
+ "pluginsview.DiscordLocalLoadingChannels": "Loading channels…",
1767
+ "pluginsview.DiscordLocalLoadingGuilds": "Loading Discord servers…",
1768
+ "pluginsview.DiscordLocalNoChannels": "No text channels were returned for the selected server.",
1769
+ "pluginsview.DiscordLocalNoGuilds": "No guilds were returned by the local Discord session.",
1770
+ "pluginsview.DiscordLocalSelectedCount": "{{count}} selected",
1771
+ "pluginsview.DiscordLocalSubscriptionsHint": "Select guild text channels to ingest directly. Direct-message notifications still flow through Discord RPC even without a subscribed channel list.",
1772
+ "pluginsview.DiscordLocalSubscriptionsSaved": "Đã lưu đăng ký kênh.",
1773
+ "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.",
1774
+ "pluginsview.DragToReorder": "Kéo để sắp xếp lại",
1775
+ "pluginsview.Expand": "Mở rộng",
1776
+ "pluginsview.IMessageConnected": "iMessage đã kết nối. Tin nhắn đang được đọc từ cơ sở dữ liệu cục bộ.",
1777
+ "pluginsview.IMessageNotConnected": "iMessage chưa kết nối. Đặt đường dẫn CLI ở trên và đảm bảo đã cấp Quyền truy cập đĩa đầy đủ cho terminal của bạn.",
1778
+ "pluginsview.IMessagePermissionHint": "iMessage đọc trực tiếp ~/Library/Messages/chat.db. Cấp Quyền truy cập đĩa đầy đủ trong Cài đặt hệ thống > Quyền riêng tư và bảo mật cho tiến trình chạy {{appName}}.",
1779
+ "pluginsview.Install": "Cài đặt",
1780
+ "pluginsview.InstallConnectorPrompt": "Cài đặt trình kết nối này để kích hoạt nó trong thời gian chạy.",
1781
+ "pluginsview.InstallPlugin": "Cài đặt plugin",
1782
+ "pluginsview.Installing": "Đang cài đặt...",
1783
+ "pluginsview.LoadFailed": "Tải không thành công",
1784
+ "pluginsview.ManagedDiscordChooseInline": "Choose which cloud agent should own managed Discord, then continue.",
1785
+ "pluginsview.ManagedDiscordChooseTarget": "Chọn agent đám mây sẽ nhận Discord được quản lý cho máy chủ bạn sở hữu này rồi tiếp tục.",
1786
+ "pluginsview.ManagedDiscordGatewayCreated": "Đã tạo agent cổng Discord {{appName}} dùng chung. Tiếp tục trong trình duyệt và chọn một máy chủ bạn sở hữu.",
1787
+ "pluginsview.ManagedDiscordGatewayHint": "Thích OAuth hơn? Kết nối Eliza Cloud để dùng cổng Discord {{appName}} dùng chung thay vì token bot cục bộ.",
1788
+ "pluginsview.ManagedDiscordGatewayHintConnected": "Thích OAuth hơn? Discord được quản lý dùng cổng {{appName}} dùng chung và chỉ hoạt động với các máy chủ thuộc tài khoản Discord đã liên kết.",
1789
+ "pluginsview.ManagedDiscordGatewayProvisionFailed": "Không thể khởi động cổng Discord {{appName}} dùng chung trong Eliza Cloud.",
1790
+ "pluginsview.ManagedDiscordHint": "Prefer OAuth? Connect Eliza Cloud to use the managed Discord app instead of a local bot token.",
1791
+ "pluginsview.ManagedDiscordHintConnected": "Prefer OAuth? Use Eliza Cloud managed Discord for the shared app and server-owner setup flow.",
1792
+ "pluginsview.ManagedDiscordNeedsAgent": "Deploy a cloud agent first, then connect managed Discord from the Cloud agents screen.",
1793
+ "pluginsview.ManagedDiscordRequiresCloud": "Connect Eliza Cloud first, then you can use managed Discord OAuth.",
1794
+ "pluginsview.ManagedDiscordSelectAgent": "Select a cloud agent",
1795
+ "pluginsview.NeedsSetup": "Cần thiết lập",
1796
+ "pluginsview.NoConfigNeeded": "Không cần cấu hình",
1797
+ "pluginsview.NoConfigurationNeeded": "Không cần cấu hình.",
1798
+ "pluginsview.NoDescriptionAvailable": "Không có mô tả nào",
1799
+ "pluginsview.NoPluginsMatchCategory": "Không có plugin nào phù hợp với danh mục đã chọn.",
1800
+ "pluginsview.NoPluginsMatchFilters": "Không {{label}} phù hợp với bộ lọc của bạn.",
1801
+ "pluginsview.NoResultsFound": "Không tìm thấy {{label}}",
1802
+ "pluginsview.NoneAvailableDesc": "Hiện không có {{label}} nào.",
1803
+ "pluginsview.NoneAvailableTitle": "Không có sẵn {{label}}",
1804
+ "pluginsview.NotInstalled": "Chưa được cài đặt",
1805
+ "pluginsview.NotLoaded": "Not loaded",
1806
+ "pluginsview.NothingToShow": "Không có gì để hiển thị",
1807
+ "pluginsview.Official": "Chính thức",
1808
+ "pluginsview.OpenElizaCloud": "Open Eliza Cloud",
1809
+ "pluginsview.PackageBrokenMis": "Package lỗi / thiếu",
1810
+ "pluginsview.PluginCatalog": "Danh mục plugin",
1811
+ "pluginsview.PluginDialogDescription": "Xem lại siêu dữ liệu plugin, điều chỉnh cài đặt và lưu thay đổi cho {{plugin}}.",
1812
+ "pluginsview.PluginInstallFailed": "Không cài đặt được {{plugin}}: {{message}}",
1813
+ "pluginsview.PluginInstallPreparing": "Enabling plugin installs for {{plugin}} and restarting the agent...",
1814
+ "pluginsview.PluginInstallRecovering": "Finishing plugin install setup for {{plugin}} and restarting the agent...",
1815
+ "pluginsview.PluginInstalledActivated": "{{plugin}} installed and activated without a full agent restart.",
1816
+ "pluginsview.PluginInstalledRestartComplete": "{{plugin}} installed and activated.",
1817
+ "pluginsview.PluginInstalledRestartFailed": "{{plugin}} installed, but the agent did not come back online (status: {{status}}).",
1818
+ "pluginsview.PluginInstalledRestarting": "{{plugin}} installed. Restarting the agent and waiting for activation...",
1819
+ "pluginsview.PluginTypes": "Các loại plugin",
1820
+ "pluginsview.PluginUninstallFailed": "Failed to uninstall {{plugin}}: {{message}}",
1821
+ "pluginsview.PluginUninstallPreparing": "Preparing uninstall for {{plugin}} and restarting the agent...",
1822
+ "pluginsview.PluginUninstallRecovering": "Finishing uninstall setup for {{plugin}} and restarting the agent...",
1823
+ "pluginsview.PluginUninstalledActivated": "{{plugin}} uninstalled without a full agent restart.",
1824
+ "pluginsview.PluginUninstalledRestartComplete": "{{plugin}} uninstalled and fully unloaded.",
1825
+ "pluginsview.PluginUninstalledRestartFailed": "{{plugin}} uninstalled, but the agent did not come back online (status: {{status}}).",
1826
+ "pluginsview.PluginUninstalledRestarting": "{{plugin}} uninstalled. Restarting the agent and waiting for cleanup...",
1827
+ "pluginsview.PluginUpdateFailed": "Failed to update {{plugin}}: {{message}}",
1828
+ "pluginsview.PluginUpdatePreparing": "Preparing updates for {{plugin}} and restarting the agent...",
1829
+ "pluginsview.PluginUpdateRecovering": "Finishing update setup for {{plugin}} and restarting the agent...",
1830
+ "pluginsview.PluginUpdatedActivated": "{{plugin}} updated without a full agent restart.",
1831
+ "pluginsview.PluginUpdatedRestartComplete": "{{plugin}} updated and activated.",
1832
+ "pluginsview.PluginUpdatedRestartFailed": "{{plugin}} updated, but the agent did not come back online (status: {{status}}).",
1833
+ "pluginsview.PluginUpdatedRestarting": "{{plugin}} updated. Restarting the agent and waiting for activation...",
1834
+ "pluginsview.Ready": "Sẵn sàng",
1835
+ "pluginsview.Reset": "Cài lại",
1836
+ "pluginsview.ResetOrder": "Reset thứ tự",
1837
+ "pluginsview.ResetToDefaultSor": "Khôi phục thứ tự mặc định",
1838
+ "pluginsview.SaveChannelSubscriptions": "Save channel subscriptions",
1839
+ "pluginsview.SaveSettings": "Lưu cài đặt",
1840
+ "pluginsview.Saved": "Đã lưu",
1841
+ "pluginsview.SavedWithBang": "Đã lưu!",
1842
+ "pluginsview.SavedWithCheck": "✓ Đã lưu",
1843
+ "pluginsview.SelectA": "Chọn một",
1844
+ "pluginsview.Settings": "Cài đặt",
1845
+ "pluginsview.SetupGuide": "Hướng dẫn thiết lập",
1846
+ "pluginsview.Source": "Nguồn",
1847
+ "pluginsview.TelegramAccountProvisioningExplain": "Telegram trước tiên yêu cầu {{appName}} cung cấp thông tin ứng dụng qua my.telegram.org. Nhập mã Telegram đã gửi cho bạn, sau đó {{appName}} sẽ yêu cầu mã đăng nhập tài khoản bình thường.",
1848
+ "pluginsview.TelegramAccountRestartHint": "Xác thực Telegram được lưu cục bộ. Khởi động lại agent để kích hoạt kết nối.",
1849
+ "pluginsview.TelegramAccountSetupHint": "Đây khác với kết nối bot Telegram. {{appName}} đăng nhập Telegram bằng tài khoản của bạn, lưu phiên cục bộ, và kết nối tài khoản Telegram sẽ hoạt động sau khi khởi động lại agent.",
1850
+ "pluginsview.TelegramAccountSetupTitle": "Kết nối tài khoản Telegram của bạn",
1851
+ "pluginsview.TelegramConnected": "Bot Telegram đã kết nối",
1852
+ "pluginsview.TelegramConnectedHint": "Bot của bạn đã được lưu và sẽ tự động kết nối khi khởi động lại. Bật plugin Telegram ở trên nếu chưa hoạt động.",
1853
+ "pluginsview.TelegramSetupTitle": "Kết nối Bot Telegram",
1854
+ "pluginsview.TelegramStep1": "Mở ",
1855
+ "pluginsview.TelegramStep1b": " trên Telegram",
1856
+ "pluginsview.TelegramStep2": "Gửi /newbot và làm theo hướng dẫn để tạo bot",
1857
+ "pluginsview.TelegramStep3": "Sao chép token bot và dán vào bên dưới",
1858
+ "pluginsview.TestConnection": "Test kết nối",
1859
+ "pluginsview.Testing": "Đang thử nghiệm...",
1860
+ "pluginsview.Uninstall": "Uninstall",
1861
+ "pluginsview.Uninstalling": "Uninstalling...",
1862
+ "pluginsview.Update": "Update",
1863
+ "pluginsview.Updating": "Updating...",
1864
+ "pluginsview.UseManagedDiscord": "Use managed Discord",
1865
+ "pluginsview.VisibleCount": "{{count}} được hiển thị",
1866
+ "pluginsview.X2807": "⠇",
1867
+ "pluginsview.configured": "đã cấu hình",
1868
+ "pluginsview.dependsOn": "phụ thuộc vào",
1869
+ "pluginsview.found": "tìm thấy",
1870
+ "pluginsview.restarting": "đang khởi động lại",
1871
+ "pluginsview.toC": "để cấu hình",
1872
+ "portfolioheader.ConnectViaElizaCl": "Kết nối qua Eliza Cloud hoặc cấu hình BSC RPC tuỳ chỉnh (NodeReal / QuickNode) để giao dịch.",
1873
+ "provider.anthropic": "Anthropic",
1874
+ "provider.elevenlabs": "ElevenLabs",
1875
+ "provider.elizaCloud": "Đám Mây Eliza",
1876
+ "provider.fal": "FAL.ai",
1877
+ "provider.google": "Google",
1878
+ "provider.openai": "OpenAI",
1879
+ "provider.suno": "Suno",
1880
+ "provider.xai": "xAI",
1881
+ "providerswitcher.chooseYourPreferredProvider": "Chọn provider ưa thích cho suy luận.",
1882
+ "providerswitcher.cloudInferenceToggleHint": "Đám mây có thể duy trì kết nối trong khi suy luận chạy trên khóa riêng của bạn. Vô hiệu hóa suy luận đám mây khi sử dụng nhà cung cấp BYOK.",
1883
+ "providerswitcher.customModelSpec": "Model tuỳ chỉnh",
1884
+ "providerswitcher.disconnect": "Ngắt kết nối",
1885
+ "providerswitcher.disconnecting": "Đang ngắt...",
1886
+ "providerswitcher.elizaCloud": "đám mây",
1887
+ "providerswitcher.largeModelDescription": "Model mạnh cho suy luận phức tạp",
1888
+ "providerswitcher.largeModelLabel": "Model lớn",
1889
+ "providerswitcher.logInToElizaCloud": "Đăng nhập Eliza Cloud",
1890
+ "providerswitcher.loggedIntoElizaCloud": "Đã đăng nhập Eliza Cloud",
1891
+ "providerswitcher.noAiProvidersAvailable": "Không có AI provider khả dụng. Bật một cái từ",
1892
+ "providerswitcher.opensABrowserWindow": "Mở trình duyệt để hoàn tất đăng nhập.",
1893
+ "providerswitcher.page": "trang.",
1894
+ "providerswitcher.primaryModelOverride": "Ghi đè model chính",
1895
+ "providerswitcher.providerModelPlaceholder": "provider/model (VD: ollama/qwen2.5)",
1896
+ "providerswitcher.reportIssueWithTemplate": "Báo cáo vấn đề này bằng mẫu được điền sẵn",
1897
+ "providerswitcher.restartRequiredHint": "Một số thay đổi của nhà cung cấp được áp dụng sau khi khởi động lại. {{appName}} tự động khởi động lại sau khi lưu.",
1898
+ "providerswitcher.savedRestartingAgent": "Đã lưu. Đang khởi động lại agent...",
1899
+ "providerswitcher.savingRestarting": "Đang lưu & khởi động lại...",
1900
+ "providerswitcher.selectAIProvider": "Chọn AI provider",
1901
+ "providerswitcher.smallModelDescription": "Model nhanh cho tác vụ đơn giản",
1902
+ "providerswitcher.smallModelLabel": "Model nhỏ",
1903
+ "providerswitcher.usePiDefaultModel": "Dùng model mặc định pi",
1904
+ "providerswitcher.waitingForBrowser": "Đang chờ đăng nhập qua trình duyệt...",
1905
+ "ptyconsolebase.AgentConsoles": "Bảng điều khiển tác tử",
1906
+ "releasecenter.AppBundle": "Gói ứng dụng",
1907
+ "releasecenter.AppReleaseService": "Dịch vụ phát hành ứng dụng",
1908
+ "releasecenter.AppVersionPill": "Ứng dụng: {{version}}",
1909
+ "releasecenter.ApplyDownloadedUpdate": "Áp dụng bản cập nhật đã tải xuống",
1910
+ "releasecenter.Architecture": "Kiến trúc",
1911
+ "releasecenter.Available": "Có sẵn",
1912
+ "releasecenter.AvailableRenderers": "Trình kết xuất có sẵn",
1913
+ "releasecenter.BrowserViewId": "BrowserView ID",
1914
+ "releasecenter.BrowserWebgpuStatus": "Trình duyệt WebGPU Trạng thái",
1915
+ "releasecenter.BrowserWebgpuStatusDescription": "Điều này báo cáo liệu chế độ xem web trên máy tính để bàn có dự kiến sẽ hiển thị WebGPU cho bản xem trước WGPU ở trên hay không. Đây không phải là tình trạng tổng thể của ứng dụng: đồng hành và hình đại diện đã quay trở lại WebGL khi thiếu WebGPU.",
1916
+ "releasecenter.BrowserWgpuSurface": "Bề mặt trình duyệt WGPU",
1917
+ "releasecenter.BrowserWgpuSurfaceDescription": "Bản xem trước <electrobun-wgpu> nội tuyến cộng với trạng thái tương thích của trình duyệt WebGPU từ trình kết xuất máy tính để bàn đang hoạt động.",
1918
+ "releasecenter.BuildConfigAndShellRuntime": "Thời gian chạy BuildConfig và Shell",
1919
+ "releasecenter.BuildConfigAndShellRuntimeDescription": "Siêu dữ liệu thời gian chạy gốc có nguồn gốc trực tiếp từ Electrobun BuildConfig và API shell.",
1920
+ "releasecenter.BunVersion": "Phiên bản Bun",
1921
+ "releasecenter.CefVersion": "Phiên bản CEF",
1922
+ "releasecenter.ChannelPill": "Kênh: {{channel}}",
1923
+ "releasecenter.CheckDownloadUpdate": "Kiểm tra/Tải xuống bản cập nhật",
1924
+ "releasecenter.ChromeBeta": "Chrome Beta",
1925
+ "releasecenter.ClearCookies": "Xóa cookie",
1926
+ "releasecenter.ClearStorage": "Xóa bộ nhớ",
1927
+ "releasecenter.CookieCount": "Số lượng cookie",
1928
+ "releasecenter.CurrentVersion": "Phiên bản hiện tại",
1929
+ "releasecenter.DefaultRenderer": "Trình kết xuất mặc định",
1930
+ "releasecenter.DesktopVersionPill": "Máy tính để bàn: {{version}}",
1931
+ "releasecenter.DockIconVisible": "biểu tượng Dock hiển thị",
1932
+ "releasecenter.DownloadChromeBetaFallback": "Tải xuống bản dự phòng Chrome Beta",
1933
+ "releasecenter.HideDockIcon": "Ẩn biểu tượng Dock",
1934
+ "releasecenter.HideSurface": "Ẩn bề mặt",
1935
+ "releasecenter.InlineSurfaceReady": "Bề mặt nội tuyến đã sẵn sàng",
1936
+ "releasecenter.LastChecked": "Đã kiểm tra lần cuối",
1937
+ "releasecenter.LastStatus": "Trạng thái cuối cùng",
1938
+ "releasecenter.LatestVersion": "Phiên bản mới nhất",
1939
+ "releasecenter.MacOsOnly": "chỉ macOS",
1940
+ "releasecenter.NativeElectrobunUpdater": "Trình cập nhật Electrobun gốc",
1941
+ "releasecenter.NoCookiesStoredForThisPartition": "Không có cookie nào được lưu trữ cho phân vùng này.",
1942
+ "releasecenter.NotAvailable": "Không có sẵn",
1943
+ "releasecenter.NotDetected": "Không được phát hiện",
1944
+ "releasecenter.NotYet": "Chưa",
1945
+ "releasecenter.Opaque": "đục",
1946
+ "releasecenter.OpenBrowserViewWindow": "Mở BrowserView Cửa sổ",
1947
+ "releasecenter.OpenDetachedReleaseCenter": "Mở Trung tâm phát hành tách rời",
1948
+ "releasecenter.Partition": "Phân vùng",
1949
+ "releasecenter.PassthroughOff": "Tắt truyền qua",
1950
+ "releasecenter.PassthroughOn": "Bật truyền qua",
1951
+ "releasecenter.Persistent": "dai dẳng",
1952
+ "releasecenter.Platform": "Nền tảng",
1953
+ "releasecenter.ReleaseNotesBrowserView": "Ghi chú phát hành BrowserView",
1954
+ "releasecenter.ReleaseNotesBrowserViewDescription": "Mở ghi chú phát hành trong BrowserView hộp cát chuyên dụng trên phiên liên tục của chính nó.",
1955
+ "releasecenter.ReleaseStatus": "Trạng thái phát hành",
1956
+ "releasecenter.ReleaseStatusDescription": "So sánh siêu dữ liệu phát hành phụ trợ với trạng thái cập nhật Electrobun gốc.",
1957
+ "releasecenter.RendererDefaultSession": "Phiên mặc định của trình kết xuất",
1958
+ "releasecenter.RendererSupport": "Hỗ trợ trình kết xuất",
1959
+ "releasecenter.RendererType": "Loại trình kết xuất",
1960
+ "releasecenter.ResetUrl": "Đặt lại URL",
1961
+ "releasecenter.RunTest": "Chạy thử nghiệm",
1962
+ "releasecenter.SandboxedReleaseNotesSession": "Phiên ghi chú phát hành có hộp cát",
1963
+ "releasecenter.SessionAndCookieControls": "Kiểm soát phiên và cookie",
1964
+ "releasecenter.SessionAndCookieControlsDescription": "API phiên rõ ràng để kiểm tra và xóa bộ nhớ kết xuất.",
1965
+ "releasecenter.ShowDockIcon": "Hiển thị biểu tượng Dock",
1966
+ "releasecenter.ShowSurface": "Hiển thị bề mặt",
1967
+ "releasecenter.StatusTime": "Thời gian trạng thái",
1968
+ "releasecenter.Transparent": "Minh bạch",
1969
+ "releasecenter.Unavailable": "Không có sẵn",
1970
+ "releasecenter.UpdaterBaseUrl": "Cơ sở cập nhật URL",
1971
+ "releasecenter.UsingUpdaterUrl": "Sử dụng trình cập nhật URL:",
1972
+ "releasecenter.WaitingForDesktopRendererStatus": "Đang chờ trạng thái kết xuất trên máy tính để bàn.",
1973
+ "releasecenter.WgpuCustomElementUnavailable": "Phần tử tùy chỉnh WGPU không có sẵn trong trình kết xuất này.",
1974
+ "releasecenter.WindowId": "Cửa sổ ID",
1975
+ "releasecenterview.App": "ứng dụng",
1976
+ "releasecenterview.ApplyDownloadedUpdate": "Áp dụng bản cập nhật đã tải xuống",
1977
+ "releasecenterview.ApplyStarted": "Đang áp dụng bản cập nhật đã tải xuống.",
1978
+ "releasecenterview.Channel": "Kênh",
1979
+ "releasecenterview.CheckDownloadUpdate": "Kiểm tra/Tải xuống bản cập nhật",
1980
+ "releasecenterview.CheckStarted": "Quá trình kiểm tra cập nhật máy tính để bàn đã bắt đầu.",
1981
+ "releasecenterview.Current": "hiện tại",
1982
+ "releasecenterview.Desktop": "Máy tính để bàn",
1983
+ "releasecenterview.DetachedOpened": "Trung tâm phát hành tách rời đã mở.",
1984
+ "releasecenterview.Idle": "Nhàn rỗi",
1985
+ "releasecenterview.LastChecked": "Đã kiểm tra lần cuối",
1986
+ "releasecenterview.Latest": "Mới nhất",
1987
+ "releasecenterview.NotYet": "Chưa",
1988
+ "releasecenterview.OpenBrowserViewWindow": "Mở cửa sổ xem trình duyệt",
1989
+ "releasecenterview.OpenDetachedReleaseCenter": "Mở Trung tâm phát hành tách rời",
1990
+ "releasecenterview.ReleaseCenter": "Trung tâm phát hành",
1991
+ "releasecenterview.ReleaseNotes": "Ghi chú phát hành",
1992
+ "releasecenterview.ReleaseNotesOpened": "Cửa sổ ghi chú phát hành đã mở.",
1993
+ "releasecenterview.ReleaseNotesReset": "Đặt lại URL ghi chú phát hành.",
1994
+ "releasecenterview.ReleaseNotesWindowTitle": "Ghi chú phát hành",
1995
+ "releasecenterview.ReleaseStatusRefreshed": "Đã làm mới trạng thái phát hành.",
1996
+ "releasecenterview.ResetUrl": "Đặt lại URL",
1997
+ "releasecenterview.Status": "Trạng thái",
1998
+ "releasecenterview.UpdateActions": "Cập nhật hành động",
1999
+ "releasecenterview.UpdateAvailable": "Đã có bản cập nhật",
2000
+ "releasecenterview.UpdateReady": "Đã sẵn sàng cập nhật",
2001
+ "releasecenterview.WebReadOnly": "Phiên web này ở chế độ chỉ đọc để quản lý bản phát hành. Mở {{appName}} trong giao diện máy tính để bàn để kiểm tra các bản cập nhật, áp dụng các bản dựng đã tải xuống hoặc quản lý cửa sổ ghi chú phát hành tách rời.",
2002
+ "restartbanner.Later": "Để sau",
2003
+ "restartbanner.MultipleReasonsPending": "{{count}} thay đổi đang chờ xử lý - hãy khởi động lại để áp dụng.",
2004
+ "restartbanner.RestartNow": "Khởi động lại ngay bây giờ",
2005
+ "restartbanner.RestartRequired": "Cần phải khởi động lại để áp dụng các thay đổi.",
2006
+ "restartbanner.Restarting": "Đang khởi động lại...",
2007
+ "restartbanner.SingleReasonPending": "{{reason}} - khởi động lại để áp dụng.",
2008
+ "runtimeview.Actions": "hành động",
2009
+ "runtimeview.AgentRuntimeIsNot": "Agent runtime chưa chạy. Khởi động runtime rồi làm mới.",
2010
+ "runtimeview.Collapse": "Thu gọn",
2011
+ "runtimeview.Evaluators": "Người đánh giá",
2012
+ "runtimeview.Expand": "Mở rộng",
2013
+ "runtimeview.ExpandTop": "Mở rộng",
2014
+ "runtimeview.Plugins": "Plugin",
2015
+ "runtimeview.Providers": "Nhà cung cấp",
2016
+ "runtimeview.Refreshing": "Đang làm mới...",
2017
+ "runtimeview.Services": "Dịch vụ (",
2018
+ "runtimeview.Summary": "Tóm tắt",
2019
+ "runtimeview.actions": "hành động:",
2020
+ "runtimeview.actionsDescription": "Xem lại các action đã đăng ký và thứ tự tải của chúng trong runtime hiện tại.",
2021
+ "runtimeview.agent": "đại lý:",
2022
+ "runtimeview.arrayCap": "giới hạn mảng",
2023
+ "runtimeview.available": "khả dụng",
2024
+ "runtimeview.depth": "độ sâu",
2025
+ "runtimeview.evaluators": "người đánh giá:",
2026
+ "runtimeview.evaluatorsDescription": "Xem lại việc đăng ký và thứ tự của các evaluator trong vòng quyết định của agent.",
2027
+ "runtimeview.filterSections": "Filter sections",
2028
+ "runtimeview.lastUpdated": "Cập nhật lần cuối:",
2029
+ "runtimeview.loadingDescription": "Hãy làm mới trình kiểm tra sau khi runtime desktop khởi động để lấy cây đối tượng hiện tại và dữ liệu đăng ký.",
2030
+ "runtimeview.loadingSnapshot": "Đang tải snapshot runtime...",
2031
+ "runtimeview.model": "mô hình:",
2032
+ "runtimeview.noSectionData": "Không có dữ liệu nào được trả về cho mục này trong ảnh chụp hiện tại.",
2033
+ "runtimeview.noSnapshotAvailable": "Không có snapshot. Hãy khởi động agent runtime.",
2034
+ "runtimeview.none": "không có",
2035
+ "runtimeview.objectCap": "giới hạn object",
2036
+ "runtimeview.offline": "ngoại tuyến",
2037
+ "runtimeview.path": "Đường dẫn",
2038
+ "runtimeview.plugins": "plugin:",
2039
+ "runtimeview.pluginsDescription": "Xác minh thứ tự đăng ký plugin và xác nhận runtime đã tải những gì.",
2040
+ "runtimeview.providers": "nhà cung cấp:",
2041
+ "runtimeview.providersDescription": "Kiểm tra các provider đã tải, thứ tự ưu tiên thực thi và các ngữ cảnh hiện có.",
2042
+ "runtimeview.runtime": "thời gian chạy:",
2043
+ "runtimeview.runtimeDescription": "Kiểm tra toàn bộ đối tượng runtime đã được tuần tự hóa và mở rộng xuống cây trạng thái thô.",
2044
+ "runtimeview.runtimePendingDescription": "Trình kiểm tra runtime sẽ khả dụng sau khi agent desktop tải xong các dịch vụ cốt lõi.",
2045
+ "runtimeview.sectionLabel": "Mục runtime",
2046
+ "runtimeview.sectionUnavailable": "Không có mục này",
2047
+ "runtimeview.sections": "Các mục",
2048
+ "runtimeview.services": "dịch vụ:",
2049
+ "runtimeview.servicesDescription": "Kiểm tra các dịch vụ được nhóm và các triển khai đã được khởi tạo của chúng.",
2050
+ "runtimeview.state": "trạng thái:",
2051
+ "runtimeview.summaryDescription": "Bắt đầu tại đây để xác nhận runtime sẵn sàng, kiểm tra mô hình đang hoạt động và xem tổng quan các đăng ký hiện tại trước khi mở một mục cụ thể.",
2052
+ "runtimeview.tabActions": "hành động",
2053
+ "runtimeview.tabEvaluators": "Người đánh giá",
2054
+ "runtimeview.tabPlugins": "Plugin",
2055
+ "runtimeview.tabProviders": "Nhà cung cấp",
2056
+ "runtimeview.tabRuntime": "Thời gian chạy",
2057
+ "runtimeview.tabServices": "Dịch vụ",
2058
+ "runtimeview.types": "loại)",
2059
+ "savecommandmodal.CommandName": "Tên lệnh",
2060
+ "savecommandmodal.Preview": "Xem trước",
2061
+ "savecommandmodal.SaveAsCommand": "Lưu thành /Lệnh",
2062
+ "savecommandmodal.myCommand": "my-command",
2063
+ "savecommandmodal.nameFormat": "Chỉ dùng chữ thường, số và dấu gạch ngang",
2064
+ "savecommandmodal.nameRequired": "Phải nhập tên nha",
2065
+ "secretsview.Add": "Thêm",
2066
+ "secretsview.AddSecret": "+ Thêm Secret",
2067
+ "secretsview.AddSecretsToVault": "Thêm Secrets vào Kho",
2068
+ "secretsview.LoadingSecrets": "Đang tải secrets...",
2069
+ "secretsview.RemoveFromVault": "Xoá khỏi kho",
2070
+ "secretsview.Required": "Bắt buộc",
2071
+ "secretsview.SaveCount": "Lưu ({{count}})",
2072
+ "secretsview.Saving": "Đang lưu...",
2073
+ "secretsview.SearchByKeyDescr": "Tìm theo key, mô tả, hoặc tên plugin...",
2074
+ "secretsview.YourVaultIsEmpty": "Kho trống. Bấm \"Thêm Secret\" để chọn API keys quản lý.",
2075
+ "settings.advancedKeyWarning": "Không cần thiết với Steward. Dùng cẩn thận.",
2076
+ "settings.appearance.active": "ĐANG HOẠT ĐỘNG",
2077
+ "settings.appearance.deactivate": "Hủy kích hoạt gói hiện tại",
2078
+ "settings.appearance.load": "Tải",
2079
+ "settings.appearance.loadFromFolder": "Tải từ thư mục",
2080
+ "settings.appearance.loadPack": "Tải gói nội dung",
2081
+ "settings.appearance.loadedPacks": "Gói nội dung đã tải",
2082
+ "settings.appearance.packUrlPlaceholder": "https://example.com/packs/my-pack/",
2083
+ "settings.appearance.theme": "Giao diện",
2084
+ "settings.browse": "Duyệt",
2085
+ "settings.change": "Đổi",
2086
+ "settings.codingAgentsDescription": "Cấu hình AI coding agent cho đa tác vụ.",
2087
+ "settings.companionAnimateWhenHidden.desc": "Khi cửa sổ hoặc tab bị ẩn, giữ avatar idle nhưng ẩn môi trường 3D. Tốn ít GPU hơn cảnh đầy đủ trong khi nhân vật vẫn chuyển động.",
2088
+ "settings.companionAnimateWhenHidden.title": "Animate khi ẩn (nền)",
2089
+ "settings.companionHalfFramerate.always": "Luôn một nửa",
2090
+ "settings.companionHalfFramerate.desc": "Giới hạn đồng hành 3D khoảng một nửa tần số quét màn hình (~30 fps trên 60 Hz). Độc lập với chất lượng pixel và bóng: tiết kiệm GPU mà không hạ độ phân giải, hoặc giữ tốc độ khung hình đầy khi vẫn dùng pixel tiết kiệm pin.",
2091
+ "settings.companionHalfFramerate.label": "FPS đồng hành 3D",
2092
+ "settings.companionHalfFramerate.off": "Tốc độ đầy",
2093
+ "settings.companionHalfFramerate.when_saving_power": "Khi tiết kiệm pin",
2094
+ "settings.companionVrmPower.balanced": "Tùy pin",
2095
+ "settings.companionVrmPower.desc": "Mức GPU cho đồng hành 3D: chất lượng tối đa, theo pin trên desktop (mặc định), hoặc luôn tiết kiệm năng lượng.",
2096
+ "settings.companionVrmPower.efficiency": "Luôn tiết kiệm",
2097
+ "settings.companionVrmPower.label": "Render đồng hành 3D",
2098
+ "settings.companionVrmPower.quality": "Luôn chất lượng cao",
2099
+ "settings.dangerZone": "Vùng nguy hiểm",
2100
+ "settings.exportAgent": "Xuất Agent",
2101
+ "settings.exportAgentShort": "Sao lưu toàn bộ",
2102
+ "settings.import": "Nhập",
2103
+ "settings.importAgent": "Nhập Agent",
2104
+ "settings.importAgentShort": "Khôi phục từ bản sao lưu",
2105
+ "settings.instanceRouting": "Instance Routing",
2106
+ "settings.instanceRoutingActive": "This instance is registered and receiving messages via Eliza Cloud gateway relay.",
2107
+ "settings.instanceRoutingInactive": "Cloud connected but gateway relay not active. The relay starts automatically when the elizacloud plugin loads.",
2108
+ "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.",
2109
+ "settings.instanceRoutingRegistered": "Instance registered with cloud but not actively polling. It will start receiving messages shortly.",
2110
+ "settings.keyword.advanced": "nâng cao",
2111
+ "settings.keyword.apiKey": "khóa API",
2112
+ "settings.keyword.appearance": "giao diện",
2113
+ "settings.keyword.audio": "âm thanh",
2114
+ "settings.keyword.avatar": "hình đại diện",
2115
+ "settings.keyword.billing": "thanh toán",
2116
+ "settings.keyword.browser": "trình duyệt",
2117
+ "settings.keyword.camera": "camera",
2118
+ "settings.keyword.cloud": "đám mây",
2119
+ "settings.keyword.connectors": "kết nối",
2120
+ "settings.keyword.export": "xuất",
2121
+ "settings.keyword.import": "nhập",
2122
+ "settings.keyword.inference": "suy luận",
2123
+ "settings.keyword.microphone": "micro",
2124
+ "settings.keyword.model": "mô hình",
2125
+ "settings.keyword.permissions": "quyền",
2126
+ "settings.keyword.provider": "nhà cung cấp",
2127
+ "settings.keyword.reset": "đặt lại",
2128
+ "settings.keyword.security": "bảo mật",
2129
+ "settings.keyword.theme": "chủ đề",
2130
+ "settings.keyword.updates": "cập nhật",
2131
+ "settings.keyword.voice": "giọng nói",
2132
+ "settings.keyword.wallet": "ví",
2133
+ "settings.language": "Ngôn ngữ",
2134
+ "settings.noMatchingSettingsDescription": "Thử tìm rộng hơn hoặc xoá bộ lọc.",
2135
+ "settings.resetAgent": "Đặt lại đại lý",
2136
+ "settings.resetAgentHint": "Xoá cấu hình, DB agent và khoá cloud. Giữ model GGUF đã tải. Quay về onboarding.",
2137
+ "settings.resetEverything": "Reset tất cả",
2138
+ "settings.rpcConfiguration": "Cấu hình RPC",
2139
+ "settings.sections.advanced.desc": "Xuất, nhập, và thao tác nguy hiểm",
2140
+ "settings.sections.aimodel.desc": "Nhà cung cấp và cài đặt model",
2141
+ "settings.sections.aimodel.label": "Mô hình AI",
2142
+ "settings.sections.appearance.desc": "Gói nội dung, avatar VRM, hình nền và giao diện",
2143
+ "settings.sections.appearance.label": "Giao diện",
2144
+ "settings.sections.capabilities.browserHint": "Hien thi tab Trinh duyet de agent dieu khien duyet web",
2145
+ "settings.sections.capabilities.browserLabel": "Bat Trinh duyet",
2146
+ "settings.sections.capabilities.desc": "Bat hoac tat cac kha nang cua agent",
2147
+ "settings.sections.capabilities.label": "Kha nang",
2148
+ "settings.sections.capabilities.walletLabel": "Bat Vi",
2149
+ "settings.sections.cloud.desc": "Quản lý agent cloud và tài nguyên",
2150
+ "settings.sections.codingagents.desc": "Tuỳ chọn agent, model, quyền",
2151
+ "settings.sections.codingagents.label": "Đại lý mã hóa",
2152
+ "settings.sections.connectors.desc": "Thiết lập kết nối, xác thực và tích hợp dịch vụ",
2153
+ "settings.sections.lifeops.desc": "Kết nối Google Calendar và Gmail cho agent đang hoạt động.",
2154
+ "settings.sections.lifeops.label": "Life Ops",
2155
+ "settings.sections.media.desc": "Nhà cung cấp ảnh, video, vision",
2156
+ "settings.sections.media.label": "Media",
2157
+ "settings.sections.permissions.desc": "Khả năng và kiểm soát truy cập",
2158
+ "settings.sections.permissions.label": "Quyền",
2159
+ "settings.sections.updates.desc": "Cài đặt cập nhật phần mềm",
2160
+ "settings.sections.updates.label": "Cập nhật",
2161
+ "settings.sections.voice.label": "Giọng nói",
2162
+ "settings.sections.wallet.desc": "Quản lý ví tiền mã hóa và token",
2163
+ "settings.sections.wallet.enableHint": "Hiển thị tab Ví để quản lý ví tiền mã hóa và số dư token",
2164
+ "settings.sections.wallet.enableLabel": "Bật Ví",
2165
+ "settings.sections.wallet.label": "Ví",
2166
+ "settings.sections.wallet.stewardDesc": "Được quản lý bởi Steward vault",
2167
+ "settings.sections.walletpolicies.desc": "Giới hạn chi tiêu và quy tắc giao dịch",
2168
+ "settings.sections.walletpolicies.label": "Chính sách ví",
2169
+ "settings.sections.walletrpc.desc": "RPC chain và API key",
2170
+ "settings.sections.walletrpc.label": "Ví & RPC",
2171
+ "settings.showAdvancedKeyManagement": "Quản lý khóa nâng cao",
2172
+ "settings.stewardNoAddresses": "Chưa có địa chỉ vault",
2173
+ "settings.stewardVaultDegraded": "Vault đã kết nối — suy giảm",
2174
+ "settings.stewardVaultError": "Vault đã kết nối — trạng thái lỗi",
2175
+ "settings.stewardVaultHealthy": "Vault đã kết nối và hoạt động tốt",
2176
+ "settings.stewardWalletManaged": "Ví được quản lý bởi Steward",
2177
+ "settings.viewWalletPolicies": "Xem chính sách ví",
2178
+ "settings.walletRpcDescription": "Cấu hình RPC chain cho giao dịch và dữ liệu thị trường.",
2179
+ "settingsview.BackupFile": "File sao lưu",
2180
+ "settingsview.ChooseAnExportedBack": "Chọn file backup đã xuất...",
2181
+ "settingsview.ClearSearch": "Xoá tìm kiếm",
2182
+ "settingsview.EnterExportPasswor": "Nhập mật khẩu xuất",
2183
+ "settingsview.EnterImportPasswor": "Nhập mật khẩu nhập",
2184
+ "settingsview.IncludeRecentLogs": "Kèm log gần đây trong bản sao lưu",
2185
+ "settingsview.NoMatchingSettings": "Không tìm thấy cài đặt",
2186
+ "settingsview.Password": "Mật khẩu",
2187
+ "settingsview.SearchSettings": "Cài đặt tìm kiếm",
2188
+ "shortcutsoverlay.KeyboardShortcuts": "Phím tắt",
2189
+ "signalqroverlay.ConnectSignal": "Connect Signal",
2190
+ "signalqroverlay.GeneratingQR": "Generating QR…",
2191
+ "signalqroverlay.OpenLinkedDevices": "Open Signal settings and choose Linked Devices.",
2192
+ "signalqroverlay.OpenSignalDesktop": "Open Signal Desktop on your Mac.",
2193
+ "signalqroverlay.PairUsingSignalDesktop": "Pair Signal by generating a provisioning QR code and scanning it from Signal Desktop.",
2194
+ "signalqroverlay.ScanPrompt": "Choose Link New Device and scan the QR code shown here.",
2195
+ "signalqroverlay.ScanWithSignalDesktop": "Scan with Signal Desktop",
2196
+ "skillsview.AcknowledgeAmpEn": "Xác nhận & Bật",
2197
+ "skillsview.BriefDescriptionOf": "Mô tả ngắn skill này làm gì (tuỳ chọn)",
2198
+ "skillsview.BrowseMarketplace": "Mở Marketplace",
2199
+ "skillsview.CreateNewSkill": "Tạo Skill mới",
2200
+ "skillsview.Delete": "Xóa",
2201
+ "skillsview.Description": "Mô tả",
2202
+ "skillsview.Dismiss": "Bỏ qua",
2203
+ "skillsview.EditSource": "Sửa code",
2204
+ "skillsview.Install": "Cài đặt",
2205
+ "skillsview.LoadingScanReport": "Đang tải báo cáo quét...",
2206
+ "skillsview.LoadingSkillSource": "Đang tải skill...",
2207
+ "skillsview.NewSkill": "Kỹ năng mới",
2208
+ "skillsview.NoSkillsFound": "Không tìm thấy kỹ năng nào",
2209
+ "skillsview.RefreshSkillsList": "Làm mới danh sách",
2210
+ "skillsview.ReviewFindings": "Xem kết quả",
2211
+ "skillsview.SKILLMd": "KỸ NĂNG.md",
2212
+ "skillsview.ScanReport": "Báo cáo quét",
2213
+ "skillsview.SearchSkills": "Tìm kiếm kỹ năng...",
2214
+ "skillsview.SelectATalentToConf": "Chọn kỹ năng để sửa",
2215
+ "skillsview.SkillName": "Tên Skill",
2216
+ "skillsview.SkillSourceEditorDescription": "Mở trình chỉnh sửa nguồn kỹ năng để kiểm tra hoặc sửa đổi `SKILL.md` hoặc xem lại các phát hiện tại đây khi một kỹ năng cần được chú ý.",
2217
+ "skillsview.Talents": "Kỹ năng (Talents)",
2218
+ "skillsview.Uninstall": "Gỡ cài đặt",
2219
+ "skillsview.VisibleCount": "{{count}} hiển thị",
2220
+ "skillsview.all": "Tất cả",
2221
+ "skillsview.createSkill": "Tạo kỹ năng",
2222
+ "skillsview.creating": "Đang tạo...",
2223
+ "skillsview.critical": "nghiêm trọng",
2224
+ "skillsview.discard": "Loại bỏ",
2225
+ "skillsview.eGMyAwesomeSkil": "VD: my-awesome-skill",
2226
+ "skillsview.editSkillSourceDescription": "Chỉnh sửa nguồn Markdown cho kỹ năng này và lưu các thay đổi của bạn.",
2227
+ "skillsview.failedToLoadSkillSource": "Không thể tải nguồn kỹ năng",
2228
+ "skillsview.failedToSave": "Không lưu được",
2229
+ "skillsview.filterSkills": "Lọc kỹ năng...",
2230
+ "skillsview.githubRepositoryDesc": "Dán URL kho lưu trữ GitHub đầy đủ để cài đặt trực tiếp một kỹ năng.",
2231
+ "skillsview.githubRepositoryUrl": "URL kho lưu trữ GitHub",
2232
+ "skillsview.githubUrlTab": "URL GitHub",
2233
+ "skillsview.installSkillDescription": "Thêm kỹ năng từ thị trường hoặc kho lưu trữ GitHub.",
2234
+ "skillsview.installSkillSource": "Cài đặt nguồn kỹ năng",
2235
+ "skillsview.installSkillTitle": "Cài đặt kỹ năng",
2236
+ "skillsview.installed": "đã cài",
2237
+ "skillsview.installing": "Đang cài đặt...",
2238
+ "skillsview.marketplaceTab": "Thị trường",
2239
+ "skillsview.noDescription": "Chưa có mô tả",
2240
+ "skillsview.noDescriptionProvided": "Không có mô tả được cung cấp.",
2241
+ "skillsview.noMatchingSkills": "Không có kỹ năng phù hợp",
2242
+ "skillsview.noSkillsInstalled": "Không có kỹ năng nào được cài đặt",
2243
+ "skillsview.noSkillsInstalledDesc": "Cài đặt các kỹ năng từ thị trường hoặc tạo kỹ năng của riêng bạn.",
2244
+ "skillsview.noSkillsMatchFilter": "Không có kỹ năng nào phù hợp với \"{{filter}}\"",
2245
+ "skillsview.removing": "Đang xóa...",
2246
+ "skillsview.result": "kết quả",
2247
+ "skillsview.score": "điểm:",
2248
+ "skillsview.search": "Tìm kiếm",
2249
+ "skillsview.searchAboveToDiscoverSkills": "Tìm kiếm ở trên để khám phá các kỹ năng.",
2250
+ "skillsview.searchByKeyword": "Tìm kiếm kỹ năng theo từ khóa...",
2251
+ "skillsview.searching": "Đang tìm kiếm...",
2252
+ "skillsview.skillBuilder": "Người xây dựng kỹ năng",
2253
+ "skillsview.statusActive": "Đang bật",
2254
+ "skillsview.statusBlocked": "Bị chặn",
2255
+ "skillsview.statusInactive": "Đã tắt",
2256
+ "skillsview.statusWarning": "Cảnh báo",
2257
+ "skillsview.toSave": "để lưu",
2258
+ "skillsview.unsaved": "chưa lưu",
2259
+ "skillsview.warnings": "cảnh báo",
2260
+ "startupfailureview.AgentError": "Lỗi đại lý",
2261
+ "startupfailureview.AgentTimeout": "Thời gian chờ của đại lý",
2262
+ "startupfailureview.AssetMissing": "Thiếu nội dung",
2263
+ "startupfailureview.BackendTimeout": "Hết thời gian chờ cuối cùng",
2264
+ "startupfailureview.BackendUnreachable": "Phần cuối không thể truy cập được",
2265
+ "startupfailureview.Details": "Chi tiết",
2266
+ "startupfailureview.OpenApp": "Mở App",
2267
+ "startupfailureview.RetryStartup": "Thử lại khởi động",
2268
+ "startupfailureview.StartupFailed": "Khởi động thất bại:",
2269
+ "startupfailureview.Unknown": "Unknown Error",
2270
+ "startupshell.AgentName": "Tên agent",
2271
+ "startupshell.Back": "Quay lại",
2272
+ "startupshell.CloudLogin": "Đăng nhập Eliza Cloud",
2273
+ "startupshell.Connect": "Connect",
2274
+ "startupshell.ConnectToRemote": "Kết nối đến agent từ xa",
2275
+ "startupshell.ConnectToRemoteDesc": "Kết nối đến máy chủ đang chạy trên mạng của bạn",
2276
+ "startupshell.Connecting": "Đang kết nối...",
2277
+ "startupshell.ConnectingBackend": "Connecting to backend…",
2278
+ "startupshell.ContentPacks": "Gói nội dung",
2279
+ "startupshell.CreateAgent": "Tạo",
2280
+ "startupshell.CreateAgentLabel": "New local agent",
2281
+ "startupshell.CreateLocalAgent": "Tạo agent cục bộ",
2282
+ "startupshell.CreateLocalAgentDesc": "Chạy agent cục bộ trên thiết bị này",
2283
+ "startupshell.CreateOne": "Create one",
2284
+ "startupshell.CreatingAgent": "Đang tạo agent...",
2285
+ "startupshell.ElizaCloudAgent": "Eliza Cloud",
2286
+ "startupshell.EnterPackUrl": "Nhập URL của thư mục gói nội dung (phải chứa pack.json):",
2287
+ "startupshell.GetStarted": "Press Start",
2288
+ "startupshell.InitializingAgent": "Initializing agent…",
2289
+ "startupshell.LoadPack": "Tải gói",
2290
+ "startupshell.LoadPackHint": "VRM, hình nền, chủ đề",
2291
+ "startupshell.Loading": "Loading…",
2292
+ "startupshell.LoadingAgents": "Đang tải danh sách agent...",
2293
+ "startupshell.LocalNetworkAgent": "LAN agent",
2294
+ "startupshell.ManageCloudAgents": "Quản lý agent trên mây",
2295
+ "startupshell.ManageCloudAgentsDesc": "Lưu trữ agent trên hạ tầng Eliza Cloud",
2296
+ "startupshell.ManuallyConnect": "Manually connect to one",
2297
+ "startupshell.NetworkAgent": "Network agent",
2298
+ "startupshell.NoCloudAgents": "Chưa có agent trên mây",
2299
+ "startupshell.NoNetworkAgentsFound": "No LAN agents found yet.",
2300
+ "startupshell.PackActive": "Đang hoạt động",
2301
+ "startupshell.PackLoadFailed": "Không tải được gói: {{error}}",
2302
+ "startupshell.Provisioning": "Đang cung cấp...",
2303
+ "startupshell.Refresh": "Làm mới",
2304
+ "startupshell.RemoteAgentLabel": "Existing server",
2305
+ "startupshell.ScanningNetwork": "Scanning your network...",
2306
+ "startupshell.SignInElizaCloud": "Đăng nhập với Eliza Cloud",
2307
+ "startupshell.SplashTagline": "Your local-first AI assistant",
2308
+ "startupshell.Starting": "Starting…",
2309
+ "startupshell.UseElizaCloud": "Use Eliza Cloud",
2310
+ "startupshell.WaitingForAuth": "Đang chờ xác thực...",
2311
+ "startupshell.YourCloudAgents": "Agent trên mây của bạn",
2312
+ "statusbar.GoLive": "Phát trực tiếp",
2313
+ "statusbar.InstallStreamingPlugin": "Cài đặt và kích hoạt plugin phát trực tuyến để phát trực tiếp",
2314
+ "statusbar.LiveShort": "LIVE",
2315
+ "statusbar.OfflineShort": "OFFLINE",
2316
+ "statusbar.PopOutStreamView": "Bật cửa sổ stream",
2317
+ "statusbar.StopStream": "Dừng phát trực tiếp",
2318
+ "streamsettings.Use": "Dùng",
2319
+ "streamview.EnableTheStreaming": "Bật plugin phát sóng để go live",
2320
+ "streamview.GoLiveHint": "Nhấn Go Live để bắt đầu phát trực tuyến.",
2321
+ "streamview.IfThePluginIsAlr": "Nếu plugin đã cài, khởi động lại desktop app hoặc API server rồi thử lại.",
2322
+ "streamview.{{appName}}CouldNotRea": "Không thể kết nối tới",
2323
+ "streamview.StreamIsLive": "Luồng đang trực tiếp",
2324
+ "streamview.StreamLiveStatus": "Thời gian hoạt động: {{uptime}} · {{frameCount}} khung",
2325
+ "streamview.StreamReady": "Đã sẵn sàng phát trực tuyến",
2326
+ "streamview.StreamingUnavailabl": "Phát sóng không khả dụng",
2327
+ "streamview.pluginThenReload": "plugin, rồi tải lại tab Phát sóng.",
2328
+ "streamview.streamingBase": "cơ sở phát trực tuyến",
2329
+ "subscriptionstatus.AfterLoggingInCo": "Sau khi đăng nhập Claude, copy mã xác thực và dán bên dưới.",
2330
+ "subscriptionstatus.AfterLoggingInYo": "Sau khi đăng nhập, trình duyệt sẽ chuyển đến trang không tải được (bắt đầu bằng",
2331
+ "subscriptionstatus.CallbackCodeTooLong": "Mã callback quá dài.",
2332
+ "subscriptionstatus.CallbackUrlMissingCode": "Callback URL thiếu tham số ?code=.",
2333
+ "subscriptionstatus.ChatGPTSubscription": "Credentials ChatGPT đã hết hạn hoặc không hợp lệ. Kết nối lại để tiếp tục.",
2334
+ "subscriptionstatus.ChatGPTSubscriptionTitle": "Trò chuyệnGPT Đăng ký",
2335
+ "subscriptionstatus.ClaudeSubscription": "Credentials Claude đã hết hạn hoặc không hợp lệ. Kết nối lại để tiếp tục.",
2336
+ "subscriptionstatus.ClaudeSubscriptionTitle": "Đăng ký Claude",
2337
+ "subscriptionstatus.ClaudeTosWarning": "Gói đăng ký Claude chỉ có thể dùng qua Claude Code CLI (điều khoản của Anthropic). Gói đăng ký của bạn sẽ cấp nguồn cho task agents nhưng không dùng cho runtime chính của agent. Với agent chính, hãy dùng Eliza Cloud, khóa API Anthropic trực tiếp hoặc nhà cung cấp khác.",
2338
+ "subscriptionstatus.ClaudeTosWarningShort": "Chỉ cấp nguồn cho task agents (Claude Code CLI). Với runtime chính của agent, hãy kết nối Eliza Cloud hoặc khóa API trực tiếp.",
2339
+ "subscriptionstatus.CodexAllAccess": "Gói đăng ký ChatGPT của bạn cấp nguồn cho cả runtime chính của agent và task agents.",
2340
+ "subscriptionstatus.Completing": "Đang hoàn tất...",
2341
+ "subscriptionstatus.ConnectedToChatGPTSubscription": "Đã kết nối ChatGPT Subscription",
2342
+ "subscriptionstatus.ConnectedToClaudeSubscription": "Đã kết nối Claude Subscription",
2343
+ "subscriptionstatus.CopyTheEntireU": "). Copy toàn bộ URL và dán bên dưới.",
2344
+ "subscriptionstatus.DisconnectFailedError": "Ngắt kết nối thất bại: {{message}}",
2345
+ "subscriptionstatus.ExchangeFailed": "Exchange thất bại",
2346
+ "subscriptionstatus.ExchangeFailedError": "Exchange thất bại: {{message}}",
2347
+ "subscriptionstatus.ExpectedCallbackUrl": "Cần URL localhost:1455/auth/callback.",
2348
+ "subscriptionstatus.FailedToGetAuthUrl": "Lấy auth URL thất bại",
2349
+ "subscriptionstatus.FailedToSaveSetupToken": "Lưu setup token thất bại.",
2350
+ "subscriptionstatus.FailedToSaveTokenError": "Lưu token thất bại: {{message}}",
2351
+ "subscriptionstatus.FailedToStartLogin": "Bắt đầu đăng nhập thất bại: {{message}}",
2352
+ "subscriptionstatus.InvalidCallbackUrl": "Callback URL không hợp lệ.",
2353
+ "subscriptionstatus.NoAuthUrlReturned": "Không nhận được auth URL từ đăng nhập",
2354
+ "subscriptionstatus.PasteCallbackUrlFromLocalhost": "Dán callback URL từ trang localhost:1455.",
2355
+ "subscriptionstatus.PasteTheAuthorizat": "Dán mã xác thực ở đây...",
2356
+ "subscriptionstatus.RequiresChatGPTPlu": "Cần ChatGPT Plus ($20/tháng) hoặc Pro ($200/tháng).",
2357
+ "subscriptionstatus.RequiresClaudePro": "Cần Claude Pro ($20/tháng) hoặc Max ($100/tháng).",
2358
+ "subscriptionstatus.SaveToken": "Lưu Token",
2359
+ "subscriptionstatus.SavingAmpRestart": "Đang lưu & khởi động lại...",
2360
+ "subscriptionstatus.YourChatGPTSubscri": "ChatGPT subscription đã liên kết. Ngắt kết nối để đổi tài khoản.",
2361
+ "subscriptionstatus.YourClaudeSubscrip": "Claude subscription đã liên kết. Ngắt kết nối để đổi tài khoản.",
2362
+ "subscriptionstatus.httpLocalhost145": "http://localhost:1455/auth/callback?code=...",
2363
+ "subscriptionstatus.localhost1455": "localhost:1455",
2364
+ "subscriptionstatus.skAntOat01": "sk-ant-oat01-...",
2365
+ "taskseventspanel.Activity": "Activity",
2366
+ "taskseventspanel.Events": "Sự kiện",
2367
+ "taskseventspanel.OpenView": "Mở chế độ xem tác vụ",
2368
+ "taskseventspanel.Tasks": "Nhiệm vụ",
2369
+ "taskseventspanel.Title": "Nhiệm vụ & Sự kiện",
2370
+ "taskseventspanel.Todos": "Việc cần làm",
2371
+ "tokenstable.nativeGas": "gas gốc",
2372
+ "trajectoriesview.CSVSummaryOnly": "CSV (tóm tắt)",
2373
+ "trajectoriesview.ClearAll": "Xóa tất cả",
2374
+ "trajectoriesview.ClearAllPrompt": "Xóa tất cả trajectory?",
2375
+ "trajectoriesview.Clearing": "Đang xóa...",
2376
+ "trajectoriesview.Completed": "Hoàn thành",
2377
+ "trajectoriesview.DeleteCurrent": "Xóa mục hiện tại",
2378
+ "trajectoriesview.DeleteCurrentPrompt": "Xóa trajectory này?",
2379
+ "trajectoriesview.Deleting": "Đang xóa...",
2380
+ "trajectoriesview.Entries": "Bài dự thi",
2381
+ "trajectoriesview.FailedToClear": "Không thể xóa các trajectory",
2382
+ "trajectoriesview.FailedToDelete": "Không thể xóa trajectory",
2383
+ "trajectoriesview.FailedToExport": "Xuất trajectories thất bại",
2384
+ "trajectoriesview.FailedToLoad": "Tải trajectories thất bại",
2385
+ "trajectoriesview.JSONRedacted": "JSON (đã ẩn)",
2386
+ "trajectoriesview.JSONWithPrompts": "JSON (kèm prompts)",
2387
+ "trajectoriesview.LoadingTrajectories": "Đang tải trajectories...",
2388
+ "trajectoriesview.NoTrajectoriesMatchingFilters": "Không có trajectory khớp bộ lọc.",
2389
+ "trajectoriesview.NoTrajectoriesYet": "Chưa có trajectory.",
2390
+ "trajectoriesview.NoTrajectoryDeleted": "Không có trajectory nào bị xóa.",
2391
+ "trajectoriesview.Search": "Tìm...",
2392
+ "trajectoriesview.ShowingRange": "Hiển thị {{start}}-{{end}} / {{total}}",
2393
+ "trajectoriesview.TrajectoriesCleared": "Đã xóa các trajectory.",
2394
+ "trajectoriesview.TrajectoryDeleted": "Đã xóa trajectory.",
2395
+ "trajectoriesview.ZIPFolders": "ZIP (thư mục)",
2396
+ "trajectoriesview.ZeroEntries": "0 mục",
2397
+ "trajectorydetailview.Collapse": "Thu gọn",
2398
+ "trajectorydetailview.Copy": "Sao chép",
2399
+ "trajectorydetailview.CopyToClipboard": "Sao chép vào khay",
2400
+ "trajectorydetailview.Cost": "Chi phí",
2401
+ "trajectorydetailview.DecisionType": "Loại quyết định:",
2402
+ "trajectorydetailview.Duration": "Thời lượng",
2403
+ "trajectorydetailview.Expand": "Mở rộng",
2404
+ "trajectorydetailview.InputUser": "Đầu vào (User)",
2405
+ "trajectorydetailview.LlmCalls": "{{count}} lần gọi LLM",
2406
+ "trajectorydetailview.LoadingDescription": "Đang tải chi tiết prompt, phản hồi, token và siêu dữ liệu cho lần chạy đã chọn.",
2407
+ "trajectorydetailview.LoadingTrajectory": "Đang tải trajectory...",
2408
+ "trajectorydetailview.Max": "Tối đa:",
2409
+ "trajectorydetailview.NoCapturedCalls": "Không có lời gọi nào được ghi lại",
2410
+ "trajectorydetailview.NoLLMCallsRecorde": "Không có lịch sử gọi LLM trong trajectory này.",
2411
+ "trajectorydetailview.Orchestrator": "Bộ điều phối",
2412
+ "trajectorydetailview.OutputResponse": "Đầu ra (LLM)",
2413
+ "trajectorydetailview.OverviewDescription": "Xem lại chính xác chuỗi prompt và phản hồi của lần chạy này, bao gồm chi phí, độ trễ, nguồn và mọi ngữ cảnh điều phối được ghi lại cùng lời gọi.",
2414
+ "trajectorydetailview.Pipeline": "Pipeline",
2415
+ "trajectorydetailview.Response": "phản hồi",
2416
+ "trajectorydetailview.Session1": "Phiên:",
2417
+ "trajectorydetailview.ShowingCalls": "Đang hiển thị {{count}} cuộc gọi {{stage}}",
2418
+ "trajectorydetailview.Source": "Nguồn",
2419
+ "trajectorydetailview.Status": "Trạng thái",
2420
+ "trajectorydetailview.System": "Hệ thống",
2421
+ "trajectorydetailview.SystemPrompt": "Lời nhắc hệ thống",
2422
+ "trajectorydetailview.Task": "Nhiệm vụ:",
2423
+ "trajectorydetailview.Temp": "Nhiệt độ:",
2424
+ "trajectorydetailview.Tokens": "Token",
2425
+ "trajectorydetailview.TotalTokens": "Tổng số token",
2426
+ "trajectorydetailview.Trajectory": "Quỹ đạo",
2427
+ "trajectorydetailview.TrajectoryNotFound": "Không tìm thấy trajectory.",
2428
+ "trajectorydetailview.UnableToLoad": "Không thể tải quỹ đạo",
2429
+ "trajectorydetailview.Unavailable": "Không có quỹ đạo",
2430
+ "trajectorydetailview.lines": "dòng",
2431
+ "triggersview.CronExpression5F": "Biểu thức Cron (5 trường)",
2432
+ "triggersview.CronSchedule": "Lịch Cron",
2433
+ "triggersview.Delete": "Xoá",
2434
+ "triggersview.Edit": "Sửa",
2435
+ "triggersview.InjectAmpWakeIm": "Inject & đánh thức ngay",
2436
+ "triggersview.Instructions": "Hướng dẫn",
2437
+ "triggersview.LastRun": "Lần chạy cuối",
2438
+ "triggersview.MaxRunsOptional": "Số lần chạy tối đa (tuỳ chọn)",
2439
+ "triggersview.NoRunsRecordedYet": "Chưa ghi nhận lần chạy nào.",
2440
+ "triggersview.OneTime": "Một lần",
2441
+ "triggersview.QueueForNextCycle": "Xếp hàng cho chu kỳ tiếp",
2442
+ "triggersview.RepeatingInterval": "Lặp lại theo khoảng",
2443
+ "triggersview.RunHistory": "Lịch sử chạy",
2444
+ "triggersview.RunNow": "Chạy ngay",
2445
+ "triggersview.ScheduleType": "Loại lịch",
2446
+ "triggersview.ScheduledTimeISO": "Thời gian lên lịch (ISO)",
2447
+ "triggersview.StartEnabled": "Bật khi tạo",
2448
+ "triggersview.WakeMode": "Chế độ đánh thức",
2449
+ "triggersview.WhatShouldTheAgen": "Agent nên làm gì khi trigger này kích hoạt?",
2450
+ "triggersview.eGDailyDigestH": "VD: Bản tin hàng ngày, Kiểm tra nhịp tim",
2451
+ "triggersview.minuteHourDayMont": "phút giờ ngày tháng thứ — VD: \"0 9 * * 1-5\" = ngày trong tuần lúc 9h",
2452
+ "ui-renderer.Larr": "←",
2453
+ "ui-renderer.Rarr": "→",
2454
+ "ui-renderer.UnknownComponent": "Component không xác định:",
2455
+ "vectorbrowserview.2D": "2D",
2456
+ "vectorbrowserview.3D": "3D",
2457
+ "vectorbrowserview.Content": "Nội dung",
2458
+ "vectorbrowserview.DatabaseConnectionError": "Không thể kết nối với cơ sở dữ liệu. Hãy chắc chắn rằng đại lý đang chạy.",
2459
+ "vectorbrowserview.DimensionsEmbeddings": "Vector {dimensions}D",
2460
+ "vectorbrowserview.Embedding": "Nhúng",
2461
+ "vectorbrowserview.Entity": "Thực thể",
2462
+ "vectorbrowserview.FailedToLoadTables": "Không tải được bảng: {{message}}",
2463
+ "vectorbrowserview.Graph2D": "biểu đồ 2D",
2464
+ "vectorbrowserview.Graph3D": "biểu đồ 3D",
2465
+ "vectorbrowserview.GraphLoadFailed": "Không tải được dữ liệu biểu đồ: {{message}}",
2466
+ "vectorbrowserview.ID": "ID",
2467
+ "vectorbrowserview.List": "Danh sách",
2468
+ "vectorbrowserview.ListView": "Chế độ xem danh sách",
2469
+ "vectorbrowserview.LoadFailed": "Không tải được kỷ niệm: {{message}}",
2470
+ "vectorbrowserview.Loading": "đang tải...",
2471
+ "vectorbrowserview.LoadingEmbeddings": "Đang tải embeddings...",
2472
+ "vectorbrowserview.LoadingMemories": "Đang tải bộ nhớ...",
2473
+ "vectorbrowserview.MemoryCount": "{{count}} kỷ niệm",
2474
+ "vectorbrowserview.MemoryDetail": "Chi tiết bộ nhớ",
2475
+ "vectorbrowserview.MemorySelectionHint": "Chọn bộ nhớ từ thanh bên để kiểm tra nội dung, siêu dữ liệu và giá trị nhúng của bộ nhớ đó.",
2476
+ "vectorbrowserview.Metadata": "Siêu dữ liệu",
2477
+ "vectorbrowserview.NeedAtLeast2Memo": "Cần ít nhất 2 memories có embedding. Tìm thấy",
2478
+ "vectorbrowserview.Next": "Tiếp",
2479
+ "vectorbrowserview.NoMemoryRecordsDetected": "Không tìm thấy bộ nhớ nào trong database.",
2480
+ "vectorbrowserview.NoRecordsMatchSearchQuery": "Không có bản ghi nào khớp với tìm kiếm.",
2481
+ "vectorbrowserview.NoTimestamp": "Không có dấu thời gian",
2482
+ "vectorbrowserview.NotEnoughEmbedding": "Không đủ embeddings cho chế độ đồ thị",
2483
+ "vectorbrowserview.NotEnoughEmbedding1": "Không đủ embeddings để hiển thị",
2484
+ "vectorbrowserview.Page": "Trang",
2485
+ "vectorbrowserview.Prev": "Trước",
2486
+ "vectorbrowserview.RawRecord": "Bản ghi raw",
2487
+ "vectorbrowserview.RendererUnavailable": "Chế độ xem 3D không khả dụng trong môi trường này.",
2488
+ "vectorbrowserview.RendererUnavailableDescription": "Thời gian chạy hiện tại không thể khởi chạy trình kết xuất.",
2489
+ "vectorbrowserview.RetryConnection": "Thử kết nối lại",
2490
+ "vectorbrowserview.Room": "Phòng",
2491
+ "vectorbrowserview.Search": "Tìm",
2492
+ "vectorbrowserview.SearchContent": "Tìm nội dung...",
2493
+ "vectorbrowserview.SelectPointHint": "Chọn một điểm từ trình xem để kiểm tra bản ghi đầy đủ của nó ở bên phải.",
2494
+ "vectorbrowserview.StartTheAgentToB": "Khởi động agent để duyệt vectors.",
2495
+ "vectorbrowserview.Type": "Loại",
2496
+ "vectorbrowserview.Unique": "Độc nhất",
2497
+ "vectorbrowserview.Vectors": "Vectơ",
2498
+ "vectorbrowserview.dimensions": "chiều",
2499
+ "vectorbrowserview.memories": "bộ nhớ",
2500
+ "vectorbrowserview.unique": "duy nhất",
2501
+ "vectorbrowserview.vectorsProjectedTo": "vectors chiếu 2D qua PCA — click điểm để xem chi tiết",
2502
+ "vectorbrowserview.vectorsProjectedTo1": "vectors chiếu xuống 2D",
2503
+ "vincent.connect": "Connect Vincent",
2504
+ "vincent.connectDescription": "Connect your Vincent account to enable DeFi vault management.",
2505
+ "vincent.connectPrompt": "Connect your Vincent account to get started",
2506
+ "vincent.connectPromptDetail": "Once connected, you'll see your vault health, trading strategy, P&L analytics, and transaction history here.",
2507
+ "vincent.connected": "Vincent Connected",
2508
+ "vincent.connectedSince": "Connected since",
2509
+ "vincent.connecting": "Connecting...",
2510
+ "vincent.disconnect": "Disconnect",
2511
+ "vincent.disconnected": "Vincent disconnected",
2512
+ "vincent.loginTimeout": "Đăng nhập hết thời gian. Đóng cửa sổ xác thực và thử lại.",
2513
+ "voice.gender.female": "Nữ",
2514
+ "voice.gender.male": "Nam",
2515
+ "voice.hint.alluring_game_npc": "Quyến rũ, NPC game",
2516
+ "voice.hint.british_confident": "Anh quốc, tự tin",
2517
+ "voice.hint.british_presenter": "Anh quốc, MC",
2518
+ "voice.hint.british_raspy": "Anh quốc, khàn",
2519
+ "voice.hint.calm_clear": "Bình tĩnh, rõ ràng",
2520
+ "voice.hint.childish_cute": "Trẻ con, dễ thương",
2521
+ "voice.hint.clear_natural": "Trong trẻo, tự nhiên",
2522
+ "voice.hint.custom_voice": "Giọng tùy chỉnh",
2523
+ "voice.hint.cute_animated": "Dễ thương, hoạt bát",
2524
+ "voice.hint.deep_authoritative": "Trầm, uy quyền",
2525
+ "voice.hint.deep_natural": "Trầm, tự nhiên",
2526
+ "voice.hint.deep_smooth": "Trầm, mượt mà",
2527
+ "voice.hint.gruff_game_hero": "Thô ráp, anh hùng game",
2528
+ "voice.hint.magical_whimsical": "Ma thuật, kỳ diệu",
2529
+ "voice.hint.soft_warm": "Nhẹ nhàng, ấm áp",
2530
+ "voice.hint.sweet_storybook": "Ngọt ngào, cổ tích",
2531
+ "voice.hint.warm_friendly": "Ấm áp, thân thiện",
2532
+ "voice.hint.young_deep": "Trẻ, trầm",
2533
+ "voice.hint.young_natural": "Trẻ, tự nhiên",
2534
+ "voice.provider.edge": "Microsoft Edge",
2535
+ "voice.provider.edge.hint": "Miễn phí, giọng Microsoft",
2536
+ "voice.provider.elevenlabs": "ElevenLabs",
2537
+ "voice.provider.elevenlabs.hint": "Giọng nói chất lượng cao, chân thực",
2538
+ "voiceconfigview.APISource": "Nguồn API",
2539
+ "voiceconfigview.ActionFailed": "Thao tác talk mode thất bại.",
2540
+ "voiceconfigview.AddTrigger": "Thêm trigger…",
2541
+ "voiceconfigview.Available": "Có sẵn",
2542
+ "voiceconfigview.DesktopTalkMode": "Talk mode trên desktop",
2543
+ "voiceconfigview.DesktopTalkModeDesktopOnly": "Các điều khiển talk mode trên desktop chỉ khả dụng trong runtime Electrobun.",
2544
+ "voiceconfigview.DisableWakeWord": "Vô hiệu hóa từ đánh thức",
2545
+ "voiceconfigview.Disabled": "Đã tắt",
2546
+ "voiceconfigview.EdgeTTSUsesMicros": "Edge TTS dùng giọng Microsoft tích hợp sẵn.",
2547
+ "voiceconfigview.ElevenLabsAPIKey": "Khóa API ElevenLabs",
2548
+ "voiceconfigview.EnableWakeWord": "Bật từ đánh thức",
2549
+ "voiceconfigview.Enabled": "Đã bật",
2550
+ "voiceconfigview.FailedToSave": "Không lưu được",
2551
+ "voiceconfigview.FastPathDefaultE": "Model ElevenLabs fast-path mặc định: ",
2552
+ "voiceconfigview.GetYourKeyAt": "Lấy key tại",
2553
+ "voiceconfigview.LoadingVoiceConfig": "Đang tải cấu hình giọng nói...",
2554
+ "voiceconfigview.LowerMoreSensiti": "Thấp hơn = nhạy hơn (khoảng ngắn hơn sau từ khoá)",
2555
+ "voiceconfigview.Microphone": "Micrô",
2556
+ "voiceconfigview.ModelSize": "Kích thước model",
2557
+ "voiceconfigview.No": "Không",
2558
+ "voiceconfigview.NoApiKeyNeeded": "Không cần API key",
2559
+ "voiceconfigview.Playing": "Đang phát...",
2560
+ "voiceconfigview.PressEnterOrComma": "Enter hoặc dấu phẩy để thêm. Cần ít nhất 1 trigger.",
2561
+ "voiceconfigview.RemoveTrigger": "Xóa trình kích hoạt \"{{trigger}}\"",
2562
+ "voiceconfigview.RequiresApiKey": "Cần API key",
2563
+ "voiceconfigview.ServedViaElizaCloud": "phục vụ qua Eliza Cloud",
2564
+ "voiceconfigview.SimpleVoiceUsesYo": "Simple Voice dùng giọng mặc định hệ thống, không cần API key.",
2565
+ "voiceconfigview.SpeakTestPhrase": "Đọc câu thử nghiệm",
2566
+ "voiceconfigview.Speaking": "Đang nói",
2567
+ "voiceconfigview.SpeechRequested": "Đã yêu cầu phát giọng nói.",
2568
+ "voiceconfigview.StartTalkMode": "Bắt đầu talk mode",
2569
+ "voiceconfigview.State": "Trạng thái",
2570
+ "voiceconfigview.StopSpeaking": "Dừng nói",
2571
+ "voiceconfigview.StopTalkMode": "Dừng talk mode",
2572
+ "voiceconfigview.StoppedCurrentSpeechOutput": "Đã dừng đầu ra giọng nói hiện tại.",
2573
+ "voiceconfigview.TTSProvider": "Nhà cung cấp TTS",
2574
+ "voiceconfigview.TalkModeDescription": "Điều khiển vòng lặp giọng nói gốc, đầu ra giọng nói và chẩn đoán whisper.",
2575
+ "voiceconfigview.TalkModeStarted": "Đã bắt đầu talk mode.",
2576
+ "voiceconfigview.TalkModeStateRefreshed": "Đã làm mới trạng thái talk mode.",
2577
+ "voiceconfigview.TalkModeStatusUnavailable": "Trạng thái chế độ trò chuyện không khả dụng.",
2578
+ "voiceconfigview.TalkModeStopped": "Đã dừng talk mode.",
2579
+ "voiceconfigview.TalkModeUnavailable": "Talk mode không khả dụng.",
2580
+ "voiceconfigview.TestVoice": "Kiểm tra {{name}}",
2581
+ "voiceconfigview.Triggers": "Trình kích hoạt",
2582
+ "voiceconfigview.Unavailable": "Không khả dụng",
2583
+ "voiceconfigview.WakeSensitivity": "Độ nhạy đánh thức",
2584
+ "voiceconfigview.WakeWord": "Từ khoá đánh thức",
2585
+ "voiceconfigview.Whisper": "Thì thầm",
2586
+ "voiceconfigview.Yes": "Có",
2587
+ "voiceconfigview.elevenlabsIo": "Elevenlabs.io",
2588
+ "voiceconfigview.hintAccurate": "(chính xác)",
2589
+ "voiceconfigview.hintFaster": "(nhanh hơn)",
2590
+ "voiceconfigview.hintRecommended": "(khuyên dùng)",
2591
+ "voiceconfigview.testPhrase": "Xin chào từ chế độ thoại {{appName}} desktop.",
2592
+ "wallet.addressCopied": "Đã copy địa chỉ.",
2593
+ "wallet.advancedSetup": "Cài đặt ví nâng cao",
2594
+ "wallet.all": "Tất cả",
2595
+ "wallet.chain": "Chuỗi",
2596
+ "wallet.copyEvmAddress": "Copy địa chỉ EVM",
2597
+ "wallet.copySolanaAddress": "Copy địa chỉ Solana",
2598
+ "wallet.emptyTokensCta": "Dùng nút sao chép phía trên để nạp cho agent.",
2599
+ "wallet.enableIt": "Bật lên",
2600
+ "wallet.loadingBalances": "Đang tải số dư...",
2601
+ "wallet.loadingNfts": "Đang tải NFTs...",
2602
+ "wallet.manual": "Thủ công",
2603
+ "wallet.name": "Tên",
2604
+ "wallet.nfts": "NFT",
2605
+ "wallet.noDataRefresh": "Chưa có token!",
2606
+ "wallet.noImage": "Không có ảnh",
2607
+ "wallet.noNftData": "Không có dữ liệu NFT.",
2608
+ "wallet.noNftsFound": "Không tìm thấy NFT.",
2609
+ "wallet.noOnchainWallet": "Chưa có ví onchain. Đăng nhập Privy trước.",
2610
+ "wallet.noOnchainWalletHint": "Sau khi đăng nhập, ví managed tự xuất hiện.",
2611
+ "wallet.noTokensFound": "Chưa có token. Gửi token cho agent nhé!",
2612
+ "wallet.receiveHint": "Sao chép địa chỉ để nạp tiền vào ví này.",
2613
+ "wallet.remove": "Xoá",
2614
+ "wallet.removeManualTitle": "Xoá token thủ công",
2615
+ "wallet.searchWallets": "Tìm kiếm ví",
2616
+ "wallet.setup.configureRpc": "Cấu hình RPC",
2617
+ "wallet.setup.description": "Kết nối qua Eliza Cloud, Vincent hoặc cấu hình khóa ví trực tiếp để bắt đầu giao dịch.",
2618
+ "wallet.setup.importFromCloud": "Nhập từ Eliza Cloud",
2619
+ "wallet.setup.rpcNotConfigured": "Chưa cấu hình BSC RPC.",
2620
+ "wallet.setup.title": "Kết nối ví của bạn",
2621
+ "wallet.setupFromHere": "Kết nối nhà cung cấp ví để bắt đầu với các tính năng on-chain.",
2622
+ "wallet.sort": "Sắp xếp",
2623
+ "wallet.sortAscending": "Sắp xếp tăng dần",
2624
+ "wallet.sortDescending": "Sắp xếp giảm dần",
2625
+ "wallet.table.balance": "Số dư",
2626
+ "wallet.table.token": "Mã thông báo",
2627
+ "wallet.tokenRemovedManual": "Đã xoá token khỏi watchlist.",
2628
+ "wallet.tokens": "Mã thông báo",
2629
+ "wallet.value": "Giá trị",
2630
+ "whatsappqroverlay.ConnectWhatsApp": "Kết nối WhatsApp",
2631
+ "whatsappqroverlay.GeneratingQR": "Đang tạo QR...",
2632
+ "whatsappqroverlay.LinkADevice": "Liên kết thiết bị",
2633
+ "whatsappqroverlay.LinkedDevices": "Thiết bị đã liên kết",
2634
+ "whatsappqroverlay.Menu": "Menu",
2635
+ "whatsappqroverlay.OpenWhatsAppOnYou": "Mở WhatsApp trên điện thoại",
2636
+ "whatsappqroverlay.PointYourPhoneAt": "Hướng điện thoại vào mã QR này",
2637
+ "whatsappqroverlay.QRRefreshesAutomat": "QR tự làm mới (~15 giây)",
2638
+ "whatsappqroverlay.ScanAQRCodeWith": "Quét mã QR bằng điện thoại để liên kết WhatsApp.",
2639
+ "whatsappqroverlay.ScanWithWhatsApp": "Quét bằng WhatsApp",
2640
+ "whatsappqroverlay.Tap": "Chạm",
2641
+ "whatsappqroverlay.TryAgain": "Thử lại",
2642
+ "whatsappqroverlay.UsesAnUnofficialW": "Dùng API WhatsApp không chính thức. Hãy dùng số riêng.",
2643
+ "whatsappqroverlay.andSelect": "và chọn"
2644
+ }