@elizaos/ui 2.0.0-alpha.25 → 2.0.0-alpha.334

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 (1747) hide show
  1. package/package.json +78 -51
  2. package/packages/typescript/src/action-docs.d.ts +22 -0
  3. package/packages/typescript/src/action-docs.d.ts.map +1 -0
  4. package/packages/typescript/src/action-docs.js +95 -0
  5. package/packages/typescript/src/actions.d.ts +29 -0
  6. package/packages/typescript/src/actions.d.ts.map +1 -0
  7. package/packages/typescript/src/actions.js +531 -0
  8. package/packages/typescript/src/character-utils.d.ts +138 -0
  9. package/packages/typescript/src/character-utils.d.ts.map +1 -0
  10. package/packages/typescript/src/character-utils.js +271 -0
  11. package/packages/typescript/src/character.d.ts +68 -0
  12. package/packages/typescript/src/character.d.ts.map +1 -0
  13. package/packages/typescript/src/character.js +155 -0
  14. package/packages/typescript/src/connection.d.ts +45 -0
  15. package/packages/typescript/src/connection.d.ts.map +1 -0
  16. package/packages/typescript/src/connection.js +149 -0
  17. package/packages/typescript/src/constants/index.d.ts +7 -0
  18. package/packages/typescript/src/constants/index.d.ts.map +1 -0
  19. package/packages/typescript/src/constants/index.js +6 -0
  20. package/packages/typescript/src/constants/secrets.d.ts +99 -0
  21. package/packages/typescript/src/constants/secrets.d.ts.map +1 -0
  22. package/packages/typescript/src/constants/secrets.js +239 -0
  23. package/packages/typescript/src/database/inMemoryAdapter.d.ts +285 -0
  24. package/packages/typescript/src/database/inMemoryAdapter.d.ts.map +1 -0
  25. package/packages/typescript/src/database/inMemoryAdapter.js +1171 -0
  26. package/packages/typescript/src/database.d.ts +426 -0
  27. package/packages/typescript/src/database.d.ts.map +1 -0
  28. package/packages/typescript/src/database.js +24 -0
  29. package/packages/typescript/src/entities.d.ts +11 -0
  30. package/packages/typescript/src/entities.d.ts.map +1 -0
  31. package/packages/typescript/src/entities.js +437 -0
  32. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts +3 -0
  33. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.d.ts.map +1 -0
  34. package/packages/typescript/src/features/advanced-capabilities/actions/addContact.js +142 -0
  35. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts +3 -0
  36. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.d.ts.map +1 -0
  37. package/packages/typescript/src/features/advanced-capabilities/actions/followRoom.js +183 -0
  38. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts +3 -0
  39. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.d.ts.map +1 -0
  40. package/packages/typescript/src/features/advanced-capabilities/actions/imageGeneration.js +148 -0
  41. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts +21 -0
  42. package/packages/typescript/src/features/advanced-capabilities/actions/index.d.ts.map +1 -0
  43. package/packages/typescript/src/features/advanced-capabilities/actions/index.js +20 -0
  44. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts +3 -0
  45. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.d.ts.map +1 -0
  46. package/packages/typescript/src/features/advanced-capabilities/actions/muteRoom.js +181 -0
  47. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts +3 -0
  48. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.d.ts.map +1 -0
  49. package/packages/typescript/src/features/advanced-capabilities/actions/removeContact.js +102 -0
  50. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts +13 -0
  51. package/packages/typescript/src/features/advanced-capabilities/actions/roles.d.ts.map +1 -0
  52. package/packages/typescript/src/features/advanced-capabilities/actions/roles.js +317 -0
  53. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts +3 -0
  54. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.d.ts.map +1 -0
  55. package/packages/typescript/src/features/advanced-capabilities/actions/scheduleFollowUp.js +136 -0
  56. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts +3 -0
  57. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.d.ts.map +1 -0
  58. package/packages/typescript/src/features/advanced-capabilities/actions/searchContacts.js +176 -0
  59. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts +15 -0
  60. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.d.ts.map +1 -0
  61. package/packages/typescript/src/features/advanced-capabilities/actions/sendMessage.js +476 -0
  62. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts +22 -0
  63. package/packages/typescript/src/features/advanced-capabilities/actions/settings.d.ts.map +1 -0
  64. package/packages/typescript/src/features/advanced-capabilities/actions/settings.js +823 -0
  65. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts +3 -0
  66. package/packages/typescript/src/features/advanced-capabilities/actions/think.d.ts.map +1 -0
  67. package/packages/typescript/src/features/advanced-capabilities/actions/think.js +84 -0
  68. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts +3 -0
  69. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.d.ts.map +1 -0
  70. package/packages/typescript/src/features/advanced-capabilities/actions/unfollowRoom.js +134 -0
  71. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts +3 -0
  72. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.d.ts.map +1 -0
  73. package/packages/typescript/src/features/advanced-capabilities/actions/unmuteRoom.js +193 -0
  74. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts +3 -0
  75. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.d.ts.map +1 -0
  76. package/packages/typescript/src/features/advanced-capabilities/actions/updateContact.js +199 -0
  77. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts +43 -0
  78. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.d.ts.map +1 -0
  79. package/packages/typescript/src/features/advanced-capabilities/actions/updateEntity.js +372 -0
  80. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts +4 -0
  81. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.d.ts.map +1 -0
  82. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/append.js +150 -0
  83. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts +4 -0
  84. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.d.ts.map +1 -0
  85. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/delete.js +136 -0
  86. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts +4 -0
  87. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.d.ts.map +1 -0
  88. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/list.js +84 -0
  89. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts +4 -0
  90. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.d.ts.map +1 -0
  91. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-attachment.js +112 -0
  92. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts +16 -0
  93. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.d.ts.map +1 -0
  94. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read-file.js +192 -0
  95. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts +4 -0
  96. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.d.ts.map +1 -0
  97. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/read.js +138 -0
  98. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts +4 -0
  99. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.d.ts.map +1 -0
  100. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/remove-from-clipboard.js +96 -0
  101. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts +4 -0
  102. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.d.ts.map +1 -0
  103. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/search.js +139 -0
  104. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts +4 -0
  105. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.d.ts.map +1 -0
  106. package/packages/typescript/src/features/advanced-capabilities/clipboard/actions/write.js +138 -0
  107. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts +39 -0
  108. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.d.ts.map +1 -0
  109. package/packages/typescript/src/features/advanced-capabilities/clipboard/index.js +78 -0
  110. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts +4 -0
  111. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.d.ts.map +1 -0
  112. package/packages/typescript/src/features/advanced-capabilities/clipboard/providers/clipboard.js +62 -0
  113. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts +16 -0
  114. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.d.ts.map +1 -0
  115. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/attachmentContext.js +162 -0
  116. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts +65 -0
  117. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.d.ts.map +1 -0
  118. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/clipboardService.js +352 -0
  119. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts +24 -0
  120. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.d.ts.map +1 -0
  121. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardPersistence.js +63 -0
  122. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts +29 -0
  123. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.d.ts.map +1 -0
  124. package/packages/typescript/src/features/advanced-capabilities/clipboard/services/taskClipboardService.js +195 -0
  125. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts +15 -0
  126. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.d.ts.map +1 -0
  127. package/packages/typescript/src/features/advanced-capabilities/clipboard/specs.js +164 -0
  128. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts +92 -0
  129. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.d.ts.map +1 -0
  130. package/packages/typescript/src/features/advanced-capabilities/clipboard/types.js +4 -0
  131. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.d.ts +20 -0
  132. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.d.ts.map +1 -0
  133. package/packages/typescript/src/features/advanced-capabilities/evaluators/factRefinement.js +362 -0
  134. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts +11 -0
  135. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.d.ts.map +1 -0
  136. package/packages/typescript/src/features/advanced-capabilities/evaluators/index.js +10 -0
  137. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts +3 -0
  138. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.d.ts.map +1 -0
  139. package/packages/typescript/src/features/advanced-capabilities/evaluators/reflection.js +710 -0
  140. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts +3 -0
  141. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.d.ts.map +1 -0
  142. package/packages/typescript/src/features/advanced-capabilities/evaluators/relationshipExtraction.js +641 -0
  143. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts +25 -0
  144. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.d.ts.map +1 -0
  145. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillExtraction.js +362 -0
  146. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts +21 -0
  147. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.d.ts.map +1 -0
  148. package/packages/typescript/src/features/advanced-capabilities/evaluators/skillRefinement.js +541 -0
  149. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts +12 -0
  150. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.d.ts.map +1 -0
  151. package/packages/typescript/src/features/advanced-capabilities/evaluators/task-completion.js +14 -0
  152. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts +3 -0
  153. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.d.ts.map +1 -0
  154. package/packages/typescript/src/features/advanced-capabilities/experience/actions/record-experience.js +71 -0
  155. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts +3 -0
  156. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.d.ts.map +1 -0
  157. package/packages/typescript/src/features/advanced-capabilities/experience/evaluators/experienceEvaluator.js +256 -0
  158. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts +12 -0
  159. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.d.ts.map +1 -0
  160. package/packages/typescript/src/features/advanced-capabilities/experience/generated/prompts/typescript/prompts.js +41 -0
  161. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts +49 -0
  162. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.d.ts.map +1 -0
  163. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/spec-helpers.js +78 -0
  164. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts +159 -0
  165. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.d.ts.map +1 -0
  166. package/packages/typescript/src/features/advanced-capabilities/experience/generated/specs/specs.js +192 -0
  167. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts +9 -0
  168. package/packages/typescript/src/features/advanced-capabilities/experience/index.d.ts.map +1 -0
  169. package/packages/typescript/src/features/advanced-capabilities/experience/index.js +7 -0
  170. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts +3 -0
  171. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.d.ts.map +1 -0
  172. package/packages/typescript/src/features/advanced-capabilities/experience/providers/experienceProvider.js +51 -0
  173. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts +68 -0
  174. package/packages/typescript/src/features/advanced-capabilities/experience/service.d.ts.map +1 -0
  175. package/packages/typescript/src/features/advanced-capabilities/experience/service.js +755 -0
  176. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts +90 -0
  177. package/packages/typescript/src/features/advanced-capabilities/experience/types.d.ts.map +1 -0
  178. package/packages/typescript/src/features/advanced-capabilities/experience/types.js +22 -0
  179. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts +34 -0
  180. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.d.ts.map +1 -0
  181. package/packages/typescript/src/features/advanced-capabilities/experience/utils/confidenceDecay.js +106 -0
  182. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts +26 -0
  183. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.d.ts.map +1 -0
  184. package/packages/typescript/src/features/advanced-capabilities/experience/utils/experienceRelationships.js +129 -0
  185. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts +13 -0
  186. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.d.ts.map +1 -0
  187. package/packages/typescript/src/features/advanced-capabilities/form/actions/restore.js +152 -0
  188. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts +101 -0
  189. package/packages/typescript/src/features/advanced-capabilities/form/builder.d.ts.map +1 -0
  190. package/packages/typescript/src/features/advanced-capabilities/form/builder.js +362 -0
  191. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts +16 -0
  192. package/packages/typescript/src/features/advanced-capabilities/form/builtins.d.ts.map +1 -0
  193. package/packages/typescript/src/features/advanced-capabilities/form/builtins.js +245 -0
  194. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts +32 -0
  195. package/packages/typescript/src/features/advanced-capabilities/form/defaults.d.ts.map +1 -0
  196. package/packages/typescript/src/features/advanced-capabilities/form/defaults.js +98 -0
  197. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts +12 -0
  198. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.d.ts.map +1 -0
  199. package/packages/typescript/src/features/advanced-capabilities/form/evaluators/extractor.js +231 -0
  200. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts +24 -0
  201. package/packages/typescript/src/features/advanced-capabilities/form/extraction.d.ts.map +1 -0
  202. package/packages/typescript/src/features/advanced-capabilities/form/extraction.js +319 -0
  203. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts +22 -0
  204. package/packages/typescript/src/features/advanced-capabilities/form/index.d.ts.map +1 -0
  205. package/packages/typescript/src/features/advanced-capabilities/form/index.js +52 -0
  206. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts +41 -0
  207. package/packages/typescript/src/features/advanced-capabilities/form/intent.d.ts.map +1 -0
  208. package/packages/typescript/src/features/advanced-capabilities/form/intent.js +119 -0
  209. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts +11 -0
  210. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.d.ts.map +1 -0
  211. package/packages/typescript/src/features/advanced-capabilities/form/providers/context.js +166 -0
  212. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts +66 -0
  213. package/packages/typescript/src/features/advanced-capabilities/form/service.d.ts.map +1 -0
  214. package/packages/typescript/src/features/advanced-capabilities/form/service.js +912 -0
  215. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts +26 -0
  216. package/packages/typescript/src/features/advanced-capabilities/form/storage.d.ts.map +1 -0
  217. package/packages/typescript/src/features/advanced-capabilities/form/storage.js +228 -0
  218. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts +10 -0
  219. package/packages/typescript/src/features/advanced-capabilities/form/template.d.ts.map +1 -0
  220. package/packages/typescript/src/features/advanced-capabilities/form/template.js +56 -0
  221. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts +40 -0
  222. package/packages/typescript/src/features/advanced-capabilities/form/ttl.d.ts.map +1 -0
  223. package/packages/typescript/src/features/advanced-capabilities/form/ttl.js +107 -0
  224. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts +589 -0
  225. package/packages/typescript/src/features/advanced-capabilities/form/types.d.ts.map +1 -0
  226. package/packages/typescript/src/features/advanced-capabilities/form/types.js +71 -0
  227. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts +24 -0
  228. package/packages/typescript/src/features/advanced-capabilities/form/validation.d.ts.map +1 -0
  229. package/packages/typescript/src/features/advanced-capabilities/form/validation.js +311 -0
  230. package/packages/typescript/src/features/advanced-capabilities/index.d.ts +47 -0
  231. package/packages/typescript/src/features/advanced-capabilities/index.d.ts.map +1 -0
  232. package/packages/typescript/src/features/advanced-capabilities/index.js +114 -0
  233. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts +7 -0
  234. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.d.ts.map +1 -0
  235. package/packages/typescript/src/features/advanced-capabilities/personality/actions/modify-character.js +1299 -0
  236. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts +53 -0
  237. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.d.ts.map +1 -0
  238. package/packages/typescript/src/features/advanced-capabilities/personality/evaluators/character-evolution.js +429 -0
  239. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts +10 -0
  240. package/packages/typescript/src/features/advanced-capabilities/personality/index.d.ts.map +1 -0
  241. package/packages/typescript/src/features/advanced-capabilities/personality/index.js +8 -0
  242. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts +8 -0
  243. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.d.ts.map +1 -0
  244. package/packages/typescript/src/features/advanced-capabilities/personality/providers/user-personality.js +57 -0
  245. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts +71 -0
  246. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.d.ts.map +1 -0
  247. package/packages/typescript/src/features/advanced-capabilities/personality/services/character-file-manager.js +478 -0
  248. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts +13 -0
  249. package/packages/typescript/src/features/advanced-capabilities/personality/types.d.ts.map +1 -0
  250. package/packages/typescript/src/features/advanced-capabilities/personality/types.js +8 -0
  251. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts +3 -0
  252. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.d.ts.map +1 -0
  253. package/packages/typescript/src/features/advanced-capabilities/providers/contacts.js +77 -0
  254. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts +11 -0
  255. package/packages/typescript/src/features/advanced-capabilities/providers/facts.d.ts.map +1 -0
  256. package/packages/typescript/src/features/advanced-capabilities/providers/facts.js +162 -0
  257. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts +3 -0
  258. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.d.ts.map +1 -0
  259. package/packages/typescript/src/features/advanced-capabilities/providers/followUps.js +112 -0
  260. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts +13 -0
  261. package/packages/typescript/src/features/advanced-capabilities/providers/index.d.ts.map +1 -0
  262. package/packages/typescript/src/features/advanced-capabilities/providers/index.js +12 -0
  263. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts +9 -0
  264. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.d.ts.map +1 -0
  265. package/packages/typescript/src/features/advanced-capabilities/providers/knowledge.js +83 -0
  266. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts +15 -0
  267. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.d.ts.map +1 -0
  268. package/packages/typescript/src/features/advanced-capabilities/providers/relationships.js +125 -0
  269. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts +19 -0
  270. package/packages/typescript/src/features/advanced-capabilities/providers/roles.d.ts.map +1 -0
  271. package/packages/typescript/src/features/advanced-capabilities/providers/roles.js +180 -0
  272. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts +7 -0
  273. package/packages/typescript/src/features/advanced-capabilities/providers/settings.d.ts.map +1 -0
  274. package/packages/typescript/src/features/advanced-capabilities/providers/settings.js +294 -0
  275. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts +3 -0
  276. package/packages/typescript/src/features/advanced-memory/evaluators/index.d.ts.map +1 -0
  277. package/packages/typescript/src/features/advanced-memory/evaluators/index.js +2 -0
  278. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts +3 -0
  279. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.d.ts.map +1 -0
  280. package/packages/typescript/src/features/advanced-memory/evaluators/long-term-extraction.js +199 -0
  281. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts +3 -0
  282. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.d.ts.map +1 -0
  283. package/packages/typescript/src/features/advanced-memory/evaluators/summarization.js +240 -0
  284. package/packages/typescript/src/features/advanced-memory/index.d.ts +16 -0
  285. package/packages/typescript/src/features/advanced-memory/index.d.ts.map +1 -0
  286. package/packages/typescript/src/features/advanced-memory/index.js +26 -0
  287. package/packages/typescript/src/features/advanced-memory/prompts.d.ts +2 -0
  288. package/packages/typescript/src/features/advanced-memory/prompts.d.ts.map +1 -0
  289. package/packages/typescript/src/features/advanced-memory/prompts.js +1 -0
  290. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts +3 -0
  291. package/packages/typescript/src/features/advanced-memory/providers/context-summary.d.ts.map +1 -0
  292. package/packages/typescript/src/features/advanced-memory/providers/context-summary.js +85 -0
  293. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts +3 -0
  294. package/packages/typescript/src/features/advanced-memory/providers/index.d.ts.map +1 -0
  295. package/packages/typescript/src/features/advanced-memory/providers/index.js +2 -0
  296. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts +3 -0
  297. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.d.ts.map +1 -0
  298. package/packages/typescript/src/features/advanced-memory/providers/long-term-memory.js +92 -0
  299. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts +5 -0
  300. package/packages/typescript/src/features/advanced-memory/schemas/index.d.ts.map +1 -0
  301. package/packages/typescript/src/features/advanced-memory/schemas/index.js +3 -0
  302. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts +10 -0
  303. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.d.ts.map +1 -0
  304. package/packages/typescript/src/features/advanced-memory/schemas/long-term-memories.js +65 -0
  305. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts +10 -0
  306. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.d.ts.map +1 -0
  307. package/packages/typescript/src/features/advanced-memory/schemas/memory-access-logs.js +45 -0
  308. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts +10 -0
  309. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.d.ts.map +1 -0
  310. package/packages/typescript/src/features/advanced-memory/schemas/session-summaries.js +66 -0
  311. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts +38 -0
  312. package/packages/typescript/src/features/advanced-memory/services/memory-service.d.ts.map +1 -0
  313. package/packages/typescript/src/features/advanced-memory/services/memory-service.js +367 -0
  314. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts +10 -0
  315. package/packages/typescript/src/features/advanced-memory/trajectory.d.ts.map +1 -0
  316. package/packages/typescript/src/features/advanced-memory/trajectory.js +33 -0
  317. package/packages/typescript/src/features/advanced-memory/types.d.ts +68 -0
  318. package/packages/typescript/src/features/advanced-memory/types.d.ts.map +1 -0
  319. package/packages/typescript/src/features/advanced-memory/types.js +6 -0
  320. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts +6 -0
  321. package/packages/typescript/src/features/advanced-planning/actions/chain-example.d.ts.map +1 -0
  322. package/packages/typescript/src/features/advanced-planning/actions/chain-example.js +181 -0
  323. package/packages/typescript/src/features/advanced-planning/index.d.ts +5 -0
  324. package/packages/typescript/src/features/advanced-planning/index.d.ts.map +1 -0
  325. package/packages/typescript/src/features/advanced-planning/index.js +20 -0
  326. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts +3 -0
  327. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.d.ts.map +1 -0
  328. package/packages/typescript/src/features/advanced-planning/providers/message-classifier.js +105 -0
  329. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts +77 -0
  330. package/packages/typescript/src/features/advanced-planning/services/planning-service.d.ts.map +1 -0
  331. package/packages/typescript/src/features/advanced-planning/services/planning-service.js +875 -0
  332. package/packages/typescript/src/features/advanced-planning/types.d.ts +78 -0
  333. package/packages/typescript/src/features/advanced-planning/types.d.ts.map +1 -0
  334. package/packages/typescript/src/features/advanced-planning/types.js +1 -0
  335. package/packages/typescript/src/features/autonomy/action.d.ts +14 -0
  336. package/packages/typescript/src/features/autonomy/action.d.ts.map +1 -0
  337. package/packages/typescript/src/features/autonomy/action.js +177 -0
  338. package/packages/typescript/src/features/autonomy/execution-facade.d.ts +22 -0
  339. package/packages/typescript/src/features/autonomy/execution-facade.d.ts.map +1 -0
  340. package/packages/typescript/src/features/autonomy/execution-facade.js +150 -0
  341. package/packages/typescript/src/features/autonomy/index.d.ts +11 -0
  342. package/packages/typescript/src/features/autonomy/index.d.ts.map +1 -0
  343. package/packages/typescript/src/features/autonomy/index.js +13 -0
  344. package/packages/typescript/src/features/autonomy/providers.d.ts +21 -0
  345. package/packages/typescript/src/features/autonomy/providers.d.ts.map +1 -0
  346. package/packages/typescript/src/features/autonomy/providers.js +154 -0
  347. package/packages/typescript/src/features/autonomy/routes.d.ts +11 -0
  348. package/packages/typescript/src/features/autonomy/routes.d.ts.map +1 -0
  349. package/packages/typescript/src/features/autonomy/routes.js +158 -0
  350. package/packages/typescript/src/features/autonomy/service.d.ts +138 -0
  351. package/packages/typescript/src/features/autonomy/service.d.ts.map +1 -0
  352. package/packages/typescript/src/features/autonomy/service.js +813 -0
  353. package/packages/typescript/src/features/autonomy/types.d.ts +31 -0
  354. package/packages/typescript/src/features/autonomy/types.d.ts.map +1 -0
  355. package/packages/typescript/src/features/autonomy/types.js +6 -0
  356. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts +4 -0
  357. package/packages/typescript/src/features/basic-capabilities/actions/choice.d.ts.map +1 -0
  358. package/packages/typescript/src/features/basic-capabilities/actions/choice.js +278 -0
  359. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts +3 -0
  360. package/packages/typescript/src/features/basic-capabilities/actions/ignore.d.ts.map +1 -0
  361. package/packages/typescript/src/features/basic-capabilities/actions/ignore.js +23 -0
  362. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts +10 -0
  363. package/packages/typescript/src/features/basic-capabilities/actions/index.d.ts.map +1 -0
  364. package/packages/typescript/src/features/basic-capabilities/actions/index.js +9 -0
  365. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts +3 -0
  366. package/packages/typescript/src/features/basic-capabilities/actions/none.d.ts.map +1 -0
  367. package/packages/typescript/src/features/basic-capabilities/actions/none.js +26 -0
  368. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts +3 -0
  369. package/packages/typescript/src/features/basic-capabilities/actions/reply.d.ts.map +1 -0
  370. package/packages/typescript/src/features/basic-capabilities/actions/reply.js +80 -0
  371. package/packages/typescript/src/features/basic-capabilities/index.d.ts +108 -0
  372. package/packages/typescript/src/features/basic-capabilities/index.d.ts.map +1 -0
  373. package/packages/typescript/src/features/basic-capabilities/index.js +1027 -0
  374. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts +7 -0
  375. package/packages/typescript/src/features/basic-capabilities/providers/actionState.d.ts.map +1 -0
  376. package/packages/typescript/src/features/basic-capabilities/providers/actionState.js +232 -0
  377. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts +35 -0
  378. package/packages/typescript/src/features/basic-capabilities/providers/actions.d.ts.map +1 -0
  379. package/packages/typescript/src/features/basic-capabilities/providers/actions.js +104 -0
  380. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts +20 -0
  381. package/packages/typescript/src/features/basic-capabilities/providers/attachments.d.ts.map +1 -0
  382. package/packages/typescript/src/features/basic-capabilities/providers/attachments.js +94 -0
  383. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts +17 -0
  384. package/packages/typescript/src/features/basic-capabilities/providers/character.d.ts.map +1 -0
  385. package/packages/typescript/src/features/basic-capabilities/providers/character.js +190 -0
  386. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts +11 -0
  387. package/packages/typescript/src/features/basic-capabilities/providers/choice.d.ts.map +1 -0
  388. package/packages/typescript/src/features/basic-capabilities/providers/choice.js +86 -0
  389. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts +12 -0
  390. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.d.ts.map +1 -0
  391. package/packages/typescript/src/features/basic-capabilities/providers/contextBench.js +50 -0
  392. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts +11 -0
  393. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.d.ts.map +1 -0
  394. package/packages/typescript/src/features/basic-capabilities/providers/currentTime.js +56 -0
  395. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts +7 -0
  396. package/packages/typescript/src/features/basic-capabilities/providers/entities.d.ts.map +1 -0
  397. package/packages/typescript/src/features/basic-capabilities/providers/entities.js +39 -0
  398. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts +27 -0
  399. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.d.ts.map +1 -0
  400. package/packages/typescript/src/features/basic-capabilities/providers/evaluators.js +107 -0
  401. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts +20 -0
  402. package/packages/typescript/src/features/basic-capabilities/providers/index.d.ts.map +1 -0
  403. package/packages/typescript/src/features/basic-capabilities/providers/index.js +19 -0
  404. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts +5 -0
  405. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.d.ts.map +1 -0
  406. package/packages/typescript/src/features/basic-capabilities/providers/non-actionable-chatter.js +22 -0
  407. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts +18 -0
  408. package/packages/typescript/src/features/basic-capabilities/providers/providers.d.ts.map +1 -0
  409. package/packages/typescript/src/features/basic-capabilities/providers/providers.js +75 -0
  410. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts +14 -0
  411. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.d.ts.map +1 -0
  412. package/packages/typescript/src/features/basic-capabilities/providers/recentMessages.js +323 -0
  413. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts +12 -0
  414. package/packages/typescript/src/features/basic-capabilities/providers/time.d.ts.map +1 -0
  415. package/packages/typescript/src/features/basic-capabilities/providers/time.js +36 -0
  416. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.d.ts +3 -0
  417. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.d.ts.map +1 -0
  418. package/packages/typescript/src/features/basic-capabilities/providers/uiContext.js +48 -0
  419. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts +8 -0
  420. package/packages/typescript/src/features/basic-capabilities/providers/world.d.ts.map +1 -0
  421. package/packages/typescript/src/features/basic-capabilities/providers/world.js +212 -0
  422. package/packages/typescript/src/features/evaluator-doc-examples.d.ts +4 -0
  423. package/packages/typescript/src/features/evaluator-doc-examples.d.ts.map +1 -0
  424. package/packages/typescript/src/features/evaluator-doc-examples.js +13 -0
  425. package/packages/typescript/src/features/index.d.ts +58 -0
  426. package/packages/typescript/src/features/index.d.ts.map +1 -0
  427. package/packages/typescript/src/features/index.js +153 -0
  428. package/packages/typescript/src/features/knowledge/actions.d.ts +5 -0
  429. package/packages/typescript/src/features/knowledge/actions.d.ts.map +1 -0
  430. package/packages/typescript/src/features/knowledge/actions.js +275 -0
  431. package/packages/typescript/src/features/knowledge/config.d.ts +5 -0
  432. package/packages/typescript/src/features/knowledge/config.d.ts.map +1 -0
  433. package/packages/typescript/src/features/knowledge/config.js +147 -0
  434. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts +53 -0
  435. package/packages/typescript/src/features/knowledge/ctx-embeddings.d.ts.map +1 -0
  436. package/packages/typescript/src/features/knowledge/ctx-embeddings.js +412 -0
  437. package/packages/typescript/src/features/knowledge/docs-loader.d.ts +27 -0
  438. package/packages/typescript/src/features/knowledge/docs-loader.d.ts.map +1 -0
  439. package/packages/typescript/src/features/knowledge/docs-loader.js +226 -0
  440. package/packages/typescript/src/features/knowledge/document-processor.d.ts +27 -0
  441. package/packages/typescript/src/features/knowledge/document-processor.d.ts.map +1 -0
  442. package/packages/typescript/src/features/knowledge/document-processor.js +629 -0
  443. package/packages/typescript/src/features/knowledge/documents-provider.d.ts +3 -0
  444. package/packages/typescript/src/features/knowledge/documents-provider.d.ts.map +1 -0
  445. package/packages/typescript/src/features/knowledge/documents-provider.js +112 -0
  446. package/packages/typescript/src/features/knowledge/index.d.ts +16 -0
  447. package/packages/typescript/src/features/knowledge/index.d.ts.map +1 -0
  448. package/packages/typescript/src/features/knowledge/index.js +29 -0
  449. package/packages/typescript/src/features/knowledge/llm.d.ts +27 -0
  450. package/packages/typescript/src/features/knowledge/llm.d.ts.map +1 -0
  451. package/packages/typescript/src/features/knowledge/llm.js +444 -0
  452. package/packages/typescript/src/features/knowledge/provider.d.ts +3 -0
  453. package/packages/typescript/src/features/knowledge/provider.d.ts.map +1 -0
  454. package/packages/typescript/src/features/knowledge/provider.js +114 -0
  455. package/packages/typescript/src/features/knowledge/service.d.ts +83 -0
  456. package/packages/typescript/src/features/knowledge/service.d.ts.map +1 -0
  457. package/packages/typescript/src/features/knowledge/service.js +648 -0
  458. package/packages/typescript/src/features/knowledge/types.d.ts +162 -0
  459. package/packages/typescript/src/features/knowledge/types.d.ts.map +1 -0
  460. package/packages/typescript/src/features/knowledge/types.js +57 -0
  461. package/packages/typescript/src/features/knowledge/utils.d.ts +22 -0
  462. package/packages/typescript/src/features/knowledge/utils.d.ts.map +1 -0
  463. package/packages/typescript/src/features/knowledge/utils.js +387 -0
  464. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts +3 -0
  465. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.d.ts.map +1 -0
  466. package/packages/typescript/src/features/plugin-manager/actions/coreStatusAction.js +65 -0
  467. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts +3 -0
  468. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.d.ts.map +1 -0
  469. package/packages/typescript/src/features/plugin-manager/actions/listEjectedPluginsAction.js +63 -0
  470. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts +4 -0
  471. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.d.ts.map +1 -0
  472. package/packages/typescript/src/features/plugin-manager/actions/searchPluginAction.js +232 -0
  473. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts +28 -0
  474. package/packages/typescript/src/features/plugin-manager/coreExtensions.d.ts.map +1 -0
  475. package/packages/typescript/src/features/plugin-manager/coreExtensions.js +54 -0
  476. package/packages/typescript/src/features/plugin-manager/index.d.ts +25 -0
  477. package/packages/typescript/src/features/plugin-manager/index.d.ts.map +1 -0
  478. package/packages/typescript/src/features/plugin-manager/index.js +53 -0
  479. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts +5 -0
  480. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.d.ts.map +1 -0
  481. package/packages/typescript/src/features/plugin-manager/providers/pluginConfigurationStatus.js +104 -0
  482. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts +5 -0
  483. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.d.ts.map +1 -0
  484. package/packages/typescript/src/features/plugin-manager/providers/pluginStateProvider.js +105 -0
  485. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts +5 -0
  486. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.d.ts.map +1 -0
  487. package/packages/typescript/src/features/plugin-manager/providers/registryPluginsProvider.js +93 -0
  488. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts +9 -0
  489. package/packages/typescript/src/features/plugin-manager/providers/relevance.d.ts.map +1 -0
  490. package/packages/typescript/src/features/plugin-manager/providers/relevance.js +229 -0
  491. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts +76 -0
  492. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.d.ts.map +1 -0
  493. package/packages/typescript/src/features/plugin-manager/services/coreManagerService.js +479 -0
  494. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts +31 -0
  495. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.d.ts.map +1 -0
  496. package/packages/typescript/src/features/plugin-manager/services/pluginConfigurationService.js +57 -0
  497. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts +68 -0
  498. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.d.ts.map +1 -0
  499. package/packages/typescript/src/features/plugin-manager/services/pluginManagerService.js +1005 -0
  500. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts +84 -0
  501. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.d.ts.map +1 -0
  502. package/packages/typescript/src/features/plugin-manager/services/pluginRegistryService.js +401 -0
  503. package/packages/typescript/src/features/plugin-manager/types.d.ts +142 -0
  504. package/packages/typescript/src/features/plugin-manager/types.d.ts.map +1 -0
  505. package/packages/typescript/src/features/plugin-manager/types.js +13 -0
  506. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts +4 -0
  507. package/packages/typescript/src/features/plugin-manager/utils/paths.d.ts.map +1 -0
  508. package/packages/typescript/src/features/plugin-manager/utils/paths.js +32 -0
  509. package/packages/typescript/src/features/secrets/actions/index.d.ts +7 -0
  510. package/packages/typescript/src/features/secrets/actions/index.d.ts.map +1 -0
  511. package/packages/typescript/src/features/secrets/actions/index.js +6 -0
  512. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts +12 -0
  513. package/packages/typescript/src/features/secrets/actions/manage-secret.d.ts.map +1 -0
  514. package/packages/typescript/src/features/secrets/actions/manage-secret.js +278 -0
  515. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts +3 -0
  516. package/packages/typescript/src/features/secrets/actions/request-secret.d.ts.map +1 -0
  517. package/packages/typescript/src/features/secrets/actions/request-secret.js +105 -0
  518. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts +12 -0
  519. package/packages/typescript/src/features/secrets/actions/set-secret.d.ts.map +1 -0
  520. package/packages/typescript/src/features/secrets/actions/set-secret.js +223 -0
  521. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts +184 -0
  522. package/packages/typescript/src/features/secrets/crypto/encryption.d.ts.map +1 -0
  523. package/packages/typescript/src/features/secrets/crypto/encryption.js +373 -0
  524. package/packages/typescript/src/features/secrets/crypto/index.d.ts +5 -0
  525. package/packages/typescript/src/features/secrets/crypto/index.d.ts.map +1 -0
  526. package/packages/typescript/src/features/secrets/crypto/index.js +16 -0
  527. package/packages/typescript/src/features/secrets/onboarding/action.d.ts +12 -0
  528. package/packages/typescript/src/features/secrets/onboarding/action.d.ts.map +1 -0
  529. package/packages/typescript/src/features/secrets/onboarding/action.js +337 -0
  530. package/packages/typescript/src/features/secrets/onboarding/config.d.ts +99 -0
  531. package/packages/typescript/src/features/secrets/onboarding/config.d.ts.map +1 -0
  532. package/packages/typescript/src/features/secrets/onboarding/config.js +240 -0
  533. package/packages/typescript/src/features/secrets/onboarding/index.d.ts +13 -0
  534. package/packages/typescript/src/features/secrets/onboarding/index.d.ts.map +1 -0
  535. package/packages/typescript/src/features/secrets/onboarding/index.js +12 -0
  536. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts +16 -0
  537. package/packages/typescript/src/features/secrets/onboarding/provider.d.ts.map +1 -0
  538. package/packages/typescript/src/features/secrets/onboarding/provider.js +231 -0
  539. package/packages/typescript/src/features/secrets/onboarding/service.d.ts +134 -0
  540. package/packages/typescript/src/features/secrets/onboarding/service.d.ts.map +1 -0
  541. package/packages/typescript/src/features/secrets/onboarding/service.js +436 -0
  542. package/packages/typescript/src/features/secrets/providers/index.d.ts +5 -0
  543. package/packages/typescript/src/features/secrets/providers/index.d.ts.map +1 -0
  544. package/packages/typescript/src/features/secrets/providers/index.js +4 -0
  545. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts +22 -0
  546. package/packages/typescript/src/features/secrets/providers/secrets-status.d.ts.map +1 -0
  547. package/packages/typescript/src/features/secrets/providers/secrets-status.js +160 -0
  548. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts +182 -0
  549. package/packages/typescript/src/features/secrets/services/plugin-activator.d.ts.map +1 -0
  550. package/packages/typescript/src/features/secrets/services/plugin-activator.js +617 -0
  551. package/packages/typescript/src/features/secrets/services/secrets.d.ts +183 -0
  552. package/packages/typescript/src/features/secrets/services/secrets.d.ts.map +1 -0
  553. package/packages/typescript/src/features/secrets/services/secrets.js +566 -0
  554. package/packages/typescript/src/features/secrets/storage/character-store.d.ts +63 -0
  555. package/packages/typescript/src/features/secrets/storage/character-store.d.ts.map +1 -0
  556. package/packages/typescript/src/features/secrets/storage/character-store.js +265 -0
  557. package/packages/typescript/src/features/secrets/storage/component-store.d.ts +47 -0
  558. package/packages/typescript/src/features/secrets/storage/component-store.d.ts.map +1 -0
  559. package/packages/typescript/src/features/secrets/storage/component-store.js +264 -0
  560. package/packages/typescript/src/features/secrets/storage/index.d.ts +10 -0
  561. package/packages/typescript/src/features/secrets/storage/index.d.ts.map +1 -0
  562. package/packages/typescript/src/features/secrets/storage/index.js +8 -0
  563. package/packages/typescript/src/features/secrets/storage/interface.d.ts +52 -0
  564. package/packages/typescript/src/features/secrets/storage/interface.d.ts.map +1 -0
  565. package/packages/typescript/src/features/secrets/storage/interface.js +92 -0
  566. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts +44 -0
  567. package/packages/typescript/src/features/secrets/storage/memory-store.d.ts.map +1 -0
  568. package/packages/typescript/src/features/secrets/storage/memory-store.js +142 -0
  569. package/packages/typescript/src/features/secrets/storage/world-store.d.ts +52 -0
  570. package/packages/typescript/src/features/secrets/storage/world-store.d.ts.map +1 -0
  571. package/packages/typescript/src/features/secrets/storage/world-store.js +292 -0
  572. package/packages/typescript/src/features/secrets/types.d.ts +438 -0
  573. package/packages/typescript/src/features/secrets/types.d.ts.map +1 -0
  574. package/packages/typescript/src/features/secrets/types.js +57 -0
  575. package/packages/typescript/src/features/secrets/validation.d.ts +33 -0
  576. package/packages/typescript/src/features/secrets/validation.d.ts.map +1 -0
  577. package/packages/typescript/src/features/secrets/validation.js +389 -0
  578. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts +10 -0
  579. package/packages/typescript/src/features/shared/schedule-follow-up-response.d.ts.map +1 -0
  580. package/packages/typescript/src/features/shared/schedule-follow-up-response.js +49 -0
  581. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts +289 -0
  582. package/packages/typescript/src/features/trajectories/TrajectoriesService.d.ts.map +1 -0
  583. package/packages/typescript/src/features/trajectories/TrajectoriesService.js +1423 -0
  584. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts +23 -0
  585. package/packages/typescript/src/features/trajectories/action-interceptor.d.ts.map +1 -0
  586. package/packages/typescript/src/features/trajectories/action-interceptor.js +178 -0
  587. package/packages/typescript/src/features/trajectories/art-format.d.ts +32 -0
  588. package/packages/typescript/src/features/trajectories/art-format.d.ts.map +1 -0
  589. package/packages/typescript/src/features/trajectories/art-format.js +221 -0
  590. package/packages/typescript/src/features/trajectories/export.d.ts +40 -0
  591. package/packages/typescript/src/features/trajectories/export.d.ts.map +1 -0
  592. package/packages/typescript/src/features/trajectories/export.js +99 -0
  593. package/packages/typescript/src/features/trajectories/game-rewards.d.ts +14 -0
  594. package/packages/typescript/src/features/trajectories/game-rewards.d.ts.map +1 -0
  595. package/packages/typescript/src/features/trajectories/game-rewards.js +20 -0
  596. package/packages/typescript/src/features/trajectories/index.d.ts +24 -0
  597. package/packages/typescript/src/features/trajectories/index.d.ts.map +1 -0
  598. package/packages/typescript/src/features/trajectories/index.js +332 -0
  599. package/packages/typescript/src/features/trajectories/integration.d.ts +59 -0
  600. package/packages/typescript/src/features/trajectories/integration.d.ts.map +1 -0
  601. package/packages/typescript/src/features/trajectories/integration.js +83 -0
  602. package/packages/typescript/src/features/trajectories/reward-service.d.ts +24 -0
  603. package/packages/typescript/src/features/trajectories/reward-service.d.ts.map +1 -0
  604. package/packages/typescript/src/features/trajectories/reward-service.js +89 -0
  605. package/packages/typescript/src/features/trajectories/types.d.ts +261 -0
  606. package/packages/typescript/src/features/trajectories/types.d.ts.map +1 -0
  607. package/packages/typescript/src/features/trajectories/types.js +1 -0
  608. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts +3 -0
  609. package/packages/typescript/src/features/trust/actions/evaluateTrust.d.ts.map +1 -0
  610. package/packages/typescript/src/features/trust/actions/evaluateTrust.js +225 -0
  611. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts +3 -0
  612. package/packages/typescript/src/features/trust/actions/hasTrustEngine.d.ts.map +1 -0
  613. package/packages/typescript/src/features/trust/actions/hasTrustEngine.js +3 -0
  614. package/packages/typescript/src/features/trust/actions/index.d.ts +6 -0
  615. package/packages/typescript/src/features/trust/actions/index.d.ts.map +1 -0
  616. package/packages/typescript/src/features/trust/actions/index.js +5 -0
  617. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts +3 -0
  618. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.d.ts.map +1 -0
  619. package/packages/typescript/src/features/trust/actions/recordTrustInteraction.js +189 -0
  620. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts +3 -0
  621. package/packages/typescript/src/features/trust/actions/requestElevation.d.ts.map +1 -0
  622. package/packages/typescript/src/features/trust/actions/requestElevation.js +165 -0
  623. package/packages/typescript/src/features/trust/actions/roles.d.ts +3 -0
  624. package/packages/typescript/src/features/trust/actions/roles.d.ts.map +1 -0
  625. package/packages/typescript/src/features/trust/actions/roles.js +295 -0
  626. package/packages/typescript/src/features/trust/actions/settings.d.ts +5 -0
  627. package/packages/typescript/src/features/trust/actions/settings.d.ts.map +1 -0
  628. package/packages/typescript/src/features/trust/actions/settings.js +603 -0
  629. package/packages/typescript/src/features/trust/evaluators/index.d.ts +4 -0
  630. package/packages/typescript/src/features/trust/evaluators/index.d.ts.map +1 -0
  631. package/packages/typescript/src/features/trust/evaluators/index.js +3 -0
  632. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts +3 -0
  633. package/packages/typescript/src/features/trust/evaluators/reflection.d.ts.map +1 -0
  634. package/packages/typescript/src/features/trust/evaluators/reflection.js +319 -0
  635. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts +3 -0
  636. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.d.ts.map +1 -0
  637. package/packages/typescript/src/features/trust/evaluators/securityEvaluator.js +270 -0
  638. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts +3 -0
  639. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.d.ts.map +1 -0
  640. package/packages/typescript/src/features/trust/evaluators/trustChangeEvaluator.js +201 -0
  641. package/packages/typescript/src/features/trust/index.d.ts +23 -0
  642. package/packages/typescript/src/features/trust/index.d.ts.map +1 -0
  643. package/packages/typescript/src/features/trust/index.js +96 -0
  644. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts +3 -0
  645. package/packages/typescript/src/features/trust/providers/adminTrust.d.ts.map +1 -0
  646. package/packages/typescript/src/features/trust/providers/adminTrust.js +49 -0
  647. package/packages/typescript/src/features/trust/providers/index.d.ts +6 -0
  648. package/packages/typescript/src/features/trust/providers/index.d.ts.map +1 -0
  649. package/packages/typescript/src/features/trust/providers/index.js +5 -0
  650. package/packages/typescript/src/features/trust/providers/roles.d.ts +4 -0
  651. package/packages/typescript/src/features/trust/providers/roles.d.ts.map +1 -0
  652. package/packages/typescript/src/features/trust/providers/roles.js +142 -0
  653. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts +3 -0
  654. package/packages/typescript/src/features/trust/providers/securityStatus.d.ts.map +1 -0
  655. package/packages/typescript/src/features/trust/providers/securityStatus.js +110 -0
  656. package/packages/typescript/src/features/trust/providers/settings.d.ts +3 -0
  657. package/packages/typescript/src/features/trust/providers/settings.d.ts.map +1 -0
  658. package/packages/typescript/src/features/trust/providers/settings.js +222 -0
  659. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts +3 -0
  660. package/packages/typescript/src/features/trust/providers/trustProfile.d.ts.map +1 -0
  661. package/packages/typescript/src/features/trust/providers/trustProfile.js +68 -0
  662. package/packages/typescript/src/features/trust/schema.d.ts +1170 -0
  663. package/packages/typescript/src/features/trust/schema.d.ts.map +1 -0
  664. package/packages/typescript/src/features/trust/schema.js +108 -0
  665. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts +40 -0
  666. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.d.ts.map +1 -0
  667. package/packages/typescript/src/features/trust/services/ContextualPermissionSystem.js +317 -0
  668. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts +62 -0
  669. package/packages/typescript/src/features/trust/services/CredentialProtector.d.ts.map +1 -0
  670. package/packages/typescript/src/features/trust/services/CredentialProtector.js +417 -0
  671. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts +142 -0
  672. package/packages/typescript/src/features/trust/services/SecurityModule.d.ts.map +1 -0
  673. package/packages/typescript/src/features/trust/services/SecurityModule.js +1057 -0
  674. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts +53 -0
  675. package/packages/typescript/src/features/trust/services/SecurityStore.d.ts.map +1 -0
  676. package/packages/typescript/src/features/trust/services/SecurityStore.js +123 -0
  677. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts +81 -0
  678. package/packages/typescript/src/features/trust/services/TrustEngine.d.ts.map +1 -0
  679. package/packages/typescript/src/features/trust/services/TrustEngine.js +621 -0
  680. package/packages/typescript/src/features/trust/services/adminContext.d.ts +3 -0
  681. package/packages/typescript/src/features/trust/services/adminContext.d.ts.map +1 -0
  682. package/packages/typescript/src/features/trust/services/adminContext.js +32 -0
  683. package/packages/typescript/src/features/trust/services/db.d.ts +12 -0
  684. package/packages/typescript/src/features/trust/services/db.d.ts.map +1 -0
  685. package/packages/typescript/src/features/trust/services/db.js +10 -0
  686. package/packages/typescript/src/features/trust/services/wrappers.d.ts +56 -0
  687. package/packages/typescript/src/features/trust/services/wrappers.d.ts.map +1 -0
  688. package/packages/typescript/src/features/trust/services/wrappers.js +124 -0
  689. package/packages/typescript/src/features/trust/types/permissions.d.ts +185 -0
  690. package/packages/typescript/src/features/trust/types/permissions.d.ts.map +1 -0
  691. package/packages/typescript/src/features/trust/types/permissions.js +58 -0
  692. package/packages/typescript/src/features/trust/types/security.d.ts +114 -0
  693. package/packages/typescript/src/features/trust/types/security.d.ts.map +1 -0
  694. package/packages/typescript/src/features/trust/types/security.js +15 -0
  695. package/packages/typescript/src/features/trust/types/trust.d.ts +179 -0
  696. package/packages/typescript/src/features/trust/types/trust.d.ts.map +1 -0
  697. package/packages/typescript/src/features/trust/types/trust.js +25 -0
  698. package/packages/typescript/src/generated/action-docs.d.ts +2799 -0
  699. package/packages/typescript/src/generated/action-docs.d.ts.map +1 -0
  700. package/packages/typescript/src/generated/action-docs.js +4021 -0
  701. package/packages/typescript/src/generated/spec-helpers.d.ts +49 -0
  702. package/packages/typescript/src/generated/spec-helpers.d.ts.map +1 -0
  703. package/packages/typescript/src/generated/spec-helpers.js +78 -0
  704. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts +1069 -0
  705. package/packages/typescript/src/i18n/generated/validation-keyword-data.d.ts.map +1 -0
  706. package/packages/typescript/src/i18n/generated/validation-keyword-data.js +1069 -0
  707. package/packages/typescript/src/i18n/validation-keywords.d.ts +25 -0
  708. package/packages/typescript/src/i18n/validation-keywords.d.ts.map +1 -0
  709. package/packages/typescript/src/i18n/validation-keywords.js +112 -0
  710. package/packages/typescript/src/index.d.ts +12 -0
  711. package/packages/typescript/src/index.d.ts.map +1 -0
  712. package/packages/typescript/src/index.js +13 -0
  713. package/packages/typescript/src/index.node.d.ts +81 -0
  714. package/packages/typescript/src/index.node.d.ts.map +1 -0
  715. package/packages/typescript/src/index.node.js +114 -0
  716. package/packages/typescript/src/logger.d.ts +121 -0
  717. package/packages/typescript/src/logger.d.ts.map +1 -0
  718. package/packages/typescript/src/logger.js +1023 -0
  719. package/packages/typescript/src/markdown/chunk.d.ts +50 -0
  720. package/packages/typescript/src/markdown/chunk.d.ts.map +1 -0
  721. package/packages/typescript/src/markdown/chunk.js +268 -0
  722. package/packages/typescript/src/markdown/code-spans.d.ts +42 -0
  723. package/packages/typescript/src/markdown/code-spans.d.ts.map +1 -0
  724. package/packages/typescript/src/markdown/code-spans.js +89 -0
  725. package/packages/typescript/src/markdown/fences.d.ts +50 -0
  726. package/packages/typescript/src/markdown/fences.d.ts.map +1 -0
  727. package/packages/typescript/src/markdown/fences.js +90 -0
  728. package/packages/typescript/src/markdown/frontmatter.d.ts +24 -0
  729. package/packages/typescript/src/markdown/frontmatter.d.ts.map +1 -0
  730. package/packages/typescript/src/markdown/frontmatter.js +151 -0
  731. package/packages/typescript/src/markdown/index.d.ts +18 -0
  732. package/packages/typescript/src/markdown/index.d.ts.map +1 -0
  733. package/packages/typescript/src/markdown/index.js +17 -0
  734. package/packages/typescript/src/markdown/ir.d.ts +101 -0
  735. package/packages/typescript/src/markdown/ir.d.ts.map +1 -0
  736. package/packages/typescript/src/markdown/ir.js +789 -0
  737. package/packages/typescript/src/media/fetch.d.ts +39 -0
  738. package/packages/typescript/src/media/fetch.d.ts.map +1 -0
  739. package/packages/typescript/src/media/fetch.js +205 -0
  740. package/packages/typescript/src/media/index.d.ts +8 -0
  741. package/packages/typescript/src/media/index.d.ts.map +1 -0
  742. package/packages/typescript/src/media/index.js +7 -0
  743. package/packages/typescript/src/media/mime.d.ts +51 -0
  744. package/packages/typescript/src/media/mime.d.ts.map +1 -0
  745. package/packages/typescript/src/media/mime.js +225 -0
  746. package/packages/typescript/src/memory.d.ts +40 -0
  747. package/packages/typescript/src/memory.d.ts.map +1 -0
  748. package/packages/typescript/src/memory.js +58 -0
  749. package/packages/typescript/src/network/fetch-guard.d.ts +34 -0
  750. package/packages/typescript/src/network/fetch-guard.d.ts.map +1 -0
  751. package/packages/typescript/src/network/fetch-guard.js +136 -0
  752. package/packages/typescript/src/network/index.d.ts +11 -0
  753. package/packages/typescript/src/network/index.d.ts.map +1 -0
  754. package/packages/typescript/src/network/index.js +10 -0
  755. package/packages/typescript/src/network/ssrf.d.ts +58 -0
  756. package/packages/typescript/src/network/ssrf.d.ts.map +1 -0
  757. package/packages/typescript/src/network/ssrf.js +252 -0
  758. package/packages/typescript/src/optimization/ab-analysis.d.ts +3 -0
  759. package/packages/typescript/src/optimization/ab-analysis.d.ts.map +1 -0
  760. package/packages/typescript/src/optimization/ab-analysis.js +8 -0
  761. package/packages/typescript/src/optimization-root-dir.d.ts +8 -0
  762. package/packages/typescript/src/optimization-root-dir.d.ts.map +1 -0
  763. package/packages/typescript/src/optimization-root-dir.js +14 -0
  764. package/packages/typescript/src/plugin-lifecycle.d.ts +16 -0
  765. package/packages/typescript/src/plugin-lifecycle.d.ts.map +1 -0
  766. package/packages/typescript/src/plugin-lifecycle.js +590 -0
  767. package/packages/typescript/src/plugin.d.ts +13 -0
  768. package/packages/typescript/src/plugin.d.ts.map +1 -0
  769. package/packages/typescript/src/plugin.js +341 -0
  770. package/packages/typescript/src/plugins/index.d.ts +9 -0
  771. package/packages/typescript/src/plugins/index.d.ts.map +1 -0
  772. package/packages/typescript/src/plugins/index.js +8 -0
  773. package/packages/typescript/src/plugins/native-features.d.ts +14 -0
  774. package/packages/typescript/src/plugins/native-features.d.ts.map +1 -0
  775. package/packages/typescript/src/plugins/native-features.js +59 -0
  776. package/packages/typescript/src/prompts.d.ts +88 -0
  777. package/packages/typescript/src/prompts.d.ts.map +1 -0
  778. package/packages/typescript/src/prompts.js +1140 -0
  779. package/packages/typescript/src/providers/onboarding-progress.d.ts +19 -0
  780. package/packages/typescript/src/providers/onboarding-progress.d.ts.map +1 -0
  781. package/packages/typescript/src/providers/onboarding-progress.js +268 -0
  782. package/packages/typescript/src/providers/skill-eligibility.d.ts +28 -0
  783. package/packages/typescript/src/providers/skill-eligibility.d.ts.map +1 -0
  784. package/packages/typescript/src/providers/skill-eligibility.js +179 -0
  785. package/packages/typescript/src/provisioning.d.ts +54 -0
  786. package/packages/typescript/src/provisioning.d.ts.map +1 -0
  787. package/packages/typescript/src/provisioning.js +209 -0
  788. package/packages/typescript/src/roles.d.ts +70 -0
  789. package/packages/typescript/src/roles.d.ts.map +1 -0
  790. package/packages/typescript/src/roles.js +544 -0
  791. package/packages/typescript/src/runtime-composition.d.ts +129 -0
  792. package/packages/typescript/src/runtime-composition.d.ts.map +1 -0
  793. package/packages/typescript/src/runtime-composition.js +335 -0
  794. package/packages/typescript/src/runtime.d.ts +924 -0
  795. package/packages/typescript/src/runtime.d.ts.map +1 -0
  796. package/packages/typescript/src/runtime.js +6013 -0
  797. package/packages/typescript/src/schemas/agent.d.ts +7 -0
  798. package/packages/typescript/src/schemas/agent.d.ts.map +1 -0
  799. package/packages/typescript/src/schemas/agent.js +112 -0
  800. package/packages/typescript/src/schemas/cache.d.ts +7 -0
  801. package/packages/typescript/src/schemas/cache.d.ts.map +1 -0
  802. package/packages/typescript/src/schemas/cache.js +55 -0
  803. package/packages/typescript/src/schemas/channel-participant.d.ts +7 -0
  804. package/packages/typescript/src/schemas/channel-participant.d.ts.map +1 -0
  805. package/packages/typescript/src/schemas/channel-participant.js +49 -0
  806. package/packages/typescript/src/schemas/channel.d.ts +7 -0
  807. package/packages/typescript/src/schemas/channel.d.ts.map +1 -0
  808. package/packages/typescript/src/schemas/channel.js +94 -0
  809. package/packages/typescript/src/schemas/character.d.ts +445 -0
  810. package/packages/typescript/src/schemas/character.d.ts.map +1 -0
  811. package/packages/typescript/src/schemas/character.js +309 -0
  812. package/packages/typescript/src/schemas/component.d.ts +7 -0
  813. package/packages/typescript/src/schemas/component.d.ts.map +1 -0
  814. package/packages/typescript/src/schemas/component.js +156 -0
  815. package/packages/typescript/src/schemas/embedding.d.ts +7 -0
  816. package/packages/typescript/src/schemas/embedding.d.ts.map +1 -0
  817. package/packages/typescript/src/schemas/embedding.js +89 -0
  818. package/packages/typescript/src/schemas/entity-identity.d.ts +29 -0
  819. package/packages/typescript/src/schemas/entity-identity.d.ts.map +1 -0
  820. package/packages/typescript/src/schemas/entity-identity.js +334 -0
  821. package/packages/typescript/src/schemas/entity.d.ts +7 -0
  822. package/packages/typescript/src/schemas/entity.d.ts.map +1 -0
  823. package/packages/typescript/src/schemas/entity.js +69 -0
  824. package/packages/typescript/src/schemas/index.d.ts +77 -0
  825. package/packages/typescript/src/schemas/index.d.ts.map +1 -0
  826. package/packages/typescript/src/schemas/index.js +75 -0
  827. package/packages/typescript/src/schemas/log.d.ts +6 -0
  828. package/packages/typescript/src/schemas/log.d.ts.map +1 -0
  829. package/packages/typescript/src/schemas/log.js +93 -0
  830. package/packages/typescript/src/schemas/memory.d.ts +7 -0
  831. package/packages/typescript/src/schemas/memory.d.ts.map +1 -0
  832. package/packages/typescript/src/schemas/memory.js +167 -0
  833. package/packages/typescript/src/schemas/message-server-agent.d.ts +7 -0
  834. package/packages/typescript/src/schemas/message-server-agent.d.ts.map +1 -0
  835. package/packages/typescript/src/schemas/message-server-agent.js +58 -0
  836. package/packages/typescript/src/schemas/message-server.d.ts +6 -0
  837. package/packages/typescript/src/schemas/message-server.d.ts.map +1 -0
  838. package/packages/typescript/src/schemas/message-server.js +62 -0
  839. package/packages/typescript/src/schemas/message.d.ts +7 -0
  840. package/packages/typescript/src/schemas/message.d.ts.map +1 -0
  841. package/packages/typescript/src/schemas/message.js +106 -0
  842. package/packages/typescript/src/schemas/pairing-allowlist.d.ts +7 -0
  843. package/packages/typescript/src/schemas/pairing-allowlist.d.ts.map +1 -0
  844. package/packages/typescript/src/schemas/pairing-allowlist.js +76 -0
  845. package/packages/typescript/src/schemas/pairing-request.d.ts +7 -0
  846. package/packages/typescript/src/schemas/pairing-request.d.ts.map +1 -0
  847. package/packages/typescript/src/schemas/pairing-request.js +96 -0
  848. package/packages/typescript/src/schemas/participant.d.ts +6 -0
  849. package/packages/typescript/src/schemas/participant.d.ts.map +1 -0
  850. package/packages/typescript/src/schemas/participant.js +91 -0
  851. package/packages/typescript/src/schemas/relationship.d.ts +7 -0
  852. package/packages/typescript/src/schemas/relationship.d.ts.map +1 -0
  853. package/packages/typescript/src/schemas/relationship.js +102 -0
  854. package/packages/typescript/src/schemas/room.d.ts +6 -0
  855. package/packages/typescript/src/schemas/room.d.ts.map +1 -0
  856. package/packages/typescript/src/schemas/room.js +86 -0
  857. package/packages/typescript/src/schemas/server.d.ts +7 -0
  858. package/packages/typescript/src/schemas/server.d.ts.map +1 -0
  859. package/packages/typescript/src/schemas/server.js +33 -0
  860. package/packages/typescript/src/schemas/task.d.ts +6 -0
  861. package/packages/typescript/src/schemas/task.d.ts.map +1 -0
  862. package/packages/typescript/src/schemas/task.js +95 -0
  863. package/packages/typescript/src/schemas/world.d.ts +6 -0
  864. package/packages/typescript/src/schemas/world.d.ts.map +1 -0
  865. package/packages/typescript/src/schemas/world.js +64 -0
  866. package/packages/typescript/src/search.d.ts +359 -0
  867. package/packages/typescript/src/search.d.ts.map +1 -0
  868. package/packages/typescript/src/search.js +1580 -0
  869. package/packages/typescript/src/secrets.d.ts +6 -0
  870. package/packages/typescript/src/secrets.d.ts.map +1 -0
  871. package/packages/typescript/src/secrets.js +28 -0
  872. package/packages/typescript/src/security/external-content.d.ts +96 -0
  873. package/packages/typescript/src/security/external-content.d.ts.map +1 -0
  874. package/packages/typescript/src/security/external-content.js +252 -0
  875. package/packages/typescript/src/security/index.d.ts +12 -0
  876. package/packages/typescript/src/security/index.d.ts.map +1 -0
  877. package/packages/typescript/src/security/index.js +13 -0
  878. package/packages/typescript/src/security/redact.d.ts +111 -0
  879. package/packages/typescript/src/security/redact.d.ts.map +1 -0
  880. package/packages/typescript/src/security/redact.js +254 -0
  881. package/packages/typescript/src/services/agentEvent.d.ts +297 -0
  882. package/packages/typescript/src/services/agentEvent.d.ts.map +1 -0
  883. package/packages/typescript/src/services/agentEvent.js +422 -0
  884. package/packages/typescript/src/services/approval.d.ts +169 -0
  885. package/packages/typescript/src/services/approval.d.ts.map +1 -0
  886. package/packages/typescript/src/services/approval.js +399 -0
  887. package/packages/typescript/src/services/embedding.d.ts +29 -0
  888. package/packages/typescript/src/services/embedding.d.ts.map +1 -0
  889. package/packages/typescript/src/services/embedding.js +211 -0
  890. package/packages/typescript/src/services/followUp.d.ts +48 -0
  891. package/packages/typescript/src/services/followUp.d.ts.map +1 -0
  892. package/packages/typescript/src/services/followUp.js +333 -0
  893. package/packages/typescript/src/services/hook.d.ts +85 -0
  894. package/packages/typescript/src/services/hook.d.ts.map +1 -0
  895. package/packages/typescript/src/services/hook.js +396 -0
  896. package/packages/typescript/src/services/message.d.ts +130 -0
  897. package/packages/typescript/src/services/message.d.ts.map +1 -0
  898. package/packages/typescript/src/services/message.js +4899 -0
  899. package/packages/typescript/src/services/onboarding-cli.d.ts +240 -0
  900. package/packages/typescript/src/services/onboarding-cli.d.ts.map +1 -0
  901. package/packages/typescript/src/services/onboarding-cli.js +688 -0
  902. package/packages/typescript/src/services/onboarding-rpc.d.ts +225 -0
  903. package/packages/typescript/src/services/onboarding-rpc.d.ts.map +1 -0
  904. package/packages/typescript/src/services/onboarding-rpc.js +318 -0
  905. package/packages/typescript/src/services/onboarding-state.d.ts +155 -0
  906. package/packages/typescript/src/services/onboarding-state.d.ts.map +1 -0
  907. package/packages/typescript/src/services/onboarding-state.js +706 -0
  908. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts +23 -0
  909. package/packages/typescript/src/services/optimized-prompt-resolver.d.ts.map +1 -0
  910. package/packages/typescript/src/services/optimized-prompt-resolver.js +49 -0
  911. package/packages/typescript/src/services/optimized-prompt.d.ts +116 -0
  912. package/packages/typescript/src/services/optimized-prompt.d.ts.map +1 -0
  913. package/packages/typescript/src/services/optimized-prompt.js +254 -0
  914. package/packages/typescript/src/services/pairing-integration.d.ts +96 -0
  915. package/packages/typescript/src/services/pairing-integration.d.ts.map +1 -0
  916. package/packages/typescript/src/services/pairing-integration.js +145 -0
  917. package/packages/typescript/src/services/pairing-migration.d.ts +105 -0
  918. package/packages/typescript/src/services/pairing-migration.d.ts.map +1 -0
  919. package/packages/typescript/src/services/pairing-migration.js +283 -0
  920. package/packages/typescript/src/services/pairing.d.ts +80 -0
  921. package/packages/typescript/src/services/pairing.d.ts.map +1 -0
  922. package/packages/typescript/src/services/pairing.js +253 -0
  923. package/packages/typescript/src/services/plugin-hooks.d.ts +112 -0
  924. package/packages/typescript/src/services/plugin-hooks.d.ts.map +1 -0
  925. package/packages/typescript/src/services/plugin-hooks.js +163 -0
  926. package/packages/typescript/src/services/relationships.d.ts +350 -0
  927. package/packages/typescript/src/services/relationships.d.ts.map +1 -0
  928. package/packages/typescript/src/services/relationships.js +1649 -0
  929. package/packages/typescript/src/services/task-scheduler.d.ts +28 -0
  930. package/packages/typescript/src/services/task-scheduler.d.ts.map +1 -0
  931. package/packages/typescript/src/services/task-scheduler.js +89 -0
  932. package/packages/typescript/src/services/task.d.ts +133 -0
  933. package/packages/typescript/src/services/task.d.ts.map +1 -0
  934. package/packages/typescript/src/services/task.js +559 -0
  935. package/packages/typescript/src/services/tool-policy.d.ts +186 -0
  936. package/packages/typescript/src/services/tool-policy.d.ts.map +1 -0
  937. package/packages/typescript/src/services/tool-policy.js +332 -0
  938. package/packages/typescript/src/services/trajectories.d.ts +34 -0
  939. package/packages/typescript/src/services/trajectories.d.ts.map +1 -0
  940. package/packages/typescript/src/services/trajectories.js +1 -0
  941. package/packages/typescript/src/services.d.ts +61 -0
  942. package/packages/typescript/src/services.d.ts.map +1 -0
  943. package/packages/typescript/src/services.js +99 -0
  944. package/packages/typescript/src/sessions/index.d.ts +17 -0
  945. package/packages/typescript/src/sessions/index.d.ts.map +1 -0
  946. package/packages/typescript/src/sessions/index.js +29 -0
  947. package/packages/typescript/src/sessions/provider.d.ts +71 -0
  948. package/packages/typescript/src/sessions/provider.d.ts.map +1 -0
  949. package/packages/typescript/src/sessions/provider.js +243 -0
  950. package/packages/typescript/src/sessions/session-key.d.ts +201 -0
  951. package/packages/typescript/src/sessions/session-key.d.ts.map +1 -0
  952. package/packages/typescript/src/sessions/session-key.js +396 -0
  953. package/packages/typescript/src/sessions/types.d.ts +197 -0
  954. package/packages/typescript/src/sessions/types.d.ts.map +1 -0
  955. package/packages/typescript/src/sessions/types.js +68 -0
  956. package/packages/typescript/src/settings.d.ts +99 -0
  957. package/packages/typescript/src/settings.d.ts.map +1 -0
  958. package/packages/typescript/src/settings.js +409 -0
  959. package/packages/typescript/src/should-respond.d.ts +2 -0
  960. package/packages/typescript/src/should-respond.d.ts.map +1 -0
  961. package/packages/typescript/src/should-respond.js +16 -0
  962. package/packages/typescript/src/streaming-context.d.ts +88 -0
  963. package/packages/typescript/src/streaming-context.d.ts.map +1 -0
  964. package/packages/typescript/src/streaming-context.js +160 -0
  965. package/packages/typescript/src/trajectory-context.d.ts +39 -0
  966. package/packages/typescript/src/trajectory-context.d.ts.map +1 -0
  967. package/packages/typescript/src/trajectory-context.js +85 -0
  968. package/packages/typescript/src/trajectory-utils.d.ts +73 -0
  969. package/packages/typescript/src/trajectory-utils.d.ts.map +1 -0
  970. package/packages/typescript/src/trajectory-utils.js +124 -0
  971. package/packages/typescript/src/types/agent.d.ts +62 -0
  972. package/packages/typescript/src/types/agent.d.ts.map +1 -0
  973. package/packages/typescript/src/types/agent.js +5 -0
  974. package/packages/typescript/src/types/agentEvent.d.ts +258 -0
  975. package/packages/typescript/src/types/agentEvent.d.ts.map +1 -0
  976. package/packages/typescript/src/types/agentEvent.js +11 -0
  977. package/packages/typescript/src/types/channel-config.d.ts +167 -0
  978. package/packages/typescript/src/types/channel-config.d.ts.map +1 -0
  979. package/packages/typescript/src/types/channel-config.js +7 -0
  980. package/packages/typescript/src/types/components.d.ts +358 -0
  981. package/packages/typescript/src/types/components.d.ts.map +1 -0
  982. package/packages/typescript/src/types/components.js +1 -0
  983. package/packages/typescript/src/types/database.d.ts +1079 -0
  984. package/packages/typescript/src/types/database.d.ts.map +1 -0
  985. package/packages/typescript/src/types/database.js +9 -0
  986. package/packages/typescript/src/types/environment.d.ts +73 -0
  987. package/packages/typescript/src/types/environment.d.ts.map +1 -0
  988. package/packages/typescript/src/types/environment.js +16 -0
  989. package/packages/typescript/src/types/events.d.ts +403 -0
  990. package/packages/typescript/src/types/events.d.ts.map +1 -0
  991. package/packages/typescript/src/types/events.js +85 -0
  992. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts +400 -0
  993. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.d.ts.map +1 -0
  994. package/packages/typescript/src/types/generated/eliza/v1/agent_pb.js +72 -0
  995. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts +364 -0
  996. package/packages/typescript/src/types/generated/eliza/v1/components_pb.d.ts.map +1 -0
  997. package/packages/typescript/src/types/generated/eliza/v1/components_pb.js +68 -0
  998. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts +694 -0
  999. package/packages/typescript/src/types/generated/eliza/v1/database_pb.d.ts.map +1 -0
  1000. package/packages/typescript/src/types/generated/eliza/v1/database_pb.js +172 -0
  1001. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts +299 -0
  1002. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.d.ts.map +1 -0
  1003. package/packages/typescript/src/types/generated/eliza/v1/environment_pb.js +52 -0
  1004. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts +746 -0
  1005. package/packages/typescript/src/types/generated/eliza/v1/events_pb.d.ts.map +1 -0
  1006. package/packages/typescript/src/types/generated/eliza/v1/events_pb.js +357 -0
  1007. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts +799 -0
  1008. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.d.ts.map +1 -0
  1009. package/packages/typescript/src/types/generated/eliza/v1/ipc_pb.js +172 -0
  1010. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts +63 -0
  1011. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.d.ts.map +1 -0
  1012. package/packages/typescript/src/types/generated/eliza/v1/knowledge_pb.js +18 -0
  1013. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts +290 -0
  1014. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.d.ts.map +1 -0
  1015. package/packages/typescript/src/types/generated/eliza/v1/memory_pb.js +53 -0
  1016. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts +160 -0
  1017. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.d.ts.map +1 -0
  1018. package/packages/typescript/src/types/generated/eliza/v1/message_service_pb.js +88 -0
  1019. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts +214 -0
  1020. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.d.ts.map +1 -0
  1021. package/packages/typescript/src/types/generated/eliza/v1/messaging_pb.js +78 -0
  1022. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts +653 -0
  1023. package/packages/typescript/src/types/generated/eliza/v1/model_pb.d.ts.map +1 -0
  1024. package/packages/typescript/src/types/generated/eliza/v1/model_pb.js +237 -0
  1025. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts +147 -0
  1026. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.d.ts.map +1 -0
  1027. package/packages/typescript/src/types/generated/eliza/v1/payment_pb.js +27 -0
  1028. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts +286 -0
  1029. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.d.ts.map +1 -0
  1030. package/packages/typescript/src/types/generated/eliza/v1/plugin_pb.js +86 -0
  1031. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts +263 -0
  1032. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.d.ts.map +1 -0
  1033. package/packages/typescript/src/types/generated/eliza/v1/primitives_pb.js +38 -0
  1034. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts +137 -0
  1035. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.d.ts.map +1 -0
  1036. package/packages/typescript/src/types/generated/eliza/v1/prompts_pb.js +27 -0
  1037. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts +2687 -0
  1038. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.d.ts.map +1 -0
  1039. package/packages/typescript/src/types/generated/eliza/v1/service_interfaces_pb.js +392 -0
  1040. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts +144 -0
  1041. package/packages/typescript/src/types/generated/eliza/v1/service_pb.d.ts.map +1 -0
  1042. package/packages/typescript/src/types/generated/eliza/v1/service_pb.js +99 -0
  1043. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts +146 -0
  1044. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.d.ts.map +1 -0
  1045. package/packages/typescript/src/types/generated/eliza/v1/settings_pb.js +32 -0
  1046. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts +259 -0
  1047. package/packages/typescript/src/types/generated/eliza/v1/state_pb.d.ts.map +1 -0
  1048. package/packages/typescript/src/types/generated/eliza/v1/state_pb.js +44 -0
  1049. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts +120 -0
  1050. package/packages/typescript/src/types/generated/eliza/v1/task_pb.d.ts.map +1 -0
  1051. package/packages/typescript/src/types/generated/eliza/v1/task_pb.js +53 -0
  1052. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts +205 -0
  1053. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.d.ts.map +1 -0
  1054. package/packages/typescript/src/types/generated/eliza/v1/tee_pb.js +89 -0
  1055. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts +47 -0
  1056. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.d.ts.map +1 -0
  1057. package/packages/typescript/src/types/generated/eliza/v1/testing_pb.js +16 -0
  1058. package/packages/typescript/src/types/hook.d.ts +338 -0
  1059. package/packages/typescript/src/types/hook.d.ts.map +1 -0
  1060. package/packages/typescript/src/types/hook.js +73 -0
  1061. package/packages/typescript/src/types/index.d.ts +42 -0
  1062. package/packages/typescript/src/types/index.d.ts.map +1 -0
  1063. package/packages/typescript/src/types/index.js +50 -0
  1064. package/packages/typescript/src/types/knowledge.d.ts +49 -0
  1065. package/packages/typescript/src/types/knowledge.d.ts.map +1 -0
  1066. package/packages/typescript/src/types/knowledge.js +1 -0
  1067. package/packages/typescript/src/types/memory-storage.d.ts +28 -0
  1068. package/packages/typescript/src/types/memory-storage.d.ts.map +1 -0
  1069. package/packages/typescript/src/types/memory-storage.js +13 -0
  1070. package/packages/typescript/src/types/memory.d.ts +438 -0
  1071. package/packages/typescript/src/types/memory.d.ts.map +1 -0
  1072. package/packages/typescript/src/types/memory.js +16 -0
  1073. package/packages/typescript/src/types/message-service.d.ts +178 -0
  1074. package/packages/typescript/src/types/message-service.d.ts.map +1 -0
  1075. package/packages/typescript/src/types/message-service.js +1 -0
  1076. package/packages/typescript/src/types/messaging.d.ts +358 -0
  1077. package/packages/typescript/src/types/messaging.d.ts.map +1 -0
  1078. package/packages/typescript/src/types/messaging.js +27 -0
  1079. package/packages/typescript/src/types/model.d.ts +697 -0
  1080. package/packages/typescript/src/types/model.d.ts.map +1 -0
  1081. package/packages/typescript/src/types/model.js +247 -0
  1082. package/packages/typescript/src/types/onboarding.d.ts +319 -0
  1083. package/packages/typescript/src/types/onboarding.d.ts.map +1 -0
  1084. package/packages/typescript/src/types/onboarding.js +97 -0
  1085. package/packages/typescript/src/types/pairing.d.ts +124 -0
  1086. package/packages/typescript/src/types/pairing.d.ts.map +1 -0
  1087. package/packages/typescript/src/types/pairing.js +32 -0
  1088. package/packages/typescript/src/types/payment.d.ts +45 -0
  1089. package/packages/typescript/src/types/payment.d.ts.map +1 -0
  1090. package/packages/typescript/src/types/payment.js +1 -0
  1091. package/packages/typescript/src/types/pipeline-hooks.d.ts +234 -0
  1092. package/packages/typescript/src/types/pipeline-hooks.d.ts.map +1 -0
  1093. package/packages/typescript/src/types/pipeline-hooks.js +111 -0
  1094. package/packages/typescript/src/types/plugin-manifest.d.ts +381 -0
  1095. package/packages/typescript/src/types/plugin-manifest.d.ts.map +1 -0
  1096. package/packages/typescript/src/types/plugin-manifest.js +10 -0
  1097. package/packages/typescript/src/types/plugin-store.d.ts +173 -0
  1098. package/packages/typescript/src/types/plugin-store.d.ts.map +1 -0
  1099. package/packages/typescript/src/types/plugin-store.js +1 -0
  1100. package/packages/typescript/src/types/plugin.d.ts +336 -0
  1101. package/packages/typescript/src/types/plugin.d.ts.map +1 -0
  1102. package/packages/typescript/src/types/plugin.js +1 -0
  1103. package/packages/typescript/src/types/primitives.d.ts +176 -0
  1104. package/packages/typescript/src/types/primitives.d.ts.map +1 -0
  1105. package/packages/typescript/src/types/primitives.js +41 -0
  1106. package/packages/typescript/src/types/prompt-batcher.d.ts +126 -0
  1107. package/packages/typescript/src/types/prompt-batcher.d.ts.map +1 -0
  1108. package/packages/typescript/src/types/prompt-batcher.js +6 -0
  1109. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts +41 -0
  1110. package/packages/typescript/src/types/prompt-optimization-hooks.d.ts.map +1 -0
  1111. package/packages/typescript/src/types/prompt-optimization-hooks.js +1 -0
  1112. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts +22 -0
  1113. package/packages/typescript/src/types/prompt-optimization-score-card.d.ts.map +1 -0
  1114. package/packages/typescript/src/types/prompt-optimization-score-card.js +72 -0
  1115. package/packages/typescript/src/types/prompt-optimization-trace.d.ts +53 -0
  1116. package/packages/typescript/src/types/prompt-optimization-trace.d.ts.map +1 -0
  1117. package/packages/typescript/src/types/prompt-optimization-trace.js +19 -0
  1118. package/packages/typescript/src/types/prompts.d.ts +39 -0
  1119. package/packages/typescript/src/types/prompts.d.ts.map +1 -0
  1120. package/packages/typescript/src/types/prompts.js +7 -0
  1121. package/packages/typescript/src/types/proto.d.ts +60 -0
  1122. package/packages/typescript/src/types/proto.d.ts.map +1 -0
  1123. package/packages/typescript/src/types/proto.js +53 -0
  1124. package/packages/typescript/src/types/runtime.d.ts +445 -0
  1125. package/packages/typescript/src/types/runtime.d.ts.map +1 -0
  1126. package/packages/typescript/src/types/runtime.js +1 -0
  1127. package/packages/typescript/src/types/schema-builder.d.ts +43 -0
  1128. package/packages/typescript/src/types/schema-builder.d.ts.map +1 -0
  1129. package/packages/typescript/src/types/schema-builder.js +16 -0
  1130. package/packages/typescript/src/types/schema.d.ts +99 -0
  1131. package/packages/typescript/src/types/schema.d.ts.map +1 -0
  1132. package/packages/typescript/src/types/schema.js +11 -0
  1133. package/packages/typescript/src/types/service-interfaces.d.ts +1200 -0
  1134. package/packages/typescript/src/types/service-interfaces.d.ts.map +1 -0
  1135. package/packages/typescript/src/types/service-interfaces.js +81 -0
  1136. package/packages/typescript/src/types/service.d.ts +175 -0
  1137. package/packages/typescript/src/types/service.d.ts.map +1 -0
  1138. package/packages/typescript/src/types/service.js +79 -0
  1139. package/packages/typescript/src/types/settings.d.ts +36 -0
  1140. package/packages/typescript/src/types/settings.d.ts.map +1 -0
  1141. package/packages/typescript/src/types/settings.js +1 -0
  1142. package/packages/typescript/src/types/state.d.ts +251 -0
  1143. package/packages/typescript/src/types/state.d.ts.map +1 -0
  1144. package/packages/typescript/src/types/state.js +1 -0
  1145. package/packages/typescript/src/types/streaming.d.ts +93 -0
  1146. package/packages/typescript/src/types/streaming.d.ts.map +1 -0
  1147. package/packages/typescript/src/types/streaming.js +21 -0
  1148. package/packages/typescript/src/types/task.d.ts +122 -0
  1149. package/packages/typescript/src/types/task.d.ts.map +1 -0
  1150. package/packages/typescript/src/types/task.js +1 -0
  1151. package/packages/typescript/src/types/tee.d.ts +3 -0
  1152. package/packages/typescript/src/types/tee.d.ts.map +1 -0
  1153. package/packages/typescript/src/types/tee.js +1 -0
  1154. package/packages/typescript/src/types/testing.d.ts +15 -0
  1155. package/packages/typescript/src/types/testing.d.ts.map +1 -0
  1156. package/packages/typescript/src/types/testing.js +1 -0
  1157. package/packages/typescript/src/types/tools.d.ts +166 -0
  1158. package/packages/typescript/src/types/tools.d.ts.map +1 -0
  1159. package/packages/typescript/src/types/tools.js +380 -0
  1160. package/packages/typescript/src/types/trigger.d.ts +42 -0
  1161. package/packages/typescript/src/types/trigger.d.ts.map +1 -0
  1162. package/packages/typescript/src/types/trigger.js +1 -0
  1163. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts +52 -0
  1164. package/packages/typescript/src/utils/batch-queue/batch-processor.d.ts.map +1 -0
  1165. package/packages/typescript/src/utils/batch-queue/batch-processor.js +126 -0
  1166. package/packages/typescript/src/utils/batch-queue/index.d.ts +97 -0
  1167. package/packages/typescript/src/utils/batch-queue/index.d.ts.map +1 -0
  1168. package/packages/typescript/src/utils/batch-queue/index.js +175 -0
  1169. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts +53 -0
  1170. package/packages/typescript/src/utils/batch-queue/priority-queue.d.ts.map +1 -0
  1171. package/packages/typescript/src/utils/batch-queue/priority-queue.js +128 -0
  1172. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts +18 -0
  1173. package/packages/typescript/src/utils/batch-queue/semaphore.d.ts.map +1 -0
  1174. package/packages/typescript/src/utils/batch-queue/semaphore.js +34 -0
  1175. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts +57 -0
  1176. package/packages/typescript/src/utils/batch-queue/task-drain.d.ts.map +1 -0
  1177. package/packages/typescript/src/utils/batch-queue/task-drain.js +150 -0
  1178. package/packages/typescript/src/utils/batch-queue.d.ts +20 -0
  1179. package/packages/typescript/src/utils/batch-queue.d.ts.map +1 -0
  1180. package/packages/typescript/src/utils/batch-queue.js +19 -0
  1181. package/packages/typescript/src/utils/boolean.d.ts +50 -0
  1182. package/packages/typescript/src/utils/boolean.d.ts.map +1 -0
  1183. package/packages/typescript/src/utils/boolean.js +73 -0
  1184. package/packages/typescript/src/utils/buffer.d.ts +107 -0
  1185. package/packages/typescript/src/utils/buffer.d.ts.map +1 -0
  1186. package/packages/typescript/src/utils/buffer.js +229 -0
  1187. package/packages/typescript/src/utils/channel-utils.d.ts +274 -0
  1188. package/packages/typescript/src/utils/channel-utils.d.ts.map +1 -0
  1189. package/packages/typescript/src/utils/channel-utils.js +337 -0
  1190. package/packages/typescript/src/utils/context-catalog.d.ts +6 -0
  1191. package/packages/typescript/src/utils/context-catalog.d.ts.map +1 -0
  1192. package/packages/typescript/src/utils/context-catalog.js +144 -0
  1193. package/packages/typescript/src/utils/context-routing.d.ts +25 -0
  1194. package/packages/typescript/src/utils/context-routing.d.ts.map +1 -0
  1195. package/packages/typescript/src/utils/context-routing.js +164 -0
  1196. package/packages/typescript/src/utils/crypto-compat.d.ts +92 -0
  1197. package/packages/typescript/src/utils/crypto-compat.d.ts.map +1 -0
  1198. package/packages/typescript/src/utils/crypto-compat.js +373 -0
  1199. package/packages/typescript/src/utils/deterministic.d.ts +9 -0
  1200. package/packages/typescript/src/utils/deterministic.d.ts.map +1 -0
  1201. package/packages/typescript/src/utils/deterministic.js +70 -0
  1202. package/packages/typescript/src/utils/environment.d.ts +125 -0
  1203. package/packages/typescript/src/utils/environment.d.ts.map +1 -0
  1204. package/packages/typescript/src/utils/environment.js +290 -0
  1205. package/packages/typescript/src/utils/example-names.d.ts +3 -0
  1206. package/packages/typescript/src/utils/example-names.d.ts.map +1 -0
  1207. package/packages/typescript/src/utils/example-names.js +30 -0
  1208. package/packages/typescript/src/utils/json-llm.d.ts +17 -0
  1209. package/packages/typescript/src/utils/json-llm.d.ts.map +1 -0
  1210. package/packages/typescript/src/utils/json-llm.js +32 -0
  1211. package/packages/typescript/src/utils/model-errors.d.ts +3 -0
  1212. package/packages/typescript/src/utils/model-errors.d.ts.map +1 -0
  1213. package/packages/typescript/src/utils/model-errors.js +23 -0
  1214. package/packages/typescript/src/utils/node.d.ts +8 -0
  1215. package/packages/typescript/src/utils/node.d.ts.map +1 -0
  1216. package/packages/typescript/src/utils/node.js +12 -0
  1217. package/packages/typescript/src/utils/paths.d.ts +97 -0
  1218. package/packages/typescript/src/utils/paths.d.ts.map +1 -0
  1219. package/packages/typescript/src/utils/paths.js +204 -0
  1220. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts +163 -0
  1221. package/packages/typescript/src/utils/prompt-batcher/batcher.d.ts.map +1 -0
  1222. package/packages/typescript/src/utils/prompt-batcher/batcher.js +896 -0
  1223. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts +15 -0
  1224. package/packages/typescript/src/utils/prompt-batcher/dispatcher.d.ts.map +1 -0
  1225. package/packages/typescript/src/utils/prompt-batcher/dispatcher.js +230 -0
  1226. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts +66 -0
  1227. package/packages/typescript/src/utils/prompt-batcher/shared.d.ts.map +1 -0
  1228. package/packages/typescript/src/utils/prompt-batcher/shared.js +101 -0
  1229. package/packages/typescript/src/utils/prompt-batcher.d.ts +5 -0
  1230. package/packages/typescript/src/utils/prompt-batcher.d.ts.map +1 -0
  1231. package/packages/typescript/src/utils/prompt-batcher.js +4 -0
  1232. package/packages/typescript/src/utils/retry.d.ts +128 -0
  1233. package/packages/typescript/src/utils/retry.d.ts.map +1 -0
  1234. package/packages/typescript/src/utils/retry.js +190 -0
  1235. package/packages/typescript/src/utils/server-health.d.ts +35 -0
  1236. package/packages/typescript/src/utils/server-health.d.ts.map +1 -0
  1237. package/packages/typescript/src/utils/server-health.js +76 -0
  1238. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts +12 -0
  1239. package/packages/typescript/src/utils/slice-to-fit-budget.d.ts.map +1 -0
  1240. package/packages/typescript/src/utils/slice-to-fit-budget.js +36 -0
  1241. package/packages/typescript/src/utils/state-dir.d.ts +19 -0
  1242. package/packages/typescript/src/utils/state-dir.d.ts.map +1 -0
  1243. package/packages/typescript/src/utils/state-dir.js +24 -0
  1244. package/packages/typescript/src/utils/streaming.d.ts +275 -0
  1245. package/packages/typescript/src/utils/streaming.d.ts.map +1 -0
  1246. package/packages/typescript/src/utils/streaming.js +774 -0
  1247. package/packages/typescript/src/utils/text-normalize.d.ts +23 -0
  1248. package/packages/typescript/src/utils/text-normalize.d.ts.map +1 -0
  1249. package/packages/typescript/src/utils/text-normalize.js +42 -0
  1250. package/packages/typescript/src/utils/text-splitting.d.ts +14 -0
  1251. package/packages/typescript/src/utils/text-splitting.d.ts.map +1 -0
  1252. package/packages/typescript/src/utils/text-splitting.js +66 -0
  1253. package/packages/typescript/src/utils/toon.d.ts +8 -0
  1254. package/packages/typescript/src/utils/toon.d.ts.map +1 -0
  1255. package/packages/typescript/src/utils/toon.js +346 -0
  1256. package/packages/typescript/src/utils/type-guards.d.ts +25 -0
  1257. package/packages/typescript/src/utils/type-guards.d.ts.map +1 -0
  1258. package/packages/typescript/src/utils/type-guards.js +73 -0
  1259. package/packages/typescript/src/utils/union-find.d.ts +30 -0
  1260. package/packages/typescript/src/utils/union-find.d.ts.map +1 -0
  1261. package/packages/typescript/src/utils/union-find.js +81 -0
  1262. package/packages/typescript/src/utils.d.ts +192 -0
  1263. package/packages/typescript/src/utils.d.ts.map +1 -0
  1264. package/packages/typescript/src/utils.js +1120 -0
  1265. package/packages/typescript/src/validation/index.d.ts +8 -0
  1266. package/packages/typescript/src/validation/index.d.ts.map +1 -0
  1267. package/packages/typescript/src/validation/index.js +7 -0
  1268. package/packages/typescript/src/validation/keywords.d.ts +26 -0
  1269. package/packages/typescript/src/validation/keywords.d.ts.map +1 -0
  1270. package/packages/typescript/src/validation/keywords.js +76 -0
  1271. package/packages/typescript/src/validation/secrets.d.ts +94 -0
  1272. package/packages/typescript/src/validation/secrets.d.ts.map +1 -0
  1273. package/packages/typescript/src/validation/secrets.js +399 -0
  1274. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts +9 -0
  1275. package/packages/ui/src/components/composites/chat/chat-attachment-strip.d.ts.map +1 -0
  1276. package/packages/ui/src/components/composites/chat/chat-attachment-strip.js +8 -0
  1277. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts +14 -0
  1278. package/packages/ui/src/components/composites/chat/chat-bubble.d.ts.map +1 -0
  1279. package/packages/ui/src/components/composites/chat/chat-bubble.js +7 -0
  1280. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts +14 -0
  1281. package/packages/ui/src/components/composites/chat/chat-composer-shell.d.ts.map +1 -0
  1282. package/packages/ui/src/components/composites/chat/chat-composer-shell.js +25 -0
  1283. package/packages/ui/src/components/composites/chat/chat-composer.d.ts +45 -0
  1284. package/packages/ui/src/components/composites/chat/chat-composer.d.ts.map +1 -0
  1285. package/packages/ui/src/components/composites/chat/chat-composer.js +217 -0
  1286. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts +21 -0
  1287. package/packages/ui/src/components/composites/chat/chat-conversation-item.d.ts.map +1 -0
  1288. package/packages/ui/src/components/composites/chat/chat-conversation-item.js +118 -0
  1289. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts +22 -0
  1290. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.d.ts.map +1 -0
  1291. package/packages/ui/src/components/composites/chat/chat-conversation-rename-dialog.js +14 -0
  1292. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts +19 -0
  1293. package/packages/ui/src/components/composites/chat/chat-empty-state.d.ts.map +1 -0
  1294. package/packages/ui/src/components/composites/chat/chat-empty-state.js +8 -0
  1295. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts +14 -0
  1296. package/packages/ui/src/components/composites/chat/chat-message-actions.d.ts.map +1 -0
  1297. package/packages/ui/src/components/composites/chat/chat-message-actions.js +10 -0
  1298. package/packages/ui/src/components/composites/chat/chat-message.d.ts +18 -0
  1299. package/packages/ui/src/components/composites/chat/chat-message.d.ts.map +1 -0
  1300. package/packages/ui/src/components/composites/chat/chat-message.js +260 -0
  1301. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts +54 -0
  1302. package/packages/ui/src/components/composites/chat/chat-sidebar.d.ts.map +1 -0
  1303. package/packages/ui/src/components/composites/chat/chat-sidebar.js +64 -0
  1304. package/packages/ui/src/components/composites/chat/chat-source.d.ts +23 -0
  1305. package/packages/ui/src/components/composites/chat/chat-source.d.ts.map +1 -0
  1306. package/packages/ui/src/components/composites/chat/chat-source.js +60 -0
  1307. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts +22 -0
  1308. package/packages/ui/src/components/composites/chat/chat-thread-layout.d.ts.map +1 -0
  1309. package/packages/ui/src/components/composites/chat/chat-thread-layout.js +37 -0
  1310. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts +19 -0
  1311. package/packages/ui/src/components/composites/chat/chat-transcript.d.ts.map +1 -0
  1312. package/packages/ui/src/components/composites/chat/chat-transcript.js +82 -0
  1313. package/packages/ui/src/components/composites/chat/chat-types.d.ts +91 -0
  1314. package/packages/ui/src/components/composites/chat/chat-types.d.ts.map +1 -0
  1315. package/packages/ui/src/components/composites/chat/chat-types.js +1 -0
  1316. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts +10 -0
  1317. package/packages/ui/src/components/composites/chat/chat-typing-indicator.d.ts.map +1 -0
  1318. package/packages/ui/src/components/composites/chat/chat-typing-indicator.js +10 -0
  1319. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts +13 -0
  1320. package/packages/ui/src/components/composites/chat/create-task-popover.d.ts.map +1 -0
  1321. package/packages/ui/src/components/composites/chat/create-task-popover.js +44 -0
  1322. package/packages/ui/src/components/composites/chat/index.d.ts +17 -0
  1323. package/packages/ui/src/components/composites/chat/index.d.ts.map +1 -0
  1324. package/packages/ui/src/components/composites/chat/index.js +16 -0
  1325. package/packages/ui/src/components/composites/form-field/form-field.d.ts +14 -0
  1326. package/packages/ui/src/components/composites/form-field/form-field.d.ts.map +1 -0
  1327. package/packages/ui/src/components/composites/form-field/form-field.js +8 -0
  1328. package/packages/ui/src/components/composites/form-field/index.d.ts +2 -0
  1329. package/packages/ui/src/components/composites/form-field/index.d.ts.map +1 -0
  1330. package/packages/ui/src/components/composites/form-field/index.js +1 -0
  1331. package/packages/ui/src/components/composites/index.d.ts +27 -0
  1332. package/packages/ui/src/components/composites/index.d.ts.map +1 -0
  1333. package/packages/ui/src/components/composites/index.js +26 -0
  1334. package/packages/ui/src/components/composites/page-panel/index.d.ts +29 -0
  1335. package/packages/ui/src/components/composites/page-panel/index.d.ts.map +1 -0
  1336. package/packages/ui/src/components/composites/page-panel/index.js +28 -0
  1337. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts +4 -0
  1338. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.d.ts.map +1 -0
  1339. package/packages/ui/src/components/composites/page-panel/page-panel-collapsible-section.js +60 -0
  1340. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts +3 -0
  1341. package/packages/ui/src/components/composites/page-panel/page-panel-empty.d.ts.map +1 -0
  1342. package/packages/ui/src/components/composites/page-panel/page-panel-empty.js +15 -0
  1343. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts +5 -0
  1344. package/packages/ui/src/components/composites/page-panel/page-panel-frame.d.ts.map +1 -0
  1345. package/packages/ui/src/components/composites/page-panel/page-panel-frame.js +9 -0
  1346. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts +7 -0
  1347. package/packages/ui/src/components/composites/page-panel/page-panel-header.d.ts.map +1 -0
  1348. package/packages/ui/src/components/composites/page-panel/page-panel-header.js +30 -0
  1349. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts +3 -0
  1350. package/packages/ui/src/components/composites/page-panel/page-panel-loading.d.ts.map +1 -0
  1351. package/packages/ui/src/components/composites/page-panel/page-panel-loading.js +13 -0
  1352. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts +7 -0
  1353. package/packages/ui/src/components/composites/page-panel/page-panel-root.d.ts.map +1 -0
  1354. package/packages/ui/src/components/composites/page-panel/page-panel-root.js +17 -0
  1355. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts +4 -0
  1356. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.d.ts.map +1 -0
  1357. package/packages/ui/src/components/composites/page-panel/page-panel-toolbar.js +6 -0
  1358. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts +66 -0
  1359. package/packages/ui/src/components/composites/page-panel/page-panel-types.d.ts.map +1 -0
  1360. package/packages/ui/src/components/composites/page-panel/page-panel-types.js +1 -0
  1361. package/packages/ui/src/components/composites/search/index.d.ts +3 -0
  1362. package/packages/ui/src/components/composites/search/index.d.ts.map +1 -0
  1363. package/packages/ui/src/components/composites/search/index.js +2 -0
  1364. package/packages/ui/src/components/composites/search/search-input.d.ts.map +1 -0
  1365. package/packages/ui/src/components/composites/search/search-input.js +10 -0
  1366. package/packages/ui/src/components/composites/search/searchbar.d.ts +18 -0
  1367. package/packages/ui/src/components/composites/search/searchbar.d.ts.map +1 -0
  1368. package/packages/ui/src/components/composites/search/searchbar.js +25 -0
  1369. package/packages/ui/src/components/composites/sidebar/index.d.ts +11 -0
  1370. package/packages/ui/src/components/composites/sidebar/index.d.ts.map +1 -0
  1371. package/packages/ui/src/components/composites/sidebar/index.js +10 -0
  1372. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts +15 -0
  1373. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.d.ts.map +1 -0
  1374. package/packages/ui/src/components/composites/sidebar/sidebar-auto-rail.js +292 -0
  1375. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts +4 -0
  1376. package/packages/ui/src/components/composites/sidebar/sidebar-body.d.ts.map +1 -0
  1377. package/packages/ui/src/components/composites/sidebar/sidebar-body.js +7 -0
  1378. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts +11 -0
  1379. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.d.ts.map +1 -0
  1380. package/packages/ui/src/components/composites/sidebar/sidebar-collapsed-rail.js +13 -0
  1381. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts +78 -0
  1382. package/packages/ui/src/components/composites/sidebar/sidebar-content.d.ts.map +1 -0
  1383. package/packages/ui/src/components/composites/sidebar/sidebar-content.js +94 -0
  1384. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts +3 -0
  1385. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.d.ts.map +1 -0
  1386. package/packages/ui/src/components/composites/sidebar/sidebar-filter-bar.js +14 -0
  1387. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts +3 -0
  1388. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.d.ts.map +1 -0
  1389. package/packages/ui/src/components/composites/sidebar/sidebar-header-stack.js +6 -0
  1390. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts +9 -0
  1391. package/packages/ui/src/components/composites/sidebar/sidebar-header.d.ts.map +1 -0
  1392. package/packages/ui/src/components/composites/sidebar/sidebar-header.js +6 -0
  1393. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts +3 -0
  1394. package/packages/ui/src/components/composites/sidebar/sidebar-panel.d.ts.map +1 -0
  1395. package/packages/ui/src/components/composites/sidebar/sidebar-panel.js +18 -0
  1396. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts +4 -0
  1397. package/packages/ui/src/components/composites/sidebar/sidebar-root.d.ts.map +1 -0
  1398. package/packages/ui/src/components/composites/sidebar/sidebar-root.js +491 -0
  1399. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts +3 -0
  1400. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.d.ts.map +1 -0
  1401. package/packages/ui/src/components/composites/sidebar/sidebar-scroll-region.js +18 -0
  1402. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts +77 -0
  1403. package/packages/ui/src/components/composites/sidebar/sidebar-types.d.ts.map +1 -0
  1404. package/packages/ui/src/components/composites/sidebar/sidebar-types.js +1 -0
  1405. package/packages/ui/src/components/composites/skills/index.d.ts +2 -0
  1406. package/packages/ui/src/components/composites/skills/index.d.ts.map +1 -0
  1407. package/packages/ui/src/components/composites/skills/index.js +1 -0
  1408. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts +16 -0
  1409. package/packages/ui/src/components/composites/skills/skill-sidebar-item.d.ts.map +1 -0
  1410. package/packages/ui/src/components/composites/skills/skill-sidebar-item.js +7 -0
  1411. package/packages/ui/src/components/composites/trajectories/index.d.ts +5 -0
  1412. package/packages/ui/src/components/composites/trajectories/index.d.ts.map +1 -0
  1413. package/packages/ui/src/components/composites/trajectories/index.js +4 -0
  1414. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts +13 -0
  1415. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.d.ts.map +1 -0
  1416. package/packages/ui/src/components/composites/trajectories/trajectory-code-block.js +13 -0
  1417. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts +34 -0
  1418. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.d.ts.map +1 -0
  1419. package/packages/ui/src/components/composites/trajectories/trajectory-llm-call-card.js +14 -0
  1420. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts +26 -0
  1421. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.d.ts.map +1 -0
  1422. package/packages/ui/src/components/composites/trajectories/trajectory-pipeline-graph.js +46 -0
  1423. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts +15 -0
  1424. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.d.ts.map +1 -0
  1425. package/packages/ui/src/components/composites/trajectories/trajectory-sidebar-item.js +8 -0
  1426. package/packages/ui/src/components/primitives/index.d.ts +26 -0
  1427. package/packages/ui/src/components/primitives/index.d.ts.map +1 -0
  1428. package/packages/ui/src/components/primitives/index.js +25 -0
  1429. package/packages/ui/src/components/ui/admin-dialog.d.ts +50 -0
  1430. package/packages/ui/src/components/ui/admin-dialog.d.ts.map +1 -0
  1431. package/packages/ui/src/components/ui/admin-dialog.js +48 -0
  1432. package/packages/ui/src/components/ui/badge.d.ts +10 -0
  1433. package/packages/ui/src/components/ui/badge.d.ts.map +1 -0
  1434. package/packages/ui/src/components/ui/badge.js +21 -0
  1435. package/packages/ui/src/components/ui/banner.d.ts +17 -0
  1436. package/packages/ui/src/components/ui/banner.d.ts.map +1 -0
  1437. package/packages/ui/src/components/ui/banner.js +29 -0
  1438. package/packages/ui/src/components/ui/button.d.ts +13 -0
  1439. package/packages/ui/src/components/ui/button.d.ts.map +1 -0
  1440. package/packages/ui/src/components/ui/button.js +40 -0
  1441. package/packages/ui/src/components/ui/card.d.ts +15 -0
  1442. package/packages/ui/src/components/ui/card.d.ts.map +1 -0
  1443. package/packages/ui/src/components/ui/card.js +32 -0
  1444. package/packages/ui/src/components/ui/checkbox.d.ts.map +1 -0
  1445. package/packages/ui/src/components/ui/confirm-delete.d.ts +20 -0
  1446. package/packages/ui/src/components/ui/confirm-delete.d.ts.map +1 -0
  1447. package/packages/ui/src/components/ui/confirm-delete.js +16 -0
  1448. package/packages/ui/src/components/ui/confirm-dialog.d.ts +49 -0
  1449. package/packages/ui/src/components/ui/confirm-dialog.d.ts.map +1 -0
  1450. package/packages/ui/src/components/ui/confirm-dialog.js +90 -0
  1451. package/packages/ui/src/components/ui/connection-status.d.ts +15 -0
  1452. package/packages/ui/src/components/ui/connection-status.d.ts.map +1 -0
  1453. package/packages/ui/src/components/ui/connection-status.js +25 -0
  1454. package/packages/ui/src/components/ui/copy-button.d.ts.map +1 -0
  1455. package/packages/ui/src/components/ui/dialog.d.ts +25 -0
  1456. package/packages/ui/src/components/ui/dialog.d.ts.map +1 -0
  1457. package/packages/ui/src/components/ui/dialog.js +23 -0
  1458. package/packages/ui/src/components/ui/drawer-sheet.d.ts +19 -0
  1459. package/packages/ui/src/components/ui/drawer-sheet.d.ts.map +1 -0
  1460. package/packages/ui/src/components/ui/drawer-sheet.js +21 -0
  1461. package/packages/ui/src/components/ui/dropdown-menu.d.ts.map +1 -0
  1462. package/packages/ui/src/components/ui/dropdown-menu.js +35 -0
  1463. package/packages/ui/src/components/ui/empty-state.d.ts.map +1 -0
  1464. package/packages/ui/src/components/ui/error-boundary.d.ts +22 -0
  1465. package/packages/ui/src/components/ui/error-boundary.d.ts.map +1 -0
  1466. package/packages/ui/src/components/ui/error-boundary.js +27 -0
  1467. package/packages/ui/src/components/ui/field-switch.d.ts +8 -0
  1468. package/packages/ui/src/components/ui/field-switch.d.ts.map +1 -0
  1469. package/packages/ui/src/components/ui/field-switch.js +10 -0
  1470. package/packages/ui/src/components/ui/field.d.ts +12 -0
  1471. package/packages/ui/src/components/ui/field.d.ts.map +1 -0
  1472. package/packages/ui/src/components/ui/field.js +21 -0
  1473. package/packages/ui/src/components/ui/form-select.d.ts +14 -0
  1474. package/packages/ui/src/components/ui/form-select.d.ts.map +1 -0
  1475. package/packages/ui/src/components/ui/form-select.js +9 -0
  1476. package/packages/ui/src/components/ui/grid.d.ts +10 -0
  1477. package/packages/ui/src/components/ui/grid.d.ts.map +1 -0
  1478. package/packages/ui/src/components/ui/grid.js +31 -0
  1479. package/packages/ui/src/components/ui/input.d.ts +12 -0
  1480. package/packages/ui/src/components/ui/input.d.ts.map +1 -0
  1481. package/packages/ui/src/components/ui/input.js +29 -0
  1482. package/packages/ui/src/components/ui/label.d.ts +5 -0
  1483. package/packages/ui/src/components/ui/label.d.ts.map +1 -0
  1484. package/packages/ui/src/components/ui/label.js +10 -0
  1485. package/packages/ui/src/components/ui/new-action-button.d.ts +7 -0
  1486. package/packages/ui/src/components/ui/new-action-button.d.ts.map +1 -0
  1487. package/packages/ui/src/components/ui/new-action-button.js +13 -0
  1488. package/packages/ui/src/components/ui/popover.d.ts.map +1 -0
  1489. package/packages/ui/src/components/ui/save-footer.d.ts.map +1 -0
  1490. package/packages/ui/src/components/ui/save-footer.js +10 -0
  1491. package/packages/ui/src/components/ui/section-card.d.ts.map +1 -0
  1492. package/packages/ui/src/components/ui/section-card.js +10 -0
  1493. package/packages/ui/src/components/ui/segmented-control.d.ts +18 -0
  1494. package/packages/ui/src/components/ui/segmented-control.d.ts.map +1 -0
  1495. package/packages/ui/src/components/ui/segmented-control.js +10 -0
  1496. package/packages/ui/src/components/ui/select.d.ts.map +1 -0
  1497. package/packages/ui/src/components/ui/select.js +27 -0
  1498. package/packages/ui/src/components/ui/separator.d.ts.map +1 -0
  1499. package/packages/ui/src/components/ui/settings-controls.d.ts +41 -0
  1500. package/packages/ui/src/components/ui/settings-controls.d.ts.map +1 -0
  1501. package/packages/ui/src/components/ui/settings-controls.js +60 -0
  1502. package/packages/ui/src/components/ui/skeleton.d.ts.map +1 -0
  1503. package/packages/ui/src/components/ui/skeleton.js +24 -0
  1504. package/packages/ui/src/components/ui/slider.d.ts.map +1 -0
  1505. package/packages/ui/src/components/ui/slider.js +7 -0
  1506. package/packages/ui/src/components/ui/sonner.d.ts +2 -0
  1507. package/packages/ui/src/components/ui/sonner.d.ts.map +1 -0
  1508. package/packages/ui/src/components/ui/sonner.js +1 -0
  1509. package/packages/ui/src/components/ui/spinner.d.ts.map +1 -0
  1510. package/packages/ui/src/components/ui/stack.d.ts +11 -0
  1511. package/packages/ui/src/components/ui/stack.d.ts.map +1 -0
  1512. package/packages/ui/src/components/ui/stack.js +40 -0
  1513. package/packages/ui/src/components/ui/status-badge.d.ts +27 -0
  1514. package/packages/ui/src/components/ui/status-badge.d.ts.map +1 -0
  1515. package/packages/ui/src/components/ui/status-badge.js +70 -0
  1516. package/packages/ui/src/components/ui/switch.d.ts.map +1 -0
  1517. package/packages/ui/src/components/ui/switch.js +7 -0
  1518. package/packages/ui/src/components/ui/tabs.d.ts.map +1 -0
  1519. package/packages/ui/src/components/ui/tabs.js +12 -0
  1520. package/packages/ui/src/components/ui/tag-editor.d.ts +12 -0
  1521. package/packages/ui/src/components/ui/tag-editor.d.ts.map +1 -0
  1522. package/packages/ui/src/components/ui/tag-editor.js +34 -0
  1523. package/packages/ui/src/components/ui/tag-input.d.ts +3 -0
  1524. package/packages/ui/src/components/ui/tag-input.d.ts.map +1 -0
  1525. package/packages/ui/src/components/ui/tag-input.js +1 -0
  1526. package/packages/ui/src/components/ui/textarea.d.ts +12 -0
  1527. package/packages/ui/src/components/ui/textarea.d.ts.map +1 -0
  1528. package/packages/ui/src/components/ui/textarea.js +29 -0
  1529. package/packages/ui/src/components/ui/themed-select.d.ts +22 -0
  1530. package/packages/ui/src/components/ui/themed-select.d.ts.map +1 -0
  1531. package/packages/ui/src/components/ui/themed-select.js +137 -0
  1532. package/packages/ui/src/components/ui/tooltip-extended.d.ts +54 -0
  1533. package/packages/ui/src/components/ui/tooltip-extended.d.ts.map +1 -0
  1534. package/packages/ui/src/components/ui/tooltip-extended.js +114 -0
  1535. package/packages/ui/src/components/ui/tooltip.d.ts +18 -0
  1536. package/packages/ui/src/components/ui/tooltip.d.ts.map +1 -0
  1537. package/packages/ui/src/components/ui/tooltip.js +13 -0
  1538. package/packages/ui/src/components/ui/typography.d.ts +15 -0
  1539. package/packages/ui/src/components/ui/typography.d.ts.map +1 -0
  1540. package/packages/ui/src/components/ui/typography.js +46 -0
  1541. package/packages/ui/src/hooks/index.d.ts +6 -0
  1542. package/packages/ui/src/hooks/index.d.ts.map +1 -0
  1543. package/packages/ui/src/hooks/index.js +5 -0
  1544. package/packages/ui/src/hooks/useClickOutside.d.ts +3 -0
  1545. package/packages/ui/src/hooks/useClickOutside.d.ts.map +1 -0
  1546. package/packages/ui/src/hooks/useClickOutside.js +22 -0
  1547. package/packages/ui/src/hooks/useDocumentVisibility.d.ts +3 -0
  1548. package/packages/ui/src/hooks/useDocumentVisibility.d.ts.map +1 -0
  1549. package/packages/ui/src/hooks/useDocumentVisibility.js +28 -0
  1550. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts +13 -0
  1551. package/packages/ui/src/hooks/useKeyboardShortcuts.d.ts.map +1 -0
  1552. package/packages/ui/src/hooks/useKeyboardShortcuts.js +34 -0
  1553. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts +16 -0
  1554. package/packages/ui/src/hooks/useLinkedSidebarSelection.d.ts.map +1 -0
  1555. package/packages/ui/src/hooks/useLinkedSidebarSelection.js +117 -0
  1556. package/packages/ui/src/hooks/useTimeout.d.ts +5 -0
  1557. package/packages/ui/src/hooks/useTimeout.d.ts.map +1 -0
  1558. package/packages/ui/src/hooks/useTimeout.js +26 -0
  1559. package/packages/ui/src/index.d.ts +8 -0
  1560. package/packages/ui/src/index.d.ts.map +1 -0
  1561. package/packages/ui/src/index.js +7 -0
  1562. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts +11 -0
  1563. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.d.ts.map +1 -0
  1564. package/packages/ui/src/layouts/chat-panel-layout/chat-panel-layout.js +37 -0
  1565. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts +2 -0
  1566. package/packages/ui/src/layouts/chat-panel-layout/index.d.ts.map +1 -0
  1567. package/packages/ui/src/layouts/chat-panel-layout/index.js +1 -0
  1568. package/packages/ui/src/layouts/content-layout/content-layout.d.ts +21 -0
  1569. package/packages/ui/src/layouts/content-layout/content-layout.d.ts.map +1 -0
  1570. package/packages/ui/src/layouts/content-layout/content-layout.js +5 -0
  1571. package/packages/ui/src/layouts/content-layout/index.d.ts +2 -0
  1572. package/packages/ui/src/layouts/content-layout/index.d.ts.map +1 -0
  1573. package/packages/ui/src/layouts/content-layout/index.js +1 -0
  1574. package/packages/ui/src/layouts/index.d.ts +5 -0
  1575. package/packages/ui/src/layouts/index.d.ts.map +1 -0
  1576. package/packages/ui/src/layouts/index.js +4 -0
  1577. package/packages/ui/src/layouts/layout-test-utils.d.ts +6 -0
  1578. package/packages/ui/src/layouts/layout-test-utils.d.ts.map +1 -0
  1579. package/packages/ui/src/layouts/layout-test-utils.js +36 -0
  1580. package/packages/ui/src/layouts/page-layout/index.d.ts +5 -0
  1581. package/packages/ui/src/layouts/page-layout/index.d.ts.map +1 -0
  1582. package/packages/ui/src/layouts/page-layout/index.js +4 -0
  1583. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts +287 -0
  1584. package/packages/ui/src/layouts/page-layout/page-layout-header.d.ts.map +1 -0
  1585. package/packages/ui/src/layouts/page-layout/page-layout-header.js +8 -0
  1586. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts +3 -0
  1587. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.d.ts.map +1 -0
  1588. package/packages/ui/src/layouts/page-layout/page-layout-mobile-drawer.js +18 -0
  1589. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts +15 -0
  1590. package/packages/ui/src/layouts/page-layout/page-layout-types.d.ts.map +1 -0
  1591. package/packages/ui/src/layouts/page-layout/page-layout-types.js +1 -0
  1592. package/packages/ui/src/layouts/page-layout/page-layout.d.ts +3 -0
  1593. package/packages/ui/src/layouts/page-layout/page-layout.d.ts.map +1 -0
  1594. package/packages/ui/src/layouts/page-layout/page-layout.js +5 -0
  1595. package/packages/ui/src/layouts/workspace-layout/index.d.ts +3 -0
  1596. package/packages/ui/src/layouts/workspace-layout/index.d.ts.map +1 -0
  1597. package/packages/ui/src/layouts/workspace-layout/index.js +2 -0
  1598. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts +19 -0
  1599. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.d.ts.map +1 -0
  1600. package/packages/ui/src/layouts/workspace-layout/workspace-layout-types.js +1 -0
  1601. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts +3 -0
  1602. package/packages/ui/src/layouts/workspace-layout/workspace-layout.d.ts.map +1 -0
  1603. package/packages/ui/src/layouts/workspace-layout/workspace-layout.js +59 -0
  1604. package/packages/ui/src/lib/floating-layers.d.ts +17 -0
  1605. package/packages/ui/src/lib/floating-layers.d.ts.map +1 -0
  1606. package/packages/ui/src/lib/floating-layers.js +20 -0
  1607. package/packages/ui/src/lib/utils.d.ts +3 -0
  1608. package/packages/ui/src/lib/utils.d.ts.map +1 -0
  1609. package/packages/ui/src/lib/utils.js +5 -0
  1610. package/packages/ui/src/stories/layout-story-fixtures.d.ts +14 -0
  1611. package/packages/ui/src/stories/layout-story-fixtures.d.ts.map +1 -0
  1612. package/packages/ui/src/stories/layout-story-fixtures.js +33 -0
  1613. package/packages/ui/src/types/onboarding.d.ts +8 -0
  1614. package/packages/ui/src/types/onboarding.d.ts.map +1 -0
  1615. package/packages/ui/src/types/onboarding.js +17 -0
  1616. package/styles/electrobun-mac-window-drag.css +94 -0
  1617. package/styles/theme.css +73 -0
  1618. package/README.md +0 -6
  1619. package/dist/components/ui/badge.d.ts +0 -10
  1620. package/dist/components/ui/badge.d.ts.map +0 -1
  1621. package/dist/components/ui/badge.js +0 -20
  1622. package/dist/components/ui/banner.d.ts +0 -18
  1623. package/dist/components/ui/banner.d.ts.map +0 -1
  1624. package/dist/components/ui/banner.js +0 -27
  1625. package/dist/components/ui/button.d.ts +0 -12
  1626. package/dist/components/ui/button.d.ts.map +0 -1
  1627. package/dist/components/ui/button.js +0 -33
  1628. package/dist/components/ui/card.d.ts +0 -9
  1629. package/dist/components/ui/card.d.ts.map +0 -1
  1630. package/dist/components/ui/card.js +0 -16
  1631. package/dist/components/ui/chat-atoms.d.ts +0 -26
  1632. package/dist/components/ui/chat-atoms.d.ts.map +0 -1
  1633. package/dist/components/ui/chat-atoms.js +0 -17
  1634. package/dist/components/ui/checkbox.d.ts.map +0 -1
  1635. package/dist/components/ui/confirm-delete.d.ts +0 -12
  1636. package/dist/components/ui/confirm-delete.d.ts.map +0 -1
  1637. package/dist/components/ui/confirm-delete.js +0 -13
  1638. package/dist/components/ui/confirm-dialog.d.ts +0 -24
  1639. package/dist/components/ui/confirm-dialog.d.ts.map +0 -1
  1640. package/dist/components/ui/confirm-dialog.js +0 -55
  1641. package/dist/components/ui/connection-status.d.ts +0 -9
  1642. package/dist/components/ui/connection-status.d.ts.map +0 -1
  1643. package/dist/components/ui/connection-status.js +0 -25
  1644. package/dist/components/ui/copy-button.d.ts.map +0 -1
  1645. package/dist/components/ui/dialog.d.ts +0 -20
  1646. package/dist/components/ui/dialog.d.ts.map +0 -1
  1647. package/dist/components/ui/dialog.js +0 -22
  1648. package/dist/components/ui/dropdown-menu.d.ts.map +0 -1
  1649. package/dist/components/ui/dropdown-menu.js +0 -35
  1650. package/dist/components/ui/empty-state.d.ts.map +0 -1
  1651. package/dist/components/ui/error-boundary.d.ts +0 -18
  1652. package/dist/components/ui/error-boundary.d.ts.map +0 -1
  1653. package/dist/components/ui/error-boundary.js +0 -27
  1654. package/dist/components/ui/grid.d.ts +0 -11
  1655. package/dist/components/ui/grid.d.ts.map +0 -1
  1656. package/dist/components/ui/grid.js +0 -30
  1657. package/dist/components/ui/input.d.ts +0 -6
  1658. package/dist/components/ui/input.d.ts.map +0 -1
  1659. package/dist/components/ui/input.js +0 -8
  1660. package/dist/components/ui/label.d.ts +0 -6
  1661. package/dist/components/ui/label.d.ts.map +0 -1
  1662. package/dist/components/ui/label.js +0 -9
  1663. package/dist/components/ui/popover.d.ts.map +0 -1
  1664. package/dist/components/ui/save-footer.d.ts.map +0 -1
  1665. package/dist/components/ui/save-footer.js +0 -9
  1666. package/dist/components/ui/search-bar.d.ts +0 -17
  1667. package/dist/components/ui/search-bar.d.ts.map +0 -1
  1668. package/dist/components/ui/search-bar.js +0 -19
  1669. package/dist/components/ui/search-input.d.ts.map +0 -1
  1670. package/dist/components/ui/search-input.js +0 -9
  1671. package/dist/components/ui/section-card.d.ts.map +0 -1
  1672. package/dist/components/ui/section-card.js +0 -9
  1673. package/dist/components/ui/select.d.ts.map +0 -1
  1674. package/dist/components/ui/select.js +0 -26
  1675. package/dist/components/ui/separator.d.ts.map +0 -1
  1676. package/dist/components/ui/skeleton.d.ts.map +0 -1
  1677. package/dist/components/ui/skeleton.js +0 -25
  1678. package/dist/components/ui/slider.d.ts.map +0 -1
  1679. package/dist/components/ui/slider.js +0 -7
  1680. package/dist/components/ui/sonner.d.ts +0 -5
  1681. package/dist/components/ui/sonner.d.ts.map +0 -1
  1682. package/dist/components/ui/sonner.js +0 -15
  1683. package/dist/components/ui/spinner.d.ts.map +0 -1
  1684. package/dist/components/ui/stack.d.ts +0 -13
  1685. package/dist/components/ui/stack.d.ts.map +0 -1
  1686. package/dist/components/ui/stack.js +0 -39
  1687. package/dist/components/ui/status-badge.d.ts +0 -20
  1688. package/dist/components/ui/status-badge.d.ts.map +0 -1
  1689. package/dist/components/ui/status-badge.js +0 -41
  1690. package/dist/components/ui/switch.d.ts.map +0 -1
  1691. package/dist/components/ui/switch.js +0 -7
  1692. package/dist/components/ui/tabs.d.ts.map +0 -1
  1693. package/dist/components/ui/tabs.js +0 -12
  1694. package/dist/components/ui/tag-editor.d.ts +0 -24
  1695. package/dist/components/ui/tag-editor.d.ts.map +0 -1
  1696. package/dist/components/ui/tag-editor.js +0 -32
  1697. package/dist/components/ui/tag-input.d.ts +0 -19
  1698. package/dist/components/ui/tag-input.d.ts.map +0 -1
  1699. package/dist/components/ui/tag-input.js +0 -28
  1700. package/dist/components/ui/textarea.d.ts +0 -6
  1701. package/dist/components/ui/textarea.d.ts.map +0 -1
  1702. package/dist/components/ui/textarea.js +0 -8
  1703. package/dist/components/ui/themed-select.d.ts +0 -27
  1704. package/dist/components/ui/themed-select.d.ts.map +0 -1
  1705. package/dist/components/ui/themed-select.js +0 -57
  1706. package/dist/components/ui/tooltip-extended.d.ts +0 -76
  1707. package/dist/components/ui/tooltip-extended.d.ts.map +0 -1
  1708. package/dist/components/ui/tooltip-extended.js +0 -128
  1709. package/dist/components/ui/tooltip.d.ts +0 -8
  1710. package/dist/components/ui/tooltip.d.ts.map +0 -1
  1711. package/dist/components/ui/tooltip.js +0 -10
  1712. package/dist/components/ui/typography.d.ts +0 -17
  1713. package/dist/components/ui/typography.d.ts.map +0 -1
  1714. package/dist/components/ui/typography.js +0 -44
  1715. package/dist/index.d.ts +0 -42
  1716. package/dist/index.d.ts.map +0 -1
  1717. package/dist/index.js +0 -43
  1718. package/dist/lib/button-styles.d.ts +0 -12
  1719. package/dist/lib/button-styles.d.ts.map +0 -1
  1720. package/dist/lib/button-styles.js +0 -11
  1721. package/dist/lib/utils.d.ts +0 -6
  1722. package/dist/lib/utils.d.ts.map +0 -1
  1723. package/dist/lib/utils.js +0 -8
  1724. package/dist/package.json +0 -65
  1725. package/dist/styles/theme.css +0 -193
  1726. package/src/styles/theme.css +0 -193
  1727. /package/{dist/components/ui → packages/ui/src/components/composites/search}/search-input.d.ts +0 -0
  1728. /package/{dist → packages/ui/src}/components/ui/checkbox.d.ts +0 -0
  1729. /package/{dist → packages/ui/src}/components/ui/checkbox.js +0 -0
  1730. /package/{dist → packages/ui/src}/components/ui/copy-button.d.ts +0 -0
  1731. /package/{dist → packages/ui/src}/components/ui/copy-button.js +0 -0
  1732. /package/{dist → packages/ui/src}/components/ui/dropdown-menu.d.ts +0 -0
  1733. /package/{dist → packages/ui/src}/components/ui/empty-state.d.ts +0 -0
  1734. /package/{dist → packages/ui/src}/components/ui/empty-state.js +0 -0
  1735. /package/{dist → packages/ui/src}/components/ui/popover.d.ts +0 -0
  1736. /package/{dist → packages/ui/src}/components/ui/popover.js +0 -0
  1737. /package/{dist → packages/ui/src}/components/ui/save-footer.d.ts +0 -0
  1738. /package/{dist → packages/ui/src}/components/ui/section-card.d.ts +0 -0
  1739. /package/{dist → packages/ui/src}/components/ui/select.d.ts +0 -0
  1740. /package/{dist → packages/ui/src}/components/ui/separator.d.ts +0 -0
  1741. /package/{dist → packages/ui/src}/components/ui/separator.js +0 -0
  1742. /package/{dist → packages/ui/src}/components/ui/skeleton.d.ts +0 -0
  1743. /package/{dist → packages/ui/src}/components/ui/slider.d.ts +0 -0
  1744. /package/{dist → packages/ui/src}/components/ui/spinner.d.ts +0 -0
  1745. /package/{dist → packages/ui/src}/components/ui/spinner.js +0 -0
  1746. /package/{dist → packages/ui/src}/components/ui/switch.d.ts +0 -0
  1747. /package/{dist → packages/ui/src}/components/ui/tabs.d.ts +0 -0
@@ -0,0 +1,4021 @@
1
+ /**
2
+ * Auto-generated canonical action/provider/evaluator docs.
3
+ * DO NOT EDIT - Generated from packages/prompts/specs/**.
4
+ */
5
+ export const coreActionsSpecVersion = "1.0.0";
6
+ export const allActionsSpecVersion = "1.0.0";
7
+ export const coreProvidersSpecVersion = "1.0.0";
8
+ export const allProvidersSpecVersion = "1.0.0";
9
+ export const coreEvaluatorsSpecVersion = "1.0.0";
10
+ export const allEvaluatorsSpecVersion = "1.0.0";
11
+ export const coreActionsSpec = {
12
+ version: "1.0.0",
13
+ actions: [
14
+ {
15
+ name: "REPLY",
16
+ description: "Send a direct chat reply in the current conversation/thread. Default if the agent is responding with a message and no other action. Use REPLY at the beginning of a chain of actions as an acknowledgement, and at the end of a chain of actions as a final response. This is not an email reply, inbox workflow, or external-channel send — use the dedicated connector actions for those surfaces.",
17
+ similes: ["GREET", "RESPOND", "RESPONSE"],
18
+ parameters: [],
19
+ examples: [
20
+ [
21
+ {
22
+ name: "{{name1}}",
23
+ content: {
24
+ text: "Hello there!",
25
+ },
26
+ },
27
+ {
28
+ name: "{{name2}}",
29
+ content: {
30
+ text: "Hi! How can I help you today?",
31
+ actions: ["REPLY"],
32
+ },
33
+ },
34
+ ],
35
+ [
36
+ {
37
+ name: "{{name1}}",
38
+ content: {
39
+ text: "What's your favorite color?",
40
+ },
41
+ },
42
+ {
43
+ name: "{{name2}}",
44
+ content: {
45
+ text: "I really like deep shades of blue. They remind me of the ocean and the night sky.",
46
+ actions: ["REPLY"],
47
+ },
48
+ },
49
+ ],
50
+ [
51
+ {
52
+ name: "{{name1}}",
53
+ content: {
54
+ text: "Can you explain how neural networks work?",
55
+ },
56
+ },
57
+ {
58
+ name: "{{name2}}",
59
+ content: {
60
+ text: "Let me break that down for you in simple terms...",
61
+ actions: ["REPLY"],
62
+ },
63
+ },
64
+ ],
65
+ [
66
+ {
67
+ name: "{{name1}}",
68
+ content: {
69
+ text: "Could you help me solve this math problem?",
70
+ },
71
+ },
72
+ {
73
+ name: "{{name2}}",
74
+ content: {
75
+ text: "Of course! Let's work through it step by step.",
76
+ actions: ["REPLY"],
77
+ },
78
+ },
79
+ ],
80
+ ],
81
+ descriptionCompressed: "Reply with generated msg. Default when responding with no other action. Use first as ack, last as final response.",
82
+ },
83
+ {
84
+ name: "IGNORE",
85
+ description: "Call this action if ignoring the user. If the user is aggressive, creepy or is finished with the conversation, use this action. Or, if both you and the user have already said goodbye, use this action instead of saying bye again. Use IGNORE any time the conversation has naturally ended. Do not use IGNORE if the user has engaged directly, or if something went wrong and you need to tell them. Only ignore if the user should be ignored.",
86
+ similes: ["STOP_TALKING", "STOP_CHATTING", "STOP_CONVERSATION"],
87
+ parameters: [],
88
+ examples: [
89
+ [
90
+ {
91
+ name: "{{name1}}",
92
+ content: {
93
+ text: "Go screw yourself",
94
+ },
95
+ },
96
+ {
97
+ name: "{{name2}}",
98
+ content: {
99
+ text: "",
100
+ actions: ["IGNORE"],
101
+ },
102
+ },
103
+ ],
104
+ [
105
+ {
106
+ name: "{{name1}}",
107
+ content: {
108
+ text: "Shut up, bot",
109
+ },
110
+ },
111
+ {
112
+ name: "{{name2}}",
113
+ content: {
114
+ text: "",
115
+ actions: ["IGNORE"],
116
+ },
117
+ },
118
+ ],
119
+ [
120
+ {
121
+ name: "{{name1}}",
122
+ content: {
123
+ text: "Gotta go",
124
+ },
125
+ },
126
+ {
127
+ name: "{{name2}}",
128
+ content: {
129
+ text: "Okay, talk to you later",
130
+ },
131
+ },
132
+ {
133
+ name: "{{name1}}",
134
+ content: {
135
+ text: "Cya",
136
+ },
137
+ },
138
+ {
139
+ name: "{{name2}}",
140
+ content: {
141
+ text: "",
142
+ actions: ["IGNORE"],
143
+ },
144
+ },
145
+ ],
146
+ [
147
+ {
148
+ name: "{{name1}}",
149
+ content: {
150
+ text: "bye",
151
+ },
152
+ },
153
+ {
154
+ name: "{{name2}}",
155
+ content: {
156
+ text: "cya",
157
+ },
158
+ },
159
+ {
160
+ name: "{{name1}}",
161
+ content: {
162
+ text: "",
163
+ actions: ["IGNORE"],
164
+ },
165
+ },
166
+ ],
167
+ [
168
+ {
169
+ name: "{{name1}}",
170
+ content: {
171
+ text: "wanna cyber",
172
+ },
173
+ },
174
+ {
175
+ name: "{{name2}}",
176
+ content: {
177
+ text: "thats inappropriate",
178
+ actions: ["IGNORE"],
179
+ },
180
+ },
181
+ ],
182
+ ],
183
+ descriptionCompressed: "Ignore user. Use when aggressive, creepy, conversation ended, or both sides said goodbye. Don't use if user engaged directly or needs error info.",
184
+ },
185
+ {
186
+ name: "NONE",
187
+ description: "Respond but perform no additional action. This is the default if the agent is speaking and not doing anything additional.",
188
+ similes: ["NO_ACTION", "NO_RESPONSE", "NO_REACTION", "NOOP", "PASS"],
189
+ parameters: [],
190
+ examples: [
191
+ [
192
+ {
193
+ name: "{{name1}}",
194
+ content: {
195
+ text: "Hey whats up",
196
+ },
197
+ },
198
+ {
199
+ name: "{{name2}}",
200
+ content: {
201
+ text: "oh hey",
202
+ actions: ["NONE"],
203
+ },
204
+ },
205
+ ],
206
+ [
207
+ {
208
+ name: "{{name1}}",
209
+ content: {
210
+ text: "did u see some faster whisper just came out",
211
+ },
212
+ },
213
+ {
214
+ name: "{{name2}}",
215
+ content: {
216
+ text: "yeah but its a pain to get into node.js",
217
+ actions: ["NONE"],
218
+ },
219
+ },
220
+ ],
221
+ [
222
+ {
223
+ name: "{{name1}}",
224
+ content: {
225
+ text: "u think aliens are real",
226
+ actions: ["NONE"],
227
+ },
228
+ },
229
+ {
230
+ name: "{{name2}}",
231
+ content: {
232
+ text: "ya obviously",
233
+ actions: ["NONE"],
234
+ },
235
+ },
236
+ ],
237
+ [
238
+ {
239
+ name: "{{name1}}",
240
+ content: {
241
+ text: "drop a joke on me",
242
+ actions: ["NONE"],
243
+ },
244
+ },
245
+ {
246
+ name: "{{name2}}",
247
+ content: {
248
+ text: "why dont scientists trust atoms cuz they make up everything lmao",
249
+ actions: ["NONE"],
250
+ },
251
+ },
252
+ ],
253
+ ],
254
+ descriptionCompressed: "Respond without additional action. Default when speaking only.",
255
+ },
256
+ {
257
+ name: "SEND_MESSAGE",
258
+ description: "Send a message to a user or room (other than the current one)",
259
+ similes: [
260
+ "DM",
261
+ "MESSAGE",
262
+ "SEND_DM",
263
+ "POST_MESSAGE",
264
+ "DIRECT_MESSAGE",
265
+ "NOTIFY",
266
+ ],
267
+ parameters: [
268
+ {
269
+ name: "targetType",
270
+ description: "Whether the message target is a user or a room.",
271
+ required: true,
272
+ schema: {
273
+ type: "string",
274
+ enum: ["user", "room"],
275
+ },
276
+ examples: ["user", "room"],
277
+ descriptionCompressed: "user or room target.",
278
+ },
279
+ {
280
+ name: "source",
281
+ description: "The platform/source to send the message on (e.g. telegram, discord, x).",
282
+ required: false,
283
+ schema: {
284
+ type: "string",
285
+ },
286
+ examples: ["telegram", "discord"],
287
+ descriptionCompressed: "Platform (telegram, discord, x).",
288
+ },
289
+ {
290
+ name: "target",
291
+ description: "Identifier of the target. For user targets, a name/handle/id; for room targets, a room name/id.",
292
+ required: true,
293
+ schema: {
294
+ type: "string",
295
+ },
296
+ examples: ["dev_guru", "announcements"],
297
+ descriptionCompressed: "Target name/handle/id.",
298
+ },
299
+ {
300
+ name: "text",
301
+ description: "The message content to send.",
302
+ required: true,
303
+ schema: {
304
+ type: "string",
305
+ },
306
+ examples: ["Hello!", "Important announcement!"],
307
+ descriptionCompressed: "Message content.",
308
+ },
309
+ ],
310
+ examples: [
311
+ [
312
+ {
313
+ name: "{{name1}}",
314
+ content: {
315
+ text: "Send a message to @dev_guru on telegram saying 'Hello!'",
316
+ },
317
+ },
318
+ {
319
+ name: "{{name2}}",
320
+ content: {
321
+ text: "Message sent to dev_guru on telegram.",
322
+ actions: ["SEND_MESSAGE"],
323
+ },
324
+ },
325
+ ],
326
+ [
327
+ {
328
+ name: "{{name1}}",
329
+ content: {
330
+ text: "Post 'Important announcement!' in #announcements",
331
+ },
332
+ },
333
+ {
334
+ name: "{{name2}}",
335
+ content: {
336
+ text: "Message sent to announcements.",
337
+ actions: ["SEND_MESSAGE"],
338
+ },
339
+ },
340
+ ],
341
+ [
342
+ {
343
+ name: "{{name1}}",
344
+ content: {
345
+ text: "DM Jimmy and tell him 'Meeting at 3pm'",
346
+ },
347
+ },
348
+ {
349
+ name: "{{name2}}",
350
+ content: {
351
+ text: "Message sent to Jimmy.",
352
+ actions: ["SEND_MESSAGE"],
353
+ },
354
+ },
355
+ ],
356
+ ],
357
+ exampleCalls: [
358
+ {
359
+ user: 'Send a message to @dev_guru on telegram saying "Hello!"',
360
+ actions: ["REPLY", "SEND_MESSAGE"],
361
+ params: {
362
+ SEND_MESSAGE: {
363
+ targetType: "user",
364
+ source: "telegram",
365
+ target: "dev_guru",
366
+ text: "Hello!",
367
+ },
368
+ },
369
+ },
370
+ ],
371
+ descriptionCompressed: "Send msg to another user or room (not current).",
372
+ },
373
+ {
374
+ name: "ADD_CONTACT",
375
+ description: "Add a new contact to the relationships with categorization and preferences",
376
+ similes: [
377
+ "SAVE_CONTACT",
378
+ "REMEMBER_PERSON",
379
+ "ADD_TO_CONTACTS",
380
+ "SAVE_TO_ROLODEX",
381
+ "CREATE_CONTACT",
382
+ "NEW_CONTACT",
383
+ "add contact",
384
+ "save contact",
385
+ "add to contacts",
386
+ "add to relationships",
387
+ "remember this person",
388
+ "save their info",
389
+ "add them to my list",
390
+ "categorize as friend",
391
+ "mark as vip",
392
+ "add to address book",
393
+ ],
394
+ parameters: [
395
+ {
396
+ name: "name",
397
+ description: "The contact's primary name.",
398
+ required: true,
399
+ schema: {
400
+ type: "string",
401
+ },
402
+ examples: ["Sarah Chen", "John Smith"],
403
+ descriptionCompressed: "Contact name.",
404
+ },
405
+ {
406
+ name: "notes",
407
+ description: "Optional notes about the contact (short summary, context, or preferences).",
408
+ required: false,
409
+ schema: {
410
+ type: "string",
411
+ },
412
+ examples: ["Met at the AI meetup; interested in agents"],
413
+ descriptionCompressed: "Optional notes/context.",
414
+ },
415
+ ],
416
+ examples: [
417
+ [
418
+ {
419
+ name: "{{name1}}",
420
+ content: {
421
+ text: "Add John Smith to my contacts as a colleague",
422
+ },
423
+ },
424
+ {
425
+ name: "{{name2}}",
426
+ content: {
427
+ text: "I've added John Smith to your contacts as a colleague.",
428
+ },
429
+ },
430
+ ],
431
+ [
432
+ {
433
+ name: "{{name1}}",
434
+ content: {
435
+ text: "Save this person as a friend in my relationships",
436
+ },
437
+ },
438
+ {
439
+ name: "{{name2}}",
440
+ content: {
441
+ text: "I've saved them as a friend in your relationships.",
442
+ },
443
+ },
444
+ ],
445
+ [
446
+ {
447
+ name: "{{name1}}",
448
+ content: {
449
+ text: "Remember Alice as a VIP contact",
450
+ },
451
+ },
452
+ {
453
+ name: "{{name2}}",
454
+ content: {
455
+ text: "I've added Alice to your contacts as a VIP.",
456
+ },
457
+ },
458
+ ],
459
+ ],
460
+ descriptionCompressed: "Add contact to relationships with category/preferences.",
461
+ },
462
+ {
463
+ name: "UPDATE_CONTACT",
464
+ description: "Update an existing contact's details in the relationships.",
465
+ similes: ["EDIT_CONTACT", "MODIFY_CONTACT", "CHANGE_CONTACT_INFO"],
466
+ parameters: [
467
+ {
468
+ name: "name",
469
+ description: "The contact name to update (must match an existing contact).",
470
+ required: true,
471
+ schema: {
472
+ type: "string",
473
+ },
474
+ examples: ["Sarah Chen"],
475
+ descriptionCompressed: "Contact name (must match existing).",
476
+ },
477
+ {
478
+ name: "updates",
479
+ description: "A JSON object of fields to update (stringified JSON).",
480
+ required: true,
481
+ schema: {
482
+ type: "string",
483
+ },
484
+ examples: ['{"notes":"prefers email","tags":["friend"]}'],
485
+ descriptionCompressed: "Fields to update (JSON).",
486
+ },
487
+ ],
488
+ examples: [
489
+ [
490
+ {
491
+ name: "{{name1}}",
492
+ content: {
493
+ text: "Update Sarah's contact to add the tag 'investor'",
494
+ },
495
+ },
496
+ {
497
+ name: "{{name2}}",
498
+ content: {
499
+ text: "I've updated Sarah's contact with the new tag.",
500
+ },
501
+ },
502
+ ],
503
+ ],
504
+ descriptionCompressed: "Update existing contact details.",
505
+ },
506
+ {
507
+ name: "REMOVE_CONTACT",
508
+ description: "Remove a contact from the relationships.",
509
+ similes: [
510
+ "DELETE_CONTACT",
511
+ "REMOVE_FROM_ROLODEX",
512
+ "DELETE_FROM_CONTACTS",
513
+ "FORGET_PERSON",
514
+ "REMOVE_FROM_CONTACTS",
515
+ ],
516
+ parameters: [
517
+ {
518
+ name: "name",
519
+ description: "The contact name to remove.",
520
+ required: true,
521
+ schema: {
522
+ type: "string",
523
+ },
524
+ examples: ["Sarah Chen"],
525
+ descriptionCompressed: "Contact name.",
526
+ },
527
+ ],
528
+ examples: [
529
+ [
530
+ {
531
+ name: "{{name1}}",
532
+ content: {
533
+ text: "Remove John from my contacts",
534
+ },
535
+ },
536
+ {
537
+ name: "{{name2}}",
538
+ content: {
539
+ text: "Are you sure you want to remove John from your contacts?",
540
+ },
541
+ },
542
+ {
543
+ name: "{{name1}}",
544
+ content: {
545
+ text: "Yes",
546
+ },
547
+ },
548
+ {
549
+ name: "{{name2}}",
550
+ content: {
551
+ text: "I've removed John from your contacts.",
552
+ },
553
+ },
554
+ ],
555
+ ],
556
+ descriptionCompressed: "Remove contact from relationships.",
557
+ },
558
+ {
559
+ name: "SEARCH_CONTACTS",
560
+ description: "Search and list contacts in the relationships by name or query.",
561
+ similes: [
562
+ "FIND_CONTACTS",
563
+ "LOOKUP_CONTACTS",
564
+ "LIST_CONTACTS",
565
+ "SHOW_CONTACTS",
566
+ "list contacts",
567
+ "show contacts",
568
+ "search contacts",
569
+ "find contacts",
570
+ "who are my friends",
571
+ ],
572
+ parameters: [
573
+ {
574
+ name: "query",
575
+ description: "Search query (name, handle, or free-text).",
576
+ required: true,
577
+ schema: {
578
+ type: "string",
579
+ },
580
+ examples: ["sarah", "AI meetup"],
581
+ descriptionCompressed: "Search query (name/handle/free-text).",
582
+ },
583
+ ],
584
+ examples: [
585
+ [
586
+ {
587
+ name: "{{name1}}",
588
+ content: {
589
+ text: "Show me my friends",
590
+ },
591
+ },
592
+ {
593
+ name: "{{name2}}",
594
+ content: {
595
+ text: "Here are your contacts tagged as friends: Sarah Chen, John Smith...",
596
+ },
597
+ },
598
+ ],
599
+ ],
600
+ descriptionCompressed: "Search/list contacts by name or query.",
601
+ },
602
+ {
603
+ name: "SCHEDULE_FOLLOW_UP",
604
+ description: "Schedule a follow-up reminder for a contact.",
605
+ similes: [
606
+ "REMIND_ME",
607
+ "FOLLOW_UP",
608
+ "REMIND_FOLLOW_UP",
609
+ "SET_REMINDER",
610
+ "REMIND_ABOUT",
611
+ "FOLLOW_UP_WITH",
612
+ "follow up with",
613
+ "remind me to contact",
614
+ "schedule a check-in",
615
+ "set a reminder for",
616
+ ],
617
+ parameters: [
618
+ {
619
+ name: "name",
620
+ description: "Contact name to follow up with.",
621
+ required: true,
622
+ schema: {
623
+ type: "string",
624
+ },
625
+ examples: ["Sarah Chen"],
626
+ descriptionCompressed: "Contact name.",
627
+ },
628
+ {
629
+ name: "when",
630
+ description: "When to follow up. Use an ISO-8601 datetime string.",
631
+ required: true,
632
+ schema: {
633
+ type: "string",
634
+ },
635
+ examples: ["2026-02-01T09:00:00Z"],
636
+ descriptionCompressed: "ISO-8601 datetime.",
637
+ },
638
+ {
639
+ name: "reason",
640
+ description: "Optional reason/context for the follow-up.",
641
+ required: false,
642
+ schema: {
643
+ type: "string",
644
+ },
645
+ examples: ["Check in about the agent framework demo"],
646
+ descriptionCompressed: "Optional reason/context.",
647
+ },
648
+ ],
649
+ examples: [
650
+ [
651
+ {
652
+ name: "{{name1}}",
653
+ content: {
654
+ text: "Remind me to follow up with Sarah next week about the demo",
655
+ },
656
+ },
657
+ {
658
+ name: "{{name2}}",
659
+ content: {
660
+ text: "I've scheduled a follow-up reminder with Sarah for next week about the demo.",
661
+ },
662
+ },
663
+ ],
664
+ ],
665
+ descriptionCompressed: "Schedule follow-up reminder for contact.",
666
+ },
667
+ {
668
+ name: "CHOOSE_OPTION",
669
+ description: "Select an option for a pending task that has multiple options.",
670
+ similes: [
671
+ "SELECT_OPTION",
672
+ "PICK_OPTION",
673
+ "SELECT_TASK",
674
+ "PICK_TASK",
675
+ "SELECT",
676
+ "PICK",
677
+ "CHOOSE",
678
+ ],
679
+ parameters: [
680
+ {
681
+ name: "taskId",
682
+ description: "The pending task id.",
683
+ required: true,
684
+ schema: {
685
+ type: "string",
686
+ },
687
+ examples: ["c0a8012e"],
688
+ descriptionCompressed: "Pending task id.",
689
+ },
690
+ {
691
+ name: "option",
692
+ description: "The selected option name exactly as listed.",
693
+ required: true,
694
+ schema: {
695
+ type: "string",
696
+ },
697
+ examples: ["APPROVE", "ABORT"],
698
+ descriptionCompressed: "Option name exactly as listed.",
699
+ },
700
+ ],
701
+ examples: [
702
+ [
703
+ {
704
+ name: "{{name1}}",
705
+ content: {
706
+ text: "Select the first option",
707
+ },
708
+ },
709
+ {
710
+ name: "{{name2}}",
711
+ content: {
712
+ text: "I've selected option 1 for the pending task.",
713
+ actions: ["CHOOSE_OPTION"],
714
+ },
715
+ },
716
+ ],
717
+ ],
718
+ descriptionCompressed: "Select option for pending multi-choice task.",
719
+ },
720
+ {
721
+ name: "FOLLOW_ROOM",
722
+ description: "Start following this channel with great interest, chiming in without needing to be explicitly mentioned. Only do this if explicitly asked to.",
723
+ similes: [
724
+ "FOLLOW_CHAT",
725
+ "FOLLOW_CHANNEL",
726
+ "FOLLOW_CONVERSATION",
727
+ "FOLLOW_THREAD",
728
+ "JOIN_ROOM",
729
+ "SUBSCRIBE_ROOM",
730
+ "WATCH_ROOM",
731
+ "ENTER_ROOM",
732
+ ],
733
+ parameters: [
734
+ {
735
+ name: "roomId",
736
+ description: "The target room id to follow.",
737
+ required: true,
738
+ schema: {
739
+ type: "string",
740
+ },
741
+ examples: ["00000000-0000-0000-0000-000000000000"],
742
+ descriptionCompressed: "Room id to follow.",
743
+ },
744
+ ],
745
+ examples: [
746
+ [
747
+ {
748
+ name: "{{name1}}",
749
+ content: {
750
+ text: "hey {{name2}} follow this channel",
751
+ },
752
+ },
753
+ {
754
+ name: "{{name2}}",
755
+ content: {
756
+ text: "Sure, I will now follow this room and chime in",
757
+ actions: ["FOLLOW_ROOM"],
758
+ },
759
+ },
760
+ ],
761
+ [
762
+ {
763
+ name: "{{name1}}",
764
+ content: {
765
+ text: "{{name2}} stay in this chat pls",
766
+ },
767
+ },
768
+ {
769
+ name: "{{name2}}",
770
+ content: {
771
+ text: "you got it, i'm here",
772
+ actions: ["FOLLOW_ROOM"],
773
+ },
774
+ },
775
+ ],
776
+ ],
777
+ descriptionCompressed: "Start following channel, chiming in without @mention. Only when explicitly asked.",
778
+ },
779
+ {
780
+ name: "UNFOLLOW_ROOM",
781
+ description: "Stop following a room and cease receiving updates. Use this when you no longer want to monitor a room's activity.",
782
+ similes: [
783
+ "UNFOLLOW_CHAT",
784
+ "UNFOLLOW_CONVERSATION",
785
+ "UNFOLLOW_ROOM",
786
+ "UNFOLLOW_THREAD",
787
+ "LEAVE_ROOM",
788
+ "UNSUBSCRIBE_ROOM",
789
+ "STOP_WATCHING_ROOM",
790
+ "EXIT_ROOM",
791
+ ],
792
+ parameters: [
793
+ {
794
+ name: "roomId",
795
+ description: "The target room id to unfollow.",
796
+ required: true,
797
+ schema: {
798
+ type: "string",
799
+ },
800
+ examples: ["00000000-0000-0000-0000-000000000000"],
801
+ descriptionCompressed: "Room id to unfollow.",
802
+ },
803
+ ],
804
+ examples: [
805
+ [
806
+ {
807
+ name: "{{name1}}",
808
+ content: {
809
+ text: "{{name2}} stop following this channel",
810
+ },
811
+ },
812
+ {
813
+ name: "{{name2}}",
814
+ content: {
815
+ text: "Okay, I'll stop following this room",
816
+ actions: ["UNFOLLOW_ROOM"],
817
+ },
818
+ },
819
+ ],
820
+ ],
821
+ descriptionCompressed: "Stop following room, cease updates.",
822
+ },
823
+ {
824
+ name: "MUTE_ROOM",
825
+ description: "Mutes a room, ignoring all messages unless explicitly mentioned. Only do this if explicitly asked to, or if you're annoying people.",
826
+ similes: [
827
+ "MUTE_CHAT",
828
+ "MUTE_CONVERSATION",
829
+ "MUTE_THREAD",
830
+ "MUTE_CHANNEL",
831
+ "SILENCE_ROOM",
832
+ "QUIET_ROOM",
833
+ "DISABLE_NOTIFICATIONS",
834
+ "STOP_RESPONDING",
835
+ ],
836
+ parameters: [
837
+ {
838
+ name: "roomId",
839
+ description: "The room id to mute.",
840
+ required: true,
841
+ schema: {
842
+ type: "string",
843
+ },
844
+ examples: ["00000000-0000-0000-0000-000000000000"],
845
+ descriptionCompressed: "Room id to mute.",
846
+ },
847
+ ],
848
+ examples: [
849
+ [
850
+ {
851
+ name: "{{name1}}",
852
+ content: {
853
+ text: "{{name2}}, please mute this channel. No need to respond here for now.",
854
+ },
855
+ },
856
+ {
857
+ name: "{{name2}}",
858
+ content: {
859
+ text: "Got it",
860
+ actions: ["MUTE_ROOM"],
861
+ },
862
+ },
863
+ ],
864
+ [
865
+ {
866
+ name: "{{name1}}",
867
+ content: {
868
+ text: "{{name2}} plz mute this room",
869
+ },
870
+ },
871
+ {
872
+ name: "{{name2}}",
873
+ content: {
874
+ text: "np going silent",
875
+ actions: ["MUTE_ROOM"],
876
+ },
877
+ },
878
+ ],
879
+ ],
880
+ descriptionCompressed: "Mute room, ignore msgs unless @mentioned. Only when asked or annoying.",
881
+ },
882
+ {
883
+ name: "UNMUTE_ROOM",
884
+ description: "Unmute a room to resume responding and receiving notifications. Use this when you want to start interacting with a muted room again.",
885
+ similes: [
886
+ "UNMUTE_CHAT",
887
+ "UNMUTE_CONVERSATION",
888
+ "UNMUTE_ROOM",
889
+ "UNMUTE_THREAD",
890
+ "UNSILENCE_ROOM",
891
+ "ENABLE_NOTIFICATIONS",
892
+ "RESUME_RESPONDING",
893
+ "START_LISTENING",
894
+ ],
895
+ parameters: [
896
+ {
897
+ name: "roomId",
898
+ description: "The room id to unmute.",
899
+ required: true,
900
+ schema: {
901
+ type: "string",
902
+ },
903
+ examples: ["00000000-0000-0000-0000-000000000000"],
904
+ descriptionCompressed: "Room id to unmute.",
905
+ },
906
+ ],
907
+ examples: [
908
+ [
909
+ {
910
+ name: "{{name1}}",
911
+ content: {
912
+ text: "{{name2}} unmute this room please",
913
+ },
914
+ },
915
+ {
916
+ name: "{{name2}}",
917
+ content: {
918
+ text: "I've unmuted this room and will respond again",
919
+ actions: ["UNMUTE_ROOM"],
920
+ },
921
+ },
922
+ ],
923
+ ],
924
+ descriptionCompressed: "Unmute room, resume responding.",
925
+ },
926
+ {
927
+ name: "UPDATE_SETTINGS",
928
+ description: "Update agent settings by applying explicit key/value updates.",
929
+ similes: [
930
+ "SET_SETTINGS",
931
+ "CHANGE_SETTINGS",
932
+ "UPDATE_SETTING",
933
+ "SAVE_SETTING",
934
+ "SET_CONFIGURATION",
935
+ "CONFIGURE",
936
+ "MODIFY_SETTINGS",
937
+ "SET_PREFERENCE",
938
+ "UPDATE_CONFIG",
939
+ ],
940
+ parameters: [
941
+ {
942
+ name: "updates",
943
+ description: 'A JSON array of {"key": string, "value": string} updates (stringified JSON).',
944
+ required: true,
945
+ schema: {
946
+ type: "string",
947
+ },
948
+ examples: ['[{"key":"model","value":"gpt-5"}]'],
949
+ descriptionCompressed: "JSON array of {key, value} updates.",
950
+ },
951
+ ],
952
+ examples: [
953
+ [
954
+ {
955
+ name: "{{name1}}",
956
+ content: {
957
+ text: "Change my language setting to French",
958
+ },
959
+ },
960
+ {
961
+ name: "{{name2}}",
962
+ content: {
963
+ text: "I've updated your language setting to French.",
964
+ actions: ["UPDATE_SETTINGS"],
965
+ },
966
+ },
967
+ ],
968
+ ],
969
+ descriptionCompressed: "Update agent settings via key/value pairs.",
970
+ },
971
+ {
972
+ name: "UPDATE_ROLE",
973
+ description: "Assigns a role (Admin, Owner, None) to a user or list of users in a channel.",
974
+ similes: [
975
+ "SET_ROLE",
976
+ "CHANGE_ROLE",
977
+ "SET_PERMISSIONS",
978
+ "ASSIGN_ROLE",
979
+ "MAKE_ADMIN",
980
+ "MODIFY_PERMISSIONS",
981
+ "GRANT_ROLE",
982
+ ],
983
+ parameters: [
984
+ {
985
+ name: "entityId",
986
+ description: "The entity id to update.",
987
+ required: true,
988
+ schema: {
989
+ type: "string",
990
+ },
991
+ examples: ["00000000-0000-0000-0000-000000000000"],
992
+ descriptionCompressed: "Entity id.",
993
+ },
994
+ {
995
+ name: "role",
996
+ description: "The new role to assign.",
997
+ required: true,
998
+ schema: {
999
+ type: "string",
1000
+ },
1001
+ examples: ["admin", "member"],
1002
+ descriptionCompressed: "Role to assign.",
1003
+ },
1004
+ ],
1005
+ examples: [
1006
+ [
1007
+ {
1008
+ name: "{{name1}}",
1009
+ content: {
1010
+ text: "Make Sarah an admin",
1011
+ },
1012
+ },
1013
+ {
1014
+ name: "{{name2}}",
1015
+ content: {
1016
+ text: "I've assigned the admin role to Sarah.",
1017
+ actions: ["UPDATE_ROLE"],
1018
+ },
1019
+ },
1020
+ ],
1021
+ ],
1022
+ descriptionCompressed: "Assign role (Admin/Owner/None) to user(s) in channel.",
1023
+ },
1024
+ {
1025
+ name: "UPDATE_ENTITY",
1026
+ description: "Add or edit contact details for a person you are talking to or observing. Use this to modify entity profiles, metadata, or attributes.",
1027
+ similes: [
1028
+ "EDIT_ENTITY",
1029
+ "MODIFY_ENTITY",
1030
+ "CHANGE_ENTITY",
1031
+ "UPDATE_PROFILE",
1032
+ "SET_ENTITY_INFO",
1033
+ ],
1034
+ parameters: [
1035
+ {
1036
+ name: "entityId",
1037
+ description: "The entity id to update.",
1038
+ required: true,
1039
+ schema: {
1040
+ type: "string",
1041
+ },
1042
+ examples: ["00000000-0000-0000-0000-000000000000"],
1043
+ descriptionCompressed: "Entity id.",
1044
+ },
1045
+ {
1046
+ name: "updates",
1047
+ description: 'A JSON array of {"name": string, "value": string} field updates (stringified JSON).',
1048
+ required: true,
1049
+ schema: {
1050
+ type: "string",
1051
+ },
1052
+ examples: ['[{"name":"bio","value":"Loves Rust"}]'],
1053
+ descriptionCompressed: "JSON array of {name, value} updates.",
1054
+ },
1055
+ ],
1056
+ examples: [
1057
+ [
1058
+ {
1059
+ name: "{{name1}}",
1060
+ content: {
1061
+ text: "Update my profile bio to say 'AI enthusiast'",
1062
+ },
1063
+ },
1064
+ {
1065
+ name: "{{name2}}",
1066
+ content: {
1067
+ text: "I've updated your profile bio.",
1068
+ actions: ["UPDATE_ENTITY"],
1069
+ },
1070
+ },
1071
+ ],
1072
+ ],
1073
+ descriptionCompressed: "Edit contact details for person in conversation.",
1074
+ },
1075
+ {
1076
+ name: "THINK",
1077
+ description: "Pause and think deeply about a complex question, ambiguous request, or multi-faceted problem before responding. Use THINK when the question requires careful reasoning, when you are not confident in your initial assessment, when the user asks something nuanced that benefits from structured analysis, or when multiple valid approaches exist and you need to evaluate trade-offs. Do NOT use THINK for simple greetings, factual lookups, or straightforward requests where the answer is obvious. THINK re-processes the full conversation context through a larger, more capable model to produce a thorough, well-reasoned response.",
1078
+ similes: [
1079
+ "PLAN",
1080
+ "REASON",
1081
+ "ANALYZE",
1082
+ "REFLECT",
1083
+ "CONSIDER",
1084
+ "DELIBERATE",
1085
+ "DEEP_THINK",
1086
+ "PONDER",
1087
+ ],
1088
+ parameters: [],
1089
+ examples: [
1090
+ [
1091
+ {
1092
+ name: "{{name1}}",
1093
+ content: {
1094
+ text: "What's the best architecture for a real-time multiplayer game with 10k concurrent users?",
1095
+ },
1096
+ },
1097
+ {
1098
+ name: "{{name2}}",
1099
+ content: {
1100
+ text: "That's a great question with several important trade-offs to consider. Let me think through this carefully...",
1101
+ actions: ["THINK"],
1102
+ },
1103
+ },
1104
+ ],
1105
+ [
1106
+ {
1107
+ name: "{{name1}}",
1108
+ content: {
1109
+ text: "Should I use a monorepo or polyrepo for my team of 15 engineers working on 3 microservices?",
1110
+ },
1111
+ },
1112
+ {
1113
+ name: "{{name2}}",
1114
+ content: {
1115
+ text: "Let me think about the trade-offs for your specific situation...",
1116
+ actions: ["THINK"],
1117
+ },
1118
+ },
1119
+ ],
1120
+ [
1121
+ {
1122
+ name: "{{name1}}",
1123
+ content: {
1124
+ text: "We're seeing intermittent 502 errors in production but only during peak hours. Our setup is nginx -> node -> postgres. What could cause this?",
1125
+ },
1126
+ },
1127
+ {
1128
+ name: "{{name2}}",
1129
+ content: {
1130
+ text: "There are several possible causes here. Let me reason through the full request path systematically...",
1131
+ actions: ["THINK"],
1132
+ },
1133
+ },
1134
+ ],
1135
+ [
1136
+ {
1137
+ name: "{{name1}}",
1138
+ content: {
1139
+ text: "How should we handle authentication across our mobile app, web app, and API given we need SSO with both Google and enterprise SAML providers?",
1140
+ },
1141
+ },
1142
+ {
1143
+ name: "{{name2}}",
1144
+ content: {
1145
+ text: "Cross-platform auth with multiple identity providers has some nuance. Let me plan this out...",
1146
+ actions: ["THINK"],
1147
+ },
1148
+ },
1149
+ ],
1150
+ ],
1151
+ descriptionCompressed: "Deep reasoning for complex/ambiguous questions. Re-processes full context through larger model. Use when careful reasoning needed, not for simple lookups.",
1152
+ },
1153
+ {
1154
+ name: "GENERATE_IMAGE",
1155
+ description: "Generates an image based on a generated prompt reflecting the current conversation. Use GENERATE_IMAGE when the agent needs to visualize, illustrate, or demonstrate something visually for the user.",
1156
+ similes: [
1157
+ "DRAW",
1158
+ "CREATE_IMAGE",
1159
+ "RENDER_IMAGE",
1160
+ "VISUALIZE",
1161
+ "MAKE_IMAGE",
1162
+ "PAINT",
1163
+ "IMAGE",
1164
+ ],
1165
+ parameters: [
1166
+ {
1167
+ name: "prompt",
1168
+ description: "Image generation prompt.",
1169
+ required: true,
1170
+ schema: {
1171
+ type: "string",
1172
+ },
1173
+ examples: ["A futuristic cityscape at sunset, cinematic lighting"],
1174
+ descriptionCompressed: "Image prompt.",
1175
+ },
1176
+ ],
1177
+ examples: [
1178
+ [
1179
+ {
1180
+ name: "{{name1}}",
1181
+ content: {
1182
+ text: "Can you show me what a futuristic city looks like?",
1183
+ },
1184
+ },
1185
+ {
1186
+ name: "{{name2}}",
1187
+ content: {
1188
+ text: "Sure, I'll create a futuristic city image for you. One moment...",
1189
+ actions: ["GENERATE_IMAGE"],
1190
+ },
1191
+ },
1192
+ ],
1193
+ [
1194
+ {
1195
+ name: "{{name1}}",
1196
+ content: {
1197
+ text: "What does a neural network look like visually?",
1198
+ },
1199
+ },
1200
+ {
1201
+ name: "{{name2}}",
1202
+ content: {
1203
+ text: "I'll create a visualization of a neural network for you, one sec...",
1204
+ actions: ["GENERATE_IMAGE"],
1205
+ },
1206
+ },
1207
+ ],
1208
+ [
1209
+ {
1210
+ name: "{{name1}}",
1211
+ content: {
1212
+ text: "Can you visualize the feeling of calmness for me?",
1213
+ },
1214
+ },
1215
+ {
1216
+ name: "{{name2}}",
1217
+ content: {
1218
+ text: "Creating an image to capture calmness for you, please wait a moment...",
1219
+ actions: ["GENERATE_IMAGE"],
1220
+ },
1221
+ },
1222
+ ],
1223
+ ],
1224
+ descriptionCompressed: "Generate image from conversation context. Use to visualize or illustrate.",
1225
+ },
1226
+ ],
1227
+ };
1228
+ export const allActionsSpec = {
1229
+ version: "1.0.0",
1230
+ actions: [
1231
+ {
1232
+ name: "REPLY",
1233
+ description: "Send a direct chat reply in the current conversation/thread. Default if the agent is responding with a message and no other action. Use REPLY at the beginning of a chain of actions as an acknowledgement, and at the end of a chain of actions as a final response. This is not an email reply, inbox workflow, or external-channel send — use the dedicated connector actions for those surfaces.",
1234
+ similes: ["GREET", "RESPOND", "RESPONSE"],
1235
+ parameters: [],
1236
+ examples: [
1237
+ [
1238
+ {
1239
+ name: "{{name1}}",
1240
+ content: {
1241
+ text: "Hello there!",
1242
+ },
1243
+ },
1244
+ {
1245
+ name: "{{name2}}",
1246
+ content: {
1247
+ text: "Hi! How can I help you today?",
1248
+ actions: ["REPLY"],
1249
+ },
1250
+ },
1251
+ ],
1252
+ [
1253
+ {
1254
+ name: "{{name1}}",
1255
+ content: {
1256
+ text: "What's your favorite color?",
1257
+ },
1258
+ },
1259
+ {
1260
+ name: "{{name2}}",
1261
+ content: {
1262
+ text: "I really like deep shades of blue. They remind me of the ocean and the night sky.",
1263
+ actions: ["REPLY"],
1264
+ },
1265
+ },
1266
+ ],
1267
+ [
1268
+ {
1269
+ name: "{{name1}}",
1270
+ content: {
1271
+ text: "Can you explain how neural networks work?",
1272
+ },
1273
+ },
1274
+ {
1275
+ name: "{{name2}}",
1276
+ content: {
1277
+ text: "Let me break that down for you in simple terms...",
1278
+ actions: ["REPLY"],
1279
+ },
1280
+ },
1281
+ ],
1282
+ [
1283
+ {
1284
+ name: "{{name1}}",
1285
+ content: {
1286
+ text: "Could you help me solve this math problem?",
1287
+ },
1288
+ },
1289
+ {
1290
+ name: "{{name2}}",
1291
+ content: {
1292
+ text: "Of course! Let's work through it step by step.",
1293
+ actions: ["REPLY"],
1294
+ },
1295
+ },
1296
+ ],
1297
+ ],
1298
+ descriptionCompressed: "Reply with generated msg. Default when responding with no other action. Use first as ack, last as final response.",
1299
+ },
1300
+ {
1301
+ name: "IGNORE",
1302
+ description: "Call this action if ignoring the user. If the user is aggressive, creepy or is finished with the conversation, use this action. Or, if both you and the user have already said goodbye, use this action instead of saying bye again. Use IGNORE any time the conversation has naturally ended. Do not use IGNORE if the user has engaged directly, or if something went wrong and you need to tell them. Only ignore if the user should be ignored.",
1303
+ similes: ["STOP_TALKING", "STOP_CHATTING", "STOP_CONVERSATION"],
1304
+ parameters: [],
1305
+ examples: [
1306
+ [
1307
+ {
1308
+ name: "{{name1}}",
1309
+ content: {
1310
+ text: "Go screw yourself",
1311
+ },
1312
+ },
1313
+ {
1314
+ name: "{{name2}}",
1315
+ content: {
1316
+ text: "",
1317
+ actions: ["IGNORE"],
1318
+ },
1319
+ },
1320
+ ],
1321
+ [
1322
+ {
1323
+ name: "{{name1}}",
1324
+ content: {
1325
+ text: "Shut up, bot",
1326
+ },
1327
+ },
1328
+ {
1329
+ name: "{{name2}}",
1330
+ content: {
1331
+ text: "",
1332
+ actions: ["IGNORE"],
1333
+ },
1334
+ },
1335
+ ],
1336
+ [
1337
+ {
1338
+ name: "{{name1}}",
1339
+ content: {
1340
+ text: "Gotta go",
1341
+ },
1342
+ },
1343
+ {
1344
+ name: "{{name2}}",
1345
+ content: {
1346
+ text: "Okay, talk to you later",
1347
+ },
1348
+ },
1349
+ {
1350
+ name: "{{name1}}",
1351
+ content: {
1352
+ text: "Cya",
1353
+ },
1354
+ },
1355
+ {
1356
+ name: "{{name2}}",
1357
+ content: {
1358
+ text: "",
1359
+ actions: ["IGNORE"],
1360
+ },
1361
+ },
1362
+ ],
1363
+ [
1364
+ {
1365
+ name: "{{name1}}",
1366
+ content: {
1367
+ text: "bye",
1368
+ },
1369
+ },
1370
+ {
1371
+ name: "{{name2}}",
1372
+ content: {
1373
+ text: "cya",
1374
+ },
1375
+ },
1376
+ {
1377
+ name: "{{name1}}",
1378
+ content: {
1379
+ text: "",
1380
+ actions: ["IGNORE"],
1381
+ },
1382
+ },
1383
+ ],
1384
+ [
1385
+ {
1386
+ name: "{{name1}}",
1387
+ content: {
1388
+ text: "wanna cyber",
1389
+ },
1390
+ },
1391
+ {
1392
+ name: "{{name2}}",
1393
+ content: {
1394
+ text: "thats inappropriate",
1395
+ actions: ["IGNORE"],
1396
+ },
1397
+ },
1398
+ ],
1399
+ ],
1400
+ descriptionCompressed: "Ignore user. Use when aggressive, creepy, conversation ended, or both sides said goodbye. Don't use if user engaged directly or needs error info.",
1401
+ },
1402
+ {
1403
+ name: "NONE",
1404
+ description: "Respond but perform no additional action. This is the default if the agent is speaking and not doing anything additional.",
1405
+ similes: ["NO_ACTION", "NO_RESPONSE", "NO_REACTION", "NOOP", "PASS"],
1406
+ parameters: [],
1407
+ examples: [
1408
+ [
1409
+ {
1410
+ name: "{{name1}}",
1411
+ content: {
1412
+ text: "Hey whats up",
1413
+ },
1414
+ },
1415
+ {
1416
+ name: "{{name2}}",
1417
+ content: {
1418
+ text: "oh hey",
1419
+ actions: ["NONE"],
1420
+ },
1421
+ },
1422
+ ],
1423
+ [
1424
+ {
1425
+ name: "{{name1}}",
1426
+ content: {
1427
+ text: "did u see some faster whisper just came out",
1428
+ },
1429
+ },
1430
+ {
1431
+ name: "{{name2}}",
1432
+ content: {
1433
+ text: "yeah but its a pain to get into node.js",
1434
+ actions: ["NONE"],
1435
+ },
1436
+ },
1437
+ ],
1438
+ [
1439
+ {
1440
+ name: "{{name1}}",
1441
+ content: {
1442
+ text: "u think aliens are real",
1443
+ actions: ["NONE"],
1444
+ },
1445
+ },
1446
+ {
1447
+ name: "{{name2}}",
1448
+ content: {
1449
+ text: "ya obviously",
1450
+ actions: ["NONE"],
1451
+ },
1452
+ },
1453
+ ],
1454
+ [
1455
+ {
1456
+ name: "{{name1}}",
1457
+ content: {
1458
+ text: "drop a joke on me",
1459
+ actions: ["NONE"],
1460
+ },
1461
+ },
1462
+ {
1463
+ name: "{{name2}}",
1464
+ content: {
1465
+ text: "why dont scientists trust atoms cuz they make up everything lmao",
1466
+ actions: ["NONE"],
1467
+ },
1468
+ },
1469
+ ],
1470
+ ],
1471
+ descriptionCompressed: "Respond without additional action. Default when speaking only.",
1472
+ },
1473
+ {
1474
+ name: "SEND_MESSAGE",
1475
+ description: "Send a message to a user or room (other than the current one)",
1476
+ similes: [
1477
+ "DM",
1478
+ "MESSAGE",
1479
+ "SEND_DM",
1480
+ "POST_MESSAGE",
1481
+ "DIRECT_MESSAGE",
1482
+ "NOTIFY",
1483
+ ],
1484
+ parameters: [
1485
+ {
1486
+ name: "targetType",
1487
+ description: "Whether the message target is a user or a room.",
1488
+ required: true,
1489
+ schema: {
1490
+ type: "string",
1491
+ enum: ["user", "room"],
1492
+ },
1493
+ examples: ["user", "room"],
1494
+ descriptionCompressed: "user or room target.",
1495
+ },
1496
+ {
1497
+ name: "source",
1498
+ description: "The platform/source to send the message on (e.g. telegram, discord, x).",
1499
+ required: false,
1500
+ schema: {
1501
+ type: "string",
1502
+ },
1503
+ examples: ["telegram", "discord"],
1504
+ descriptionCompressed: "Platform (telegram, discord, x).",
1505
+ },
1506
+ {
1507
+ name: "target",
1508
+ description: "Identifier of the target. For user targets, a name/handle/id; for room targets, a room name/id.",
1509
+ required: true,
1510
+ schema: {
1511
+ type: "string",
1512
+ },
1513
+ examples: ["dev_guru", "announcements"],
1514
+ descriptionCompressed: "Target name/handle/id.",
1515
+ },
1516
+ {
1517
+ name: "text",
1518
+ description: "The message content to send.",
1519
+ required: true,
1520
+ schema: {
1521
+ type: "string",
1522
+ },
1523
+ examples: ["Hello!", "Important announcement!"],
1524
+ descriptionCompressed: "Message content.",
1525
+ },
1526
+ ],
1527
+ examples: [
1528
+ [
1529
+ {
1530
+ name: "{{name1}}",
1531
+ content: {
1532
+ text: "Send a message to @dev_guru on telegram saying 'Hello!'",
1533
+ },
1534
+ },
1535
+ {
1536
+ name: "{{name2}}",
1537
+ content: {
1538
+ text: "Message sent to dev_guru on telegram.",
1539
+ actions: ["SEND_MESSAGE"],
1540
+ },
1541
+ },
1542
+ ],
1543
+ [
1544
+ {
1545
+ name: "{{name1}}",
1546
+ content: {
1547
+ text: "Post 'Important announcement!' in #announcements",
1548
+ },
1549
+ },
1550
+ {
1551
+ name: "{{name2}}",
1552
+ content: {
1553
+ text: "Message sent to announcements.",
1554
+ actions: ["SEND_MESSAGE"],
1555
+ },
1556
+ },
1557
+ ],
1558
+ [
1559
+ {
1560
+ name: "{{name1}}",
1561
+ content: {
1562
+ text: "DM Jimmy and tell him 'Meeting at 3pm'",
1563
+ },
1564
+ },
1565
+ {
1566
+ name: "{{name2}}",
1567
+ content: {
1568
+ text: "Message sent to Jimmy.",
1569
+ actions: ["SEND_MESSAGE"],
1570
+ },
1571
+ },
1572
+ ],
1573
+ ],
1574
+ exampleCalls: [
1575
+ {
1576
+ user: 'Send a message to @dev_guru on telegram saying "Hello!"',
1577
+ actions: ["REPLY", "SEND_MESSAGE"],
1578
+ params: {
1579
+ SEND_MESSAGE: {
1580
+ targetType: "user",
1581
+ source: "telegram",
1582
+ target: "dev_guru",
1583
+ text: "Hello!",
1584
+ },
1585
+ },
1586
+ },
1587
+ ],
1588
+ descriptionCompressed: "Send msg to another user or room (not current).",
1589
+ },
1590
+ {
1591
+ name: "ADD_CONTACT",
1592
+ description: "Add a new contact to the relationships with categorization and preferences",
1593
+ similes: [
1594
+ "SAVE_CONTACT",
1595
+ "REMEMBER_PERSON",
1596
+ "ADD_TO_CONTACTS",
1597
+ "SAVE_TO_ROLODEX",
1598
+ "CREATE_CONTACT",
1599
+ "NEW_CONTACT",
1600
+ "add contact",
1601
+ "save contact",
1602
+ "add to contacts",
1603
+ "add to relationships",
1604
+ "remember this person",
1605
+ "save their info",
1606
+ "add them to my list",
1607
+ "categorize as friend",
1608
+ "mark as vip",
1609
+ "add to address book",
1610
+ ],
1611
+ parameters: [
1612
+ {
1613
+ name: "name",
1614
+ description: "The contact's primary name.",
1615
+ required: true,
1616
+ schema: {
1617
+ type: "string",
1618
+ },
1619
+ examples: ["Sarah Chen", "John Smith"],
1620
+ descriptionCompressed: "Contact name.",
1621
+ },
1622
+ {
1623
+ name: "notes",
1624
+ description: "Optional notes about the contact (short summary, context, or preferences).",
1625
+ required: false,
1626
+ schema: {
1627
+ type: "string",
1628
+ },
1629
+ examples: ["Met at the AI meetup; interested in agents"],
1630
+ descriptionCompressed: "Optional notes/context.",
1631
+ },
1632
+ ],
1633
+ examples: [
1634
+ [
1635
+ {
1636
+ name: "{{name1}}",
1637
+ content: {
1638
+ text: "Add John Smith to my contacts as a colleague",
1639
+ },
1640
+ },
1641
+ {
1642
+ name: "{{name2}}",
1643
+ content: {
1644
+ text: "I've added John Smith to your contacts as a colleague.",
1645
+ },
1646
+ },
1647
+ ],
1648
+ [
1649
+ {
1650
+ name: "{{name1}}",
1651
+ content: {
1652
+ text: "Save this person as a friend in my relationships",
1653
+ },
1654
+ },
1655
+ {
1656
+ name: "{{name2}}",
1657
+ content: {
1658
+ text: "I've saved them as a friend in your relationships.",
1659
+ },
1660
+ },
1661
+ ],
1662
+ [
1663
+ {
1664
+ name: "{{name1}}",
1665
+ content: {
1666
+ text: "Remember Alice as a VIP contact",
1667
+ },
1668
+ },
1669
+ {
1670
+ name: "{{name2}}",
1671
+ content: {
1672
+ text: "I've added Alice to your contacts as a VIP.",
1673
+ },
1674
+ },
1675
+ ],
1676
+ ],
1677
+ descriptionCompressed: "Add contact to relationships with category/preferences.",
1678
+ },
1679
+ {
1680
+ name: "UPDATE_CONTACT",
1681
+ description: "Update an existing contact's details in the relationships.",
1682
+ similes: ["EDIT_CONTACT", "MODIFY_CONTACT", "CHANGE_CONTACT_INFO"],
1683
+ parameters: [
1684
+ {
1685
+ name: "name",
1686
+ description: "The contact name to update (must match an existing contact).",
1687
+ required: true,
1688
+ schema: {
1689
+ type: "string",
1690
+ },
1691
+ examples: ["Sarah Chen"],
1692
+ descriptionCompressed: "Contact name (must match existing).",
1693
+ },
1694
+ {
1695
+ name: "updates",
1696
+ description: "A JSON object of fields to update (stringified JSON).",
1697
+ required: true,
1698
+ schema: {
1699
+ type: "string",
1700
+ },
1701
+ examples: ['{"notes":"prefers email","tags":["friend"]}'],
1702
+ descriptionCompressed: "Fields to update (JSON).",
1703
+ },
1704
+ ],
1705
+ examples: [
1706
+ [
1707
+ {
1708
+ name: "{{name1}}",
1709
+ content: {
1710
+ text: "Update Sarah's contact to add the tag 'investor'",
1711
+ },
1712
+ },
1713
+ {
1714
+ name: "{{name2}}",
1715
+ content: {
1716
+ text: "I've updated Sarah's contact with the new tag.",
1717
+ },
1718
+ },
1719
+ ],
1720
+ ],
1721
+ descriptionCompressed: "Update existing contact details.",
1722
+ },
1723
+ {
1724
+ name: "REMOVE_CONTACT",
1725
+ description: "Remove a contact from the relationships.",
1726
+ similes: [
1727
+ "DELETE_CONTACT",
1728
+ "REMOVE_FROM_ROLODEX",
1729
+ "DELETE_FROM_CONTACTS",
1730
+ "FORGET_PERSON",
1731
+ "REMOVE_FROM_CONTACTS",
1732
+ ],
1733
+ parameters: [
1734
+ {
1735
+ name: "name",
1736
+ description: "The contact name to remove.",
1737
+ required: true,
1738
+ schema: {
1739
+ type: "string",
1740
+ },
1741
+ examples: ["Sarah Chen"],
1742
+ descriptionCompressed: "Contact name.",
1743
+ },
1744
+ ],
1745
+ examples: [
1746
+ [
1747
+ {
1748
+ name: "{{name1}}",
1749
+ content: {
1750
+ text: "Remove John from my contacts",
1751
+ },
1752
+ },
1753
+ {
1754
+ name: "{{name2}}",
1755
+ content: {
1756
+ text: "Are you sure you want to remove John from your contacts?",
1757
+ },
1758
+ },
1759
+ {
1760
+ name: "{{name1}}",
1761
+ content: {
1762
+ text: "Yes",
1763
+ },
1764
+ },
1765
+ {
1766
+ name: "{{name2}}",
1767
+ content: {
1768
+ text: "I've removed John from your contacts.",
1769
+ },
1770
+ },
1771
+ ],
1772
+ ],
1773
+ descriptionCompressed: "Remove contact from relationships.",
1774
+ },
1775
+ {
1776
+ name: "SEARCH_CONTACTS",
1777
+ description: "Search and list contacts in the relationships by name or query.",
1778
+ similes: [
1779
+ "FIND_CONTACTS",
1780
+ "LOOKUP_CONTACTS",
1781
+ "LIST_CONTACTS",
1782
+ "SHOW_CONTACTS",
1783
+ "list contacts",
1784
+ "show contacts",
1785
+ "search contacts",
1786
+ "find contacts",
1787
+ "who are my friends",
1788
+ ],
1789
+ parameters: [
1790
+ {
1791
+ name: "query",
1792
+ description: "Search query (name, handle, or free-text).",
1793
+ required: true,
1794
+ schema: {
1795
+ type: "string",
1796
+ },
1797
+ examples: ["sarah", "AI meetup"],
1798
+ descriptionCompressed: "Search query (name/handle/free-text).",
1799
+ },
1800
+ ],
1801
+ examples: [
1802
+ [
1803
+ {
1804
+ name: "{{name1}}",
1805
+ content: {
1806
+ text: "Show me my friends",
1807
+ },
1808
+ },
1809
+ {
1810
+ name: "{{name2}}",
1811
+ content: {
1812
+ text: "Here are your contacts tagged as friends: Sarah Chen, John Smith...",
1813
+ },
1814
+ },
1815
+ ],
1816
+ ],
1817
+ descriptionCompressed: "Search/list contacts by name or query.",
1818
+ },
1819
+ {
1820
+ name: "SCHEDULE_FOLLOW_UP",
1821
+ description: "Schedule a follow-up reminder for a contact.",
1822
+ similes: [
1823
+ "REMIND_ME",
1824
+ "FOLLOW_UP",
1825
+ "REMIND_FOLLOW_UP",
1826
+ "SET_REMINDER",
1827
+ "REMIND_ABOUT",
1828
+ "FOLLOW_UP_WITH",
1829
+ "follow up with",
1830
+ "remind me to contact",
1831
+ "schedule a check-in",
1832
+ "set a reminder for",
1833
+ ],
1834
+ parameters: [
1835
+ {
1836
+ name: "name",
1837
+ description: "Contact name to follow up with.",
1838
+ required: true,
1839
+ schema: {
1840
+ type: "string",
1841
+ },
1842
+ examples: ["Sarah Chen"],
1843
+ descriptionCompressed: "Contact name.",
1844
+ },
1845
+ {
1846
+ name: "when",
1847
+ description: "When to follow up. Use an ISO-8601 datetime string.",
1848
+ required: true,
1849
+ schema: {
1850
+ type: "string",
1851
+ },
1852
+ examples: ["2026-02-01T09:00:00Z"],
1853
+ descriptionCompressed: "ISO-8601 datetime.",
1854
+ },
1855
+ {
1856
+ name: "reason",
1857
+ description: "Optional reason/context for the follow-up.",
1858
+ required: false,
1859
+ schema: {
1860
+ type: "string",
1861
+ },
1862
+ examples: ["Check in about the agent framework demo"],
1863
+ descriptionCompressed: "Optional reason/context.",
1864
+ },
1865
+ ],
1866
+ examples: [
1867
+ [
1868
+ {
1869
+ name: "{{name1}}",
1870
+ content: {
1871
+ text: "Remind me to follow up with Sarah next week about the demo",
1872
+ },
1873
+ },
1874
+ {
1875
+ name: "{{name2}}",
1876
+ content: {
1877
+ text: "I've scheduled a follow-up reminder with Sarah for next week about the demo.",
1878
+ },
1879
+ },
1880
+ ],
1881
+ ],
1882
+ descriptionCompressed: "Schedule follow-up reminder for contact.",
1883
+ },
1884
+ {
1885
+ name: "CHOOSE_OPTION",
1886
+ description: "Select an option for a pending task that has multiple options.",
1887
+ similes: [
1888
+ "SELECT_OPTION",
1889
+ "PICK_OPTION",
1890
+ "SELECT_TASK",
1891
+ "PICK_TASK",
1892
+ "SELECT",
1893
+ "PICK",
1894
+ "CHOOSE",
1895
+ ],
1896
+ parameters: [
1897
+ {
1898
+ name: "taskId",
1899
+ description: "The pending task id.",
1900
+ required: true,
1901
+ schema: {
1902
+ type: "string",
1903
+ },
1904
+ examples: ["c0a8012e"],
1905
+ descriptionCompressed: "Pending task id.",
1906
+ },
1907
+ {
1908
+ name: "option",
1909
+ description: "The selected option name exactly as listed.",
1910
+ required: true,
1911
+ schema: {
1912
+ type: "string",
1913
+ },
1914
+ examples: ["APPROVE", "ABORT"],
1915
+ descriptionCompressed: "Option name exactly as listed.",
1916
+ },
1917
+ ],
1918
+ examples: [
1919
+ [
1920
+ {
1921
+ name: "{{name1}}",
1922
+ content: {
1923
+ text: "Select the first option",
1924
+ },
1925
+ },
1926
+ {
1927
+ name: "{{name2}}",
1928
+ content: {
1929
+ text: "I've selected option 1 for the pending task.",
1930
+ actions: ["CHOOSE_OPTION"],
1931
+ },
1932
+ },
1933
+ ],
1934
+ ],
1935
+ descriptionCompressed: "Select option for pending multi-choice task.",
1936
+ },
1937
+ {
1938
+ name: "FOLLOW_ROOM",
1939
+ description: "Start following this channel with great interest, chiming in without needing to be explicitly mentioned. Only do this if explicitly asked to.",
1940
+ similes: [
1941
+ "FOLLOW_CHAT",
1942
+ "FOLLOW_CHANNEL",
1943
+ "FOLLOW_CONVERSATION",
1944
+ "FOLLOW_THREAD",
1945
+ "JOIN_ROOM",
1946
+ "SUBSCRIBE_ROOM",
1947
+ "WATCH_ROOM",
1948
+ "ENTER_ROOM",
1949
+ ],
1950
+ parameters: [
1951
+ {
1952
+ name: "roomId",
1953
+ description: "The target room id to follow.",
1954
+ required: true,
1955
+ schema: {
1956
+ type: "string",
1957
+ },
1958
+ examples: ["00000000-0000-0000-0000-000000000000"],
1959
+ descriptionCompressed: "Room id to follow.",
1960
+ },
1961
+ ],
1962
+ examples: [
1963
+ [
1964
+ {
1965
+ name: "{{name1}}",
1966
+ content: {
1967
+ text: "hey {{name2}} follow this channel",
1968
+ },
1969
+ },
1970
+ {
1971
+ name: "{{name2}}",
1972
+ content: {
1973
+ text: "Sure, I will now follow this room and chime in",
1974
+ actions: ["FOLLOW_ROOM"],
1975
+ },
1976
+ },
1977
+ ],
1978
+ [
1979
+ {
1980
+ name: "{{name1}}",
1981
+ content: {
1982
+ text: "{{name2}} stay in this chat pls",
1983
+ },
1984
+ },
1985
+ {
1986
+ name: "{{name2}}",
1987
+ content: {
1988
+ text: "you got it, i'm here",
1989
+ actions: ["FOLLOW_ROOM"],
1990
+ },
1991
+ },
1992
+ ],
1993
+ ],
1994
+ descriptionCompressed: "Start following channel, chiming in without @mention. Only when explicitly asked.",
1995
+ },
1996
+ {
1997
+ name: "UNFOLLOW_ROOM",
1998
+ description: "Stop following a room and cease receiving updates. Use this when you no longer want to monitor a room's activity.",
1999
+ similes: [
2000
+ "UNFOLLOW_CHAT",
2001
+ "UNFOLLOW_CONVERSATION",
2002
+ "UNFOLLOW_ROOM",
2003
+ "UNFOLLOW_THREAD",
2004
+ "LEAVE_ROOM",
2005
+ "UNSUBSCRIBE_ROOM",
2006
+ "STOP_WATCHING_ROOM",
2007
+ "EXIT_ROOM",
2008
+ ],
2009
+ parameters: [
2010
+ {
2011
+ name: "roomId",
2012
+ description: "The target room id to unfollow.",
2013
+ required: true,
2014
+ schema: {
2015
+ type: "string",
2016
+ },
2017
+ examples: ["00000000-0000-0000-0000-000000000000"],
2018
+ descriptionCompressed: "Room id to unfollow.",
2019
+ },
2020
+ ],
2021
+ examples: [
2022
+ [
2023
+ {
2024
+ name: "{{name1}}",
2025
+ content: {
2026
+ text: "{{name2}} stop following this channel",
2027
+ },
2028
+ },
2029
+ {
2030
+ name: "{{name2}}",
2031
+ content: {
2032
+ text: "Okay, I'll stop following this room",
2033
+ actions: ["UNFOLLOW_ROOM"],
2034
+ },
2035
+ },
2036
+ ],
2037
+ ],
2038
+ descriptionCompressed: "Stop following room, cease updates.",
2039
+ },
2040
+ {
2041
+ name: "MUTE_ROOM",
2042
+ description: "Mutes a room, ignoring all messages unless explicitly mentioned. Only do this if explicitly asked to, or if you're annoying people.",
2043
+ similes: [
2044
+ "MUTE_CHAT",
2045
+ "MUTE_CONVERSATION",
2046
+ "MUTE_THREAD",
2047
+ "MUTE_CHANNEL",
2048
+ "SILENCE_ROOM",
2049
+ "QUIET_ROOM",
2050
+ "DISABLE_NOTIFICATIONS",
2051
+ "STOP_RESPONDING",
2052
+ ],
2053
+ parameters: [
2054
+ {
2055
+ name: "roomId",
2056
+ description: "The room id to mute.",
2057
+ required: true,
2058
+ schema: {
2059
+ type: "string",
2060
+ },
2061
+ examples: ["00000000-0000-0000-0000-000000000000"],
2062
+ descriptionCompressed: "Room id to mute.",
2063
+ },
2064
+ ],
2065
+ examples: [
2066
+ [
2067
+ {
2068
+ name: "{{name1}}",
2069
+ content: {
2070
+ text: "{{name2}}, please mute this channel. No need to respond here for now.",
2071
+ },
2072
+ },
2073
+ {
2074
+ name: "{{name2}}",
2075
+ content: {
2076
+ text: "Got it",
2077
+ actions: ["MUTE_ROOM"],
2078
+ },
2079
+ },
2080
+ ],
2081
+ [
2082
+ {
2083
+ name: "{{name1}}",
2084
+ content: {
2085
+ text: "{{name2}} plz mute this room",
2086
+ },
2087
+ },
2088
+ {
2089
+ name: "{{name2}}",
2090
+ content: {
2091
+ text: "np going silent",
2092
+ actions: ["MUTE_ROOM"],
2093
+ },
2094
+ },
2095
+ ],
2096
+ ],
2097
+ descriptionCompressed: "Mute room, ignore msgs unless @mentioned. Only when asked or annoying.",
2098
+ },
2099
+ {
2100
+ name: "UNMUTE_ROOM",
2101
+ description: "Unmute a room to resume responding and receiving notifications. Use this when you want to start interacting with a muted room again.",
2102
+ similes: [
2103
+ "UNMUTE_CHAT",
2104
+ "UNMUTE_CONVERSATION",
2105
+ "UNMUTE_ROOM",
2106
+ "UNMUTE_THREAD",
2107
+ "UNSILENCE_ROOM",
2108
+ "ENABLE_NOTIFICATIONS",
2109
+ "RESUME_RESPONDING",
2110
+ "START_LISTENING",
2111
+ ],
2112
+ parameters: [
2113
+ {
2114
+ name: "roomId",
2115
+ description: "The room id to unmute.",
2116
+ required: true,
2117
+ schema: {
2118
+ type: "string",
2119
+ },
2120
+ examples: ["00000000-0000-0000-0000-000000000000"],
2121
+ descriptionCompressed: "Room id to unmute.",
2122
+ },
2123
+ ],
2124
+ examples: [
2125
+ [
2126
+ {
2127
+ name: "{{name1}}",
2128
+ content: {
2129
+ text: "{{name2}} unmute this room please",
2130
+ },
2131
+ },
2132
+ {
2133
+ name: "{{name2}}",
2134
+ content: {
2135
+ text: "I've unmuted this room and will respond again",
2136
+ actions: ["UNMUTE_ROOM"],
2137
+ },
2138
+ },
2139
+ ],
2140
+ ],
2141
+ descriptionCompressed: "Unmute room, resume responding.",
2142
+ },
2143
+ {
2144
+ name: "UPDATE_SETTINGS",
2145
+ description: "Update agent settings by applying explicit key/value updates.",
2146
+ similes: [
2147
+ "SET_SETTINGS",
2148
+ "CHANGE_SETTINGS",
2149
+ "UPDATE_SETTING",
2150
+ "SAVE_SETTING",
2151
+ "SET_CONFIGURATION",
2152
+ "CONFIGURE",
2153
+ "MODIFY_SETTINGS",
2154
+ "SET_PREFERENCE",
2155
+ "UPDATE_CONFIG",
2156
+ ],
2157
+ parameters: [
2158
+ {
2159
+ name: "updates",
2160
+ description: 'A JSON array of {"key": string, "value": string} updates (stringified JSON).',
2161
+ required: true,
2162
+ schema: {
2163
+ type: "string",
2164
+ },
2165
+ examples: ['[{"key":"model","value":"gpt-5"}]'],
2166
+ descriptionCompressed: "JSON array of {key, value} updates.",
2167
+ },
2168
+ ],
2169
+ examples: [
2170
+ [
2171
+ {
2172
+ name: "{{name1}}",
2173
+ content: {
2174
+ text: "Change my language setting to French",
2175
+ },
2176
+ },
2177
+ {
2178
+ name: "{{name2}}",
2179
+ content: {
2180
+ text: "I've updated your language setting to French.",
2181
+ actions: ["UPDATE_SETTINGS"],
2182
+ },
2183
+ },
2184
+ ],
2185
+ ],
2186
+ descriptionCompressed: "Update agent settings via key/value pairs.",
2187
+ },
2188
+ {
2189
+ name: "UPDATE_ROLE",
2190
+ description: "Assigns a role (Admin, Owner, None) to a user or list of users in a channel.",
2191
+ similes: [
2192
+ "SET_ROLE",
2193
+ "CHANGE_ROLE",
2194
+ "SET_PERMISSIONS",
2195
+ "ASSIGN_ROLE",
2196
+ "MAKE_ADMIN",
2197
+ "MODIFY_PERMISSIONS",
2198
+ "GRANT_ROLE",
2199
+ ],
2200
+ parameters: [
2201
+ {
2202
+ name: "entityId",
2203
+ description: "The entity id to update.",
2204
+ required: true,
2205
+ schema: {
2206
+ type: "string",
2207
+ },
2208
+ examples: ["00000000-0000-0000-0000-000000000000"],
2209
+ descriptionCompressed: "Entity id.",
2210
+ },
2211
+ {
2212
+ name: "role",
2213
+ description: "The new role to assign.",
2214
+ required: true,
2215
+ schema: {
2216
+ type: "string",
2217
+ },
2218
+ examples: ["admin", "member"],
2219
+ descriptionCompressed: "Role to assign.",
2220
+ },
2221
+ ],
2222
+ examples: [
2223
+ [
2224
+ {
2225
+ name: "{{name1}}",
2226
+ content: {
2227
+ text: "Make Sarah an admin",
2228
+ },
2229
+ },
2230
+ {
2231
+ name: "{{name2}}",
2232
+ content: {
2233
+ text: "I've assigned the admin role to Sarah.",
2234
+ actions: ["UPDATE_ROLE"],
2235
+ },
2236
+ },
2237
+ ],
2238
+ ],
2239
+ descriptionCompressed: "Assign role (Admin/Owner/None) to user(s) in channel.",
2240
+ },
2241
+ {
2242
+ name: "UPDATE_ENTITY",
2243
+ description: "Add or edit contact details for a person you are talking to or observing. Use this to modify entity profiles, metadata, or attributes.",
2244
+ similes: [
2245
+ "EDIT_ENTITY",
2246
+ "MODIFY_ENTITY",
2247
+ "CHANGE_ENTITY",
2248
+ "UPDATE_PROFILE",
2249
+ "SET_ENTITY_INFO",
2250
+ ],
2251
+ parameters: [
2252
+ {
2253
+ name: "entityId",
2254
+ description: "The entity id to update.",
2255
+ required: true,
2256
+ schema: {
2257
+ type: "string",
2258
+ },
2259
+ examples: ["00000000-0000-0000-0000-000000000000"],
2260
+ descriptionCompressed: "Entity id.",
2261
+ },
2262
+ {
2263
+ name: "updates",
2264
+ description: 'A JSON array of {"name": string, "value": string} field updates (stringified JSON).',
2265
+ required: true,
2266
+ schema: {
2267
+ type: "string",
2268
+ },
2269
+ examples: ['[{"name":"bio","value":"Loves Rust"}]'],
2270
+ descriptionCompressed: "JSON array of {name, value} updates.",
2271
+ },
2272
+ ],
2273
+ examples: [
2274
+ [
2275
+ {
2276
+ name: "{{name1}}",
2277
+ content: {
2278
+ text: "Update my profile bio to say 'AI enthusiast'",
2279
+ },
2280
+ },
2281
+ {
2282
+ name: "{{name2}}",
2283
+ content: {
2284
+ text: "I've updated your profile bio.",
2285
+ actions: ["UPDATE_ENTITY"],
2286
+ },
2287
+ },
2288
+ ],
2289
+ ],
2290
+ descriptionCompressed: "Edit contact details for person in conversation.",
2291
+ },
2292
+ {
2293
+ name: "THINK",
2294
+ description: "Pause and think deeply about a complex question, ambiguous request, or multi-faceted problem before responding. Use THINK when the question requires careful reasoning, when you are not confident in your initial assessment, when the user asks something nuanced that benefits from structured analysis, or when multiple valid approaches exist and you need to evaluate trade-offs. Do NOT use THINK for simple greetings, factual lookups, or straightforward requests where the answer is obvious. THINK re-processes the full conversation context through a larger, more capable model to produce a thorough, well-reasoned response.",
2295
+ similes: [
2296
+ "PLAN",
2297
+ "REASON",
2298
+ "ANALYZE",
2299
+ "REFLECT",
2300
+ "CONSIDER",
2301
+ "DELIBERATE",
2302
+ "DEEP_THINK",
2303
+ "PONDER",
2304
+ ],
2305
+ parameters: [],
2306
+ examples: [
2307
+ [
2308
+ {
2309
+ name: "{{name1}}",
2310
+ content: {
2311
+ text: "What's the best architecture for a real-time multiplayer game with 10k concurrent users?",
2312
+ },
2313
+ },
2314
+ {
2315
+ name: "{{name2}}",
2316
+ content: {
2317
+ text: "That's a great question with several important trade-offs to consider. Let me think through this carefully...",
2318
+ actions: ["THINK"],
2319
+ },
2320
+ },
2321
+ ],
2322
+ [
2323
+ {
2324
+ name: "{{name1}}",
2325
+ content: {
2326
+ text: "Should I use a monorepo or polyrepo for my team of 15 engineers working on 3 microservices?",
2327
+ },
2328
+ },
2329
+ {
2330
+ name: "{{name2}}",
2331
+ content: {
2332
+ text: "Let me think about the trade-offs for your specific situation...",
2333
+ actions: ["THINK"],
2334
+ },
2335
+ },
2336
+ ],
2337
+ [
2338
+ {
2339
+ name: "{{name1}}",
2340
+ content: {
2341
+ text: "We're seeing intermittent 502 errors in production but only during peak hours. Our setup is nginx -> node -> postgres. What could cause this?",
2342
+ },
2343
+ },
2344
+ {
2345
+ name: "{{name2}}",
2346
+ content: {
2347
+ text: "There are several possible causes here. Let me reason through the full request path systematically...",
2348
+ actions: ["THINK"],
2349
+ },
2350
+ },
2351
+ ],
2352
+ [
2353
+ {
2354
+ name: "{{name1}}",
2355
+ content: {
2356
+ text: "How should we handle authentication across our mobile app, web app, and API given we need SSO with both Google and enterprise SAML providers?",
2357
+ },
2358
+ },
2359
+ {
2360
+ name: "{{name2}}",
2361
+ content: {
2362
+ text: "Cross-platform auth with multiple identity providers has some nuance. Let me plan this out...",
2363
+ actions: ["THINK"],
2364
+ },
2365
+ },
2366
+ ],
2367
+ ],
2368
+ descriptionCompressed: "Deep reasoning for complex/ambiguous questions. Re-processes full context through larger model. Use when careful reasoning needed, not for simple lookups.",
2369
+ },
2370
+ {
2371
+ name: "GENERATE_IMAGE",
2372
+ description: "Generates an image based on a generated prompt reflecting the current conversation. Use GENERATE_IMAGE when the agent needs to visualize, illustrate, or demonstrate something visually for the user.",
2373
+ similes: [
2374
+ "DRAW",
2375
+ "CREATE_IMAGE",
2376
+ "RENDER_IMAGE",
2377
+ "VISUALIZE",
2378
+ "MAKE_IMAGE",
2379
+ "PAINT",
2380
+ "IMAGE",
2381
+ ],
2382
+ parameters: [
2383
+ {
2384
+ name: "prompt",
2385
+ description: "Image generation prompt.",
2386
+ required: true,
2387
+ schema: {
2388
+ type: "string",
2389
+ },
2390
+ examples: ["A futuristic cityscape at sunset, cinematic lighting"],
2391
+ descriptionCompressed: "Image prompt.",
2392
+ },
2393
+ ],
2394
+ examples: [
2395
+ [
2396
+ {
2397
+ name: "{{name1}}",
2398
+ content: {
2399
+ text: "Can you show me what a futuristic city looks like?",
2400
+ },
2401
+ },
2402
+ {
2403
+ name: "{{name2}}",
2404
+ content: {
2405
+ text: "Sure, I'll create a futuristic city image for you. One moment...",
2406
+ actions: ["GENERATE_IMAGE"],
2407
+ },
2408
+ },
2409
+ ],
2410
+ [
2411
+ {
2412
+ name: "{{name1}}",
2413
+ content: {
2414
+ text: "What does a neural network look like visually?",
2415
+ },
2416
+ },
2417
+ {
2418
+ name: "{{name2}}",
2419
+ content: {
2420
+ text: "I'll create a visualization of a neural network for you, one sec...",
2421
+ actions: ["GENERATE_IMAGE"],
2422
+ },
2423
+ },
2424
+ ],
2425
+ [
2426
+ {
2427
+ name: "{{name1}}",
2428
+ content: {
2429
+ text: "Can you visualize the feeling of calmness for me?",
2430
+ },
2431
+ },
2432
+ {
2433
+ name: "{{name2}}",
2434
+ content: {
2435
+ text: "Creating an image to capture calmness for you, please wait a moment...",
2436
+ actions: ["GENERATE_IMAGE"],
2437
+ },
2438
+ },
2439
+ ],
2440
+ ],
2441
+ descriptionCompressed: "Generate image from conversation context. Use to visualize or illustrate.",
2442
+ },
2443
+ {
2444
+ name: "ADD_TO_PLAYLIST",
2445
+ description: "Add music to a playlist. If the track is not already in the library, the configured music fetch service must resolve it first. Creates the playlist if it does not exist.",
2446
+ parameters: [],
2447
+ similes: [
2448
+ "ADD_SONG_TO_PLAYLIST",
2449
+ "PUT_IN_PLAYLIST",
2450
+ "SAVE_TO_PLAYLIST",
2451
+ "ADD_TRACK_TO_PLAYLIST",
2452
+ ],
2453
+ },
2454
+ {
2455
+ name: "BLUEBUBBLES_SEND_REACTION",
2456
+ description: "Add or remove a reaction on a message via BlueBubbles",
2457
+ parameters: [],
2458
+ similes: ["BLUEBUBBLES_REACT", "BB_REACTION", "IMESSAGE_REACT"],
2459
+ },
2460
+ {
2461
+ name: "BROWSER_ACTION",
2462
+ description: "Control a Chromium-based browser through the local runtime. This action opens or connects to a browser session, navigates pages, clicks elements, types into forms, reads DOM state, executes JavaScript, waits for conditions, and manages tabs.\n\n",
2463
+ parameters: [],
2464
+ similes: [
2465
+ "CONTROL_BROWSER",
2466
+ "WEB_BROWSER",
2467
+ "OPEN_BROWSER",
2468
+ "BROWSE_WEB",
2469
+ "NAVIGATE_BROWSER",
2470
+ "BROWSER_CLICK",
2471
+ "BROWSER_TYPE",
2472
+ ],
2473
+ },
2474
+ {
2475
+ name: "CHECK_CLOUD_CREDITS",
2476
+ description: "Check ElizaCloud credit balance, container costs, and estimated remaining runtime.",
2477
+ parameters: [],
2478
+ similes: [
2479
+ "check credits",
2480
+ "check balance",
2481
+ "how much credit",
2482
+ "cloud billing",
2483
+ ],
2484
+ },
2485
+ {
2486
+ name: "COMMANDS_LIST",
2487
+ description: "List all available commands with their aliases. Only activates for /commands or /cmds slash commands.",
2488
+ parameters: [],
2489
+ similes: ["/commands", "/cmds"],
2490
+ },
2491
+ {
2492
+ name: "DELETE_MESSAGE",
2493
+ description: "Delete a message from a Discord channel",
2494
+ parameters: [],
2495
+ similes: ["REMOVE_MESSAGE", "UNSEND_MESSAGE", "DELETE_DISCORD_MESSAGE"],
2496
+ },
2497
+ {
2498
+ name: "DELETE_PLAYLIST",
2499
+ description: "Delete a saved playlist. Works best in DMs to avoid flooding group chats.",
2500
+ parameters: [
2501
+ {
2502
+ name: "data",
2503
+ description: "The data to use.",
2504
+ required: false,
2505
+ schema: {
2506
+ type: "string",
2507
+ },
2508
+ examples: ["example"],
2509
+ },
2510
+ ],
2511
+ similes: [
2512
+ "REMOVE_PLAYLIST",
2513
+ "DELETE_SAVED_PLAYLIST",
2514
+ "REMOVE_SAVED_PLAYLIST",
2515
+ ],
2516
+ exampleCalls: [
2517
+ {
2518
+ user: "Use DELETE_PLAYLIST with the provided parameters.",
2519
+ actions: ["DELETE_PLAYLIST"],
2520
+ params: {
2521
+ DELETE_PLAYLIST: {
2522
+ data: "example",
2523
+ },
2524
+ },
2525
+ },
2526
+ ],
2527
+ },
2528
+ {
2529
+ name: "DOWNLOAD_MUSIC",
2530
+ description: "Download music to the local library without playing it. Requires the configured music fetch service to resolve the track.",
2531
+ parameters: [],
2532
+ similes: [
2533
+ "FETCH_MUSIC",
2534
+ "GET_MUSIC",
2535
+ "DOWNLOAD_SONG",
2536
+ "SAVE_MUSIC",
2537
+ "GRAB_MUSIC",
2538
+ ],
2539
+ },
2540
+ {
2541
+ name: "EDIT_MESSAGE",
2542
+ description: "Edit an existing message in a Discord channel",
2543
+ parameters: [],
2544
+ similes: [
2545
+ "UPDATE_MESSAGE",
2546
+ "MODIFY_MESSAGE",
2547
+ "CHANGE_MESSAGE",
2548
+ "EDIT_DISCORD_MESSAGE",
2549
+ ],
2550
+ },
2551
+ {
2552
+ name: "FETCH_FEED_TOP",
2553
+ description: "Fetch the home timeline from X and return the top-N tweets ranked by engagement (likes + retweets * 2).",
2554
+ parameters: [],
2555
+ similes: ["GET_X_FEED", "TOP_TWEETS", "FEED_TOP"],
2556
+ },
2557
+ {
2558
+ name: "FILE_ACTION",
2559
+ description: "Perform local filesystem operations through the computer-use service. This includes read, write, edit, append, delete, exists, list, delete_directory, upload, download, and list_downloads actions.\n\n",
2560
+ parameters: [],
2561
+ similes: [
2562
+ "READ_FILE",
2563
+ "WRITE_FILE",
2564
+ "EDIT_FILE",
2565
+ "DELETE_FILE",
2566
+ "LIST_DIRECTORY",
2567
+ "FILE_OPERATION",
2568
+ ],
2569
+ },
2570
+ {
2571
+ name: "FINALIZE_WORKSPACE",
2572
+ description: "Finalize workspace changes by committing, pushing, and optionally creating a pull request. ",
2573
+ parameters: [
2574
+ {
2575
+ name: "codingWorkspace",
2576
+ description: "The coding workspace to use.",
2577
+ required: false,
2578
+ schema: {
2579
+ type: "string",
2580
+ },
2581
+ examples: ["example"],
2582
+ },
2583
+ ],
2584
+ similes: [
2585
+ "COMMIT_AND_PR",
2586
+ "CREATE_PR",
2587
+ "SUBMIT_CHANGES",
2588
+ "FINISH_WORKSPACE",
2589
+ ],
2590
+ exampleCalls: [
2591
+ {
2592
+ user: "Use FINALIZE_WORKSPACE with the provided parameters.",
2593
+ actions: ["FINALIZE_WORKSPACE"],
2594
+ params: {
2595
+ FINALIZE_WORKSPACE: {
2596
+ codingWorkspace: "example",
2597
+ },
2598
+ },
2599
+ },
2600
+ ],
2601
+ },
2602
+ {
2603
+ name: "FREEZE_CLOUD_AGENT",
2604
+ description: "Freeze a cloud agent: snapshot state, disconnect bridge, stop container.",
2605
+ parameters: [],
2606
+ similes: [
2607
+ "freeze agent",
2608
+ "hibernate agent",
2609
+ "pause agent",
2610
+ "stop cloud agent",
2611
+ ],
2612
+ },
2613
+ {
2614
+ name: "GET_SKILL_DETAILS",
2615
+ description: "Get detailed information about a specific skill including version, owner, and stats.",
2616
+ parameters: [],
2617
+ similes: ["SKILL_INFO", "SKILL_DETAILS"],
2618
+ },
2619
+ {
2620
+ name: "HELP_COMMAND",
2621
+ description: "Show available commands and their descriptions. Only activates for /help, /h, or /? slash commands.",
2622
+ parameters: [],
2623
+ similes: ["/help", "/h", "/?"],
2624
+ },
2625
+ {
2626
+ name: "IMESSAGE_SEND_MESSAGE",
2627
+ description: "Send a text message via iMessage (macOS only)",
2628
+ parameters: [],
2629
+ similes: ["SEND_IMESSAGE", "IMESSAGE_TEXT", "TEXT_IMESSAGE", "SEND_IMSG"],
2630
+ },
2631
+ {
2632
+ name: "INSTALL_SKILL",
2633
+ description: "Install a skill from the ClawHub registry. The skill will be security-scanned before activation. ",
2634
+ parameters: [],
2635
+ similes: ["DOWNLOAD_SKILL", "ADD_SKILL", "GET_SKILL"],
2636
+ },
2637
+ {
2638
+ name: "LIST_AGENTS",
2639
+ description: "List active task agents together with current task progress so the main agent can keep the user updated while work continues asynchronously.",
2640
+ parameters: [],
2641
+ similes: [
2642
+ "LIST_CODING_AGENTS",
2643
+ "SHOW_CODING_AGENTS",
2644
+ "GET_ACTIVE_AGENTS",
2645
+ "LIST_SESSIONS",
2646
+ "SHOW_CODING_SESSIONS",
2647
+ "SHOW_TASK_AGENTS",
2648
+ "LIST_SUB_AGENTS",
2649
+ "SHOW_TASK_STATUS",
2650
+ ],
2651
+ },
2652
+ {
2653
+ name: "LIST_PLAYLISTS",
2654
+ description: "List all saved playlists for the user. Works best in DMs to avoid flooding group chats.",
2655
+ parameters: [
2656
+ {
2657
+ name: "data",
2658
+ description: "The data to use.",
2659
+ required: false,
2660
+ schema: {
2661
+ type: "string",
2662
+ },
2663
+ examples: ["example"],
2664
+ },
2665
+ ],
2666
+ similes: [
2667
+ "SHOW_PLAYLISTS",
2668
+ "MY_PLAYLISTS",
2669
+ "PLAYLIST_LIST",
2670
+ "VIEW_PLAYLISTS",
2671
+ ],
2672
+ exampleCalls: [
2673
+ {
2674
+ user: "Use LIST_PLAYLISTS with the provided parameters.",
2675
+ actions: ["LIST_PLAYLISTS"],
2676
+ params: {
2677
+ LIST_PLAYLISTS: {
2678
+ data: "example",
2679
+ },
2680
+ },
2681
+ },
2682
+ ],
2683
+ },
2684
+ {
2685
+ name: "LOAD_PLAYLIST",
2686
+ description: "Load a saved playlist and add all tracks to the queue. Works best in DMs to avoid flooding group chats.",
2687
+ parameters: [
2688
+ {
2689
+ name: "data",
2690
+ description: "The data to use.",
2691
+ required: false,
2692
+ schema: {
2693
+ type: "string",
2694
+ },
2695
+ examples: ["example"],
2696
+ },
2697
+ ],
2698
+ similes: [
2699
+ "PLAY_PLAYLIST",
2700
+ "LOAD_QUEUE",
2701
+ "RESTORE_PLAYLIST",
2702
+ "PLAY_SAVED_PLAYLIST",
2703
+ ],
2704
+ exampleCalls: [
2705
+ {
2706
+ user: "Use LOAD_PLAYLIST with the provided parameters.",
2707
+ actions: ["LOAD_PLAYLIST"],
2708
+ params: {
2709
+ LOAD_PLAYLIST: {
2710
+ data: "example",
2711
+ },
2712
+ },
2713
+ },
2714
+ ],
2715
+ },
2716
+ {
2717
+ name: "MANAGE_ISSUES",
2718
+ description: "Manage GitHub issues for a repository. ",
2719
+ parameters: [],
2720
+ similes: [
2721
+ "CREATE_ISSUE",
2722
+ "LIST_ISSUES",
2723
+ "CLOSE_ISSUE",
2724
+ "COMMENT_ISSUE",
2725
+ "UPDATE_ISSUE",
2726
+ "GET_ISSUE",
2727
+ ],
2728
+ },
2729
+ {
2730
+ name: "MANAGE_SHOPIFY_CUSTOMERS",
2731
+ description: "List and search customers in a connected Shopify store.",
2732
+ parameters: [],
2733
+ similes: ["LIST_CUSTOMERS", "FIND_CUSTOMER", "SEARCH_CUSTOMERS"],
2734
+ },
2735
+ {
2736
+ name: "MANAGE_SHOPIFY_INVENTORY",
2737
+ description: "Check inventory levels, adjust stock quantities, and list store locations in Shopify.",
2738
+ parameters: [],
2739
+ similes: [
2740
+ "CHECK_INVENTORY",
2741
+ "ADJUST_INVENTORY",
2742
+ "CHECK_STOCK",
2743
+ "UPDATE_STOCK",
2744
+ ],
2745
+ },
2746
+ {
2747
+ name: "MANAGE_SHOPIFY_ORDERS",
2748
+ description: "List recent orders, check specific order status, and mark orders as fulfilled in Shopify.",
2749
+ parameters: [],
2750
+ similes: ["LIST_ORDERS", "CHECK_ORDERS", "FULFILL_ORDER", "ORDER_STATUS"],
2751
+ },
2752
+ {
2753
+ name: "MANAGE_SHOPIFY_PRODUCTS",
2754
+ description: "List, search, create, or update products in a connected Shopify store.",
2755
+ parameters: [],
2756
+ similes: [
2757
+ "LIST_PRODUCTS",
2758
+ "CREATE_PRODUCT",
2759
+ "UPDATE_PRODUCT",
2760
+ "SEARCH_PRODUCTS",
2761
+ ],
2762
+ },
2763
+ {
2764
+ name: "MANAGE_WINDOW",
2765
+ description: "Manage desktop windows — list all visible windows, bring a window to the front, ",
2766
+ parameters: [],
2767
+ similes: [
2768
+ "LIST_WINDOWS",
2769
+ "FOCUS_WINDOW",
2770
+ "SWITCH_WINDOW",
2771
+ "ARRANGE_WINDOWS",
2772
+ "MOVE_WINDOW",
2773
+ "MINIMIZE_WINDOW",
2774
+ "MAXIMIZE_WINDOW",
2775
+ "CLOSE_WINDOW",
2776
+ "WINDOW_MANAGEMENT",
2777
+ ],
2778
+ },
2779
+ {
2780
+ name: "MODELS_COMMAND",
2781
+ description: "List available AI models and providers. Only activates for /models slash command.",
2782
+ parameters: [],
2783
+ similes: ["/models"],
2784
+ },
2785
+ {
2786
+ name: "PAUSE_MUSIC",
2787
+ description: "Pause the currently playing track (hold playback). Use whenever the user asks to pause music or audio. ",
2788
+ parameters: [],
2789
+ similes: ["PAUSE", "PAUSE_AUDIO", "PAUSE_SONG", "PAUSE_PLAYBACK"],
2790
+ },
2791
+ {
2792
+ name: "PLAY_AUDIO",
2793
+ description: "Start playing a new song: provide a track name, artist, search words, or a media URL. ",
2794
+ parameters: [],
2795
+ similes: [
2796
+ "PLAY_YOUTUBE",
2797
+ "PLAY_YOUTUBE_AUDIO",
2798
+ "PLAY_VIDEO_AUDIO",
2799
+ "PLAY_MUSIC",
2800
+ "PLAY_SONG",
2801
+ "PLAY_TRACK",
2802
+ "START_MUSIC",
2803
+ "PLAY_THIS",
2804
+ "STREAM_YOUTUBE",
2805
+ "PLAY_FROM_YOUTUBE",
2806
+ "QUEUE_SONG",
2807
+ "ADD_TO_QUEUE",
2808
+ ],
2809
+ },
2810
+ {
2811
+ name: "PLAY_MUSIC_QUERY",
2812
+ description: "Handle any complex music query that requires understanding and research. Supports: artist queries (first single, latest song, similar artists, popular songs, nth album), temporal (80s, 90s, specific years), genre/mood/vibe, activities (workout, study, party), charts/trending, albums, movie/game/TV soundtracks, lyrics/topics, versions (covers, remixes, acoustic, live), and more. Uses Wikipedia, music databases, and web search to find the right music.",
2813
+ parameters: [],
2814
+ similes: [
2815
+ "SMART_PLAY",
2816
+ "RESEARCH_AND_PLAY",
2817
+ "FIND_AND_PLAY",
2818
+ "INTELLIGENT_MUSIC_SEARCH",
2819
+ ],
2820
+ },
2821
+ {
2822
+ name: "POST_TWEET",
2823
+ description: "Post a tweet on Twitter",
2824
+ parameters: [],
2825
+ similes: [
2826
+ "TWEET",
2827
+ "SEND_TWEET",
2828
+ "TWITTER_POST",
2829
+ "POST_ON_TWITTER",
2830
+ "SHARE_ON_TWITTER",
2831
+ ],
2832
+ },
2833
+ {
2834
+ name: "PROVISION_CLOUD_AGENT",
2835
+ description: "Deploy an ElizaOS agent to ElizaCloud. Provisions a container, waits for deployment, connects the bridge, and starts auto-backup.",
2836
+ parameters: [],
2837
+ similes: [
2838
+ "deploy agent to cloud",
2839
+ "launch cloud agent",
2840
+ "start remote agent",
2841
+ "provision container",
2842
+ ],
2843
+ },
2844
+ {
2845
+ name: "PROVISION_WORKSPACE",
2846
+ description: "Create a git workspace for coding tasks. ",
2847
+ parameters: [
2848
+ {
2849
+ name: "codingWorkspace",
2850
+ description: "The coding workspace to use.",
2851
+ required: false,
2852
+ schema: {
2853
+ type: "string",
2854
+ },
2855
+ examples: ["example"],
2856
+ },
2857
+ ],
2858
+ similes: [
2859
+ "CREATE_WORKSPACE",
2860
+ "CLONE_REPO",
2861
+ "SETUP_WORKSPACE",
2862
+ "PREPARE_WORKSPACE",
2863
+ ],
2864
+ exampleCalls: [
2865
+ {
2866
+ user: "Use PROVISION_WORKSPACE with the provided parameters.",
2867
+ actions: ["PROVISION_WORKSPACE"],
2868
+ params: {
2869
+ PROVISION_WORKSPACE: {
2870
+ codingWorkspace: "example",
2871
+ },
2872
+ },
2873
+ },
2874
+ ],
2875
+ },
2876
+ {
2877
+ name: "QUEUE_MUSIC",
2878
+ description: "Add a song to the queue for later",
2879
+ parameters: [
2880
+ {
2881
+ name: "data",
2882
+ description: "The data to use.",
2883
+ required: false,
2884
+ schema: {
2885
+ type: "string",
2886
+ },
2887
+ examples: ["example"],
2888
+ },
2889
+ ],
2890
+ similes: ["ADD_TO_QUEUE", "QUEUE_SONG", "QUEUE_TRACK", "ADD_SONG"],
2891
+ exampleCalls: [
2892
+ {
2893
+ user: "Use QUEUE_MUSIC with the provided parameters.",
2894
+ actions: ["QUEUE_MUSIC"],
2895
+ params: {
2896
+ QUEUE_MUSIC: {
2897
+ data: "example",
2898
+ },
2899
+ },
2900
+ },
2901
+ ],
2902
+ },
2903
+ {
2904
+ name: "READ_UNREAD_X_DMS",
2905
+ description: "List unread Twitter/X direct messages.",
2906
+ parameters: [],
2907
+ similes: ["READ_X_DMS", "GET_X_UNREAD_DMS", "CHECK_X_DMS"],
2908
+ },
2909
+ {
2910
+ name: "REPLY_X_DM",
2911
+ description: "Reply to a Twitter/X direct message. Two-stage: without `confirmed: true` this returns a preview and requires confirmation; with `confirmed: true` the DM is sent.",
2912
+ parameters: [],
2913
+ similes: ["SEND_X_DM", "REPLY_TWITTER_DM", "X_DM_REPLY"],
2914
+ },
2915
+ {
2916
+ name: "RESUME_CLOUD_AGENT",
2917
+ description: "Resume a frozen cloud agent from snapshot. Re-provisions, restores state, reconnects bridge.",
2918
+ parameters: [],
2919
+ similes: [
2920
+ "resume agent",
2921
+ "unfreeze agent",
2922
+ "restart cloud agent",
2923
+ "restore agent",
2924
+ ],
2925
+ },
2926
+ {
2927
+ name: "RESUME_MUSIC",
2928
+ description: "Resume music after a pause. Use when the user says resume, unpause, or continue. ",
2929
+ parameters: [],
2930
+ similes: [
2931
+ "RESUME",
2932
+ "RESUME_AUDIO",
2933
+ "RESUME_SONG",
2934
+ "UNPAUSE",
2935
+ "UNPAUSE_MUSIC",
2936
+ "CONTINUE_MUSIC",
2937
+ ],
2938
+ },
2939
+ {
2940
+ name: "SAVE_PLAYLIST",
2941
+ description: "Save the current music queue as a playlist for the user. Works best in DMs to avoid flooding group chats.",
2942
+ parameters: [
2943
+ {
2944
+ name: "data",
2945
+ description: "The data to use.",
2946
+ required: false,
2947
+ schema: {
2948
+ type: "string",
2949
+ },
2950
+ examples: ["example"],
2951
+ },
2952
+ ],
2953
+ similes: [
2954
+ "SAVE_QUEUE",
2955
+ "CREATE_PLAYLIST",
2956
+ "STORE_PLAYLIST",
2957
+ "SAVE_MUSIC_LIST",
2958
+ ],
2959
+ exampleCalls: [
2960
+ {
2961
+ user: "Use SAVE_PLAYLIST with the provided parameters.",
2962
+ actions: ["SAVE_PLAYLIST"],
2963
+ params: {
2964
+ SAVE_PLAYLIST: {
2965
+ data: "example",
2966
+ },
2967
+ },
2968
+ },
2969
+ ],
2970
+ },
2971
+ {
2972
+ name: "SEARCH_SHOPIFY_STORE",
2973
+ description: "Search across products, orders, and customers in a connected Shopify store.",
2974
+ parameters: [],
2975
+ similes: ["SHOPIFY_SEARCH", "STORE_SEARCH"],
2976
+ },
2977
+ {
2978
+ name: "SEARCH_SKILLS",
2979
+ description: "Search the skill registry for available skills by keyword or category. Returns each result with action chips (use/enable/disable/install/copy/details).",
2980
+ parameters: [],
2981
+ similes: ["BROWSE_SKILLS", "LIST_SKILLS", "FIND_SKILLS"],
2982
+ },
2983
+ {
2984
+ name: "SEARCH_X",
2985
+ description: "Search X recent tweets using the v2 recent search endpoint. Parameters: query (required), maxResults (optional, default 10).",
2986
+ parameters: [],
2987
+ similes: ["SEARCH_TWITTER", "SEARCH_TWEETS", "X_SEARCH"],
2988
+ },
2989
+ {
2990
+ name: "SEARCH_YOUTUBE",
2991
+ description: "Search YouTube for a song or video and return the link. Use this when a user asks to find or search for a YouTube video or song without providing a specific URL.",
2992
+ parameters: [],
2993
+ similes: [
2994
+ "FIND_YOUTUBE",
2995
+ "SEARCH_YOUTUBE_VIDEO",
2996
+ "FIND_SONG",
2997
+ "SEARCH_MUSIC",
2998
+ "GET_YOUTUBE_LINK",
2999
+ "LOOKUP_YOUTUBE",
3000
+ ],
3001
+ },
3002
+ {
3003
+ name: "SEND_BLUEBUBBLES_MESSAGE",
3004
+ description: "Send a message via iMessage through BlueBubbles",
3005
+ parameters: [],
3006
+ similes: [
3007
+ "SEND_IMESSAGE",
3008
+ "TEXT_MESSAGE",
3009
+ "IMESSAGE_REPLY",
3010
+ "BLUEBUBBLES_SEND",
3011
+ "APPLE_MESSAGE",
3012
+ ],
3013
+ },
3014
+ {
3015
+ name: "SEND_TO_AGENT",
3016
+ description: "Send text input or key presses to a running task-agent session. ",
3017
+ parameters: [
3018
+ {
3019
+ name: "codingSession",
3020
+ description: "The coding session to use.",
3021
+ required: false,
3022
+ schema: {
3023
+ type: "string",
3024
+ },
3025
+ examples: ["example"],
3026
+ },
3027
+ ],
3028
+ similes: [
3029
+ "SEND_TO_CODING_AGENT",
3030
+ "MESSAGE_CODING_AGENT",
3031
+ "INPUT_TO_AGENT",
3032
+ "RESPOND_TO_AGENT",
3033
+ "TELL_CODING_AGENT",
3034
+ "MESSAGE_AGENT",
3035
+ "TELL_TASK_AGENT",
3036
+ ],
3037
+ exampleCalls: [
3038
+ {
3039
+ user: "Use SEND_TO_AGENT with the provided parameters.",
3040
+ actions: ["SEND_TO_AGENT"],
3041
+ params: {
3042
+ SEND_TO_AGENT: {
3043
+ codingSession: "example",
3044
+ },
3045
+ },
3046
+ },
3047
+ ],
3048
+ },
3049
+ {
3050
+ name: "SEND_X_POST",
3051
+ description: "Publish a tweet on Twitter/X with a confirmation gate. Two-stage: without `confirmed: true` this returns a preview; with `confirmed: true` the tweet is posted.",
3052
+ parameters: [],
3053
+ similes: ["POST_X", "TWEET_WITH_CONFIRMATION", "PUBLISH_TWEET"],
3054
+ },
3055
+ {
3056
+ name: "SETUP_CREDENTIALS",
3057
+ description: "Guide the user through setting up API credentials for supported third-party services, validate them when possible, and store them securely.",
3058
+ parameters: [
3059
+ {
3060
+ name: "data",
3061
+ description: "The data to use.",
3062
+ required: false,
3063
+ schema: {
3064
+ type: "string",
3065
+ },
3066
+ examples: ["example"],
3067
+ },
3068
+ ],
3069
+ similes: [
3070
+ "ADD_CREDENTIALS",
3071
+ "CONFIGURE_SERVICE",
3072
+ "CONNECT_SERVICE",
3073
+ "ADD_API_KEY",
3074
+ "SETUP_SERVICE",
3075
+ ],
3076
+ exampleCalls: [
3077
+ {
3078
+ user: "Use SETUP_CREDENTIALS with the provided parameters.",
3079
+ actions: ["SETUP_CREDENTIALS"],
3080
+ params: {
3081
+ SETUP_CREDENTIALS: {
3082
+ data: "example",
3083
+ },
3084
+ },
3085
+ },
3086
+ ],
3087
+ },
3088
+ {
3089
+ name: "SHOW_QUEUE",
3090
+ description: "Show the current music queue",
3091
+ parameters: [],
3092
+ similes: ["QUEUE", "LIST_QUEUE", "SHOW_PLAYLIST", "QUEUE_LIST"],
3093
+ },
3094
+ {
3095
+ name: "SIGNAL_LIST_CONTACTS",
3096
+ description: "List Signal contacts",
3097
+ parameters: [],
3098
+ similes: [
3099
+ "LIST_SIGNAL_CONTACTS",
3100
+ "SHOW_CONTACTS",
3101
+ "GET_CONTACTS",
3102
+ "SIGNAL_CONTACTS",
3103
+ ],
3104
+ },
3105
+ {
3106
+ name: "SIGNAL_LIST_GROUPS",
3107
+ description: "List Signal groups",
3108
+ parameters: [],
3109
+ similes: [
3110
+ "LIST_SIGNAL_GROUPS",
3111
+ "SHOW_GROUPS",
3112
+ "GET_GROUPS",
3113
+ "SIGNAL_GROUPS",
3114
+ ],
3115
+ },
3116
+ {
3117
+ name: "SIGNAL_READ_RECENT_MESSAGES",
3118
+ description: "Read the most recent Signal messages across active conversations",
3119
+ parameters: [],
3120
+ similes: [
3121
+ "READ_SIGNAL_MESSAGES",
3122
+ "CHECK_SIGNAL_MESSAGES",
3123
+ "SHOW_SIGNAL_MESSAGES",
3124
+ "SIGNAL_INBOX",
3125
+ ],
3126
+ },
3127
+ {
3128
+ name: "SIGNAL_SEND_MESSAGE",
3129
+ description: "Send a message to a Signal contact or group",
3130
+ parameters: [
3131
+ {
3132
+ name: "data",
3133
+ description: "The data to use.",
3134
+ required: false,
3135
+ schema: {
3136
+ type: "string",
3137
+ },
3138
+ examples: ["example"],
3139
+ },
3140
+ ],
3141
+ similes: [
3142
+ "SEND_SIGNAL_MESSAGE",
3143
+ "TEXT_SIGNAL",
3144
+ "MESSAGE_SIGNAL",
3145
+ "SIGNAL_TEXT",
3146
+ ],
3147
+ exampleCalls: [
3148
+ {
3149
+ user: "Use SIGNAL_SEND_MESSAGE with the provided parameters.",
3150
+ actions: ["SIGNAL_SEND_MESSAGE"],
3151
+ params: {
3152
+ SIGNAL_SEND_MESSAGE: {
3153
+ data: "example",
3154
+ },
3155
+ },
3156
+ },
3157
+ ],
3158
+ },
3159
+ {
3160
+ name: "SIGNAL_SEND_REACTION",
3161
+ description: "React to a Signal message with an emoji",
3162
+ parameters: [
3163
+ {
3164
+ name: "data",
3165
+ description: "The data to use.",
3166
+ required: false,
3167
+ schema: {
3168
+ type: "string",
3169
+ },
3170
+ examples: ["example"],
3171
+ },
3172
+ ],
3173
+ similes: [
3174
+ "REACT_SIGNAL",
3175
+ "SIGNAL_REACT",
3176
+ "ADD_SIGNAL_REACTION",
3177
+ "SIGNAL_EMOJI",
3178
+ ],
3179
+ exampleCalls: [
3180
+ {
3181
+ user: "Use SIGNAL_SEND_REACTION with the provided parameters.",
3182
+ actions: ["SIGNAL_SEND_REACTION"],
3183
+ params: {
3184
+ SIGNAL_SEND_REACTION: {
3185
+ data: "example",
3186
+ },
3187
+ },
3188
+ },
3189
+ ],
3190
+ },
3191
+ {
3192
+ name: "SKIP_TRACK",
3193
+ description: "Skip the current track and play the next queued song. Use for skip, next track, or next song. ",
3194
+ parameters: [],
3195
+ similes: ["SKIP", "NEXT_TRACK", "SKIP_SONG", "NEXT_SONG"],
3196
+ },
3197
+ {
3198
+ name: "SPAWN_AGENT",
3199
+ description: "Spawn a specific task agent inside an existing workspace when you need direct control. ",
3200
+ parameters: [
3201
+ {
3202
+ name: "codingWorkspace",
3203
+ description: "The coding workspace to use.",
3204
+ required: false,
3205
+ schema: {
3206
+ type: "string",
3207
+ },
3208
+ examples: ["example"],
3209
+ },
3210
+ ],
3211
+ similes: [
3212
+ "SPAWN_CODING_AGENT",
3213
+ "START_CODING_AGENT",
3214
+ "LAUNCH_CODING_AGENT",
3215
+ "CREATE_CODING_AGENT",
3216
+ "SPAWN_CODER",
3217
+ "RUN_CODING_AGENT",
3218
+ "SPAWN_SUB_AGENT",
3219
+ "START_TASK_AGENT",
3220
+ "CREATE_AGENT",
3221
+ ],
3222
+ exampleCalls: [
3223
+ {
3224
+ user: "Use SPAWN_AGENT with the provided parameters.",
3225
+ actions: ["SPAWN_AGENT"],
3226
+ params: {
3227
+ SPAWN_AGENT: {
3228
+ codingWorkspace: "example",
3229
+ },
3230
+ },
3231
+ },
3232
+ ],
3233
+ },
3234
+ {
3235
+ name: "STATUS_COMMAND",
3236
+ description: "Show session directive settings via /status slash command. Only activates for /status or /s prefix.",
3237
+ parameters: [],
3238
+ similes: ["/status", "/s"],
3239
+ },
3240
+ {
3241
+ name: "STOP_AGENT",
3242
+ description: "Stop a running task-agent session. ",
3243
+ parameters: [
3244
+ {
3245
+ name: "codingSession",
3246
+ description: "The coding session to use.",
3247
+ required: false,
3248
+ schema: {
3249
+ type: "string",
3250
+ },
3251
+ examples: ["example"],
3252
+ },
3253
+ ],
3254
+ similes: [
3255
+ "STOP_CODING_AGENT",
3256
+ "KILL_CODING_AGENT",
3257
+ "TERMINATE_AGENT",
3258
+ "END_CODING_SESSION",
3259
+ "CANCEL_AGENT",
3260
+ "CANCEL_TASK_AGENT",
3261
+ "STOP_SUB_AGENT",
3262
+ ],
3263
+ exampleCalls: [
3264
+ {
3265
+ user: "Use STOP_AGENT with the provided parameters.",
3266
+ actions: ["STOP_AGENT"],
3267
+ params: {
3268
+ STOP_AGENT: {
3269
+ codingSession: "example",
3270
+ },
3271
+ },
3272
+ },
3273
+ ],
3274
+ },
3275
+ {
3276
+ name: "STOP_COMMAND",
3277
+ description: "Stop current operation or abort running tasks. Triggered by /stop, /abort, or /cancel slash commands only.",
3278
+ parameters: [],
3279
+ similes: ["/stop", "/abort", "/cancel"],
3280
+ },
3281
+ {
3282
+ name: "STOP_MUSIC",
3283
+ description: "Stop playback and clear the queue. Use when the user wants music off or the queue cleared. ",
3284
+ parameters: [],
3285
+ similes: [
3286
+ "STOP_AUDIO",
3287
+ "STOP_PLAYING",
3288
+ "STOP_SONG",
3289
+ "TURN_OFF_MUSIC",
3290
+ "MUSIC_OFF",
3291
+ "SILENCE",
3292
+ ],
3293
+ },
3294
+ {
3295
+ name: "SUMMARIZE_FEED",
3296
+ description: "Fetch the top-N X tweets and produce a concise natural-language summary using the runtime's small text model.",
3297
+ parameters: [],
3298
+ similes: ["X_FEED_SUMMARY", "SUMMARIZE_TWITTER", "SUMMARIZE_X_FEED"],
3299
+ },
3300
+ {
3301
+ name: "SYNC_SKILL_CATALOG",
3302
+ description: "Sync the skill catalog from the registry to discover new skills.",
3303
+ parameters: [],
3304
+ similes: ["REFRESH_SKILLS", "UPDATE_CATALOG"],
3305
+ },
3306
+ {
3307
+ name: "TASK_CONTROL",
3308
+ description: "Pause, stop, resume, continue, archive, or reopen a coordinator task thread while preserving the durable thread history.",
3309
+ parameters: [],
3310
+ similes: [
3311
+ "CONTROL_TASK",
3312
+ "PAUSE_TASK",
3313
+ "RESUME_TASK",
3314
+ "STOP_TASK",
3315
+ "CONTINUE_TASK",
3316
+ "ARCHIVE_TASK",
3317
+ "REOPEN_TASK",
3318
+ ],
3319
+ },
3320
+ {
3321
+ name: "TASK_HISTORY",
3322
+ description: "Query coordinator task history without stuffing raw transcripts into model context. Use this for active work, yesterday/last-week summaries, topic search, counts, and thread detail lookup.",
3323
+ parameters: [],
3324
+ similes: [
3325
+ "LIST_TASK_HISTORY",
3326
+ "GET_TASK_HISTORY",
3327
+ "SHOW_TASKS",
3328
+ "COUNT_TASKS",
3329
+ "TASK_STATUS_HISTORY",
3330
+ ],
3331
+ },
3332
+ {
3333
+ name: "TASK_SHARE",
3334
+ description: "Discover the best available way to view or share a task result, including artifacts, live preview URLs, workspace paths, and environment share capabilities.",
3335
+ parameters: [],
3336
+ similes: [
3337
+ "SHARE_TASK_RESULT",
3338
+ "SHOW_TASK_ARTIFACT",
3339
+ "VIEW_TASK_OUTPUT",
3340
+ "CAN_I_SEE_IT",
3341
+ "PULL_IT_UP",
3342
+ ],
3343
+ },
3344
+ {
3345
+ name: "TERMINAL_ACTION",
3346
+ description: "Execute terminal commands and manage lightweight terminal sessions through the computer-use service. This includes connect, execute, read, type, clear, close, and the upstream execute_command alias.\n\n",
3347
+ parameters: [],
3348
+ similes: [
3349
+ "RUN_COMMAND",
3350
+ "EXECUTE_COMMAND",
3351
+ "SHELL_COMMAND",
3352
+ "TERMINAL",
3353
+ "RUN_SHELL",
3354
+ ],
3355
+ },
3356
+ {
3357
+ name: "TOGGLE_SKILL",
3358
+ description: "Enable or disable an installed skill. Say 'enable <skill>' or 'disable <skill>'.",
3359
+ parameters: [],
3360
+ similes: [
3361
+ "ENABLE_SKILL",
3362
+ "DISABLE_SKILL",
3363
+ "TURN_ON_SKILL",
3364
+ "TURN_OFF_SKILL",
3365
+ "ACTIVATE_SKILL",
3366
+ "DEACTIVATE_SKILL",
3367
+ ],
3368
+ },
3369
+ {
3370
+ name: "UNINSTALL_SKILL",
3371
+ description: "Uninstall a non-bundled skill. Bundled skills cannot be removed. ",
3372
+ parameters: [],
3373
+ similes: ["REMOVE_SKILL", "DELETE_SKILL"],
3374
+ },
3375
+ {
3376
+ name: "USE_COMPUTER",
3377
+ description: "Control the local desktop. This action can inspect the current screen, move the mouse, click, drag, type, press keys, scroll, and perform modified clicks. It is intended for real application interaction when the agent needs to operate the user's computer directly.\n\n",
3378
+ parameters: [],
3379
+ similes: [
3380
+ "CONTROL_COMPUTER",
3381
+ "COMPUTER_ACTION",
3382
+ "DESKTOP_ACTION",
3383
+ "CLICK",
3384
+ "CLICK_SCREEN",
3385
+ "TYPE_TEXT",
3386
+ "PRESS_KEY",
3387
+ "KEY_COMBO",
3388
+ "SCROLL_SCREEN",
3389
+ "MOVE_MOUSE",
3390
+ "DRAG",
3391
+ "MOUSE_CLICK",
3392
+ "CLICK_WITH_MODIFIERS",
3393
+ "TAKE_SCREENSHOT",
3394
+ "CAPTURE_SCREEN",
3395
+ "SEE_SCREEN",
3396
+ ],
3397
+ },
3398
+ {
3399
+ name: "USE_SKILL",
3400
+ description: "Invoke an enabled skill by slug. The skill's instructions or script run and the result returns to the conversation.",
3401
+ parameters: [],
3402
+ similes: ["INVOKE_SKILL", "EXECUTE_SKILL", "RUN_SKILL", "CALL_SKILL"],
3403
+ },
3404
+ ],
3405
+ };
3406
+ export const coreProvidersSpec = {
3407
+ version: "1.0.0",
3408
+ providers: [
3409
+ {
3410
+ name: "ACTIONS",
3411
+ description: "Possible response actions",
3412
+ position: -1,
3413
+ dynamic: false,
3414
+ descriptionCompressed: "Available response actions.",
3415
+ },
3416
+ {
3417
+ name: "CHARACTER",
3418
+ description: "Provides the agent's character definition and personality information including bio, topics, adjectives, style directions, and example conversations",
3419
+ dynamic: false,
3420
+ descriptionCompressed: "Agent character: bio, topics, adjectives, style, example conversations.",
3421
+ },
3422
+ {
3423
+ name: "RECENT_MESSAGES",
3424
+ description: "Provides recent message history from the current conversation including formatted messages, posts, action results, and recent interactions",
3425
+ position: 100,
3426
+ dynamic: true,
3427
+ descriptionCompressed: "Recent conversation messages, posts, action results.",
3428
+ },
3429
+ {
3430
+ name: "ACTION_STATE",
3431
+ description: "Provides information about the current action state and available actions",
3432
+ dynamic: true,
3433
+ descriptionCompressed: "Current action state and available actions.",
3434
+ },
3435
+ {
3436
+ name: "ATTACHMENTS",
3437
+ description: "Media attachments in the current message",
3438
+ dynamic: true,
3439
+ descriptionCompressed: "Media attachments in current message.",
3440
+ },
3441
+ {
3442
+ name: "CAPABILITIES",
3443
+ description: "Agent capabilities including models, services, and features",
3444
+ dynamic: false,
3445
+ descriptionCompressed: "Agent capabilities: models, services, features.",
3446
+ },
3447
+ {
3448
+ name: "CHOICE",
3449
+ description: "Available choice options for selection when there are pending tasks or decisions",
3450
+ dynamic: true,
3451
+ descriptionCompressed: "Pending choice options for multi-option tasks.",
3452
+ },
3453
+ {
3454
+ name: "CONTACTS",
3455
+ description: "Provides contact information from the relationships including categories and preferences",
3456
+ dynamic: true,
3457
+ descriptionCompressed: "Contact info from relationships with categories.",
3458
+ },
3459
+ {
3460
+ name: "CONTEXT_BENCH",
3461
+ description: "Benchmark/task context injected by a benchmark harness",
3462
+ position: 5,
3463
+ dynamic: true,
3464
+ descriptionCompressed: "Benchmark/task context from harness.",
3465
+ },
3466
+ {
3467
+ name: "ENTITIES",
3468
+ description: "Provides information about entities in the current context including users, agents, and participants",
3469
+ dynamic: true,
3470
+ descriptionCompressed: "Entities in context: users, agents, participants.",
3471
+ },
3472
+ {
3473
+ name: "EVALUATORS",
3474
+ description: "Available evaluators for assessing agent behavior",
3475
+ dynamic: false,
3476
+ descriptionCompressed: "Available evaluators for agent behavior.",
3477
+ },
3478
+ {
3479
+ name: "FACTS",
3480
+ description: "Provides known facts about entities learned through conversation",
3481
+ dynamic: true,
3482
+ descriptionCompressed: "Known facts about entities from conversation.",
3483
+ },
3484
+ {
3485
+ name: "FOLLOW_UPS",
3486
+ description: "Provides information about upcoming follow-ups and reminders scheduled for contacts",
3487
+ dynamic: true,
3488
+ descriptionCompressed: "Upcoming follow-ups/reminders for contacts.",
3489
+ },
3490
+ {
3491
+ name: "KNOWLEDGE",
3492
+ description: "Provides relevant knowledge from the agent's knowledge base based on semantic similarity",
3493
+ dynamic: true,
3494
+ descriptionCompressed: "Relevant knowledge from KB via semantic search.",
3495
+ },
3496
+ {
3497
+ name: "PROVIDERS",
3498
+ description: "Available context providers",
3499
+ dynamic: false,
3500
+ descriptionCompressed: "Available context providers.",
3501
+ },
3502
+ {
3503
+ name: "RELATIONSHIPS",
3504
+ description: "Relationships between entities observed by the agent including tags and metadata",
3505
+ dynamic: true,
3506
+ descriptionCompressed: "Entity relationships with tags/metadata.",
3507
+ },
3508
+ {
3509
+ name: "ROLES",
3510
+ description: "Roles assigned to entities in the current context (Admin, Owner, Member, None)",
3511
+ dynamic: true,
3512
+ descriptionCompressed: "Entity roles in context (Admin/Owner/Member/None).",
3513
+ },
3514
+ {
3515
+ name: "SETTINGS",
3516
+ description: "Current settings for the agent/server (filtered for security, excludes sensitive keys)",
3517
+ dynamic: true,
3518
+ descriptionCompressed: "Agent/server settings (security-filtered).",
3519
+ },
3520
+ {
3521
+ name: "TIME",
3522
+ description: "Provides the current date and time in UTC for time-based operations or responses",
3523
+ dynamic: true,
3524
+ descriptionCompressed: "Current UTC date/time.",
3525
+ },
3526
+ {
3527
+ name: "WORLD",
3528
+ description: "Provides information about the current world context including settings and members",
3529
+ dynamic: true,
3530
+ descriptionCompressed: "World context: settings and members.",
3531
+ },
3532
+ {
3533
+ name: "LONG_TERM_MEMORY",
3534
+ description: "Persistent facts and preferences about the user learned and remembered across conversations",
3535
+ position: 50,
3536
+ dynamic: false,
3537
+ descriptionCompressed: "Persistent user facts/preferences across conversations.",
3538
+ },
3539
+ {
3540
+ name: "SUMMARIZED_CONTEXT",
3541
+ description: "Provides summarized context from previous conversations for optimized context usage",
3542
+ position: 96,
3543
+ dynamic: false,
3544
+ descriptionCompressed: "Summarized context from prior conversations.",
3545
+ },
3546
+ {
3547
+ name: "AGENT_SETTINGS",
3548
+ description: "Provides the agent's current configuration settings (filtered for security)",
3549
+ dynamic: true,
3550
+ descriptionCompressed: "Agent config settings (security-filtered).",
3551
+ },
3552
+ {
3553
+ name: "CURRENT_TIME",
3554
+ description: "Provides current time and date information in various formats",
3555
+ dynamic: true,
3556
+ descriptionCompressed: "Current time/date in various formats.",
3557
+ },
3558
+ ],
3559
+ };
3560
+ export const allProvidersSpec = {
3561
+ version: "1.0.0",
3562
+ providers: [
3563
+ {
3564
+ name: "ACTIONS",
3565
+ description: "Possible response actions",
3566
+ position: -1,
3567
+ dynamic: false,
3568
+ descriptionCompressed: "Available response actions.",
3569
+ },
3570
+ {
3571
+ name: "CHARACTER",
3572
+ description: "Provides the agent's character definition and personality information including bio, topics, adjectives, style directions, and example conversations",
3573
+ dynamic: false,
3574
+ descriptionCompressed: "Agent character: bio, topics, adjectives, style, example conversations.",
3575
+ },
3576
+ {
3577
+ name: "RECENT_MESSAGES",
3578
+ description: "Provides recent message history from the current conversation including formatted messages, posts, action results, and recent interactions",
3579
+ position: 100,
3580
+ dynamic: true,
3581
+ descriptionCompressed: "Recent conversation messages, posts, action results.",
3582
+ },
3583
+ {
3584
+ name: "ACTION_STATE",
3585
+ description: "Provides information about the current action state and available actions",
3586
+ dynamic: true,
3587
+ descriptionCompressed: "Current action state and available actions.",
3588
+ },
3589
+ {
3590
+ name: "ATTACHMENTS",
3591
+ description: "Media attachments in the current message",
3592
+ dynamic: true,
3593
+ descriptionCompressed: "Media attachments in current message.",
3594
+ },
3595
+ {
3596
+ name: "CAPABILITIES",
3597
+ description: "Agent capabilities including models, services, and features",
3598
+ dynamic: false,
3599
+ descriptionCompressed: "Agent capabilities: models, services, features.",
3600
+ },
3601
+ {
3602
+ name: "CHOICE",
3603
+ description: "Available choice options for selection when there are pending tasks or decisions",
3604
+ dynamic: true,
3605
+ descriptionCompressed: "Pending choice options for multi-option tasks.",
3606
+ },
3607
+ {
3608
+ name: "CONTACTS",
3609
+ description: "Provides contact information from the relationships including categories and preferences",
3610
+ dynamic: true,
3611
+ descriptionCompressed: "Contact info from relationships with categories.",
3612
+ },
3613
+ {
3614
+ name: "CONTEXT_BENCH",
3615
+ description: "Benchmark/task context injected by a benchmark harness",
3616
+ position: 5,
3617
+ dynamic: true,
3618
+ descriptionCompressed: "Benchmark/task context from harness.",
3619
+ },
3620
+ {
3621
+ name: "ENTITIES",
3622
+ description: "Provides information about entities in the current context including users, agents, and participants",
3623
+ dynamic: true,
3624
+ descriptionCompressed: "Entities in context: users, agents, participants.",
3625
+ },
3626
+ {
3627
+ name: "EVALUATORS",
3628
+ description: "Available evaluators for assessing agent behavior",
3629
+ dynamic: false,
3630
+ descriptionCompressed: "Available evaluators for agent behavior.",
3631
+ },
3632
+ {
3633
+ name: "FACTS",
3634
+ description: "Provides known facts about entities learned through conversation",
3635
+ dynamic: true,
3636
+ descriptionCompressed: "Known facts about entities from conversation.",
3637
+ },
3638
+ {
3639
+ name: "FOLLOW_UPS",
3640
+ description: "Provides information about upcoming follow-ups and reminders scheduled for contacts",
3641
+ dynamic: true,
3642
+ descriptionCompressed: "Upcoming follow-ups/reminders for contacts.",
3643
+ },
3644
+ {
3645
+ name: "KNOWLEDGE",
3646
+ description: "Provides relevant knowledge from the agent's knowledge base based on semantic similarity",
3647
+ dynamic: true,
3648
+ descriptionCompressed: "Relevant knowledge from KB via semantic search.",
3649
+ },
3650
+ {
3651
+ name: "PROVIDERS",
3652
+ description: "Available context providers",
3653
+ dynamic: false,
3654
+ descriptionCompressed: "Available context providers.",
3655
+ },
3656
+ {
3657
+ name: "RELATIONSHIPS",
3658
+ description: "Relationships between entities observed by the agent including tags and metadata",
3659
+ dynamic: true,
3660
+ descriptionCompressed: "Entity relationships with tags/metadata.",
3661
+ },
3662
+ {
3663
+ name: "ROLES",
3664
+ description: "Roles assigned to entities in the current context (Admin, Owner, Member, None)",
3665
+ dynamic: true,
3666
+ descriptionCompressed: "Entity roles in context (Admin/Owner/Member/None).",
3667
+ },
3668
+ {
3669
+ name: "SETTINGS",
3670
+ description: "Current settings for the agent/server (filtered for security, excludes sensitive keys)",
3671
+ dynamic: true,
3672
+ descriptionCompressed: "Agent/server settings (security-filtered).",
3673
+ },
3674
+ {
3675
+ name: "TIME",
3676
+ description: "Provides the current date and time in UTC for time-based operations or responses",
3677
+ dynamic: true,
3678
+ descriptionCompressed: "Current UTC date/time.",
3679
+ },
3680
+ {
3681
+ name: "WORLD",
3682
+ description: "Provides information about the current world context including settings and members",
3683
+ dynamic: true,
3684
+ descriptionCompressed: "World context: settings and members.",
3685
+ },
3686
+ {
3687
+ name: "LONG_TERM_MEMORY",
3688
+ description: "Persistent facts and preferences about the user learned and remembered across conversations",
3689
+ position: 50,
3690
+ dynamic: false,
3691
+ descriptionCompressed: "Persistent user facts/preferences across conversations.",
3692
+ },
3693
+ {
3694
+ name: "SUMMARIZED_CONTEXT",
3695
+ description: "Provides summarized context from previous conversations for optimized context usage",
3696
+ position: 96,
3697
+ dynamic: false,
3698
+ descriptionCompressed: "Summarized context from prior conversations.",
3699
+ },
3700
+ {
3701
+ name: "AGENT_SETTINGS",
3702
+ description: "Provides the agent's current configuration settings (filtered for security)",
3703
+ dynamic: true,
3704
+ descriptionCompressed: "Agent config settings (security-filtered).",
3705
+ },
3706
+ {
3707
+ name: "CURRENT_TIME",
3708
+ description: "Provides current time and date information in various formats",
3709
+ dynamic: true,
3710
+ descriptionCompressed: "Current time/date in various formats.",
3711
+ },
3712
+ ],
3713
+ };
3714
+ export const coreEvaluatorsSpec = {
3715
+ version: "1.0.0",
3716
+ evaluators: [
3717
+ {
3718
+ name: "REFLECTION",
3719
+ description: "Generate a self-reflective thought on the conversation, then extract facts and relationships between entities in the conversation. Reflects on agent behavior and provides feedback for improvement.",
3720
+ similes: [
3721
+ "REFLECT",
3722
+ "SELF_REFLECT",
3723
+ "EVALUATE_INTERACTION",
3724
+ "ASSESS_SITUATION",
3725
+ ],
3726
+ alwaysRun: false,
3727
+ examples: [
3728
+ {
3729
+ prompt: "Agent Name: Sarah\nAgent Role: Community Manager\nRoom Type: group\nCurrent Room: general-chat\nMessage Sender: John (user-123)",
3730
+ messages: [
3731
+ {
3732
+ name: "John",
3733
+ content: {
3734
+ text: "Hey everyone, I'm new here!",
3735
+ },
3736
+ },
3737
+ {
3738
+ name: "Sarah",
3739
+ content: {
3740
+ text: "Welcome John! How did you find our community?",
3741
+ },
3742
+ },
3743
+ {
3744
+ name: "John",
3745
+ content: {
3746
+ text: "Through a friend who's really into AI",
3747
+ },
3748
+ },
3749
+ ],
3750
+ outcome: 'thought: "I\'m engaging appropriately with a new community member, maintaining a welcoming and professional tone. My questions are helping to learn more about John and make him feel welcome."\nfacts[0]:\n claim: John is new to the community\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: John found the community through a friend interested in AI\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: sarah-agent\n targetEntityId: user-123\n tags[0]: group_interaction',
3751
+ },
3752
+ {
3753
+ prompt: "Agent Name: Alex\nAgent Role: Tech Support\nRoom Type: group\nCurrent Room: tech-help\nMessage Sender: Emma (user-456)",
3754
+ messages: [
3755
+ {
3756
+ name: "Emma",
3757
+ content: {
3758
+ text: "My app keeps crashing when I try to upload files",
3759
+ },
3760
+ },
3761
+ {
3762
+ name: "Alex",
3763
+ content: {
3764
+ text: "Have you tried clearing your cache?",
3765
+ },
3766
+ },
3767
+ {
3768
+ name: "Emma",
3769
+ content: {
3770
+ text: "No response...",
3771
+ },
3772
+ },
3773
+ {
3774
+ name: "Alex",
3775
+ content: {
3776
+ text: "Emma, are you still there? We can try some other troubleshooting steps.",
3777
+ },
3778
+ },
3779
+ ],
3780
+ outcome: "thought: \"I'm not sure if I'm being helpful or if Emma is frustrated with my suggestions. The lack of response is concerning - maybe I should have asked for more details about the issue first before jumping to solutions.\"\nfacts[0]:\n claim: Emma is having technical issues with file uploads\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: Emma stopped responding after the first troubleshooting suggestion\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: alex-agent\n targetEntityId: user-456\n tags[0]: group_interaction\n tags[1]: support_interaction\n tags[2]: incomplete_interaction",
3781
+ },
3782
+ {
3783
+ prompt: "Agent Name: Max\nAgent Role: Discussion Facilitator\nRoom Type: group\nCurrent Room: book-club\nMessage Sender: Lisa (user-789)",
3784
+ messages: [
3785
+ {
3786
+ name: "Lisa",
3787
+ content: {
3788
+ text: "What did everyone think about chapter 5?",
3789
+ },
3790
+ },
3791
+ {
3792
+ name: "Max",
3793
+ content: {
3794
+ text: "The symbolism was fascinating! The red door clearly represents danger.",
3795
+ },
3796
+ },
3797
+ {
3798
+ name: "Max",
3799
+ content: {
3800
+ text: "And did anyone notice how the author used weather to reflect the protagonist's mood?",
3801
+ },
3802
+ },
3803
+ {
3804
+ name: "Max",
3805
+ content: {
3806
+ text: "Plus the foreshadowing in the first paragraph was brilliant!",
3807
+ },
3808
+ },
3809
+ {
3810
+ name: "Max",
3811
+ content: {
3812
+ text: "I also have thoughts about the character development...",
3813
+ },
3814
+ },
3815
+ ],
3816
+ outcome: "thought: \"I'm dominating the conversation and not giving others a chance to share their perspectives. I've sent multiple messages in a row without waiting for responses. I need to step back and create space for other members to participate.\"\nfacts[0]:\n claim: The discussion is about chapter 5 of a book\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: Max has sent 4 consecutive messages without user responses\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: max-agent\n targetEntityId: user-789\n tags[0]: group_interaction\n tags[1]: excessive_interaction",
3817
+ },
3818
+ ],
3819
+ },
3820
+ {
3821
+ name: "RELATIONSHIP_EXTRACTION",
3822
+ description: "Passively extracts and updates relationship information from conversations. Identifies platform identities, relationship indicators, and mentioned third parties.",
3823
+ similes: [
3824
+ "RELATIONSHIP_ANALYZER",
3825
+ "SOCIAL_GRAPH_BUILDER",
3826
+ "CONTACT_EXTRACTOR",
3827
+ ],
3828
+ alwaysRun: false,
3829
+ examples: [
3830
+ {
3831
+ prompt: "User introduces themselves with social media",
3832
+ messages: [
3833
+ {
3834
+ name: "{{name1}}",
3835
+ content: {
3836
+ type: "text",
3837
+ text: "Hi, I'm Sarah Chen. You can find me on X @sarahchen_dev",
3838
+ },
3839
+ },
3840
+ ],
3841
+ outcome: "Extracts X handle and creates/updates the entity with a platform identity.",
3842
+ },
3843
+ ],
3844
+ },
3845
+ {
3846
+ name: "MEMORY_SUMMARIZATION",
3847
+ description: "Automatically summarizes conversations to optimize context usage. Compresses conversation history while preserving important information.",
3848
+ similes: [
3849
+ "CONVERSATION_SUMMARY",
3850
+ "CONTEXT_COMPRESSION",
3851
+ "MEMORY_OPTIMIZATION",
3852
+ ],
3853
+ alwaysRun: true,
3854
+ examples: [],
3855
+ },
3856
+ {
3857
+ name: "LONG_TERM_MEMORY_EXTRACTION",
3858
+ description: "Extracts long-term facts about users from conversations. Identifies and stores persistent information like preferences, interests, and personal details.",
3859
+ similes: ["MEMORY_EXTRACTION", "FACT_LEARNING", "USER_PROFILING"],
3860
+ alwaysRun: true,
3861
+ examples: [],
3862
+ },
3863
+ ],
3864
+ };
3865
+ export const allEvaluatorsSpec = {
3866
+ version: "1.0.0",
3867
+ evaluators: [
3868
+ {
3869
+ name: "REFLECTION",
3870
+ description: "Generate a self-reflective thought on the conversation, then extract facts and relationships between entities in the conversation. Reflects on agent behavior and provides feedback for improvement.",
3871
+ similes: [
3872
+ "REFLECT",
3873
+ "SELF_REFLECT",
3874
+ "EVALUATE_INTERACTION",
3875
+ "ASSESS_SITUATION",
3876
+ ],
3877
+ alwaysRun: false,
3878
+ examples: [
3879
+ {
3880
+ prompt: "Agent Name: Sarah\nAgent Role: Community Manager\nRoom Type: group\nCurrent Room: general-chat\nMessage Sender: John (user-123)",
3881
+ messages: [
3882
+ {
3883
+ name: "John",
3884
+ content: {
3885
+ text: "Hey everyone, I'm new here!",
3886
+ },
3887
+ },
3888
+ {
3889
+ name: "Sarah",
3890
+ content: {
3891
+ text: "Welcome John! How did you find our community?",
3892
+ },
3893
+ },
3894
+ {
3895
+ name: "John",
3896
+ content: {
3897
+ text: "Through a friend who's really into AI",
3898
+ },
3899
+ },
3900
+ ],
3901
+ outcome: 'thought: "I\'m engaging appropriately with a new community member, maintaining a welcoming and professional tone. My questions are helping to learn more about John and make him feel welcome."\nfacts[0]:\n claim: John is new to the community\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: John found the community through a friend interested in AI\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: sarah-agent\n targetEntityId: user-123\n tags[0]: group_interaction',
3902
+ },
3903
+ {
3904
+ prompt: "Agent Name: Alex\nAgent Role: Tech Support\nRoom Type: group\nCurrent Room: tech-help\nMessage Sender: Emma (user-456)",
3905
+ messages: [
3906
+ {
3907
+ name: "Emma",
3908
+ content: {
3909
+ text: "My app keeps crashing when I try to upload files",
3910
+ },
3911
+ },
3912
+ {
3913
+ name: "Alex",
3914
+ content: {
3915
+ text: "Have you tried clearing your cache?",
3916
+ },
3917
+ },
3918
+ {
3919
+ name: "Emma",
3920
+ content: {
3921
+ text: "No response...",
3922
+ },
3923
+ },
3924
+ {
3925
+ name: "Alex",
3926
+ content: {
3927
+ text: "Emma, are you still there? We can try some other troubleshooting steps.",
3928
+ },
3929
+ },
3930
+ ],
3931
+ outcome: "thought: \"I'm not sure if I'm being helpful or if Emma is frustrated with my suggestions. The lack of response is concerning - maybe I should have asked for more details about the issue first before jumping to solutions.\"\nfacts[0]:\n claim: Emma is having technical issues with file uploads\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: Emma stopped responding after the first troubleshooting suggestion\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: alex-agent\n targetEntityId: user-456\n tags[0]: group_interaction\n tags[1]: support_interaction\n tags[2]: incomplete_interaction",
3932
+ },
3933
+ {
3934
+ prompt: "Agent Name: Max\nAgent Role: Discussion Facilitator\nRoom Type: group\nCurrent Room: book-club\nMessage Sender: Lisa (user-789)",
3935
+ messages: [
3936
+ {
3937
+ name: "Lisa",
3938
+ content: {
3939
+ text: "What did everyone think about chapter 5?",
3940
+ },
3941
+ },
3942
+ {
3943
+ name: "Max",
3944
+ content: {
3945
+ text: "The symbolism was fascinating! The red door clearly represents danger.",
3946
+ },
3947
+ },
3948
+ {
3949
+ name: "Max",
3950
+ content: {
3951
+ text: "And did anyone notice how the author used weather to reflect the protagonist's mood?",
3952
+ },
3953
+ },
3954
+ {
3955
+ name: "Max",
3956
+ content: {
3957
+ text: "Plus the foreshadowing in the first paragraph was brilliant!",
3958
+ },
3959
+ },
3960
+ {
3961
+ name: "Max",
3962
+ content: {
3963
+ text: "I also have thoughts about the character development...",
3964
+ },
3965
+ },
3966
+ ],
3967
+ outcome: "thought: \"I'm dominating the conversation and not giving others a chance to share their perspectives. I've sent multiple messages in a row without waiting for responses. I need to step back and create space for other members to participate.\"\nfacts[0]:\n claim: The discussion is about chapter 5 of a book\n type: fact\n in_bio: false\n already_known: false\nfacts[1]:\n claim: Max has sent 4 consecutive messages without user responses\n type: fact\n in_bio: false\n already_known: false\nrelationships[0]:\n sourceEntityId: max-agent\n targetEntityId: user-789\n tags[0]: group_interaction\n tags[1]: excessive_interaction",
3968
+ },
3969
+ ],
3970
+ },
3971
+ {
3972
+ name: "RELATIONSHIP_EXTRACTION",
3973
+ description: "Passively extracts and updates relationship information from conversations. Identifies platform identities, relationship indicators, and mentioned third parties.",
3974
+ similes: [
3975
+ "RELATIONSHIP_ANALYZER",
3976
+ "SOCIAL_GRAPH_BUILDER",
3977
+ "CONTACT_EXTRACTOR",
3978
+ ],
3979
+ alwaysRun: false,
3980
+ examples: [
3981
+ {
3982
+ prompt: "User introduces themselves with social media",
3983
+ messages: [
3984
+ {
3985
+ name: "{{name1}}",
3986
+ content: {
3987
+ type: "text",
3988
+ text: "Hi, I'm Sarah Chen. You can find me on X @sarahchen_dev",
3989
+ },
3990
+ },
3991
+ ],
3992
+ outcome: "Extracts X handle and creates/updates the entity with a platform identity.",
3993
+ },
3994
+ ],
3995
+ },
3996
+ {
3997
+ name: "MEMORY_SUMMARIZATION",
3998
+ description: "Automatically summarizes conversations to optimize context usage. Compresses conversation history while preserving important information.",
3999
+ similes: [
4000
+ "CONVERSATION_SUMMARY",
4001
+ "CONTEXT_COMPRESSION",
4002
+ "MEMORY_OPTIMIZATION",
4003
+ ],
4004
+ alwaysRun: true,
4005
+ examples: [],
4006
+ },
4007
+ {
4008
+ name: "LONG_TERM_MEMORY_EXTRACTION",
4009
+ description: "Extracts long-term facts about users from conversations. Identifies and stores persistent information like preferences, interests, and personal details.",
4010
+ similes: ["MEMORY_EXTRACTION", "FACT_LEARNING", "USER_PROFILING"],
4011
+ alwaysRun: true,
4012
+ examples: [],
4013
+ },
4014
+ ],
4015
+ };
4016
+ export const coreActionDocs = coreActionsSpec.actions;
4017
+ export const allActionDocs = allActionsSpec.actions;
4018
+ export const coreProviderDocs = coreProvidersSpec.providers;
4019
+ export const allProviderDocs = allProvidersSpec.providers;
4020
+ export const coreEvaluatorDocs = coreEvaluatorsSpec.evaluators;
4021
+ export const allEvaluatorDocs = allEvaluatorsSpec.evaluators;