@pellux/goodvibes-sdk 0.18.3 → 0.18.11

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 (1796) hide show
  1. package/README.md +3 -0
  2. package/dist/_internal/contracts/artifacts/operator-contract.json +55157 -0
  3. package/dist/_internal/contracts/artifacts/peer-contract.json +2384 -0
  4. package/dist/_internal/contracts/generated/foundation-client-types.d.ts +11213 -0
  5. package/dist/_internal/contracts/generated/foundation-client-types.d.ts.map +1 -0
  6. package/dist/_internal/contracts/generated/foundation-client-types.js +3 -0
  7. package/dist/_internal/contracts/generated/foundation-metadata.d.ts +8 -0
  8. package/dist/_internal/contracts/generated/foundation-metadata.d.ts.map +1 -0
  9. package/dist/_internal/contracts/generated/foundation-metadata.js +8 -0
  10. package/dist/_internal/contracts/generated/operator-contract.d.ts +3 -0
  11. package/dist/_internal/contracts/generated/operator-contract.d.ts.map +1 -0
  12. package/dist/_internal/contracts/generated/operator-contract.js +55157 -0
  13. package/dist/_internal/contracts/generated/operator-method-ids.d.ts +3 -0
  14. package/dist/_internal/contracts/generated/operator-method-ids.d.ts.map +1 -0
  15. package/dist/_internal/contracts/generated/operator-method-ids.js +216 -0
  16. package/dist/_internal/contracts/generated/peer-contract.d.ts +3 -0
  17. package/dist/_internal/contracts/generated/peer-contract.d.ts.map +1 -0
  18. package/dist/_internal/contracts/generated/peer-contract.js +2384 -0
  19. package/dist/_internal/contracts/generated/peer-endpoint-ids.d.ts +3 -0
  20. package/dist/_internal/contracts/generated/peer-endpoint-ids.d.ts.map +1 -0
  21. package/dist/_internal/contracts/generated/peer-endpoint-ids.js +9 -0
  22. package/dist/_internal/contracts/generated/runtime-event-domains.d.ts +4 -0
  23. package/dist/_internal/contracts/generated/runtime-event-domains.d.ts.map +1 -0
  24. package/dist/_internal/contracts/generated/runtime-event-domains.js +32 -0
  25. package/dist/_internal/contracts/index.d.ts +23 -0
  26. package/dist/_internal/contracts/index.d.ts.map +1 -0
  27. package/dist/_internal/contracts/index.js +35 -0
  28. package/dist/_internal/contracts/node.d.ts +3 -0
  29. package/dist/_internal/contracts/node.d.ts.map +1 -0
  30. package/dist/_internal/contracts/node.js +8 -0
  31. package/dist/_internal/contracts/types.d.ts +150 -0
  32. package/dist/_internal/contracts/types.d.ts.map +1 -0
  33. package/dist/_internal/contracts/types.js +1 -0
  34. package/dist/_internal/daemon/api-router.d.ts +3 -0
  35. package/dist/_internal/daemon/api-router.d.ts.map +1 -0
  36. package/dist/_internal/daemon/api-router.js +14 -0
  37. package/dist/_internal/daemon/automation.d.ts +3 -0
  38. package/dist/_internal/daemon/automation.d.ts.map +1 -0
  39. package/dist/_internal/daemon/automation.js +56 -0
  40. package/dist/_internal/daemon/channel-route-types.d.ts +78 -0
  41. package/dist/_internal/daemon/channel-route-types.d.ts.map +1 -0
  42. package/dist/_internal/daemon/channel-route-types.js +1 -0
  43. package/dist/_internal/daemon/channel-routes.d.ts +4 -0
  44. package/dist/_internal/daemon/channel-routes.d.ts.map +1 -0
  45. package/dist/_internal/daemon/channel-routes.js +264 -0
  46. package/dist/_internal/daemon/context.d.ts +207 -0
  47. package/dist/_internal/daemon/context.d.ts.map +1 -0
  48. package/dist/_internal/daemon/context.js +1 -0
  49. package/dist/_internal/daemon/control-routes.d.ts +57 -0
  50. package/dist/_internal/daemon/control-routes.d.ts.map +1 -0
  51. package/dist/_internal/daemon/control-routes.js +120 -0
  52. package/dist/_internal/daemon/error-response.d.ts +10 -0
  53. package/dist/_internal/daemon/error-response.d.ts.map +1 -0
  54. package/dist/_internal/daemon/error-response.js +224 -0
  55. package/dist/_internal/daemon/http-policy.d.ts +33 -0
  56. package/dist/_internal/daemon/http-policy.d.ts.map +1 -0
  57. package/dist/_internal/daemon/http-policy.js +31 -0
  58. package/dist/_internal/daemon/index.d.ts +30 -0
  59. package/dist/_internal/daemon/index.d.ts.map +1 -0
  60. package/dist/_internal/daemon/index.js +20 -0
  61. package/dist/_internal/daemon/integration-route-types.d.ts +64 -0
  62. package/dist/_internal/daemon/integration-route-types.d.ts.map +1 -0
  63. package/dist/_internal/daemon/integration-route-types.js +1 -0
  64. package/dist/_internal/daemon/integration-routes.d.ts +4 -0
  65. package/dist/_internal/daemon/integration-routes.d.ts.map +1 -0
  66. package/dist/_internal/daemon/integration-routes.js +172 -0
  67. package/dist/_internal/daemon/knowledge-route-types.d.ts +114 -0
  68. package/dist/_internal/daemon/knowledge-route-types.d.ts.map +1 -0
  69. package/dist/_internal/daemon/knowledge-route-types.js +1 -0
  70. package/dist/_internal/daemon/knowledge-routes.d.ts +4 -0
  71. package/dist/_internal/daemon/knowledge-routes.d.ts.map +1 -0
  72. package/dist/_internal/daemon/knowledge-routes.js +582 -0
  73. package/dist/_internal/daemon/media-route-types.d.ts +66 -0
  74. package/dist/_internal/daemon/media-route-types.d.ts.map +1 -0
  75. package/dist/_internal/daemon/media-route-types.js +1 -0
  76. package/dist/_internal/daemon/media-routes.d.ts +4 -0
  77. package/dist/_internal/daemon/media-routes.d.ts.map +1 -0
  78. package/dist/_internal/daemon/media-routes.js +328 -0
  79. package/dist/_internal/daemon/operator.d.ts +3 -0
  80. package/dist/_internal/daemon/operator.d.ts.map +1 -0
  81. package/dist/_internal/daemon/operator.js +395 -0
  82. package/dist/_internal/daemon/remote-routes.d.ts +40 -0
  83. package/dist/_internal/daemon/remote-routes.d.ts.map +1 -0
  84. package/dist/_internal/daemon/remote-routes.js +238 -0
  85. package/dist/_internal/daemon/remote.d.ts +3 -0
  86. package/dist/_internal/daemon/remote.d.ts.map +1 -0
  87. package/dist/_internal/daemon/remote.js +35 -0
  88. package/dist/_internal/daemon/route-helpers.d.ts +11 -0
  89. package/dist/_internal/daemon/route-helpers.d.ts.map +1 -0
  90. package/dist/_internal/daemon/route-helpers.js +54 -0
  91. package/dist/_internal/daemon/runtime-automation-routes.d.ts +4 -0
  92. package/dist/_internal/daemon/runtime-automation-routes.d.ts.map +1 -0
  93. package/dist/_internal/daemon/runtime-automation-routes.js +165 -0
  94. package/dist/_internal/daemon/runtime-route-types.d.ts +240 -0
  95. package/dist/_internal/daemon/runtime-route-types.d.ts.map +1 -0
  96. package/dist/_internal/daemon/runtime-route-types.js +1 -0
  97. package/dist/_internal/daemon/runtime-routes.d.ts +5 -0
  98. package/dist/_internal/daemon/runtime-routes.d.ts.map +1 -0
  99. package/dist/_internal/daemon/runtime-routes.js +8 -0
  100. package/dist/_internal/daemon/runtime-session-routes.d.ts +4 -0
  101. package/dist/_internal/daemon/runtime-session-routes.d.ts.map +1 -0
  102. package/dist/_internal/daemon/runtime-session-routes.js +387 -0
  103. package/dist/_internal/daemon/sessions.d.ts +3 -0
  104. package/dist/_internal/daemon/sessions.d.ts.map +1 -0
  105. package/dist/_internal/daemon/sessions.js +37 -0
  106. package/dist/_internal/daemon/system-route-types.d.ts +124 -0
  107. package/dist/_internal/daemon/system-route-types.d.ts.map +1 -0
  108. package/dist/_internal/daemon/system-route-types.js +1 -0
  109. package/dist/_internal/daemon/system-routes.d.ts +4 -0
  110. package/dist/_internal/daemon/system-routes.d.ts.map +1 -0
  111. package/dist/_internal/daemon/system-routes.js +327 -0
  112. package/dist/_internal/daemon/tasks.d.ts +3 -0
  113. package/dist/_internal/daemon/tasks.d.ts.map +1 -0
  114. package/dist/_internal/daemon/tasks.js +22 -0
  115. package/dist/_internal/daemon/telemetry-routes.d.ts +44 -0
  116. package/dist/_internal/daemon/telemetry-routes.d.ts.map +1 -0
  117. package/dist/_internal/daemon/telemetry-routes.js +227 -0
  118. package/dist/_internal/errors/daemon-error-contract.d.ts +19 -0
  119. package/dist/_internal/errors/daemon-error-contract.d.ts.map +1 -0
  120. package/dist/_internal/errors/daemon-error-contract.js +1 -0
  121. package/dist/_internal/errors/index.d.ts +54 -0
  122. package/dist/_internal/errors/index.d.ts.map +1 -0
  123. package/dist/_internal/errors/index.js +123 -0
  124. package/dist/_internal/operator/client-core.d.ts +104 -0
  125. package/dist/_internal/operator/client-core.d.ts.map +1 -0
  126. package/dist/_internal/operator/client-core.js +184 -0
  127. package/dist/_internal/operator/client.d.ts +16 -0
  128. package/dist/_internal/operator/client.d.ts.map +1 -0
  129. package/dist/_internal/operator/client.js +7 -0
  130. package/dist/_internal/operator/index.d.ts +5 -0
  131. package/dist/_internal/operator/index.d.ts.map +1 -0
  132. package/dist/_internal/operator/index.js +2 -0
  133. package/dist/_internal/peer/client-core.d.ts +42 -0
  134. package/dist/_internal/peer/client-core.d.ts.map +1 -0
  135. package/dist/_internal/peer/client-core.js +41 -0
  136. package/dist/_internal/peer/client.d.ts +13 -0
  137. package/dist/_internal/peer/client.d.ts.map +1 -0
  138. package/dist/_internal/peer/client.js +7 -0
  139. package/dist/_internal/peer/index.d.ts +5 -0
  140. package/dist/_internal/peer/index.d.ts.map +1 -0
  141. package/dist/_internal/peer/index.js +2 -0
  142. package/dist/_internal/transport-core/client-transport.d.ts +9 -0
  143. package/dist/_internal/transport-core/client-transport.d.ts.map +1 -0
  144. package/dist/_internal/transport-core/client-transport.js +13 -0
  145. package/dist/_internal/transport-core/event-envelope.d.ts +21 -0
  146. package/dist/_internal/transport-core/event-envelope.d.ts.map +1 -0
  147. package/dist/_internal/transport-core/event-envelope.js +16 -0
  148. package/dist/_internal/transport-core/event-feeds.d.ts +22 -0
  149. package/dist/_internal/transport-core/event-feeds.d.ts.map +1 -0
  150. package/dist/_internal/transport-core/event-feeds.js +25 -0
  151. package/dist/_internal/transport-core/index.d.ts +7 -0
  152. package/dist/_internal/transport-core/index.d.ts.map +1 -0
  153. package/dist/_internal/transport-core/index.js +3 -0
  154. package/dist/_internal/transport-direct/index.d.ts +4 -0
  155. package/dist/_internal/transport-direct/index.d.ts.map +1 -0
  156. package/dist/_internal/transport-direct/index.js +6 -0
  157. package/dist/_internal/transport-http/auth.d.ts +7 -0
  158. package/dist/_internal/transport-http/auth.d.ts.map +1 -0
  159. package/dist/_internal/transport-http/auth.js +39 -0
  160. package/dist/_internal/transport-http/backoff.d.ts +16 -0
  161. package/dist/_internal/transport-http/backoff.d.ts.map +1 -0
  162. package/dist/_internal/transport-http/backoff.js +37 -0
  163. package/dist/_internal/transport-http/contract-client.d.ts +21 -0
  164. package/dist/_internal/transport-http/contract-client.d.ts.map +1 -0
  165. package/dist/_internal/transport-http/contract-client.js +31 -0
  166. package/dist/_internal/transport-http/http-core.d.ts +55 -0
  167. package/dist/_internal/transport-http/http-core.d.ts.map +1 -0
  168. package/dist/_internal/transport-http/http-core.js +218 -0
  169. package/dist/_internal/transport-http/http.d.ts +12 -0
  170. package/dist/_internal/transport-http/http.d.ts.map +1 -0
  171. package/dist/_internal/transport-http/http.js +52 -0
  172. package/dist/_internal/transport-http/index.d.ts +19 -0
  173. package/dist/_internal/transport-http/index.d.ts.map +1 -0
  174. package/dist/_internal/transport-http/index.js +9 -0
  175. package/dist/_internal/transport-http/paths.d.ts +32 -0
  176. package/dist/_internal/transport-http/paths.d.ts.map +1 -0
  177. package/dist/_internal/transport-http/paths.js +42 -0
  178. package/dist/_internal/transport-http/reconnect.d.ts +11 -0
  179. package/dist/_internal/transport-http/reconnect.d.ts.map +1 -0
  180. package/dist/_internal/transport-http/reconnect.js +20 -0
  181. package/dist/_internal/transport-http/retry.d.ts +18 -0
  182. package/dist/_internal/transport-http/retry.d.ts.map +1 -0
  183. package/dist/_internal/transport-http/retry.js +46 -0
  184. package/dist/_internal/transport-http/sse-stream.d.ts +22 -0
  185. package/dist/_internal/transport-http/sse-stream.d.ts.map +1 -0
  186. package/dist/_internal/transport-http/sse-stream.js +213 -0
  187. package/dist/_internal/transport-http/sse.d.ts +7 -0
  188. package/dist/_internal/transport-http/sse.d.ts.map +1 -0
  189. package/dist/_internal/transport-http/sse.js +18 -0
  190. package/dist/_internal/transport-realtime/domain-events.d.ts +18 -0
  191. package/dist/_internal/transport-realtime/domain-events.d.ts.map +1 -0
  192. package/dist/_internal/transport-realtime/domain-events.js +116 -0
  193. package/dist/_internal/transport-realtime/index.d.ts +6 -0
  194. package/dist/_internal/transport-realtime/index.d.ts.map +1 -0
  195. package/dist/_internal/transport-realtime/index.js +2 -0
  196. package/dist/_internal/transport-realtime/runtime-events.d.ts +20 -0
  197. package/dist/_internal/transport-realtime/runtime-events.d.ts.map +1 -0
  198. package/dist/_internal/transport-realtime/runtime-events.js +135 -0
  199. package/dist/auth.d.ts +3 -3
  200. package/dist/auth.d.ts.map +1 -1
  201. package/dist/auth.js +1 -1
  202. package/dist/browser.js +1 -1
  203. package/dist/client.d.ts +4 -4
  204. package/dist/client.d.ts.map +1 -1
  205. package/dist/client.js +4 -4
  206. package/dist/contracts-node.d.ts +2 -0
  207. package/dist/contracts-node.d.ts.map +1 -0
  208. package/dist/contracts-node.js +1 -0
  209. package/dist/contracts.d.ts +2 -0
  210. package/dist/contracts.d.ts.map +1 -0
  211. package/dist/contracts.js +1 -0
  212. package/dist/daemon.d.ts +2 -0
  213. package/dist/daemon.d.ts.map +1 -0
  214. package/dist/daemon.js +1 -0
  215. package/dist/errors.d.ts +2 -0
  216. package/dist/errors.d.ts.map +1 -0
  217. package/dist/errors.js +1 -0
  218. package/dist/index.d.ts +9 -9
  219. package/dist/index.d.ts.map +1 -1
  220. package/dist/index.js +9 -9
  221. package/dist/operator.d.ts +2 -0
  222. package/dist/operator.d.ts.map +1 -0
  223. package/dist/operator.js +1 -0
  224. package/dist/peer.d.ts +2 -0
  225. package/dist/peer.d.ts.map +1 -0
  226. package/dist/peer.js +1 -0
  227. package/dist/platform/acp/protocol.d.ts +44 -0
  228. package/dist/platform/acp/protocol.d.ts.map +1 -0
  229. package/dist/platform/acp/protocol.js +7 -0
  230. package/dist/platform/adapters/helpers.d.ts +7 -0
  231. package/dist/platform/adapters/helpers.d.ts.map +1 -0
  232. package/dist/platform/adapters/helpers.js +60 -0
  233. package/dist/platform/agents/archetypes.d.ts +68 -0
  234. package/dist/platform/agents/archetypes.d.ts.map +1 -0
  235. package/dist/platform/agents/archetypes.js +272 -0
  236. package/dist/platform/agents/communication-policy.d.ts +21 -0
  237. package/dist/platform/agents/communication-policy.d.ts.map +1 -0
  238. package/dist/platform/agents/communication-policy.js +55 -0
  239. package/dist/platform/agents/completion-report.d.ts +77 -0
  240. package/dist/platform/agents/completion-report.d.ts.map +1 -0
  241. package/dist/platform/agents/completion-report.js +61 -0
  242. package/dist/platform/agents/orchestrator-utils.d.ts +7 -0
  243. package/dist/platform/agents/orchestrator-utils.d.ts.map +1 -0
  244. package/dist/platform/agents/orchestrator-utils.js +23 -0
  245. package/dist/platform/agents/wrfc-gates.d.ts +8 -0
  246. package/dist/platform/agents/wrfc-gates.d.ts.map +1 -0
  247. package/dist/platform/agents/wrfc-gates.js +74 -0
  248. package/dist/platform/agents/wrfc-plan-sync.d.ts +3 -0
  249. package/dist/platform/agents/wrfc-plan-sync.d.ts.map +1 -0
  250. package/dist/platform/agents/wrfc-plan-sync.js +21 -0
  251. package/dist/platform/agents/wrfc-workmap.d.ts +37 -0
  252. package/dist/platform/agents/wrfc-workmap.d.ts.map +1 -0
  253. package/dist/platform/agents/wrfc-workmap.js +81 -0
  254. package/dist/platform/artifacts/index.d.ts +4 -0
  255. package/dist/platform/artifacts/index.d.ts.map +1 -0
  256. package/dist/platform/artifacts/index.js +2 -0
  257. package/dist/platform/artifacts/store.d.ts +48 -0
  258. package/dist/platform/artifacts/store.d.ts.map +1 -0
  259. package/dist/platform/artifacts/store.js +403 -0
  260. package/dist/platform/artifacts/types.d.ts +55 -0
  261. package/dist/platform/artifacts/types.d.ts.map +1 -0
  262. package/dist/platform/artifacts/types.js +91 -0
  263. package/dist/platform/automation/delivery.d.ts +33 -0
  264. package/dist/platform/automation/delivery.d.ts.map +1 -0
  265. package/dist/platform/automation/delivery.js +4 -0
  266. package/dist/platform/automation/failures.d.ts +34 -0
  267. package/dist/platform/automation/failures.d.ts.map +1 -0
  268. package/dist/platform/automation/failures.js +4 -0
  269. package/dist/platform/automation/jobs.d.ts +30 -0
  270. package/dist/platform/automation/jobs.d.ts.map +1 -0
  271. package/dist/platform/automation/jobs.js +4 -0
  272. package/dist/platform/automation/migration.d.ts +12 -0
  273. package/dist/platform/automation/migration.d.ts.map +1 -0
  274. package/dist/platform/automation/migration.js +138 -0
  275. package/dist/platform/automation/routes.d.ts +33 -0
  276. package/dist/platform/automation/routes.d.ts.map +1 -0
  277. package/dist/platform/automation/routes.js +4 -0
  278. package/dist/platform/automation/runs.d.ts +63 -0
  279. package/dist/platform/automation/runs.d.ts.map +1 -0
  280. package/dist/platform/automation/runs.js +4 -0
  281. package/dist/platform/automation/schedules.d.ts +32 -0
  282. package/dist/platform/automation/schedules.d.ts.map +1 -0
  283. package/dist/platform/automation/schedules.js +183 -0
  284. package/dist/platform/automation/session-targets.d.ts +50 -0
  285. package/dist/platform/automation/session-targets.d.ts.map +1 -0
  286. package/dist/platform/automation/session-targets.js +4 -0
  287. package/dist/platform/automation/sources.d.ts +24 -0
  288. package/dist/platform/automation/sources.d.ts.map +1 -0
  289. package/dist/platform/automation/sources.js +4 -0
  290. package/dist/platform/automation/store/jobs.d.ts +18 -0
  291. package/dist/platform/automation/store/jobs.d.ts.map +1 -0
  292. package/dist/platform/automation/store/jobs.js +33 -0
  293. package/dist/platform/automation/store/paths.d.ts +6 -0
  294. package/dist/platform/automation/store/paths.d.ts.map +1 -0
  295. package/dist/platform/automation/store/paths.js +13 -0
  296. package/dist/platform/automation/store/routes.d.ts +18 -0
  297. package/dist/platform/automation/store/routes.d.ts.map +1 -0
  298. package/dist/platform/automation/store/routes.js +33 -0
  299. package/dist/platform/automation/store/runs.d.ts +18 -0
  300. package/dist/platform/automation/store/runs.d.ts.map +1 -0
  301. package/dist/platform/automation/store/runs.js +33 -0
  302. package/dist/platform/automation/store/sources.d.ts +18 -0
  303. package/dist/platform/automation/store/sources.d.ts.map +1 -0
  304. package/dist/platform/automation/store/sources.js +33 -0
  305. package/dist/platform/automation/types.d.ts +170 -0
  306. package/dist/platform/automation/types.d.ts.map +1 -0
  307. package/dist/platform/automation/types.js +5 -0
  308. package/dist/platform/bookmarks/manager.d.ts +53 -0
  309. package/dist/platform/bookmarks/manager.d.ts.map +1 -0
  310. package/dist/platform/bookmarks/manager.js +106 -0
  311. package/dist/platform/channels/builtin/descriptors.d.ts +5 -0
  312. package/dist/platform/channels/builtin/descriptors.d.ts.map +1 -0
  313. package/dist/platform/channels/builtin/descriptors.js +566 -0
  314. package/dist/platform/channels/builtin/parsing.d.ts +8 -0
  315. package/dist/platform/channels/builtin/parsing.d.ts.map +1 -0
  316. package/dist/platform/channels/builtin/parsing.js +48 -0
  317. package/dist/platform/channels/builtin/presentation.d.ts +4 -0
  318. package/dist/platform/channels/builtin/presentation.d.ts.map +1 -0
  319. package/dist/platform/channels/builtin/presentation.js +70 -0
  320. package/dist/platform/channels/policy-manager.d.ts +25 -0
  321. package/dist/platform/channels/policy-manager.d.ts.map +1 -0
  322. package/dist/platform/channels/policy-manager.js +236 -0
  323. package/dist/platform/channels/types.d.ts +429 -0
  324. package/dist/platform/channels/types.d.ts.map +1 -0
  325. package/dist/platform/channels/types.js +4 -0
  326. package/dist/platform/config/oauth-local-listener.d.ts +18 -0
  327. package/dist/platform/config/oauth-local-listener.d.ts.map +1 -0
  328. package/dist/platform/config/oauth-local-listener.js +125 -0
  329. package/dist/platform/config/openai-codex-auth.d.ts +21 -0
  330. package/dist/platform/config/openai-codex-auth.d.ts.map +1 -0
  331. package/dist/platform/config/openai-codex-auth.js +77 -0
  332. package/dist/platform/config/schema-domain-core.d.ts +120 -0
  333. package/dist/platform/config/schema-domain-core.d.ts.map +1 -0
  334. package/dist/platform/config/schema-domain-core.js +610 -0
  335. package/dist/platform/config/schema-domain-runtime.d.ts +71 -0
  336. package/dist/platform/config/schema-domain-runtime.d.ts.map +1 -0
  337. package/dist/platform/config/schema-domain-runtime.js +345 -0
  338. package/dist/platform/config/schema-domain-surfaces.d.ts +117 -0
  339. package/dist/platform/config/schema-domain-surfaces.d.ts.map +1 -0
  340. package/dist/platform/config/schema-domain-surfaces.js +420 -0
  341. package/dist/platform/config/schema-shared.d.ts +9 -0
  342. package/dist/platform/config/schema-shared.d.ts.map +1 -0
  343. package/dist/platform/config/schema-shared.js +1 -0
  344. package/dist/platform/config/schema-types.d.ts +340 -0
  345. package/dist/platform/config/schema-types.d.ts.map +1 -0
  346. package/dist/platform/config/schema-types.js +4 -0
  347. package/dist/platform/config/schema.d.ts +12 -0
  348. package/dist/platform/config/schema.d.ts.map +1 -0
  349. package/dist/platform/config/schema.js +46 -0
  350. package/dist/platform/config/secret-refs.d.ts +88 -0
  351. package/dist/platform/config/secret-refs.d.ts.map +1 -0
  352. package/dist/platform/config/secret-refs.js +552 -0
  353. package/dist/platform/config/subscriptions.d.ts +66 -0
  354. package/dist/platform/config/subscriptions.d.ts.map +1 -0
  355. package/dist/platform/config/subscriptions.js +167 -0
  356. package/dist/platform/control-plane/auth-snapshot.d.ts +14 -0
  357. package/dist/platform/control-plane/auth-snapshot.d.ts.map +1 -0
  358. package/dist/platform/control-plane/auth-snapshot.js +1 -0
  359. package/dist/platform/control-plane/gateway-web-ui.d.ts +2 -0
  360. package/dist/platform/control-plane/gateway-web-ui.d.ts.map +1 -0
  361. package/dist/platform/control-plane/gateway-web-ui.js +740 -0
  362. package/dist/platform/control-plane/routes/api-router.d.ts +2 -0
  363. package/dist/platform/control-plane/routes/api-router.d.ts.map +1 -0
  364. package/dist/platform/control-plane/routes/api-router.js +1 -0
  365. package/dist/platform/control-plane/routes/automation.d.ts +3 -0
  366. package/dist/platform/control-plane/routes/automation.d.ts.map +1 -0
  367. package/dist/platform/control-plane/routes/automation.js +56 -0
  368. package/dist/platform/control-plane/routes/context.d.ts +2 -0
  369. package/dist/platform/control-plane/routes/context.d.ts.map +1 -0
  370. package/dist/platform/control-plane/routes/context.js +1 -0
  371. package/dist/platform/control-plane/routes/index.d.ts +8 -0
  372. package/dist/platform/control-plane/routes/index.d.ts.map +1 -0
  373. package/dist/platform/control-plane/routes/index.js +6 -0
  374. package/dist/platform/control-plane/routes/operator.d.ts +3 -0
  375. package/dist/platform/control-plane/routes/operator.d.ts.map +1 -0
  376. package/dist/platform/control-plane/routes/operator.js +395 -0
  377. package/dist/platform/control-plane/routes/remote.d.ts +3 -0
  378. package/dist/platform/control-plane/routes/remote.d.ts.map +1 -0
  379. package/dist/platform/control-plane/routes/remote.js +35 -0
  380. package/dist/platform/control-plane/routes/sessions.d.ts +3 -0
  381. package/dist/platform/control-plane/routes/sessions.d.ts.map +1 -0
  382. package/dist/platform/control-plane/routes/sessions.js +37 -0
  383. package/dist/platform/control-plane/routes/tasks.d.ts +3 -0
  384. package/dist/platform/control-plane/routes/tasks.d.ts.map +1 -0
  385. package/dist/platform/control-plane/routes/tasks.js +22 -0
  386. package/dist/platform/control-plane/session-broker-internals.d.ts +25 -0
  387. package/dist/platform/control-plane/session-broker-internals.d.ts.map +1 -0
  388. package/dist/platform/control-plane/session-broker-internals.js +3 -0
  389. package/dist/platform/control-plane/session-broker-state.d.ts +19 -0
  390. package/dist/platform/control-plane/session-broker-state.d.ts.map +1 -0
  391. package/dist/platform/control-plane/session-broker-state.js +56 -0
  392. package/dist/platform/control-plane/session-intents.d.ts +65 -0
  393. package/dist/platform/control-plane/session-intents.d.ts.map +1 -0
  394. package/dist/platform/control-plane/session-intents.js +2 -0
  395. package/dist/platform/control-plane/session-types.d.ts +81 -0
  396. package/dist/platform/control-plane/session-types.d.ts.map +1 -0
  397. package/dist/platform/control-plane/session-types.js +1 -0
  398. package/dist/platform/control-plane/types.d.ts +42 -0
  399. package/dist/platform/control-plane/types.d.ts.map +1 -0
  400. package/dist/platform/control-plane/types.js +4 -0
  401. package/dist/platform/core/adaptive-planner.d.ts +137 -0
  402. package/dist/platform/core/adaptive-planner.d.ts.map +1 -0
  403. package/dist/platform/core/adaptive-planner.js +288 -0
  404. package/dist/platform/core/circuit-breaker.d.ts +18 -0
  405. package/dist/platform/core/circuit-breaker.d.ts.map +1 -0
  406. package/dist/platform/core/circuit-breaker.js +25 -0
  407. package/dist/platform/core/conversation-follow-ups.d.ts +7 -0
  408. package/dist/platform/core/conversation-follow-ups.d.ts.map +1 -0
  409. package/dist/platform/core/conversation-follow-ups.js +32 -0
  410. package/dist/platform/core/deterministic-replay.d.ts +201 -0
  411. package/dist/platform/core/deterministic-replay.d.ts.map +1 -0
  412. package/dist/platform/core/deterministic-replay.js +569 -0
  413. package/dist/platform/core/execution-plan.d.ts +73 -0
  414. package/dist/platform/core/execution-plan.d.ts.map +1 -0
  415. package/dist/platform/core/execution-plan.js +463 -0
  416. package/dist/platform/core/history.d.ts +22 -0
  417. package/dist/platform/core/history.d.ts.map +1 -0
  418. package/dist/platform/core/history.js +43 -0
  419. package/dist/platform/core/intent-classifier.d.ts +18 -0
  420. package/dist/platform/core/intent-classifier.d.ts.map +1 -0
  421. package/dist/platform/core/intent-classifier.js +91 -0
  422. package/dist/platform/core/replay-command-handler.d.ts +38 -0
  423. package/dist/platform/core/replay-command-handler.d.ts.map +1 -0
  424. package/dist/platform/core/replay-command-handler.js +229 -0
  425. package/dist/platform/core/session-lineage.d.ts +42 -0
  426. package/dist/platform/core/session-lineage.d.ts.map +1 -0
  427. package/dist/platform/core/session-lineage.js +68 -0
  428. package/dist/platform/core/session-memory.d.ts +31 -0
  429. package/dist/platform/core/session-memory.d.ts.map +1 -0
  430. package/dist/platform/core/session-memory.js +42 -0
  431. package/dist/platform/core/tokenizer.d.ts +30 -0
  432. package/dist/platform/core/tokenizer.d.ts.map +1 -0
  433. package/dist/platform/core/tokenizer.js +312 -0
  434. package/dist/platform/core/tool-reconciliation.d.ts +85 -0
  435. package/dist/platform/core/tool-reconciliation.d.ts.map +1 -0
  436. package/dist/platform/core/tool-reconciliation.js +35 -0
  437. package/dist/platform/core/transcript-events/grouping.d.ts +10 -0
  438. package/dist/platform/core/transcript-events/grouping.d.ts.map +1 -0
  439. package/dist/platform/core/transcript-events/grouping.js +17 -0
  440. package/dist/platform/core/transcript-events/types.d.ts +11 -0
  441. package/dist/platform/core/transcript-events/types.d.ts.map +1 -0
  442. package/dist/platform/core/transcript-events/types.js +1 -0
  443. package/dist/platform/daemon/http/channel-route-types.d.ts +2 -0
  444. package/dist/platform/daemon/http/channel-route-types.d.ts.map +1 -0
  445. package/dist/platform/daemon/http/channel-route-types.js +1 -0
  446. package/dist/platform/daemon/http/channel-routes.d.ts +2 -0
  447. package/dist/platform/daemon/http/channel-routes.d.ts.map +1 -0
  448. package/dist/platform/daemon/http/channel-routes.js +1 -0
  449. package/dist/platform/daemon/http/control-routes.d.ts +2 -0
  450. package/dist/platform/daemon/http/control-routes.d.ts.map +1 -0
  451. package/dist/platform/daemon/http/control-routes.js +1 -0
  452. package/dist/platform/daemon/http/error-response.d.ts +2 -0
  453. package/dist/platform/daemon/http/error-response.d.ts.map +1 -0
  454. package/dist/platform/daemon/http/error-response.js +1 -0
  455. package/dist/platform/daemon/http/integration-route-types.d.ts +10 -0
  456. package/dist/platform/daemon/http/integration-route-types.d.ts.map +1 -0
  457. package/dist/platform/daemon/http/integration-route-types.js +1 -0
  458. package/dist/platform/daemon/http/integration-routes.d.ts +2 -0
  459. package/dist/platform/daemon/http/integration-routes.d.ts.map +1 -0
  460. package/dist/platform/daemon/http/integration-routes.js +1 -0
  461. package/dist/platform/daemon/http/knowledge-route-types.d.ts +5 -0
  462. package/dist/platform/daemon/http/knowledge-route-types.d.ts.map +1 -0
  463. package/dist/platform/daemon/http/knowledge-route-types.js +1 -0
  464. package/dist/platform/daemon/http/knowledge-routes.d.ts +2 -0
  465. package/dist/platform/daemon/http/knowledge-routes.d.ts.map +1 -0
  466. package/dist/platform/daemon/http/knowledge-routes.js +1 -0
  467. package/dist/platform/daemon/http/media-route-types.d.ts +17 -0
  468. package/dist/platform/daemon/http/media-route-types.d.ts.map +1 -0
  469. package/dist/platform/daemon/http/media-route-types.js +1 -0
  470. package/dist/platform/daemon/http/media-routes.d.ts +2 -0
  471. package/dist/platform/daemon/http/media-routes.d.ts.map +1 -0
  472. package/dist/platform/daemon/http/media-routes.js +1 -0
  473. package/dist/platform/daemon/http/remote-routes.d.ts +2 -0
  474. package/dist/platform/daemon/http/remote-routes.d.ts.map +1 -0
  475. package/dist/platform/daemon/http/remote-routes.js +1 -0
  476. package/dist/platform/daemon/http/route-helpers.d.ts +5 -0
  477. package/dist/platform/daemon/http/route-helpers.d.ts.map +1 -0
  478. package/dist/platform/daemon/http/route-helpers.js +21 -0
  479. package/dist/platform/daemon/http/runtime-automation-routes.d.ts +2 -0
  480. package/dist/platform/daemon/http/runtime-automation-routes.d.ts.map +1 -0
  481. package/dist/platform/daemon/http/runtime-automation-routes.js +1 -0
  482. package/dist/platform/daemon/http/runtime-route-types.d.ts +240 -0
  483. package/dist/platform/daemon/http/runtime-route-types.d.ts.map +1 -0
  484. package/dist/platform/daemon/http/runtime-route-types.js +1 -0
  485. package/dist/platform/daemon/http/runtime-routes.d.ts +3 -0
  486. package/dist/platform/daemon/http/runtime-routes.d.ts.map +1 -0
  487. package/dist/platform/daemon/http/runtime-routes.js +1 -0
  488. package/dist/platform/daemon/http/runtime-session-routes.d.ts +2 -0
  489. package/dist/platform/daemon/http/runtime-session-routes.d.ts.map +1 -0
  490. package/dist/platform/daemon/http/runtime-session-routes.js +1 -0
  491. package/dist/platform/daemon/http/system-route-types.d.ts +52 -0
  492. package/dist/platform/daemon/http/system-route-types.d.ts.map +1 -0
  493. package/dist/platform/daemon/http/system-route-types.js +1 -0
  494. package/dist/platform/daemon/http/system-routes.d.ts +2 -0
  495. package/dist/platform/daemon/http/system-routes.d.ts.map +1 -0
  496. package/dist/platform/daemon/http/system-routes.js +1 -0
  497. package/dist/platform/daemon/http/telemetry-routes.d.ts +2 -0
  498. package/dist/platform/daemon/http/telemetry-routes.d.ts.map +1 -0
  499. package/dist/platform/daemon/http/telemetry-routes.js +1 -0
  500. package/dist/platform/daemon/http-policy.d.ts +33 -0
  501. package/dist/platform/daemon/http-policy.d.ts.map +1 -0
  502. package/dist/platform/daemon/http-policy.js +29 -0
  503. package/dist/platform/discovery/index.d.ts +3 -0
  504. package/dist/platform/discovery/index.d.ts.map +1 -0
  505. package/dist/platform/discovery/index.js +2 -0
  506. package/dist/platform/discovery/mcp-scanner.d.ts +18 -0
  507. package/dist/platform/discovery/mcp-scanner.d.ts.map +1 -0
  508. package/dist/platform/discovery/mcp-scanner.js +218 -0
  509. package/dist/platform/discovery/scanner.d.ts +49 -0
  510. package/dist/platform/discovery/scanner.d.ts.map +1 -0
  511. package/dist/platform/discovery/scanner.js +655 -0
  512. package/dist/platform/hooks/activity.d.ts +28 -0
  513. package/dist/platform/hooks/activity.d.ts.map +1 -0
  514. package/dist/platform/hooks/activity.js +28 -0
  515. package/dist/platform/hooks/contracts.d.ts +22 -0
  516. package/dist/platform/hooks/contracts.d.ts.map +1 -0
  517. package/dist/platform/hooks/contracts.js +350 -0
  518. package/dist/platform/hooks/matcher.d.ts +13 -0
  519. package/dist/platform/hooks/matcher.d.ts.map +1 -0
  520. package/dist/platform/hooks/matcher.js +35 -0
  521. package/dist/platform/hooks/runners/command.d.ts +22 -0
  522. package/dist/platform/hooks/runners/command.d.ts.map +1 -0
  523. package/dist/platform/hooks/runners/command.js +77 -0
  524. package/dist/platform/hooks/runners/http.d.ts +7 -0
  525. package/dist/platform/hooks/runners/http.d.ts.map +1 -0
  526. package/dist/platform/hooks/runners/http.js +54 -0
  527. package/dist/platform/hooks/runners/typescript.d.ts +7 -0
  528. package/dist/platform/hooks/runners/typescript.d.ts.map +1 -0
  529. package/dist/platform/hooks/runners/typescript.js +42 -0
  530. package/dist/platform/hooks/types.d.ts +94 -0
  531. package/dist/platform/hooks/types.d.ts.map +1 -0
  532. package/dist/platform/hooks/types.js +1 -0
  533. package/dist/platform/integrations/delivery.d.ts +186 -0
  534. package/dist/platform/integrations/delivery.d.ts.map +1 -0
  535. package/dist/platform/integrations/delivery.js +311 -0
  536. package/dist/platform/integrations/discord.d.ts +171 -0
  537. package/dist/platform/integrations/discord.d.ts.map +1 -0
  538. package/dist/platform/integrations/discord.js +445 -0
  539. package/dist/platform/integrations/github.d.ts +43 -0
  540. package/dist/platform/integrations/github.d.ts.map +1 -0
  541. package/dist/platform/integrations/github.js +237 -0
  542. package/dist/platform/integrations/ntfy.d.ts +43 -0
  543. package/dist/platform/integrations/ntfy.d.ts.map +1 -0
  544. package/dist/platform/integrations/ntfy.js +128 -0
  545. package/dist/platform/integrations/slack.d.ts +190 -0
  546. package/dist/platform/integrations/slack.d.ts.map +1 -0
  547. package/dist/platform/integrations/slack.js +374 -0
  548. package/dist/platform/intelligence/config.d.ts +35 -0
  549. package/dist/platform/intelligence/config.d.ts.map +1 -0
  550. package/dist/platform/intelligence/config.js +116 -0
  551. package/dist/platform/intelligence/facade.d.ts +99 -0
  552. package/dist/platform/intelligence/facade.d.ts.map +1 -0
  553. package/dist/platform/intelligence/facade.js +336 -0
  554. package/dist/platform/intelligence/import-graph.d.ts +83 -0
  555. package/dist/platform/intelligence/import-graph.d.ts.map +1 -0
  556. package/dist/platform/intelligence/import-graph.js +257 -0
  557. package/dist/platform/intelligence/index.d.ts +19 -0
  558. package/dist/platform/intelligence/index.d.ts.map +1 -0
  559. package/dist/platform/intelligence/index.js +18 -0
  560. package/dist/platform/intelligence/lsp/binary-downloader.d.ts +17 -0
  561. package/dist/platform/intelligence/lsp/binary-downloader.d.ts.map +1 -0
  562. package/dist/platform/intelligence/lsp/binary-downloader.js +245 -0
  563. package/dist/platform/intelligence/lsp/capabilities.d.ts +18 -0
  564. package/dist/platform/intelligence/lsp/capabilities.d.ts.map +1 -0
  565. package/dist/platform/intelligence/lsp/capabilities.js +58 -0
  566. package/dist/platform/intelligence/lsp/client.d.ts +33 -0
  567. package/dist/platform/intelligence/lsp/client.d.ts.map +1 -0
  568. package/dist/platform/intelligence/lsp/client.js +238 -0
  569. package/dist/platform/intelligence/lsp/index.d.ts +8 -0
  570. package/dist/platform/intelligence/lsp/index.d.ts.map +1 -0
  571. package/dist/platform/intelligence/lsp/index.js +4 -0
  572. package/dist/platform/intelligence/lsp/protocol.d.ts +101 -0
  573. package/dist/platform/intelligence/lsp/protocol.d.ts.map +1 -0
  574. package/dist/platform/intelligence/lsp/protocol.js +29 -0
  575. package/dist/platform/intelligence/lsp/service.d.ts +45 -0
  576. package/dist/platform/intelligence/lsp/service.d.ts.map +1 -0
  577. package/dist/platform/intelligence/lsp/service.js +213 -0
  578. package/dist/platform/intelligence/tree-sitter/embedded-wasm.d.ts +22 -0
  579. package/dist/platform/intelligence/tree-sitter/embedded-wasm.d.ts.map +1 -0
  580. package/dist/platform/intelligence/tree-sitter/embedded-wasm.js +35 -0
  581. package/dist/platform/intelligence/tree-sitter/index.d.ts +10 -0
  582. package/dist/platform/intelligence/tree-sitter/index.d.ts.map +1 -0
  583. package/dist/platform/intelligence/tree-sitter/index.js +8 -0
  584. package/dist/platform/intelligence/tree-sitter/languages.d.ts +17 -0
  585. package/dist/platform/intelligence/tree-sitter/languages.d.ts.map +1 -0
  586. package/dist/platform/intelligence/tree-sitter/languages.js +77 -0
  587. package/dist/platform/intelligence/tree-sitter/queries.d.ts +48 -0
  588. package/dist/platform/intelligence/tree-sitter/queries.d.ts.map +1 -0
  589. package/dist/platform/intelligence/tree-sitter/queries.js +403 -0
  590. package/dist/platform/intelligence/tree-sitter/service.d.ts +48 -0
  591. package/dist/platform/intelligence/tree-sitter/service.d.ts.map +1 -0
  592. package/dist/platform/intelligence/tree-sitter/service.js +171 -0
  593. package/dist/platform/knowledge/bookmarks.d.ts +3 -0
  594. package/dist/platform/knowledge/bookmarks.d.ts.map +1 -0
  595. package/dist/platform/knowledge/bookmarks.js +150 -0
  596. package/dist/platform/knowledge/connectors.d.ts +13 -0
  597. package/dist/platform/knowledge/connectors.d.ts.map +1 -0
  598. package/dist/platform/knowledge/connectors.js +248 -0
  599. package/dist/platform/knowledge/extractors.d.ts +16 -0
  600. package/dist/platform/knowledge/extractors.d.ts.map +1 -0
  601. package/dist/platform/knowledge/extractors.js +518 -0
  602. package/dist/platform/knowledge/graphql-schema.d.ts +45 -0
  603. package/dist/platform/knowledge/graphql-schema.d.ts.map +1 -0
  604. package/dist/platform/knowledge/graphql-schema.js +534 -0
  605. package/dist/platform/knowledge/persistence.d.ts +6 -0
  606. package/dist/platform/knowledge/persistence.d.ts.map +1 -0
  607. package/dist/platform/knowledge/persistence.js +3 -0
  608. package/dist/platform/knowledge/projections.d.ts +47 -0
  609. package/dist/platform/knowledge/projections.d.ts.map +1 -0
  610. package/dist/platform/knowledge/projections.js +674 -0
  611. package/dist/platform/knowledge/store-load.d.ts +16 -0
  612. package/dist/platform/knowledge/store-load.d.ts.map +1 -0
  613. package/dist/platform/knowledge/store-load.js +21 -0
  614. package/dist/platform/knowledge/store-read.d.ts +50 -0
  615. package/dist/platform/knowledge/store-read.d.ts.map +1 -0
  616. package/dist/platform/knowledge/store-read.js +183 -0
  617. package/dist/platform/knowledge/store-schema.d.ts +22 -0
  618. package/dist/platform/knowledge/store-schema.d.ts.map +1 -0
  619. package/dist/platform/knowledge/store-schema.js +408 -0
  620. package/dist/platform/knowledge/store.d.ts +76 -0
  621. package/dist/platform/knowledge/store.d.ts.map +1 -0
  622. package/dist/platform/knowledge/store.js +656 -0
  623. package/dist/platform/knowledge/types.d.ts +452 -0
  624. package/dist/platform/knowledge/types.d.ts.map +1 -0
  625. package/dist/platform/knowledge/types.js +1 -0
  626. package/dist/platform/mcp/config.d.ts +29 -0
  627. package/dist/platform/mcp/config.d.ts.map +1 -0
  628. package/dist/platform/mcp/config.js +99 -0
  629. package/dist/platform/media/builtin-generation-providers.d.ts +3 -0
  630. package/dist/platform/media/builtin-generation-providers.d.ts.map +1 -0
  631. package/dist/platform/media/builtin-generation-providers.js +552 -0
  632. package/dist/platform/media/provider-registry.d.ts +85 -0
  633. package/dist/platform/media/provider-registry.d.ts.map +1 -0
  634. package/dist/platform/media/provider-registry.js +57 -0
  635. package/dist/platform/multimodal/types.d.ts +71 -0
  636. package/dist/platform/multimodal/types.d.ts.map +1 -0
  637. package/dist/platform/multimodal/types.js +1 -0
  638. package/dist/platform/permissions/analysis.d.ts +3 -0
  639. package/dist/platform/permissions/analysis.d.ts.map +1 -0
  640. package/dist/platform/permissions/analysis.js +220 -0
  641. package/dist/platform/permissions/briefs/render-hints.d.ts +3 -0
  642. package/dist/platform/permissions/briefs/render-hints.d.ts.map +1 -0
  643. package/dist/platform/permissions/briefs/render-hints.js +3 -0
  644. package/dist/platform/permissions/briefs/types.d.ts +10 -0
  645. package/dist/platform/permissions/briefs/types.d.ts.map +1 -0
  646. package/dist/platform/permissions/briefs/types.js +1 -0
  647. package/dist/platform/permissions/types.d.ts +27 -0
  648. package/dist/platform/permissions/types.d.ts.map +1 -0
  649. package/dist/platform/permissions/types.js +1 -0
  650. package/dist/platform/profiles/manager.d.ts +57 -0
  651. package/dist/platform/profiles/manager.d.ts.map +1 -0
  652. package/dist/platform/profiles/manager.js +140 -0
  653. package/dist/platform/providers/cache-capability.d.ts +50 -0
  654. package/dist/platform/providers/cache-capability.d.ts.map +1 -0
  655. package/dist/platform/providers/cache-capability.js +124 -0
  656. package/dist/platform/providers/cache-strategy.d.ts +76 -0
  657. package/dist/platform/providers/cache-strategy.d.ts.map +1 -0
  658. package/dist/platform/providers/cache-strategy.js +160 -0
  659. package/dist/platform/providers/context-discovery.d.ts +99 -0
  660. package/dist/platform/providers/context-discovery.d.ts.map +1 -0
  661. package/dist/platform/providers/context-discovery.js +341 -0
  662. package/dist/platform/providers/effort-levels.d.ts +6 -0
  663. package/dist/platform/providers/effort-levels.d.ts.map +1 -0
  664. package/dist/platform/providers/effort-levels.js +10 -0
  665. package/dist/platform/providers/favorites.d.ts +33 -0
  666. package/dist/platform/providers/favorites.d.ts.map +1 -0
  667. package/dist/platform/providers/favorites.js +102 -0
  668. package/dist/platform/providers/local-context-ingestion.d.ts +89 -0
  669. package/dist/platform/providers/local-context-ingestion.d.ts.map +1 -0
  670. package/dist/platform/providers/local-context-ingestion.js +119 -0
  671. package/dist/platform/providers/microsoft-foundry-shared.d.ts +3 -0
  672. package/dist/platform/providers/microsoft-foundry-shared.d.ts.map +1 -0
  673. package/dist/platform/providers/microsoft-foundry-shared.js +20 -0
  674. package/dist/platform/providers/model-benchmarks.d.ts +43 -0
  675. package/dist/platform/providers/model-benchmarks.d.ts.map +1 -0
  676. package/dist/platform/providers/model-benchmarks.js +268 -0
  677. package/dist/platform/providers/openai-stream-delta.d.ts +13 -0
  678. package/dist/platform/providers/openai-stream-delta.d.ts.map +1 -0
  679. package/dist/platform/providers/openai-stream-delta.js +121 -0
  680. package/dist/platform/runtime/auth/oauth-core.d.ts +32 -0
  681. package/dist/platform/runtime/auth/oauth-core.d.ts.map +1 -0
  682. package/dist/platform/runtime/auth/oauth-core.js +121 -0
  683. package/dist/platform/runtime/contracts/index.d.ts +40 -0
  684. package/dist/platform/runtime/contracts/index.d.ts.map +1 -0
  685. package/dist/platform/runtime/contracts/index.js +137 -0
  686. package/dist/platform/runtime/contracts/migrations/event-envelope.d.ts +23 -0
  687. package/dist/platform/runtime/contracts/migrations/event-envelope.d.ts.map +1 -0
  688. package/dist/platform/runtime/contracts/migrations/event-envelope.js +41 -0
  689. package/dist/platform/runtime/contracts/migrations/index.d.ts +75 -0
  690. package/dist/platform/runtime/contracts/migrations/index.d.ts.map +1 -0
  691. package/dist/platform/runtime/contracts/migrations/index.js +158 -0
  692. package/dist/platform/runtime/contracts/migrations/plugin-manifest.d.ts +23 -0
  693. package/dist/platform/runtime/contracts/migrations/plugin-manifest.d.ts.map +1 -0
  694. package/dist/platform/runtime/contracts/migrations/plugin-manifest.js +41 -0
  695. package/dist/platform/runtime/contracts/migrations/runtime-state.d.ts +23 -0
  696. package/dist/platform/runtime/contracts/migrations/runtime-state.d.ts.map +1 -0
  697. package/dist/platform/runtime/contracts/migrations/runtime-state.js +44 -0
  698. package/dist/platform/runtime/contracts/migrations/session.d.ts +23 -0
  699. package/dist/platform/runtime/contracts/migrations/session.d.ts.map +1 -0
  700. package/dist/platform/runtime/contracts/migrations/session.js +42 -0
  701. package/dist/platform/runtime/contracts/migrations/task-record.d.ts +23 -0
  702. package/dist/platform/runtime/contracts/migrations/task-record.d.ts.map +1 -0
  703. package/dist/platform/runtime/contracts/migrations/task-record.js +41 -0
  704. package/dist/platform/runtime/contracts/types.d.ts +122 -0
  705. package/dist/platform/runtime/contracts/types.d.ts.map +1 -0
  706. package/dist/platform/runtime/contracts/types.js +48 -0
  707. package/dist/platform/runtime/contracts/validators/event-envelope.d.ts +24 -0
  708. package/dist/platform/runtime/contracts/validators/event-envelope.d.ts.map +1 -0
  709. package/dist/platform/runtime/contracts/validators/event-envelope.js +104 -0
  710. package/dist/platform/runtime/contracts/validators/index.d.ts +11 -0
  711. package/dist/platform/runtime/contracts/validators/index.d.ts.map +1 -0
  712. package/dist/platform/runtime/contracts/validators/index.js +10 -0
  713. package/dist/platform/runtime/contracts/validators/runtime-state.d.ts +23 -0
  714. package/dist/platform/runtime/contracts/validators/runtime-state.d.ts.map +1 -0
  715. package/dist/platform/runtime/contracts/validators/runtime-state.js +101 -0
  716. package/dist/platform/runtime/contracts/validators/session.d.ts +24 -0
  717. package/dist/platform/runtime/contracts/validators/session.d.ts.map +1 -0
  718. package/dist/platform/runtime/contracts/validators/session.js +103 -0
  719. package/dist/platform/runtime/contracts/version.d.ts +84 -0
  720. package/dist/platform/runtime/contracts/version.d.ts.map +1 -0
  721. package/dist/platform/runtime/contracts/version.js +41 -0
  722. package/dist/platform/runtime/deferred-startup.d.ts +11 -0
  723. package/dist/platform/runtime/deferred-startup.d.ts.map +1 -0
  724. package/dist/platform/runtime/deferred-startup.js +37 -0
  725. package/dist/platform/runtime/diagnostics/panels/divergence.d.ts +66 -0
  726. package/dist/platform/runtime/diagnostics/panels/divergence.d.ts.map +1 -0
  727. package/dist/platform/runtime/diagnostics/panels/divergence.js +93 -0
  728. package/dist/platform/runtime/diagnostics/panels/forensics.d.ts +38 -0
  729. package/dist/platform/runtime/diagnostics/panels/forensics.d.ts.map +1 -0
  730. package/dist/platform/runtime/diagnostics/panels/forensics.js +56 -0
  731. package/dist/platform/runtime/diagnostics/panels/panel-resources.d.ts +55 -0
  732. package/dist/platform/runtime/diagnostics/panels/panel-resources.d.ts.map +1 -0
  733. package/dist/platform/runtime/diagnostics/panels/panel-resources.js +125 -0
  734. package/dist/platform/runtime/diagnostics/panels/replay.d.ts +34 -0
  735. package/dist/platform/runtime/diagnostics/panels/replay.d.ts.map +1 -0
  736. package/dist/platform/runtime/diagnostics/panels/replay.js +67 -0
  737. package/dist/platform/runtime/diagnostics/panels/security.d.ts +89 -0
  738. package/dist/platform/runtime/diagnostics/panels/security.d.ts.map +1 -0
  739. package/dist/platform/runtime/diagnostics/panels/security.js +118 -0
  740. package/dist/platform/runtime/diagnostics/panels/state-inspector.d.ts +112 -0
  741. package/dist/platform/runtime/diagnostics/panels/state-inspector.d.ts.map +1 -0
  742. package/dist/platform/runtime/diagnostics/panels/state-inspector.js +122 -0
  743. package/dist/platform/runtime/diagnostics/panels/tool-contracts.d.ts +99 -0
  744. package/dist/platform/runtime/diagnostics/panels/tool-contracts.d.ts.map +1 -0
  745. package/dist/platform/runtime/diagnostics/panels/tool-contracts.js +172 -0
  746. package/dist/platform/runtime/diagnostics/panels/transport.d.ts +146 -0
  747. package/dist/platform/runtime/diagnostics/panels/transport.d.ts.map +1 -0
  748. package/dist/platform/runtime/diagnostics/panels/transport.js +268 -0
  749. package/dist/platform/runtime/diagnostics/types.d.ts +533 -0
  750. package/dist/platform/runtime/diagnostics/types.d.ts.map +1 -0
  751. package/dist/platform/runtime/diagnostics/types.js +58 -0
  752. package/dist/platform/runtime/eval/baseline.d.ts +41 -0
  753. package/dist/platform/runtime/eval/baseline.d.ts.map +1 -0
  754. package/dist/platform/runtime/eval/baseline.js +123 -0
  755. package/dist/platform/runtime/eval/format.d.ts +16 -0
  756. package/dist/platform/runtime/eval/format.d.ts.map +1 -0
  757. package/dist/platform/runtime/eval/format.js +58 -0
  758. package/dist/platform/runtime/eval/scorecard.d.ts +32 -0
  759. package/dist/platform/runtime/eval/scorecard.d.ts.map +1 -0
  760. package/dist/platform/runtime/eval/scorecard.js +231 -0
  761. package/dist/platform/runtime/eval/types.d.ts +156 -0
  762. package/dist/platform/runtime/eval/types.d.ts.map +1 -0
  763. package/dist/platform/runtime/eval/types.js +7 -0
  764. package/dist/platform/runtime/event-envelope.d.ts +3 -0
  765. package/dist/platform/runtime/event-envelope.d.ts.map +1 -0
  766. package/dist/platform/runtime/event-envelope.js +1 -0
  767. package/dist/platform/runtime/event-feeds.d.ts +3 -0
  768. package/dist/platform/runtime/event-feeds.d.ts.map +1 -0
  769. package/dist/platform/runtime/event-feeds.js +1 -0
  770. package/dist/platform/runtime/events/agents.d.ts +81 -0
  771. package/dist/platform/runtime/events/agents.d.ts.map +1 -0
  772. package/dist/platform/runtime/events/agents.js +6 -0
  773. package/dist/platform/runtime/events/automation.d.ts +72 -0
  774. package/dist/platform/runtime/events/automation.d.ts.map +1 -0
  775. package/dist/platform/runtime/events/automation.js +5 -0
  776. package/dist/platform/runtime/events/communication.d.ts +41 -0
  777. package/dist/platform/runtime/events/communication.d.ts.map +1 -0
  778. package/dist/platform/runtime/events/communication.js +4 -0
  779. package/dist/platform/runtime/events/compaction.d.ts +98 -0
  780. package/dist/platform/runtime/events/compaction.d.ts.map +1 -0
  781. package/dist/platform/runtime/events/compaction.js +6 -0
  782. package/dist/platform/runtime/events/contracts/agent-mcp.d.ts +8 -0
  783. package/dist/platform/runtime/events/contracts/agent-mcp.d.ts.map +1 -0
  784. package/dist/platform/runtime/events/contracts/agent-mcp.js +40 -0
  785. package/dist/platform/runtime/events/contracts/automation-route.d.ts +41 -0
  786. package/dist/platform/runtime/events/contracts/automation-route.d.ts.map +1 -0
  787. package/dist/platform/runtime/events/contracts/automation-route.js +315 -0
  788. package/dist/platform/runtime/events/contracts/shared.d.ts +27 -0
  789. package/dist/platform/runtime/events/contracts/shared.d.ts.map +1 -0
  790. package/dist/platform/runtime/events/contracts/shared.js +71 -0
  791. package/dist/platform/runtime/events/contracts/turn-tool.d.ts +10 -0
  792. package/dist/platform/runtime/events/contracts/turn-tool.d.ts.map +1 -0
  793. package/dist/platform/runtime/events/contracts/turn-tool.js +53 -0
  794. package/dist/platform/runtime/events/contracts.d.ts +11 -0
  795. package/dist/platform/runtime/events/contracts.d.ts.map +1 -0
  796. package/dist/platform/runtime/events/contracts.js +83 -0
  797. package/dist/platform/runtime/events/control-plane.d.ts +42 -0
  798. package/dist/platform/runtime/events/control-plane.d.ts.map +1 -0
  799. package/dist/platform/runtime/events/control-plane.js +24 -0
  800. package/dist/platform/runtime/events/deliveries.d.ts +54 -0
  801. package/dist/platform/runtime/events/deliveries.d.ts.map +1 -0
  802. package/dist/platform/runtime/events/deliveries.js +4 -0
  803. package/dist/platform/runtime/events/envelope.d.ts +3 -0
  804. package/dist/platform/runtime/events/envelope.d.ts.map +1 -0
  805. package/dist/platform/runtime/events/envelope.js +1 -0
  806. package/dist/platform/runtime/events/forensics.d.ts +31 -0
  807. package/dist/platform/runtime/events/forensics.d.ts.map +1 -0
  808. package/dist/platform/runtime/events/forensics.js +7 -0
  809. package/dist/platform/runtime/events/knowledge.d.ts +76 -0
  810. package/dist/platform/runtime/events/knowledge.d.ts.map +1 -0
  811. package/dist/platform/runtime/events/knowledge.js +4 -0
  812. package/dist/platform/runtime/events/mcp.d.ts +90 -0
  813. package/dist/platform/runtime/events/mcp.d.ts.map +1 -0
  814. package/dist/platform/runtime/events/mcp.js +6 -0
  815. package/dist/platform/runtime/events/ops.d.ts +81 -0
  816. package/dist/platform/runtime/events/ops.d.ts.map +1 -0
  817. package/dist/platform/runtime/events/ops.js +8 -0
  818. package/dist/platform/runtime/events/orchestration.d.ts +75 -0
  819. package/dist/platform/runtime/events/orchestration.d.ts.map +1 -0
  820. package/dist/platform/runtime/events/orchestration.js +4 -0
  821. package/dist/platform/runtime/events/permissions.d.ts +78 -0
  822. package/dist/platform/runtime/events/permissions.d.ts.map +1 -0
  823. package/dist/platform/runtime/events/permissions.js +6 -0
  824. package/dist/platform/runtime/events/planner.d.ts +13 -0
  825. package/dist/platform/runtime/events/planner.d.ts.map +1 -0
  826. package/dist/platform/runtime/events/planner.js +1 -0
  827. package/dist/platform/runtime/events/plugins.d.ts +60 -0
  828. package/dist/platform/runtime/events/plugins.d.ts.map +1 -0
  829. package/dist/platform/runtime/events/plugins.js +6 -0
  830. package/dist/platform/runtime/events/providers.d.ts +19 -0
  831. package/dist/platform/runtime/events/providers.d.ts.map +1 -0
  832. package/dist/platform/runtime/events/providers.js +1 -0
  833. package/dist/platform/runtime/events/routes.d.ts +40 -0
  834. package/dist/platform/runtime/events/routes.d.ts.map +1 -0
  835. package/dist/platform/runtime/events/routes.js +22 -0
  836. package/dist/platform/runtime/events/security.d.ts +44 -0
  837. package/dist/platform/runtime/events/security.d.ts.map +1 -0
  838. package/dist/platform/runtime/events/security.js +8 -0
  839. package/dist/platform/runtime/events/session.d.ts +51 -0
  840. package/dist/platform/runtime/events/session.d.ts.map +1 -0
  841. package/dist/platform/runtime/events/session.js +6 -0
  842. package/dist/platform/runtime/events/surfaces.d.ts +37 -0
  843. package/dist/platform/runtime/events/surfaces.d.ts.map +1 -0
  844. package/dist/platform/runtime/events/surfaces.js +4 -0
  845. package/dist/platform/runtime/events/tasks.d.ts +60 -0
  846. package/dist/platform/runtime/events/tasks.d.ts.map +1 -0
  847. package/dist/platform/runtime/events/tasks.js +6 -0
  848. package/dist/platform/runtime/events/tools.d.ts +131 -0
  849. package/dist/platform/runtime/events/tools.d.ts.map +1 -0
  850. package/dist/platform/runtime/events/tools.js +6 -0
  851. package/dist/platform/runtime/events/transport.d.ts +57 -0
  852. package/dist/platform/runtime/events/transport.d.ts.map +1 -0
  853. package/dist/platform/runtime/events/transport.js +6 -0
  854. package/dist/platform/runtime/events/ui.d.ts +59 -0
  855. package/dist/platform/runtime/events/ui.d.ts.map +1 -0
  856. package/dist/platform/runtime/events/ui.js +6 -0
  857. package/dist/platform/runtime/events/watchers.d.ts +35 -0
  858. package/dist/platform/runtime/events/watchers.d.ts.map +1 -0
  859. package/dist/platform/runtime/events/watchers.js +4 -0
  860. package/dist/platform/runtime/execution-intents.d.ts +13 -0
  861. package/dist/platform/runtime/execution-intents.d.ts.map +1 -0
  862. package/dist/platform/runtime/execution-intents.js +3 -0
  863. package/dist/platform/runtime/feature-flags/flags.d.ts +21 -0
  864. package/dist/platform/runtime/feature-flags/flags.d.ts.map +1 -0
  865. package/dist/platform/runtime/feature-flags/flags.js +472 -0
  866. package/dist/platform/runtime/feature-flags/index.d.ts +22 -0
  867. package/dist/platform/runtime/feature-flags/index.d.ts.map +1 -0
  868. package/dist/platform/runtime/feature-flags/index.js +19 -0
  869. package/dist/platform/runtime/feature-flags/manager.d.ts +133 -0
  870. package/dist/platform/runtime/feature-flags/manager.d.ts.map +1 -0
  871. package/dist/platform/runtime/feature-flags/manager.js +255 -0
  872. package/dist/platform/runtime/feature-flags/types.d.ts +65 -0
  873. package/dist/platform/runtime/feature-flags/types.d.ts.map +1 -0
  874. package/dist/platform/runtime/feature-flags/types.js +7 -0
  875. package/dist/platform/runtime/forensics/classifier.d.ts +39 -0
  876. package/dist/platform/runtime/forensics/classifier.d.ts.map +1 -0
  877. package/dist/platform/runtime/forensics/classifier.js +95 -0
  878. package/dist/platform/runtime/forensics/registry.d.ts +89 -0
  879. package/dist/platform/runtime/forensics/registry.d.ts.map +1 -0
  880. package/dist/platform/runtime/forensics/registry.js +191 -0
  881. package/dist/platform/runtime/forensics/types.d.ts +206 -0
  882. package/dist/platform/runtime/forensics/types.d.ts.map +1 -0
  883. package/dist/platform/runtime/forensics/types.js +9 -0
  884. package/dist/platform/runtime/health/aggregator.d.ts +57 -0
  885. package/dist/platform/runtime/health/aggregator.d.ts.map +1 -0
  886. package/dist/platform/runtime/health/aggregator.js +188 -0
  887. package/dist/platform/runtime/health/cascade-engine.d.ts +55 -0
  888. package/dist/platform/runtime/health/cascade-engine.d.ts.map +1 -0
  889. package/dist/platform/runtime/health/cascade-engine.js +134 -0
  890. package/dist/platform/runtime/health/cascade-playbook-map.d.ts +22 -0
  891. package/dist/platform/runtime/health/cascade-playbook-map.d.ts.map +1 -0
  892. package/dist/platform/runtime/health/cascade-playbook-map.js +48 -0
  893. package/dist/platform/runtime/health/cascade-rules.d.ts +14 -0
  894. package/dist/platform/runtime/health/cascade-rules.d.ts.map +1 -0
  895. package/dist/platform/runtime/health/cascade-rules.js +89 -0
  896. package/dist/platform/runtime/health/cascade-timing.d.ts +79 -0
  897. package/dist/platform/runtime/health/cascade-timing.d.ts.map +1 -0
  898. package/dist/platform/runtime/health/cascade-timing.js +96 -0
  899. package/dist/platform/runtime/health/types.d.ts +176 -0
  900. package/dist/platform/runtime/health/types.d.ts.map +1 -0
  901. package/dist/platform/runtime/health/types.js +24 -0
  902. package/dist/platform/runtime/idempotency/index.d.ts +123 -0
  903. package/dist/platform/runtime/idempotency/index.d.ts.map +1 -0
  904. package/dist/platform/runtime/idempotency/index.js +193 -0
  905. package/dist/platform/runtime/idempotency/types.d.ts +69 -0
  906. package/dist/platform/runtime/idempotency/types.d.ts.map +1 -0
  907. package/dist/platform/runtime/idempotency/types.js +7 -0
  908. package/dist/platform/runtime/inspection/state-inspector/hotspot-sampler.d.ts +80 -0
  909. package/dist/platform/runtime/inspection/state-inspector/hotspot-sampler.d.ts.map +1 -0
  910. package/dist/platform/runtime/inspection/state-inspector/hotspot-sampler.js +153 -0
  911. package/dist/platform/runtime/inspection/state-inspector/index.d.ts +42 -0
  912. package/dist/platform/runtime/inspection/state-inspector/index.d.ts.map +1 -0
  913. package/dist/platform/runtime/inspection/state-inspector/index.js +38 -0
  914. package/dist/platform/runtime/inspection/state-inspector/inspector.d.ts +184 -0
  915. package/dist/platform/runtime/inspection/state-inspector/inspector.d.ts.map +1 -0
  916. package/dist/platform/runtime/inspection/state-inspector/inspector.js +331 -0
  917. package/dist/platform/runtime/inspection/state-inspector/serialize.d.ts +16 -0
  918. package/dist/platform/runtime/inspection/state-inspector/serialize.d.ts.map +1 -0
  919. package/dist/platform/runtime/inspection/state-inspector/serialize.js +39 -0
  920. package/dist/platform/runtime/inspection/state-inspector/timeline.d.ts +116 -0
  921. package/dist/platform/runtime/inspection/state-inspector/timeline.d.ts.map +1 -0
  922. package/dist/platform/runtime/inspection/state-inspector/timeline.js +198 -0
  923. package/dist/platform/runtime/inspection/state-inspector/transition-log.d.ts +84 -0
  924. package/dist/platform/runtime/inspection/state-inspector/transition-log.d.ts.map +1 -0
  925. package/dist/platform/runtime/inspection/state-inspector/transition-log.js +120 -0
  926. package/dist/platform/runtime/inspection/state-inspector/types.d.ts +193 -0
  927. package/dist/platform/runtime/inspection/state-inspector/types.d.ts.map +1 -0
  928. package/dist/platform/runtime/inspection/state-inspector/types.js +16 -0
  929. package/dist/platform/runtime/mcp/lifecycle.d.ts +54 -0
  930. package/dist/platform/runtime/mcp/lifecycle.d.ts.map +1 -0
  931. package/dist/platform/runtime/mcp/lifecycle.js +72 -0
  932. package/dist/platform/runtime/mcp/permissions.d.ts +110 -0
  933. package/dist/platform/runtime/mcp/permissions.d.ts.map +1 -0
  934. package/dist/platform/runtime/mcp/permissions.js +605 -0
  935. package/dist/platform/runtime/mcp/schema-freshness.d.ts +115 -0
  936. package/dist/platform/runtime/mcp/schema-freshness.d.ts.map +1 -0
  937. package/dist/platform/runtime/mcp/schema-freshness.js +231 -0
  938. package/dist/platform/runtime/mcp/types.d.ts +275 -0
  939. package/dist/platform/runtime/mcp/types.d.ts.map +1 -0
  940. package/dist/platform/runtime/mcp/types.js +6 -0
  941. package/dist/platform/runtime/notifications/formatters/index.d.ts +6 -0
  942. package/dist/platform/runtime/notifications/formatters/index.d.ts.map +1 -0
  943. package/dist/platform/runtime/notifications/formatters/index.js +5 -0
  944. package/dist/platform/runtime/notifications/formatters/panel-jump.d.ts +23 -0
  945. package/dist/platform/runtime/notifications/formatters/panel-jump.d.ts.map +1 -0
  946. package/dist/platform/runtime/notifications/formatters/panel-jump.js +32 -0
  947. package/dist/platform/runtime/notifications/formatters/summary.d.ts +24 -0
  948. package/dist/platform/runtime/notifications/formatters/summary.d.ts.map +1 -0
  949. package/dist/platform/runtime/notifications/formatters/summary.js +56 -0
  950. package/dist/platform/runtime/notifications/index.d.ts +32 -0
  951. package/dist/platform/runtime/notifications/index.d.ts.map +1 -0
  952. package/dist/platform/runtime/notifications/index.js +32 -0
  953. package/dist/platform/runtime/notifications/policies/batch-policy.d.ts +51 -0
  954. package/dist/platform/runtime/notifications/policies/batch-policy.d.ts.map +1 -0
  955. package/dist/platform/runtime/notifications/policies/batch-policy.js +85 -0
  956. package/dist/platform/runtime/notifications/policies/burst-policy.d.ts +70 -0
  957. package/dist/platform/runtime/notifications/policies/burst-policy.d.ts.map +1 -0
  958. package/dist/platform/runtime/notifications/policies/burst-policy.js +122 -0
  959. package/dist/platform/runtime/notifications/policies/default-policy.d.ts +21 -0
  960. package/dist/platform/runtime/notifications/policies/default-policy.d.ts.map +1 -0
  961. package/dist/platform/runtime/notifications/policies/default-policy.js +32 -0
  962. package/dist/platform/runtime/notifications/policies/index.d.ts +9 -0
  963. package/dist/platform/runtime/notifications/policies/index.d.ts.map +1 -0
  964. package/dist/platform/runtime/notifications/policies/index.js +8 -0
  965. package/dist/platform/runtime/notifications/policies/mode-context-policy.d.ts +28 -0
  966. package/dist/platform/runtime/notifications/policies/mode-context-policy.d.ts.map +1 -0
  967. package/dist/platform/runtime/notifications/policies/mode-context-policy.js +62 -0
  968. package/dist/platform/runtime/notifications/policies/quiet-typing.d.ts +21 -0
  969. package/dist/platform/runtime/notifications/policies/quiet-typing.d.ts.map +1 -0
  970. package/dist/platform/runtime/notifications/policies/quiet-typing.js +37 -0
  971. package/dist/platform/runtime/notifications/router.d.ts +139 -0
  972. package/dist/platform/runtime/notifications/router.d.ts.map +1 -0
  973. package/dist/platform/runtime/notifications/router.js +222 -0
  974. package/dist/platform/runtime/notifications/types.d.ts +126 -0
  975. package/dist/platform/runtime/notifications/types.d.ts.map +1 -0
  976. package/dist/platform/runtime/notifications/types.js +7 -0
  977. package/dist/platform/runtime/ops/playbooks/compaction-failure.d.ts +10 -0
  978. package/dist/platform/runtime/ops/playbooks/compaction-failure.d.ts.map +1 -0
  979. package/dist/platform/runtime/ops/playbooks/compaction-failure.js +106 -0
  980. package/dist/platform/runtime/ops/playbooks/export-recovery.d.ts +10 -0
  981. package/dist/platform/runtime/ops/playbooks/export-recovery.d.ts.map +1 -0
  982. package/dist/platform/runtime/ops/playbooks/export-recovery.js +110 -0
  983. package/dist/platform/runtime/ops/playbooks/permission-deadlock.d.ts +11 -0
  984. package/dist/platform/runtime/ops/playbooks/permission-deadlock.d.ts.map +1 -0
  985. package/dist/platform/runtime/ops/playbooks/permission-deadlock.js +108 -0
  986. package/dist/platform/runtime/ops/playbooks/plugin-degradation.d.ts +10 -0
  987. package/dist/platform/runtime/ops/playbooks/plugin-degradation.d.ts.map +1 -0
  988. package/dist/platform/runtime/ops/playbooks/plugin-degradation.js +107 -0
  989. package/dist/platform/runtime/ops/playbooks/reconnect-failure.d.ts +10 -0
  990. package/dist/platform/runtime/ops/playbooks/reconnect-failure.d.ts.map +1 -0
  991. package/dist/platform/runtime/ops/playbooks/reconnect-failure.js +109 -0
  992. package/dist/platform/runtime/ops/safe-check.d.ts +10 -0
  993. package/dist/platform/runtime/ops/safe-check.d.ts.map +1 -0
  994. package/dist/platform/runtime/ops/safe-check.js +14 -0
  995. package/dist/platform/runtime/ops/types.d.ts +99 -0
  996. package/dist/platform/runtime/ops/types.d.ts.map +1 -0
  997. package/dist/platform/runtime/ops/types.js +8 -0
  998. package/dist/platform/runtime/perf/budgets.d.ts +17 -0
  999. package/dist/platform/runtime/perf/budgets.d.ts.map +1 -0
  1000. package/dist/platform/runtime/perf/budgets.js +117 -0
  1001. package/dist/platform/runtime/perf/monitor.d.ts +69 -0
  1002. package/dist/platform/runtime/perf/monitor.d.ts.map +1 -0
  1003. package/dist/platform/runtime/perf/monitor.js +148 -0
  1004. package/dist/platform/runtime/perf/panel-contracts.d.ts +93 -0
  1005. package/dist/platform/runtime/perf/panel-contracts.d.ts.map +1 -0
  1006. package/dist/platform/runtime/perf/panel-contracts.js +92 -0
  1007. package/dist/platform/runtime/perf/panel-health-monitor.d.ts +92 -0
  1008. package/dist/platform/runtime/perf/panel-health-monitor.d.ts.map +1 -0
  1009. package/dist/platform/runtime/perf/panel-health-monitor.js +239 -0
  1010. package/dist/platform/runtime/perf/reporter.d.ts +16 -0
  1011. package/dist/platform/runtime/perf/reporter.d.ts.map +1 -0
  1012. package/dist/platform/runtime/perf/reporter.js +99 -0
  1013. package/dist/platform/runtime/perf/types.d.ts +69 -0
  1014. package/dist/platform/runtime/perf/types.d.ts.map +1 -0
  1015. package/dist/platform/runtime/perf/types.js +7 -0
  1016. package/dist/platform/runtime/permissions/decision-log.d.ts +98 -0
  1017. package/dist/platform/runtime/permissions/decision-log.d.ts.map +1 -0
  1018. package/dist/platform/runtime/permissions/decision-log.js +133 -0
  1019. package/dist/platform/runtime/permissions/divergence-dashboard.d.ts +205 -0
  1020. package/dist/platform/runtime/permissions/divergence-dashboard.d.ts.map +1 -0
  1021. package/dist/platform/runtime/permissions/divergence-dashboard.js +207 -0
  1022. package/dist/platform/runtime/permissions/evaluator.d.ts +60 -0
  1023. package/dist/platform/runtime/permissions/evaluator.d.ts.map +1 -0
  1024. package/dist/platform/runtime/permissions/evaluator.js +384 -0
  1025. package/dist/platform/runtime/permissions/lint.d.ts +9 -0
  1026. package/dist/platform/runtime/permissions/lint.d.ts.map +1 -0
  1027. package/dist/platform/runtime/permissions/lint.js +72 -0
  1028. package/dist/platform/runtime/permissions/normalization/ast.d.ts +93 -0
  1029. package/dist/platform/runtime/permissions/normalization/ast.d.ts.map +1 -0
  1030. package/dist/platform/runtime/permissions/normalization/ast.js +53 -0
  1031. package/dist/platform/runtime/permissions/normalization/canonicalizer.d.ts +26 -0
  1032. package/dist/platform/runtime/permissions/normalization/canonicalizer.d.ts.map +1 -0
  1033. package/dist/platform/runtime/permissions/normalization/canonicalizer.js +60 -0
  1034. package/dist/platform/runtime/permissions/normalization/classifier.d.ts +38 -0
  1035. package/dist/platform/runtime/permissions/normalization/classifier.d.ts.map +1 -0
  1036. package/dist/platform/runtime/permissions/normalization/classifier.js +277 -0
  1037. package/dist/platform/runtime/permissions/normalization/index.d.ts +33 -0
  1038. package/dist/platform/runtime/permissions/normalization/index.d.ts.map +1 -0
  1039. package/dist/platform/runtime/permissions/normalization/index.js +45 -0
  1040. package/dist/platform/runtime/permissions/normalization/parser.d.ts +42 -0
  1041. package/dist/platform/runtime/permissions/normalization/parser.d.ts.map +1 -0
  1042. package/dist/platform/runtime/permissions/normalization/parser.js +189 -0
  1043. package/dist/platform/runtime/permissions/normalization/segmenter.d.ts +17 -0
  1044. package/dist/platform/runtime/permissions/normalization/segmenter.d.ts.map +1 -0
  1045. package/dist/platform/runtime/permissions/normalization/segmenter.js +59 -0
  1046. package/dist/platform/runtime/permissions/normalization/tokenizer.d.ts +40 -0
  1047. package/dist/platform/runtime/permissions/normalization/tokenizer.d.ts.map +1 -0
  1048. package/dist/platform/runtime/permissions/normalization/tokenizer.js +184 -0
  1049. package/dist/platform/runtime/permissions/normalization/types.d.ts +63 -0
  1050. package/dist/platform/runtime/permissions/normalization/types.d.ts.map +1 -0
  1051. package/dist/platform/runtime/permissions/normalization/types.js +7 -0
  1052. package/dist/platform/runtime/permissions/normalization/verdict.d.ts +100 -0
  1053. package/dist/platform/runtime/permissions/normalization/verdict.d.ts.map +1 -0
  1054. package/dist/platform/runtime/permissions/normalization/verdict.js +269 -0
  1055. package/dist/platform/runtime/permissions/policy-loader.d.ts +142 -0
  1056. package/dist/platform/runtime/permissions/policy-loader.d.ts.map +1 -0
  1057. package/dist/platform/runtime/permissions/policy-loader.js +124 -0
  1058. package/dist/platform/runtime/permissions/policy-registry.d.ts +225 -0
  1059. package/dist/platform/runtime/permissions/policy-registry.d.ts.map +1 -0
  1060. package/dist/platform/runtime/permissions/policy-registry.js +307 -0
  1061. package/dist/platform/runtime/permissions/policy-signer.d.ts +104 -0
  1062. package/dist/platform/runtime/permissions/policy-signer.d.ts.map +1 -0
  1063. package/dist/platform/runtime/permissions/policy-signer.js +145 -0
  1064. package/dist/platform/runtime/permissions/risk-language.d.ts +3 -0
  1065. package/dist/platform/runtime/permissions/risk-language.d.ts.map +1 -0
  1066. package/dist/platform/runtime/permissions/risk-language.js +21 -0
  1067. package/dist/platform/runtime/permissions/risk-model.d.ts +9 -0
  1068. package/dist/platform/runtime/permissions/risk-model.d.ts.map +1 -0
  1069. package/dist/platform/runtime/permissions/risk-model.js +58 -0
  1070. package/dist/platform/runtime/permissions/rules/arg-shape.d.ts +26 -0
  1071. package/dist/platform/runtime/permissions/rules/arg-shape.d.ts.map +1 -0
  1072. package/dist/platform/runtime/permissions/rules/arg-shape.js +109 -0
  1073. package/dist/platform/runtime/permissions/rules/index.d.ts +16 -0
  1074. package/dist/platform/runtime/permissions/rules/index.d.ts.map +1 -0
  1075. package/dist/platform/runtime/permissions/rules/index.js +10 -0
  1076. package/dist/platform/runtime/permissions/rules/mode-constraint.d.ts +29 -0
  1077. package/dist/platform/runtime/permissions/rules/mode-constraint.d.ts.map +1 -0
  1078. package/dist/platform/runtime/permissions/rules/mode-constraint.js +80 -0
  1079. package/dist/platform/runtime/permissions/rules/network-scope.d.ts +38 -0
  1080. package/dist/platform/runtime/permissions/rules/network-scope.d.ts.map +1 -0
  1081. package/dist/platform/runtime/permissions/rules/network-scope.js +153 -0
  1082. package/dist/platform/runtime/permissions/rules/path-scope.d.ts +28 -0
  1083. package/dist/platform/runtime/permissions/rules/path-scope.d.ts.map +1 -0
  1084. package/dist/platform/runtime/permissions/rules/path-scope.js +0 -0
  1085. package/dist/platform/runtime/permissions/rules/prefix.d.ts +26 -0
  1086. package/dist/platform/runtime/permissions/rules/prefix.d.ts.map +1 -0
  1087. package/dist/platform/runtime/permissions/rules/prefix.js +103 -0
  1088. package/dist/platform/runtime/permissions/safety-checks.d.ts +32 -0
  1089. package/dist/platform/runtime/permissions/safety-checks.d.ts.map +1 -0
  1090. package/dist/platform/runtime/permissions/safety-checks.js +263 -0
  1091. package/dist/platform/runtime/permissions/simulation-scenarios.d.ts +28 -0
  1092. package/dist/platform/runtime/permissions/simulation-scenarios.d.ts.map +1 -0
  1093. package/dist/platform/runtime/permissions/simulation-scenarios.js +34 -0
  1094. package/dist/platform/runtime/permissions/simulation.d.ts +113 -0
  1095. package/dist/platform/runtime/permissions/simulation.d.ts.map +1 -0
  1096. package/dist/platform/runtime/permissions/simulation.js +290 -0
  1097. package/dist/platform/runtime/permissions/types.d.ts +332 -0
  1098. package/dist/platform/runtime/permissions/types.d.ts.map +1 -0
  1099. package/dist/platform/runtime/permissions/types.js +7 -0
  1100. package/dist/platform/runtime/provider-health/data-provider.d.ts +82 -0
  1101. package/dist/platform/runtime/provider-health/data-provider.d.ts.map +1 -0
  1102. package/dist/platform/runtime/provider-health/data-provider.js +197 -0
  1103. package/dist/platform/runtime/provider-health/fallback-visualizer.d.ts +22 -0
  1104. package/dist/platform/runtime/provider-health/fallback-visualizer.d.ts.map +1 -0
  1105. package/dist/platform/runtime/provider-health/fallback-visualizer.js +48 -0
  1106. package/dist/platform/runtime/provider-health/index.d.ts +24 -0
  1107. package/dist/platform/runtime/provider-health/index.d.ts.map +1 -0
  1108. package/dist/platform/runtime/provider-health/index.js +21 -0
  1109. package/dist/platform/runtime/provider-health/types.d.ts +128 -0
  1110. package/dist/platform/runtime/provider-health/types.d.ts.map +1 -0
  1111. package/dist/platform/runtime/provider-health/types.js +1 -0
  1112. package/dist/platform/runtime/remote/capabilities.d.ts +11 -0
  1113. package/dist/platform/runtime/remote/capabilities.d.ts.map +1 -0
  1114. package/dist/platform/runtime/remote/capabilities.js +53 -0
  1115. package/dist/platform/runtime/remote/distributed-runtime-contract.d.ts +3 -0
  1116. package/dist/platform/runtime/remote/distributed-runtime-contract.d.ts.map +1 -0
  1117. package/dist/platform/runtime/remote/distributed-runtime-contract.js +4 -0
  1118. package/dist/platform/runtime/remote/distributed-runtime-manager.d.ts +147 -0
  1119. package/dist/platform/runtime/remote/distributed-runtime-manager.d.ts.map +1 -0
  1120. package/dist/platform/runtime/remote/distributed-runtime-manager.js +88 -0
  1121. package/dist/platform/runtime/remote/distributed-runtime-pairing.d.ts +71 -0
  1122. package/dist/platform/runtime/remote/distributed-runtime-pairing.d.ts.map +1 -0
  1123. package/dist/platform/runtime/remote/distributed-runtime-pairing.js +405 -0
  1124. package/dist/platform/runtime/remote/distributed-runtime-store.d.ts +23 -0
  1125. package/dist/platform/runtime/remote/distributed-runtime-store.d.ts.map +1 -0
  1126. package/dist/platform/runtime/remote/distributed-runtime-store.js +238 -0
  1127. package/dist/platform/runtime/remote/distributed-runtime-types.d.ts +181 -0
  1128. package/dist/platform/runtime/remote/distributed-runtime-types.d.ts.map +1 -0
  1129. package/dist/platform/runtime/remote/distributed-runtime-types.js +1 -0
  1130. package/dist/platform/runtime/remote/distributed-runtime-utils.d.ts +36 -0
  1131. package/dist/platform/runtime/remote/distributed-runtime-utils.d.ts.map +1 -0
  1132. package/dist/platform/runtime/remote/distributed-runtime-utils.js +292 -0
  1133. package/dist/platform/runtime/remote/distributed-runtime-work.d.ts +61 -0
  1134. package/dist/platform/runtime/remote/distributed-runtime-work.d.ts.map +1 -0
  1135. package/dist/platform/runtime/remote/distributed-runtime-work.js +257 -0
  1136. package/dist/platform/runtime/remote/distributed-runtime.d.ts +4 -0
  1137. package/dist/platform/runtime/remote/distributed-runtime.d.ts.map +1 -0
  1138. package/dist/platform/runtime/remote/distributed-runtime.js +2 -0
  1139. package/dist/platform/runtime/remote/heartbeat.d.ts +10 -0
  1140. package/dist/platform/runtime/remote/heartbeat.d.ts.map +1 -0
  1141. package/dist/platform/runtime/remote/heartbeat.js +32 -0
  1142. package/dist/platform/runtime/remote/identity.d.ts +83 -0
  1143. package/dist/platform/runtime/remote/identity.d.ts.map +1 -0
  1144. package/dist/platform/runtime/remote/identity.js +137 -0
  1145. package/dist/platform/runtime/remote/negotiation.d.ts +12 -0
  1146. package/dist/platform/runtime/remote/negotiation.d.ts.map +1 -0
  1147. package/dist/platform/runtime/remote/negotiation.js +22 -0
  1148. package/dist/platform/runtime/remote/observability.d.ts +138 -0
  1149. package/dist/platform/runtime/remote/observability.d.ts.map +1 -0
  1150. package/dist/platform/runtime/remote/observability.js +160 -0
  1151. package/dist/platform/runtime/remote/reconnect.d.ts +163 -0
  1152. package/dist/platform/runtime/remote/reconnect.d.ts.map +1 -0
  1153. package/dist/platform/runtime/remote/reconnect.js +242 -0
  1154. package/dist/platform/runtime/remote/recovery.d.ts +11 -0
  1155. package/dist/platform/runtime/remote/recovery.d.ts.map +1 -0
  1156. package/dist/platform/runtime/remote/recovery.js +36 -0
  1157. package/dist/platform/runtime/remote/session-state.d.ts +30 -0
  1158. package/dist/platform/runtime/remote/session-state.d.ts.map +1 -0
  1159. package/dist/platform/runtime/remote/session-state.js +18 -0
  1160. package/dist/platform/runtime/remote/sync.d.ts +132 -0
  1161. package/dist/platform/runtime/remote/sync.d.ts.map +1 -0
  1162. package/dist/platform/runtime/remote/sync.js +194 -0
  1163. package/dist/platform/runtime/remote/transport-contract.d.ts +240 -0
  1164. package/dist/platform/runtime/remote/transport-contract.d.ts.map +1 -0
  1165. package/dist/platform/runtime/remote/transport-contract.js +334 -0
  1166. package/dist/platform/runtime/remote/types.d.ts +410 -0
  1167. package/dist/platform/runtime/remote/types.d.ts.map +1 -0
  1168. package/dist/platform/runtime/remote/types.js +7 -0
  1169. package/dist/platform/runtime/retention/index.d.ts +18 -0
  1170. package/dist/platform/runtime/retention/index.d.ts.map +1 -0
  1171. package/dist/platform/runtime/retention/index.js +16 -0
  1172. package/dist/platform/runtime/retention/policy.d.ts +119 -0
  1173. package/dist/platform/runtime/retention/policy.d.ts.map +1 -0
  1174. package/dist/platform/runtime/retention/policy.js +259 -0
  1175. package/dist/platform/runtime/retention/pruner.d.ts +54 -0
  1176. package/dist/platform/runtime/retention/pruner.d.ts.map +1 -0
  1177. package/dist/platform/runtime/retention/pruner.js +153 -0
  1178. package/dist/platform/runtime/retention/types.d.ts +138 -0
  1179. package/dist/platform/runtime/retention/types.d.ts.map +1 -0
  1180. package/dist/platform/runtime/retention/types.js +10 -0
  1181. package/dist/platform/runtime/sandbox/qemu-wrapper-template.d.ts +2 -0
  1182. package/dist/platform/runtime/sandbox/qemu-wrapper-template.d.ts.map +1 -0
  1183. package/dist/platform/runtime/sandbox/qemu-wrapper-template.js +247 -0
  1184. package/dist/platform/runtime/sandbox/types.d.ts +138 -0
  1185. package/dist/platform/runtime/sandbox/types.d.ts.map +1 -0
  1186. package/dist/platform/runtime/sandbox/types.js +1 -0
  1187. package/dist/platform/runtime/shell-paths.d.ts +21 -0
  1188. package/dist/platform/runtime/shell-paths.d.ts.map +1 -0
  1189. package/dist/platform/runtime/shell-paths.js +51 -0
  1190. package/dist/platform/runtime/store/domains/acp.d.ts +60 -0
  1191. package/dist/platform/runtime/store/domains/acp.d.ts.map +1 -0
  1192. package/dist/platform/runtime/store/domains/acp.js +22 -0
  1193. package/dist/platform/runtime/store/domains/agents.d.ts +88 -0
  1194. package/dist/platform/runtime/store/domains/agents.d.ts.map +1 -0
  1195. package/dist/platform/runtime/store/domains/agents.js +20 -0
  1196. package/dist/platform/runtime/store/domains/automation.d.ts +27 -0
  1197. package/dist/platform/runtime/store/domains/automation.d.ts.map +1 -0
  1198. package/dist/platform/runtime/store/domains/automation.js +24 -0
  1199. package/dist/platform/runtime/store/domains/communication.d.ts +32 -0
  1200. package/dist/platform/runtime/store/domains/communication.d.ts.map +1 -0
  1201. package/dist/platform/runtime/store/domains/communication.js +15 -0
  1202. package/dist/platform/runtime/store/domains/control-plane.d.ts +46 -0
  1203. package/dist/platform/runtime/store/domains/control-plane.d.ts.map +1 -0
  1204. package/dist/platform/runtime/store/domains/control-plane.js +27 -0
  1205. package/dist/platform/runtime/store/domains/daemon.d.ts +72 -0
  1206. package/dist/platform/runtime/store/domains/daemon.d.ts.map +1 -0
  1207. package/dist/platform/runtime/store/domains/daemon.js +25 -0
  1208. package/dist/platform/runtime/store/domains/deliveries.d.ts +22 -0
  1209. package/dist/platform/runtime/store/domains/deliveries.d.ts.map +1 -0
  1210. package/dist/platform/runtime/store/domains/deliveries.js +20 -0
  1211. package/dist/platform/runtime/store/domains/discovery.d.ts +72 -0
  1212. package/dist/platform/runtime/store/domains/discovery.d.ts.map +1 -0
  1213. package/dist/platform/runtime/store/domains/discovery.js +30 -0
  1214. package/dist/platform/runtime/store/domains/domain-read-matrix.d.ts +47 -0
  1215. package/dist/platform/runtime/store/domains/domain-read-matrix.d.ts.map +1 -0
  1216. package/dist/platform/runtime/store/domains/domain-read-matrix.js +83 -0
  1217. package/dist/platform/runtime/store/domains/git.d.ts +85 -0
  1218. package/dist/platform/runtime/store/domains/git.d.ts.map +1 -0
  1219. package/dist/platform/runtime/store/domains/git.js +26 -0
  1220. package/dist/platform/runtime/store/domains/integrations.d.ts +59 -0
  1221. package/dist/platform/runtime/store/domains/integrations.d.ts.map +1 -0
  1222. package/dist/platform/runtime/store/domains/integrations.js +19 -0
  1223. package/dist/platform/runtime/store/domains/intelligence.d.ts +85 -0
  1224. package/dist/platform/runtime/store/domains/intelligence.d.ts.map +1 -0
  1225. package/dist/platform/runtime/store/domains/intelligence.js +25 -0
  1226. package/dist/platform/runtime/store/domains/mcp.d.ts +90 -0
  1227. package/dist/platform/runtime/store/domains/mcp.d.ts.map +1 -0
  1228. package/dist/platform/runtime/store/domains/mcp.js +20 -0
  1229. package/dist/platform/runtime/store/domains/model.d.ts +81 -0
  1230. package/dist/platform/runtime/store/domains/model.d.ts.map +1 -0
  1231. package/dist/platform/runtime/store/domains/model.js +34 -0
  1232. package/dist/platform/runtime/store/domains/orchestration.d.ts +56 -0
  1233. package/dist/platform/runtime/store/domains/orchestration.d.ts.map +1 -0
  1234. package/dist/platform/runtime/store/domains/orchestration.js +17 -0
  1235. package/dist/platform/runtime/store/domains/overlays.d.ts +62 -0
  1236. package/dist/platform/runtime/store/domains/overlays.d.ts.map +1 -0
  1237. package/dist/platform/runtime/store/domains/overlays.js +19 -0
  1238. package/dist/platform/runtime/store/domains/plugins.d.ts +69 -0
  1239. package/dist/platform/runtime/store/domains/plugins.d.ts.map +1 -0
  1240. package/dist/platform/runtime/store/domains/plugins.js +22 -0
  1241. package/dist/platform/runtime/store/domains/provider-health.d.ts +85 -0
  1242. package/dist/platform/runtime/store/domains/provider-health.d.ts.map +1 -0
  1243. package/dist/platform/runtime/store/domains/provider-health.js +19 -0
  1244. package/dist/platform/runtime/store/domains/routes.d.ts +19 -0
  1245. package/dist/platform/runtime/store/domains/routes.d.ts.map +1 -0
  1246. package/dist/platform/runtime/store/domains/routes.js +26 -0
  1247. package/dist/platform/runtime/store/domains/session.d.ts +69 -0
  1248. package/dist/platform/runtime/store/domains/session.d.ts.map +1 -0
  1249. package/dist/platform/runtime/store/domains/session.js +30 -0
  1250. package/dist/platform/runtime/store/domains/surface-perf.d.ts +72 -0
  1251. package/dist/platform/runtime/store/domains/surface-perf.d.ts.map +1 -0
  1252. package/dist/platform/runtime/store/domains/surface-perf.js +28 -0
  1253. package/dist/platform/runtime/store/domains/surfaces.d.ts +32 -0
  1254. package/dist/platform/runtime/store/domains/surfaces.d.ts.map +1 -0
  1255. package/dist/platform/runtime/store/domains/surfaces.js +17 -0
  1256. package/dist/platform/runtime/store/domains/tasks.d.ts +109 -0
  1257. package/dist/platform/runtime/store/domains/tasks.d.ts.map +1 -0
  1258. package/dist/platform/runtime/store/domains/tasks.js +23 -0
  1259. package/dist/platform/runtime/store/domains/telemetry.d.ts +90 -0
  1260. package/dist/platform/runtime/store/domains/telemetry.d.ts.map +1 -0
  1261. package/dist/platform/runtime/store/domains/telemetry.js +36 -0
  1262. package/dist/platform/runtime/store/domains/watchers.d.ts +39 -0
  1263. package/dist/platform/runtime/store/domains/watchers.d.ts.map +1 -0
  1264. package/dist/platform/runtime/store/domains/watchers.js +20 -0
  1265. package/dist/platform/runtime/tasks/lifecycle.d.ts +55 -0
  1266. package/dist/platform/runtime/tasks/lifecycle.d.ts.map +1 -0
  1267. package/dist/platform/runtime/tasks/lifecycle.js +57 -0
  1268. package/dist/platform/runtime/tasks/registry.d.ts +77 -0
  1269. package/dist/platform/runtime/tasks/registry.d.ts.map +1 -0
  1270. package/dist/platform/runtime/tasks/registry.js +110 -0
  1271. package/dist/platform/runtime/tasks/types.d.ts +190 -0
  1272. package/dist/platform/runtime/tasks/types.d.ts.map +1 -0
  1273. package/dist/platform/runtime/tasks/types.js +1 -0
  1274. package/dist/platform/runtime/telemetry/exporters/console.d.ts +41 -0
  1275. package/dist/platform/runtime/telemetry/exporters/console.d.ts.map +1 -0
  1276. package/dist/platform/runtime/telemetry/exporters/console.js +76 -0
  1277. package/dist/platform/runtime/telemetry/exporters/index.d.ts +12 -0
  1278. package/dist/platform/runtime/telemetry/exporters/index.d.ts.map +1 -0
  1279. package/dist/platform/runtime/telemetry/exporters/index.js +5 -0
  1280. package/dist/platform/runtime/telemetry/exporters/local-ledger.d.ts +105 -0
  1281. package/dist/platform/runtime/telemetry/exporters/local-ledger.d.ts.map +1 -0
  1282. package/dist/platform/runtime/telemetry/exporters/local-ledger.js +185 -0
  1283. package/dist/platform/runtime/telemetry/exporters/otlp.d.ts +66 -0
  1284. package/dist/platform/runtime/telemetry/exporters/otlp.d.ts.map +1 -0
  1285. package/dist/platform/runtime/telemetry/exporters/otlp.js +214 -0
  1286. package/dist/platform/runtime/telemetry/exporters/queue.d.ts +86 -0
  1287. package/dist/platform/runtime/telemetry/exporters/queue.d.ts.map +1 -0
  1288. package/dist/platform/runtime/telemetry/exporters/queue.js +212 -0
  1289. package/dist/platform/runtime/telemetry/exporters/types.d.ts +91 -0
  1290. package/dist/platform/runtime/telemetry/exporters/types.d.ts.map +1 -0
  1291. package/dist/platform/runtime/telemetry/exporters/types.js +24 -0
  1292. package/dist/platform/runtime/telemetry/meter.d.ts +50 -0
  1293. package/dist/platform/runtime/telemetry/meter.d.ts.map +1 -0
  1294. package/dist/platform/runtime/telemetry/meter.js +132 -0
  1295. package/dist/platform/runtime/telemetry/spans/agent.d.ts +65 -0
  1296. package/dist/platform/runtime/telemetry/spans/agent.d.ts.map +1 -0
  1297. package/dist/platform/runtime/telemetry/spans/agent.js +63 -0
  1298. package/dist/platform/runtime/telemetry/spans/compaction.d.ts +67 -0
  1299. package/dist/platform/runtime/telemetry/spans/compaction.d.ts.map +1 -0
  1300. package/dist/platform/runtime/telemetry/spans/compaction.js +70 -0
  1301. package/dist/platform/runtime/telemetry/spans/health.d.ts +33 -0
  1302. package/dist/platform/runtime/telemetry/spans/health.d.ts.map +1 -0
  1303. package/dist/platform/runtime/telemetry/spans/health.js +81 -0
  1304. package/dist/platform/runtime/telemetry/spans/index.d.ts +28 -0
  1305. package/dist/platform/runtime/telemetry/spans/index.d.ts.map +1 -0
  1306. package/dist/platform/runtime/telemetry/spans/index.js +12 -0
  1307. package/dist/platform/runtime/telemetry/spans/llm.d.ts +67 -0
  1308. package/dist/platform/runtime/telemetry/spans/llm.d.ts.map +1 -0
  1309. package/dist/platform/runtime/telemetry/spans/llm.js +73 -0
  1310. package/dist/platform/runtime/telemetry/spans/mcp.d.ts +60 -0
  1311. package/dist/platform/runtime/telemetry/spans/mcp.d.ts.map +1 -0
  1312. package/dist/platform/runtime/telemetry/spans/mcp.js +67 -0
  1313. package/dist/platform/runtime/telemetry/spans/permission.d.ts +65 -0
  1314. package/dist/platform/runtime/telemetry/spans/permission.d.ts.map +1 -0
  1315. package/dist/platform/runtime/telemetry/spans/permission.js +63 -0
  1316. package/dist/platform/runtime/telemetry/spans/plugin.d.ts +58 -0
  1317. package/dist/platform/runtime/telemetry/spans/plugin.d.ts.map +1 -0
  1318. package/dist/platform/runtime/telemetry/spans/plugin.js +60 -0
  1319. package/dist/platform/runtime/telemetry/spans/session.d.ts +61 -0
  1320. package/dist/platform/runtime/telemetry/spans/session.d.ts.map +1 -0
  1321. package/dist/platform/runtime/telemetry/spans/session.js +64 -0
  1322. package/dist/platform/runtime/telemetry/spans/task.d.ts +65 -0
  1323. package/dist/platform/runtime/telemetry/spans/task.d.ts.map +1 -0
  1324. package/dist/platform/runtime/telemetry/spans/task.js +66 -0
  1325. package/dist/platform/runtime/telemetry/spans/tool.d.ts +62 -0
  1326. package/dist/platform/runtime/telemetry/spans/tool.d.ts.map +1 -0
  1327. package/dist/platform/runtime/telemetry/spans/tool.js +71 -0
  1328. package/dist/platform/runtime/telemetry/spans/transport.d.ts +57 -0
  1329. package/dist/platform/runtime/telemetry/spans/transport.d.ts.map +1 -0
  1330. package/dist/platform/runtime/telemetry/spans/transport.js +63 -0
  1331. package/dist/platform/runtime/telemetry/spans/turn.d.ts +55 -0
  1332. package/dist/platform/runtime/telemetry/spans/turn.d.ts.map +1 -0
  1333. package/dist/platform/runtime/telemetry/spans/turn.js +56 -0
  1334. package/dist/platform/runtime/telemetry/tracer.d.ts +56 -0
  1335. package/dist/platform/runtime/telemetry/tracer.d.ts.map +1 -0
  1336. package/dist/platform/runtime/telemetry/tracer.js +210 -0
  1337. package/dist/platform/runtime/telemetry/types.d.ts +167 -0
  1338. package/dist/platform/runtime/telemetry/types.d.ts.map +1 -0
  1339. package/dist/platform/runtime/telemetry/types.js +22 -0
  1340. package/dist/platform/runtime/tools/adapter.d.ts +60 -0
  1341. package/dist/platform/runtime/tools/adapter.d.ts.map +1 -0
  1342. package/dist/platform/runtime/tools/adapter.js +19 -0
  1343. package/dist/platform/runtime/tools/contract-verifier.d.ts +105 -0
  1344. package/dist/platform/runtime/tools/contract-verifier.d.ts.map +1 -0
  1345. package/dist/platform/runtime/tools/contract-verifier.js +359 -0
  1346. package/dist/platform/runtime/tools/output-policy.d.ts +128 -0
  1347. package/dist/platform/runtime/tools/output-policy.d.ts.map +1 -0
  1348. package/dist/platform/runtime/tools/output-policy.js +185 -0
  1349. package/dist/platform/runtime/tools/types.d.ts +118 -0
  1350. package/dist/platform/runtime/tools/types.d.ts.map +1 -0
  1351. package/dist/platform/runtime/tools/types.js +1 -0
  1352. package/dist/platform/runtime/transports/backoff.d.ts +3 -0
  1353. package/dist/platform/runtime/transports/backoff.d.ts.map +1 -0
  1354. package/dist/platform/runtime/transports/backoff.js +1 -0
  1355. package/dist/platform/runtime/transports/client-transport.d.ts +3 -0
  1356. package/dist/platform/runtime/transports/client-transport.d.ts.map +1 -0
  1357. package/dist/platform/runtime/transports/client-transport.js +1 -0
  1358. package/dist/platform/runtime/transports/contract-http-client.d.ts +3 -0
  1359. package/dist/platform/runtime/transports/contract-http-client.d.ts.map +1 -0
  1360. package/dist/platform/runtime/transports/contract-http-client.js +1 -0
  1361. package/dist/platform/runtime/transports/direct-client.d.ts +3 -0
  1362. package/dist/platform/runtime/transports/direct-client.d.ts.map +1 -0
  1363. package/dist/platform/runtime/transports/direct-client.js +1 -0
  1364. package/dist/platform/runtime/transports/domain-events.d.ts +3 -0
  1365. package/dist/platform/runtime/transports/domain-events.d.ts.map +1 -0
  1366. package/dist/platform/runtime/transports/domain-events.js +1 -0
  1367. package/dist/platform/runtime/transports/http-auth.d.ts +3 -0
  1368. package/dist/platform/runtime/transports/http-auth.d.ts.map +1 -0
  1369. package/dist/platform/runtime/transports/http-auth.js +1 -0
  1370. package/dist/platform/runtime/transports/http-json-transport.d.ts +7 -0
  1371. package/dist/platform/runtime/transports/http-json-transport.d.ts.map +1 -0
  1372. package/dist/platform/runtime/transports/http-json-transport.js +5 -0
  1373. package/dist/platform/runtime/transports/http-retry.d.ts +3 -0
  1374. package/dist/platform/runtime/transports/http-retry.d.ts.map +1 -0
  1375. package/dist/platform/runtime/transports/http-retry.js +1 -0
  1376. package/dist/platform/runtime/transports/operator-remote-client.d.ts +3 -0
  1377. package/dist/platform/runtime/transports/operator-remote-client.d.ts.map +1 -0
  1378. package/dist/platform/runtime/transports/operator-remote-client.js +1 -0
  1379. package/dist/platform/runtime/transports/peer-remote-client.d.ts +3 -0
  1380. package/dist/platform/runtime/transports/peer-remote-client.d.ts.map +1 -0
  1381. package/dist/platform/runtime/transports/peer-remote-client.js +1 -0
  1382. package/dist/platform/runtime/transports/runtime-events-client.d.ts +3 -0
  1383. package/dist/platform/runtime/transports/runtime-events-client.d.ts.map +1 -0
  1384. package/dist/platform/runtime/transports/runtime-events-client.js +1 -0
  1385. package/dist/platform/runtime/transports/sse-stream.d.ts +4 -0
  1386. package/dist/platform/runtime/transports/sse-stream.d.ts.map +1 -0
  1387. package/dist/platform/runtime/transports/sse-stream.js +7 -0
  1388. package/dist/platform/runtime/transports/stream-reconnect.d.ts +3 -0
  1389. package/dist/platform/runtime/transports/stream-reconnect.d.ts.map +1 -0
  1390. package/dist/platform/runtime/transports/stream-reconnect.js +1 -0
  1391. package/dist/platform/runtime/transports/transport-paths.d.ts +3 -0
  1392. package/dist/platform/runtime/transports/transport-paths.d.ts.map +1 -0
  1393. package/dist/platform/runtime/transports/transport-paths.js +1 -0
  1394. package/dist/platform/runtime/ui-read-models-base.d.ts +7 -0
  1395. package/dist/platform/runtime/ui-read-models-base.d.ts.map +1 -0
  1396. package/dist/platform/runtime/ui-read-models-base.js +1 -0
  1397. package/dist/platform/scheduler/scheduler.d.ts +85 -0
  1398. package/dist/platform/scheduler/scheduler.d.ts.map +1 -0
  1399. package/dist/platform/scheduler/scheduler.js +628 -0
  1400. package/dist/platform/security/http-auth.d.ts +30 -0
  1401. package/dist/platform/security/http-auth.d.ts.map +1 -0
  1402. package/dist/platform/security/http-auth.js +112 -0
  1403. package/dist/platform/security/index.d.ts +8 -0
  1404. package/dist/platform/security/index.d.ts.map +1 -0
  1405. package/dist/platform/security/index.js +4 -0
  1406. package/dist/platform/security/spawn-tokens.d.ts +65 -0
  1407. package/dist/platform/security/spawn-tokens.d.ts.map +1 -0
  1408. package/dist/platform/security/spawn-tokens.js +161 -0
  1409. package/dist/platform/security/token-audit.d.ts +207 -0
  1410. package/dist/platform/security/token-audit.d.ts.map +1 -0
  1411. package/dist/platform/security/token-audit.js +292 -0
  1412. package/dist/platform/security/user-auth.d.ts +63 -0
  1413. package/dist/platform/security/user-auth.d.ts.map +1 -0
  1414. package/dist/platform/security/user-auth.js +257 -0
  1415. package/dist/platform/sessions/change-tracker.d.ts +14 -0
  1416. package/dist/platform/sessions/change-tracker.d.ts.map +1 -0
  1417. package/dist/platform/sessions/change-tracker.js +24 -0
  1418. package/dist/platform/sessions/orchestration/graph.d.ts +182 -0
  1419. package/dist/platform/sessions/orchestration/graph.d.ts.map +1 -0
  1420. package/dist/platform/sessions/orchestration/graph.js +427 -0
  1421. package/dist/platform/sessions/orchestration/index.d.ts +8 -0
  1422. package/dist/platform/sessions/orchestration/index.d.ts.map +1 -0
  1423. package/dist/platform/sessions/orchestration/index.js +6 -0
  1424. package/dist/platform/sessions/orchestration/registry.d.ts +149 -0
  1425. package/dist/platform/sessions/orchestration/registry.d.ts.map +1 -0
  1426. package/dist/platform/sessions/orchestration/registry.js +299 -0
  1427. package/dist/platform/sessions/orchestration/types.d.ts +138 -0
  1428. package/dist/platform/sessions/orchestration/types.d.ts.map +1 -0
  1429. package/dist/platform/sessions/orchestration/types.js +22 -0
  1430. package/dist/platform/state/db.d.ts +76 -0
  1431. package/dist/platform/state/db.d.ts.map +1 -0
  1432. package/dist/platform/state/db.js +220 -0
  1433. package/dist/platform/state/file-cache.d.ts +97 -0
  1434. package/dist/platform/state/file-cache.d.ts.map +1 -0
  1435. package/dist/platform/state/file-cache.js +328 -0
  1436. package/dist/platform/state/file-undo.d.ts +46 -0
  1437. package/dist/platform/state/file-undo.d.ts.map +1 -0
  1438. package/dist/platform/state/file-undo.js +110 -0
  1439. package/dist/platform/state/json-file-store.d.ts +16 -0
  1440. package/dist/platform/state/json-file-store.d.ts.map +1 -0
  1441. package/dist/platform/state/json-file-store.js +44 -0
  1442. package/dist/platform/state/kv-state.d.ts +42 -0
  1443. package/dist/platform/state/kv-state.d.ts.map +1 -0
  1444. package/dist/platform/state/kv-state.js +215 -0
  1445. package/dist/platform/state/mode-manager.d.ts +61 -0
  1446. package/dist/platform/state/mode-manager.d.ts.map +1 -0
  1447. package/dist/platform/state/mode-manager.js +146 -0
  1448. package/dist/platform/state/persistent-store.d.ts +17 -0
  1449. package/dist/platform/state/persistent-store.d.ts.map +1 -0
  1450. package/dist/platform/state/persistent-store.js +47 -0
  1451. package/dist/platform/state/project-index.d.ts +58 -0
  1452. package/dist/platform/state/project-index.d.ts.map +1 -0
  1453. package/dist/platform/state/project-index.js +249 -0
  1454. package/dist/platform/state/sqlite-store.d.ts +28 -0
  1455. package/dist/platform/state/sqlite-store.d.ts.map +1 -0
  1456. package/dist/platform/state/sqlite-store.js +95 -0
  1457. package/dist/platform/state/telemetry.d.ts +42 -0
  1458. package/dist/platform/state/telemetry.d.ts.map +1 -0
  1459. package/dist/platform/state/telemetry.js +124 -0
  1460. package/dist/platform/tools/agent/schema.d.ts +71 -0
  1461. package/dist/platform/tools/agent/schema.d.ts.map +1 -0
  1462. package/dist/platform/tools/agent/schema.js +236 -0
  1463. package/dist/platform/tools/analyze/scan-modes.d.ts +13 -0
  1464. package/dist/platform/tools/analyze/scan-modes.d.ts.map +1 -0
  1465. package/dist/platform/tools/analyze/scan-modes.js +632 -0
  1466. package/dist/platform/tools/analyze/schema.d.ts +8 -0
  1467. package/dist/platform/tools/analyze/schema.d.ts.map +1 -0
  1468. package/dist/platform/tools/analyze/schema.js +118 -0
  1469. package/dist/platform/tools/analyze/shared.d.ts +37 -0
  1470. package/dist/platform/tools/analyze/shared.d.ts.map +1 -0
  1471. package/dist/platform/tools/analyze/shared.js +337 -0
  1472. package/dist/platform/tools/analyze/types.d.ts +36 -0
  1473. package/dist/platform/tools/analyze/types.d.ts.map +1 -0
  1474. package/dist/platform/tools/analyze/types.js +1 -0
  1475. package/dist/platform/tools/auto-repair.d.ts +21 -0
  1476. package/dist/platform/tools/auto-repair.d.ts.map +1 -0
  1477. package/dist/platform/tools/auto-repair.js +160 -0
  1478. package/dist/platform/tools/control/schema.d.ts +6 -0
  1479. package/dist/platform/tools/control/schema.d.ts.map +1 -0
  1480. package/dist/platform/tools/control/schema.js +15 -0
  1481. package/dist/platform/tools/edit/match.d.ts +69 -0
  1482. package/dist/platform/tools/edit/match.d.ts.map +1 -0
  1483. package/dist/platform/tools/edit/match.js +468 -0
  1484. package/dist/platform/tools/edit/notebook.d.ts +33 -0
  1485. package/dist/platform/tools/edit/notebook.d.ts.map +1 -0
  1486. package/dist/platform/tools/edit/notebook.js +265 -0
  1487. package/dist/platform/tools/edit/schema.d.ts +222 -0
  1488. package/dist/platform/tools/edit/schema.d.ts.map +1 -0
  1489. package/dist/platform/tools/edit/schema.js +234 -0
  1490. package/dist/platform/tools/edit/types.d.ts +82 -0
  1491. package/dist/platform/tools/edit/types.d.ts.map +1 -0
  1492. package/dist/platform/tools/edit/types.js +1 -0
  1493. package/dist/platform/tools/exec/ast-guard.d.ts +66 -0
  1494. package/dist/platform/tools/exec/ast-guard.d.ts.map +1 -0
  1495. package/dist/platform/tools/exec/ast-guard.js +121 -0
  1496. package/dist/platform/tools/exec/file-ops.d.ts +15 -0
  1497. package/dist/platform/tools/exec/file-ops.d.ts.map +1 -0
  1498. package/dist/platform/tools/exec/file-ops.js +193 -0
  1499. package/dist/platform/tools/exec/index.d.ts +2 -0
  1500. package/dist/platform/tools/exec/index.d.ts.map +1 -0
  1501. package/dist/platform/tools/exec/index.js +1 -0
  1502. package/dist/platform/tools/exec/phased.d.ts +16 -0
  1503. package/dist/platform/tools/exec/phased.d.ts.map +1 -0
  1504. package/dist/platform/tools/exec/phased.js +25 -0
  1505. package/dist/platform/tools/exec/runtime.d.ts +9 -0
  1506. package/dist/platform/tools/exec/runtime.d.ts.map +1 -0
  1507. package/dist/platform/tools/exec/runtime.js +506 -0
  1508. package/dist/platform/tools/exec/schema.d.ts +267 -0
  1509. package/dist/platform/tools/exec/schema.d.ts.map +1 -0
  1510. package/dist/platform/tools/exec/schema.js +191 -0
  1511. package/dist/platform/tools/fetch/extract.d.ts +6 -0
  1512. package/dist/platform/tools/fetch/extract.d.ts.map +1 -0
  1513. package/dist/platform/tools/fetch/extract.js +300 -0
  1514. package/dist/platform/tools/fetch/host-utils.d.ts +8 -0
  1515. package/dist/platform/tools/fetch/host-utils.d.ts.map +1 -0
  1516. package/dist/platform/tools/fetch/host-utils.js +35 -0
  1517. package/dist/platform/tools/fetch/sanitizer.d.ts +60 -0
  1518. package/dist/platform/tools/fetch/sanitizer.d.ts.map +1 -0
  1519. package/dist/platform/tools/fetch/sanitizer.js +124 -0
  1520. package/dist/platform/tools/fetch/schema.d.ts +252 -0
  1521. package/dist/platform/tools/fetch/schema.d.ts.map +1 -0
  1522. package/dist/platform/tools/fetch/schema.js +167 -0
  1523. package/dist/platform/tools/fetch/trust-tiers.d.ts +115 -0
  1524. package/dist/platform/tools/fetch/trust-tiers.d.ts.map +1 -0
  1525. package/dist/platform/tools/fetch/trust-tiers.js +294 -0
  1526. package/dist/platform/tools/fetch/types.d.ts +35 -0
  1527. package/dist/platform/tools/fetch/types.d.ts.map +1 -0
  1528. package/dist/platform/tools/fetch/types.js +1 -0
  1529. package/dist/platform/tools/find/content.d.ts +5 -0
  1530. package/dist/platform/tools/find/content.d.ts.map +1 -0
  1531. package/dist/platform/tools/find/content.js +240 -0
  1532. package/dist/platform/tools/find/executor.d.ts +5 -0
  1533. package/dist/platform/tools/find/executor.d.ts.map +1 -0
  1534. package/dist/platform/tools/find/executor.js +76 -0
  1535. package/dist/platform/tools/find/files.d.ts +3 -0
  1536. package/dist/platform/tools/find/files.d.ts.map +1 -0
  1537. package/dist/platform/tools/find/files.js +142 -0
  1538. package/dist/platform/tools/find/index.d.ts +4 -0
  1539. package/dist/platform/tools/find/index.d.ts.map +1 -0
  1540. package/dist/platform/tools/find/index.js +2 -0
  1541. package/dist/platform/tools/find/phased.d.ts +13 -0
  1542. package/dist/platform/tools/find/phased.d.ts.map +1 -0
  1543. package/dist/platform/tools/find/phased.js +25 -0
  1544. package/dist/platform/tools/find/references.d.ts +3 -0
  1545. package/dist/platform/tools/find/references.d.ts.map +1 -0
  1546. package/dist/platform/tools/find/references.js +67 -0
  1547. package/dist/platform/tools/find/schema.d.ts +7 -0
  1548. package/dist/platform/tools/find/schema.d.ts.map +1 -0
  1549. package/dist/platform/tools/find/schema.js +261 -0
  1550. package/dist/platform/tools/find/shared.d.ts +152 -0
  1551. package/dist/platform/tools/find/shared.d.ts.map +1 -0
  1552. package/dist/platform/tools/find/shared.js +240 -0
  1553. package/dist/platform/tools/find/structural.d.ts +3 -0
  1554. package/dist/platform/tools/find/structural.d.ts.map +1 -0
  1555. package/dist/platform/tools/find/structural.js +81 -0
  1556. package/dist/platform/tools/find/symbols.d.ts +3 -0
  1557. package/dist/platform/tools/find/symbols.d.ts.map +1 -0
  1558. package/dist/platform/tools/find/symbols.js +167 -0
  1559. package/dist/platform/tools/inspect/executor.d.ts +4 -0
  1560. package/dist/platform/tools/inspect/executor.d.ts.map +1 -0
  1561. package/dist/platform/tools/inspect/executor.js +142 -0
  1562. package/dist/platform/tools/inspect/frontend.d.ts +16 -0
  1563. package/dist/platform/tools/inspect/frontend.d.ts.map +1 -0
  1564. package/dist/platform/tools/inspect/frontend.js +466 -0
  1565. package/dist/platform/tools/inspect/index.d.ts +13 -0
  1566. package/dist/platform/tools/inspect/index.d.ts.map +1 -0
  1567. package/dist/platform/tools/inspect/index.js +65 -0
  1568. package/dist/platform/tools/inspect/project.d.ts +10 -0
  1569. package/dist/platform/tools/inspect/project.d.ts.map +1 -0
  1570. package/dist/platform/tools/inspect/project.js +466 -0
  1571. package/dist/platform/tools/inspect/schema.d.ts +302 -0
  1572. package/dist/platform/tools/inspect/schema.d.ts.map +1 -0
  1573. package/dist/platform/tools/inspect/schema.js +72 -0
  1574. package/dist/platform/tools/inspect/shared.d.ts +21 -0
  1575. package/dist/platform/tools/inspect/shared.d.ts.map +1 -0
  1576. package/dist/platform/tools/inspect/shared.js +273 -0
  1577. package/dist/platform/tools/mcp/schema.d.ts +12 -0
  1578. package/dist/platform/tools/mcp/schema.d.ts.map +1 -0
  1579. package/dist/platform/tools/mcp/schema.js +30 -0
  1580. package/dist/platform/tools/packet/index.d.ts +3 -0
  1581. package/dist/platform/tools/packet/index.d.ts.map +1 -0
  1582. package/dist/platform/tools/packet/index.js +113 -0
  1583. package/dist/platform/tools/packet/schema.d.ts +14 -0
  1584. package/dist/platform/tools/packet/schema.d.ts.map +1 -0
  1585. package/dist/platform/tools/packet/schema.js +20 -0
  1586. package/dist/platform/tools/query/index.d.ts +3 -0
  1587. package/dist/platform/tools/query/index.d.ts.map +1 -0
  1588. package/dist/platform/tools/query/index.js +106 -0
  1589. package/dist/platform/tools/query/schema.d.ts +13 -0
  1590. package/dist/platform/tools/query/schema.d.ts.map +1 -0
  1591. package/dist/platform/tools/query/schema.js +19 -0
  1592. package/dist/platform/tools/read/file-readers.d.ts +82 -0
  1593. package/dist/platform/tools/read/file-readers.d.ts.map +1 -0
  1594. package/dist/platform/tools/read/file-readers.js +365 -0
  1595. package/dist/platform/tools/read/index.d.ts +19 -0
  1596. package/dist/platform/tools/read/index.d.ts.map +1 -0
  1597. package/dist/platform/tools/read/index.js +133 -0
  1598. package/dist/platform/tools/read/media.d.ts +111 -0
  1599. package/dist/platform/tools/read/media.d.ts.map +1 -0
  1600. package/dist/platform/tools/read/media.js +458 -0
  1601. package/dist/platform/tools/read/phased.d.ts +20 -0
  1602. package/dist/platform/tools/read/phased.d.ts.map +1 -0
  1603. package/dist/platform/tools/read/phased.js +25 -0
  1604. package/dist/platform/tools/read/schema.d.ts +144 -0
  1605. package/dist/platform/tools/read/schema.d.ts.map +1 -0
  1606. package/dist/platform/tools/read/schema.js +114 -0
  1607. package/dist/platform/tools/read/text.d.ts +11 -0
  1608. package/dist/platform/tools/read/text.d.ts.map +1 -0
  1609. package/dist/platform/tools/read/text.js +138 -0
  1610. package/dist/platform/tools/registry-tool/index.d.ts +14 -0
  1611. package/dist/platform/tools/registry-tool/index.d.ts.map +1 -0
  1612. package/dist/platform/tools/registry-tool/index.js +408 -0
  1613. package/dist/platform/tools/registry-tool/schema.d.ts +53 -0
  1614. package/dist/platform/tools/registry-tool/schema.d.ts.map +1 -0
  1615. package/dist/platform/tools/registry-tool/schema.js +46 -0
  1616. package/dist/platform/tools/registry-tool/skill-loader.d.ts +10 -0
  1617. package/dist/platform/tools/registry-tool/skill-loader.d.ts.map +1 -0
  1618. package/dist/platform/tools/registry-tool/skill-loader.js +73 -0
  1619. package/dist/platform/tools/registry.d.ts +51 -0
  1620. package/dist/platform/tools/registry.d.ts.map +1 -0
  1621. package/dist/platform/tools/registry.js +119 -0
  1622. package/dist/platform/tools/remote-trigger/schema.d.ts +12 -0
  1623. package/dist/platform/tools/remote-trigger/schema.d.ts.map +1 -0
  1624. package/dist/platform/tools/remote-trigger/schema.js +18 -0
  1625. package/dist/platform/tools/repl/schema.d.ts +9 -0
  1626. package/dist/platform/tools/repl/schema.d.ts.map +1 -0
  1627. package/dist/platform/tools/repl/schema.js +15 -0
  1628. package/dist/platform/tools/shared/overflow.d.ts +156 -0
  1629. package/dist/platform/tools/shared/overflow.d.ts.map +1 -0
  1630. package/dist/platform/tools/shared/overflow.js +363 -0
  1631. package/dist/platform/tools/shared/process-manager.d.ts +61 -0
  1632. package/dist/platform/tools/shared/process-manager.d.ts.map +1 -0
  1633. package/dist/platform/tools/shared/process-manager.js +160 -0
  1634. package/dist/platform/tools/shared/schema-fingerprint.d.ts +80 -0
  1635. package/dist/platform/tools/shared/schema-fingerprint.d.ts.map +1 -0
  1636. package/dist/platform/tools/shared/schema-fingerprint.js +163 -0
  1637. package/dist/platform/tools/shared/validators.d.ts +23 -0
  1638. package/dist/platform/tools/shared/validators.d.ts.map +1 -0
  1639. package/dist/platform/tools/shared/validators.js +71 -0
  1640. package/dist/platform/tools/state/schema.d.ts +197 -0
  1641. package/dist/platform/tools/state/schema.d.ts.map +1 -0
  1642. package/dist/platform/tools/state/schema.js +127 -0
  1643. package/dist/platform/tools/task/index.d.ts +4 -0
  1644. package/dist/platform/tools/task/index.d.ts.map +1 -0
  1645. package/dist/platform/tools/task/index.js +150 -0
  1646. package/dist/platform/tools/task/schema.d.ts +62 -0
  1647. package/dist/platform/tools/task/schema.d.ts.map +1 -0
  1648. package/dist/platform/tools/task/schema.js +28 -0
  1649. package/dist/platform/tools/team/index.d.ts +3 -0
  1650. package/dist/platform/tools/team/index.d.ts.map +1 -0
  1651. package/dist/platform/tools/team/index.js +149 -0
  1652. package/dist/platform/tools/team/schema.d.ts +47 -0
  1653. package/dist/platform/tools/team/schema.d.ts.map +1 -0
  1654. package/dist/platform/tools/team/schema.js +21 -0
  1655. package/dist/platform/tools/web-search/schema.d.ts +59 -0
  1656. package/dist/platform/tools/web-search/schema.d.ts.map +1 -0
  1657. package/dist/platform/tools/web-search/schema.js +59 -0
  1658. package/dist/platform/tools/workflow/index.d.ts +106 -0
  1659. package/dist/platform/tools/workflow/index.d.ts.map +1 -0
  1660. package/dist/platform/tools/workflow/index.js +443 -0
  1661. package/dist/platform/tools/workflow/schema.d.ts +7 -0
  1662. package/dist/platform/tools/workflow/schema.d.ts.map +1 -0
  1663. package/dist/platform/tools/workflow/schema.js +94 -0
  1664. package/dist/platform/tools/worklist/index.d.ts +3 -0
  1665. package/dist/platform/tools/worklist/index.d.ts.map +1 -0
  1666. package/dist/platform/tools/worklist/index.js +140 -0
  1667. package/dist/platform/tools/worklist/schema.d.ts +45 -0
  1668. package/dist/platform/tools/worklist/schema.d.ts.map +1 -0
  1669. package/dist/platform/tools/worklist/schema.js +18 -0
  1670. package/dist/platform/tools/write/schema.d.ts +107 -0
  1671. package/dist/platform/tools/write/schema.d.ts.map +1 -0
  1672. package/dist/platform/tools/write/schema.js +89 -0
  1673. package/dist/platform/types/daemon-error-contract.d.ts +2 -0
  1674. package/dist/platform/types/daemon-error-contract.d.ts.map +1 -0
  1675. package/dist/platform/types/daemon-error-contract.js +1 -0
  1676. package/dist/platform/types/errors.d.ts +87 -0
  1677. package/dist/platform/types/errors.d.ts.map +1 -0
  1678. package/dist/platform/types/errors.js +236 -0
  1679. package/dist/platform/types/foundation-contract.d.ts +9 -0
  1680. package/dist/platform/types/foundation-contract.d.ts.map +1 -0
  1681. package/dist/platform/types/foundation-contract.js +1 -0
  1682. package/dist/platform/types/generated/foundation-client-types.d.ts +2 -0
  1683. package/dist/platform/types/generated/foundation-client-types.d.ts.map +1 -0
  1684. package/dist/platform/types/generated/foundation-client-types.js +2 -0
  1685. package/dist/platform/types/grid.d.ts +27 -0
  1686. package/dist/platform/types/grid.d.ts.map +1 -0
  1687. package/dist/platform/types/grid.js +26 -0
  1688. package/dist/platform/types/tools.d.ts +36 -0
  1689. package/dist/platform/types/tools.d.ts.map +1 -0
  1690. package/dist/platform/types/tools.js +1 -0
  1691. package/dist/platform/utils/clipboard.d.ts +18 -0
  1692. package/dist/platform/utils/clipboard.d.ts.map +1 -0
  1693. package/dist/platform/utils/clipboard.js +147 -0
  1694. package/dist/platform/utils/error-display.d.ts +35 -0
  1695. package/dist/platform/utils/error-display.d.ts.map +1 -0
  1696. package/dist/platform/utils/error-display.js +314 -0
  1697. package/dist/platform/utils/glob-to-regex.d.ts +7 -0
  1698. package/dist/platform/utils/glob-to-regex.d.ts.map +1 -0
  1699. package/dist/platform/utils/glob-to-regex.js +30 -0
  1700. package/dist/platform/utils/logger.d.ts +25 -0
  1701. package/dist/platform/utils/logger.d.ts.map +1 -0
  1702. package/dist/platform/utils/logger.js +74 -0
  1703. package/dist/platform/utils/markdown-disclosure.d.ts +23 -0
  1704. package/dist/platform/utils/markdown-disclosure.d.ts.map +1 -0
  1705. package/dist/platform/utils/markdown-disclosure.js +166 -0
  1706. package/dist/platform/utils/notebook.d.ts +6 -0
  1707. package/dist/platform/utils/notebook.d.ts.map +1 -0
  1708. package/dist/platform/utils/notebook.js +7 -0
  1709. package/dist/platform/utils/notify.d.ts +12 -0
  1710. package/dist/platform/utils/notify.d.ts.map +1 -0
  1711. package/dist/platform/utils/notify.js +34 -0
  1712. package/dist/platform/utils/open-external.d.ts +2 -0
  1713. package/dist/platform/utils/open-external.d.ts.map +1 -0
  1714. package/dist/platform/utils/open-external.js +29 -0
  1715. package/dist/platform/utils/path-safety.d.ts +7 -0
  1716. package/dist/platform/utils/path-safety.d.ts.map +1 -0
  1717. package/dist/platform/utils/path-safety.js +42 -0
  1718. package/dist/platform/utils/prompt-loader.d.ts +25 -0
  1719. package/dist/platform/utils/prompt-loader.d.ts.map +1 -0
  1720. package/dist/platform/utils/prompt-loader.js +100 -0
  1721. package/dist/platform/utils/redaction.d.ts +4 -0
  1722. package/dist/platform/utils/redaction.d.ts.map +1 -0
  1723. package/dist/platform/utils/redaction.js +66 -0
  1724. package/dist/platform/utils/retry.d.ts +30 -0
  1725. package/dist/platform/utils/retry.d.ts.map +1 -0
  1726. package/dist/platform/utils/retry.js +76 -0
  1727. package/dist/platform/utils/terminal-width.d.ts +19 -0
  1728. package/dist/platform/utils/terminal-width.d.ts.map +1 -0
  1729. package/dist/platform/utils/terminal-width.js +188 -0
  1730. package/dist/platform/utils/url-safety.d.ts +8 -0
  1731. package/dist/platform/utils/url-safety.d.ts.map +1 -0
  1732. package/dist/platform/utils/url-safety.js +74 -0
  1733. package/dist/platform/utils/walk-dir.d.ts +18 -0
  1734. package/dist/platform/utils/walk-dir.d.ts.map +1 -0
  1735. package/dist/platform/utils/walk-dir.js +55 -0
  1736. package/dist/platform/voice/builtin-providers.d.ts +3 -0
  1737. package/dist/platform/voice/builtin-providers.d.ts.map +1 -0
  1738. package/dist/platform/voice/builtin-providers.js +15 -0
  1739. package/dist/platform/voice/index.d.ts +7 -0
  1740. package/dist/platform/voice/index.d.ts.map +1 -0
  1741. package/dist/platform/voice/index.js +3 -0
  1742. package/dist/platform/voice/provider-registry.d.ts +18 -0
  1743. package/dist/platform/voice/provider-registry.d.ts.map +1 -0
  1744. package/dist/platform/voice/provider-registry.js +58 -0
  1745. package/dist/platform/voice/providers/deepgram.d.ts +3 -0
  1746. package/dist/platform/voice/providers/deepgram.d.ts.map +1 -0
  1747. package/dist/platform/voice/providers/deepgram.js +54 -0
  1748. package/dist/platform/voice/providers/elevenlabs.d.ts +3 -0
  1749. package/dist/platform/voice/providers/elevenlabs.d.ts.map +1 -0
  1750. package/dist/platform/voice/providers/elevenlabs.js +333 -0
  1751. package/dist/platform/voice/providers/google.d.ts +3 -0
  1752. package/dist/platform/voice/providers/google.d.ts.map +1 -0
  1753. package/dist/platform/voice/providers/google.js +166 -0
  1754. package/dist/platform/voice/providers/microsoft.d.ts +3 -0
  1755. package/dist/platform/voice/providers/microsoft.d.ts.map +1 -0
  1756. package/dist/platform/voice/providers/microsoft.js +85 -0
  1757. package/dist/platform/voice/providers/openai.d.ts +3 -0
  1758. package/dist/platform/voice/providers/openai.d.ts.map +1 -0
  1759. package/dist/platform/voice/providers/openai.js +289 -0
  1760. package/dist/platform/voice/providers/shared.d.ts +17 -0
  1761. package/dist/platform/voice/providers/shared.d.ts.map +1 -0
  1762. package/dist/platform/voice/providers/shared.js +115 -0
  1763. package/dist/platform/voice/providers/vydra.d.ts +3 -0
  1764. package/dist/platform/voice/providers/vydra.d.ts.map +1 -0
  1765. package/dist/platform/voice/providers/vydra.js +74 -0
  1766. package/dist/platform/voice/service.d.ts +18 -0
  1767. package/dist/platform/voice/service.d.ts.map +1 -0
  1768. package/dist/platform/voice/service.js +49 -0
  1769. package/dist/platform/voice/types.d.ts +88 -0
  1770. package/dist/platform/voice/types.d.ts.map +1 -0
  1771. package/dist/platform/voice/types.js +1 -0
  1772. package/dist/platform/watchers/store.d.ts +12 -0
  1773. package/dist/platform/watchers/store.d.ts.map +1 -0
  1774. package/dist/platform/watchers/store.js +45 -0
  1775. package/dist/platform/web-search/types.d.ts +89 -0
  1776. package/dist/platform/web-search/types.d.ts.map +1 -0
  1777. package/dist/platform/web-search/types.js +1 -0
  1778. package/dist/platform/workflow/trigger-executor.d.ts +22 -0
  1779. package/dist/platform/workflow/trigger-executor.d.ts.map +1 -0
  1780. package/dist/platform/workflow/trigger-executor.js +304 -0
  1781. package/dist/react-native.d.ts +1 -1
  1782. package/dist/react-native.d.ts.map +1 -1
  1783. package/dist/react-native.js +2 -2
  1784. package/dist/transport-core.d.ts +2 -0
  1785. package/dist/transport-core.d.ts.map +1 -0
  1786. package/dist/transport-core.js +1 -0
  1787. package/dist/transport-direct.d.ts +2 -0
  1788. package/dist/transport-direct.d.ts.map +1 -0
  1789. package/dist/transport-direct.js +1 -0
  1790. package/dist/transport-http.d.ts +2 -0
  1791. package/dist/transport-http.d.ts.map +1 -0
  1792. package/dist/transport-http.js +1 -0
  1793. package/dist/transport-realtime.d.ts +2 -0
  1794. package/dist/transport-realtime.d.ts.map +1 -0
  1795. package/dist/transport-realtime.js +1 -0
  1796. package/package.json +76 -10
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Panel jump action generator — creates NotificationAction objects that
3
+ * instruct the UI to focus a specific panel. These actions are attached to
4
+ * conversation-surface notifications so the user can jump directly from a
5
+ * summary to the relevant panel for full detail.
6
+ */
7
+ import type { NotificationAction } from '../types.js';
8
+ /**
9
+ * Create a "Jump to panel" action for a given panel ID.
10
+ *
11
+ * @param panelId - The panel to navigate to on activation.
12
+ * @param label - Optional custom label (defaults to "Jump to panel").
13
+ * @returns A NotificationAction of type `jump_to_panel`.
14
+ */
15
+ export declare function createPanelJumpAction(panelId: string, label?: string): NotificationAction;
16
+ /**
17
+ * Create a dismiss action for a notification.
18
+ *
19
+ * @param label - Optional custom label (defaults to "Dismiss").
20
+ * @returns A NotificationAction of type `dismiss`.
21
+ */
22
+ export declare function createDismissAction(label?: string): NotificationAction;
23
+ //# sourceMappingURL=panel-jump.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"panel-jump.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/formatters/panel-jump.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEtD;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACnC,OAAO,EAAE,MAAM,EACf,KAAK,SAAkB,GACtB,kBAAkB,CAMpB;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,SAAY,GAAG,kBAAkB,CAKzE"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Panel jump action generator — creates NotificationAction objects that
3
+ * instruct the UI to focus a specific panel. These actions are attached to
4
+ * conversation-surface notifications so the user can jump directly from a
5
+ * summary to the relevant panel for full detail.
6
+ */
7
+ /**
8
+ * Create a "Jump to panel" action for a given panel ID.
9
+ *
10
+ * @param panelId - The panel to navigate to on activation.
11
+ * @param label - Optional custom label (defaults to "Jump to panel").
12
+ * @returns A NotificationAction of type `jump_to_panel`.
13
+ */
14
+ export function createPanelJumpAction(panelId, label = 'Jump to panel') {
15
+ return {
16
+ label,
17
+ type: 'jump_to_panel',
18
+ panelId,
19
+ };
20
+ }
21
+ /**
22
+ * Create a dismiss action for a notification.
23
+ *
24
+ * @param label - Optional custom label (defaults to "Dismiss").
25
+ * @returns A NotificationAction of type `dismiss`.
26
+ */
27
+ export function createDismissAction(label = 'Dismiss') {
28
+ return {
29
+ label,
30
+ type: 'dismiss',
31
+ };
32
+ }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Summary formatter — produces condensed single-line summaries for batched
3
+ * or grouped notifications destined for the conversation surface. Keeps the
4
+ * main conversation high-signal by collapsing repeated events into a brief
5
+ * human-readable description.
6
+ */
7
+ import type { Notification } from '../types.js';
8
+ /**
9
+ * Format a single notification as a condensed one-line summary.
10
+ *
11
+ * @param notification - The notification to summarise.
12
+ * @returns A short string suitable for inline conversation display.
13
+ */
14
+ export declare function formatNotificationSummary(notification: Notification): string;
15
+ /**
16
+ * Format a group of related notifications into a single condensed summary
17
+ * line. Used when the batch policy has collapsed multiple events.
18
+ *
19
+ * @param notifications - The notifications to collapse (must be non-empty).
20
+ * @returns A condensed summary string, e.g.
21
+ * "[Info] Tool progress (×12 events) — last: Wrote 3 files"
22
+ */
23
+ export declare function formatBatchSummary(notifications: Notification[]): string;
24
+ //# sourceMappingURL=summary.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/formatters/summary.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAqB,MAAM,aAAa,CAAC;AAanE;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM,CAa5E;AAED;;;;;;;GAOG;AACH,wBAAgB,kBAAkB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,MAAM,CAmBxE"}
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Summary formatter — produces condensed single-line summaries for batched
3
+ * or grouped notifications destined for the conversation surface. Keeps the
4
+ * main conversation high-signal by collapsing repeated events into a brief
5
+ * human-readable description.
6
+ */
7
+ /** Maximum length for a truncated notification body in summaries. */
8
+ const MAX_BODY_PREVIEW = 80;
9
+ /** Level labels used in summary lines. */
10
+ const LEVEL_LABELS = {
11
+ critical: 'CRITICAL',
12
+ warning: 'Warning',
13
+ info: 'Info',
14
+ debug: 'Debug',
15
+ };
16
+ /**
17
+ * Format a single notification as a condensed one-line summary.
18
+ *
19
+ * @param notification - The notification to summarise.
20
+ * @returns A short string suitable for inline conversation display.
21
+ */
22
+ export function formatNotificationSummary(notification) {
23
+ const label = LEVEL_LABELS[notification.level];
24
+ const body = notification.body && notification.body.length > MAX_BODY_PREVIEW
25
+ ? `${notification.body.slice(0, MAX_BODY_PREVIEW)}…`
26
+ : notification.body;
27
+ const parts = [`[${label}] ${notification.title}`];
28
+ if (body) {
29
+ parts.push(body);
30
+ }
31
+ return parts.join(' — ');
32
+ }
33
+ /**
34
+ * Format a group of related notifications into a single condensed summary
35
+ * line. Used when the batch policy has collapsed multiple events.
36
+ *
37
+ * @param notifications - The notifications to collapse (must be non-empty).
38
+ * @returns A condensed summary string, e.g.
39
+ * "[Info] Tool progress (×12 events) — last: Wrote 3 files"
40
+ */
41
+ export function formatBatchSummary(notifications) {
42
+ if (notifications.length === 0) {
43
+ return '';
44
+ }
45
+ if (notifications.length === 1) {
46
+ return formatNotificationSummary(notifications[0]);
47
+ }
48
+ const last = notifications[notifications.length - 1];
49
+ const label = LEVEL_LABELS[last.level];
50
+ const count = notifications.length;
51
+ const preview = last.body && last.body.length > MAX_BODY_PREVIEW
52
+ ? `${last.body.slice(0, MAX_BODY_PREVIEW)}…`
53
+ : last.body;
54
+ const suffix = preview ? ` — last: ${preview}` : '';
55
+ return `[${label}] ${last.title} (\xD7${count} events)${suffix}`;
56
+ }
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Notification routing module — barrel export and factory.
3
+ *
4
+ * Implements conversation noise routing.
5
+ * Operational noise is routed to dedicated panels while the main
6
+ * conversation receives only high-signal items.
7
+ *
8
+ * @example
9
+ * ```ts
10
+ * import { createNotificationRouter } from './notifications/index.js';
11
+ *
12
+ * const router = createNotificationRouter();
13
+ * router.setDomainVerbosity('tools', 'minimal');
14
+ * router.setQuietWhileTyping(true);
15
+ *
16
+ * const decision = router.route(myNotification);
17
+ * ```
18
+ */
19
+ export type { NotificationLevel, NotificationTarget, DomainVerbosity, NotificationAction, Notification, RoutingDecision, RoutedNotification, DomainConfig, RoutingReasonCode, NotificationTag, } from './types.js';
20
+ export { NotificationRouter } from './router.js';
21
+ export { applyDefaultPolicy, applyQuietTypingPolicy, BatchPolicy, applyModeContextPolicy, BurstPolicy, } from './policies/index.js';
22
+ export { formatNotificationSummary, formatBatchSummary, createPanelJumpAction, createDismissAction, } from './formatters/index.js';
23
+ import { NotificationRouter } from './router.js';
24
+ /**
25
+ * Factory function — creates a NotificationRouter with default policy stack.
26
+ *
27
+ * @param batchWindowMs - Optional batch window override in milliseconds
28
+ * (default: 2000ms).
29
+ * @returns A configured NotificationRouter instance ready for use.
30
+ */
31
+ export declare function createNotificationRouter(batchWindowMs?: number, adaptiveSuppression?: boolean): NotificationRouter;
32
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/platform/runtime/notifications/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,YAAY,EACV,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,kBAAkB,EAClB,YAAY,EACZ,iBAAiB,EACjB,eAAe,GAChB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEjD,OAAO,EACL,kBAAkB,EAClB,sBAAsB,EACtB,WAAW,EACX,sBAAsB,EACtB,WAAW,GACZ,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACL,yBAAyB,EACzB,kBAAkB,EAClB,qBAAqB,EACrB,mBAAmB,GACpB,MAAM,uBAAuB,CAAC;AAE/B,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAEjD;;;;;;GAMG;AACH,wBAAgB,wBAAwB,CACtC,aAAa,CAAC,EAAE,MAAM,EACtB,mBAAmB,CAAC,EAAE,OAAO,GAC5B,kBAAkB,CAEpB"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Notification routing module — barrel export and factory.
3
+ *
4
+ * Implements conversation noise routing.
5
+ * Operational noise is routed to dedicated panels while the main
6
+ * conversation receives only high-signal items.
7
+ *
8
+ * @example
9
+ * ```ts
10
+ * import { createNotificationRouter } from './notifications/index.js';
11
+ *
12
+ * const router = createNotificationRouter();
13
+ * router.setDomainVerbosity('tools', 'minimal');
14
+ * router.setQuietWhileTyping(true);
15
+ *
16
+ * const decision = router.route(myNotification);
17
+ * ```
18
+ */
19
+ export { NotificationRouter } from './router.js';
20
+ export { applyDefaultPolicy, applyQuietTypingPolicy, BatchPolicy, applyModeContextPolicy, BurstPolicy, } from './policies/index.js';
21
+ export { formatNotificationSummary, formatBatchSummary, createPanelJumpAction, createDismissAction, } from './formatters/index.js';
22
+ import { NotificationRouter } from './router.js';
23
+ /**
24
+ * Factory function — creates a NotificationRouter with default policy stack.
25
+ *
26
+ * @param batchWindowMs - Optional batch window override in milliseconds
27
+ * (default: 2000ms).
28
+ * @returns A configured NotificationRouter instance ready for use.
29
+ */
30
+ export function createNotificationRouter(batchWindowMs, adaptiveSuppression) {
31
+ return new NotificationRouter(batchWindowMs, adaptiveSuppression);
32
+ }
@@ -0,0 +1,51 @@
1
+ /**
2
+ * Batch policy — collapses repeated notifications from the same domain +
3
+ * level within a rolling time window to prevent UI flooding from high-
4
+ * frequency operational events (e.g. tool progress ticks, agent heartbeats).
5
+ */
6
+ import type { Notification } from '../types.js';
7
+ /**
8
+ * BatchPolicy tracks repeated notifications and decides whether a new
9
+ * arrival should be collapsed into an existing batch group.
10
+ *
11
+ * A batch group key is `{domain}:{level}`. Two notifications sharing the
12
+ * same key within `batchWindowMs` are considered duplicates.
13
+ */
14
+ export declare class BatchPolicy {
15
+ /** Active batch groups keyed by `{domain}:{level}`. */
16
+ private readonly groups;
17
+ /** Pending flushed notifications paired with their batch count. */
18
+ private readonly pending;
19
+ /** Rolling window in ms within which repeated notifications are batched. */
20
+ private readonly batchWindowMs;
21
+ constructor(batchWindowMs?: number);
22
+ /**
23
+ * Builds the batch group key for a notification.
24
+ *
25
+ * @param notification - The notification to key.
26
+ * @returns A string key in the form `{domain}:{level}`.
27
+ */
28
+ private buildKey;
29
+ /**
30
+ * Evaluates a notification against the batch policy.
31
+ *
32
+ * @param notification - Incoming notification to evaluate.
33
+ * @returns The batch group key if this notification is being batched,
34
+ * or undefined if it should be routed immediately.
35
+ */
36
+ evaluate(notification: Notification): string | undefined;
37
+ /**
38
+ * Flushes all pending batched notifications.
39
+ *
40
+ * Call this at the end of a batch cycle (e.g. on a timer tick or when
41
+ * quiet-typing mode ends) to surface collapsed notifications.
42
+ *
43
+ * @param now - Optional timestamp override for expiry checks (defaults to Date.now()).
44
+ * @returns Array of the most-recent notification from each expired batch group, paired with batch count.
45
+ */
46
+ flush(now?: number): Array<{
47
+ notification: Notification;
48
+ batchCount: number;
49
+ }>;
50
+ }
51
+ //# sourceMappingURL=batch-policy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"batch-policy.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/policies/batch-policy.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAehD;;;;;;GAMG;AACH,qBAAa,WAAW;IACtB,uDAAuD;IACvD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAiC;IAExD,mEAAmE;IACnE,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAiE;IAEzF,4EAA4E;IAC5E,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAS;gBAE3B,aAAa,GAAE,MAAgC;IAI3D;;;;;OAKG;IACH,OAAO,CAAC,QAAQ;IAIhB;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM,GAAG,SAAS;IA4BxD;;;;;;;;OAQG;IACH,KAAK,CAAC,GAAG,GAAE,MAAmB,GAAG,KAAK,CAAC;QAAE,YAAY,EAAE,YAAY,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,CAAC;CAc3F"}
@@ -0,0 +1,85 @@
1
+ /**
2
+ * Batch policy — collapses repeated notifications from the same domain +
3
+ * level within a rolling time window to prevent UI flooding from high-
4
+ * frequency operational events (e.g. tool progress ticks, agent heartbeats).
5
+ */
6
+ /** Default batch window in milliseconds. */
7
+ const DEFAULT_BATCH_WINDOW_MS = 2_000;
8
+ /**
9
+ * BatchPolicy tracks repeated notifications and decides whether a new
10
+ * arrival should be collapsed into an existing batch group.
11
+ *
12
+ * A batch group key is `{domain}:{level}`. Two notifications sharing the
13
+ * same key within `batchWindowMs` are considered duplicates.
14
+ */
15
+ export class BatchPolicy {
16
+ /** Active batch groups keyed by `{domain}:{level}`. */
17
+ groups = new Map();
18
+ /** Pending flushed notifications paired with their batch count. */
19
+ pending = [];
20
+ /** Rolling window in ms within which repeated notifications are batched. */
21
+ batchWindowMs;
22
+ constructor(batchWindowMs = DEFAULT_BATCH_WINDOW_MS) {
23
+ this.batchWindowMs = batchWindowMs;
24
+ }
25
+ /**
26
+ * Builds the batch group key for a notification.
27
+ *
28
+ * @param notification - The notification to key.
29
+ * @returns A string key in the form `{domain}:{level}`.
30
+ */
31
+ buildKey(notification) {
32
+ return `${notification.domain}:${notification.level}`;
33
+ }
34
+ /**
35
+ * Evaluates a notification against the batch policy.
36
+ *
37
+ * @param notification - Incoming notification to evaluate.
38
+ * @returns The batch group key if this notification is being batched,
39
+ * or undefined if it should be routed immediately.
40
+ */
41
+ evaluate(notification) {
42
+ const key = this.buildKey(notification);
43
+ const now = notification.timestamp;
44
+ const entry = this.groups.get(key);
45
+ if (!entry) {
46
+ // First notification in this group — start a new window.
47
+ this.groups.set(key, { last: notification, count: 1, windowStart: now });
48
+ // First in group is NOT batched — route immediately.
49
+ return undefined;
50
+ }
51
+ const windowExpired = now - entry.windowStart > this.batchWindowMs;
52
+ if (windowExpired) {
53
+ // Window has expired — flush the held batch and start fresh.
54
+ this.pending.push({ notification: entry.last, batchCount: entry.count });
55
+ this.groups.set(key, { last: notification, count: 1, windowStart: now });
56
+ // New window start is NOT batched.
57
+ return undefined;
58
+ }
59
+ // Within window — collapse into batch.
60
+ entry.last = notification;
61
+ entry.count += 1;
62
+ return key;
63
+ }
64
+ /**
65
+ * Flushes all pending batched notifications.
66
+ *
67
+ * Call this at the end of a batch cycle (e.g. on a timer tick or when
68
+ * quiet-typing mode ends) to surface collapsed notifications.
69
+ *
70
+ * @param now - Optional timestamp override for expiry checks (defaults to Date.now()).
71
+ * @returns Array of the most-recent notification from each expired batch group, paired with batch count.
72
+ */
73
+ flush(now = Date.now()) {
74
+ const flushed = [...this.pending];
75
+ this.pending.length = 0;
76
+ for (const [key, entry] of this.groups) {
77
+ const windowExpired = now - entry.windowStart > this.batchWindowMs;
78
+ if (windowExpired) {
79
+ flushed.push({ notification: entry.last, batchCount: entry.count });
80
+ this.groups.delete(key);
81
+ }
82
+ }
83
+ return flushed;
84
+ }
85
+ }
@@ -0,0 +1,70 @@
1
+ /**
2
+ * Burst policy — detects rapid notification floods within a short observation
3
+ * window and collapses them into a batch group key.
4
+ *
5
+ * Unlike the rolling BatchPolicy (which uses a fixed time window), the burst
6
+ * policy measures the event rate within a sliding observation window and
7
+ * activates only when the rate exceeds a configured threshold. Once activated,
8
+ * subsequent notifications in the group are collapsed until the burst subsides.
9
+ *
10
+ * A burst group key is `{domain}:{level}` — matching the BatchPolicy scheme
11
+ * so downstream consumers can coalesce both batch types uniformly.
12
+ */
13
+ import type { Notification } from '../types.js';
14
+ /**
15
+ * BurstPolicy tracks notification arrival rates per domain:level group and
16
+ * activates burst suppression when the rate exceeds the threshold.
17
+ */
18
+ export declare class BurstPolicy {
19
+ /** Active burst group entries keyed by `{domain}:{level}`. */
20
+ private readonly groups;
21
+ /** Observation window in ms. */
22
+ private readonly observationWindowMs;
23
+ /** Number of events within the window before burst activates. */
24
+ private readonly burstThreshold;
25
+ /** Cooldown in ms after last event before the burst group resets. */
26
+ private readonly cooldownMs;
27
+ constructor(observationWindowMs?: number, burstThreshold?: number, cooldownMs?: number);
28
+ /**
29
+ * Builds the burst group key for a notification.
30
+ *
31
+ * @param notification - The notification to key.
32
+ * @returns A string key in the form `{domain}:{level}`.
33
+ */
34
+ private buildKey;
35
+ /**
36
+ * Prune timestamps outside the current observation window.
37
+ */
38
+ private pruneWindow;
39
+ /**
40
+ * Evaluates a notification against the burst policy.
41
+ *
42
+ * @param notification - Incoming notification to evaluate.
43
+ * @returns The burst group key if the notification is being burst-collapsed,
44
+ * or undefined if it should proceed to the next policy stage.
45
+ */
46
+ evaluate(notification: Notification): string | undefined;
47
+ /**
48
+ * Returns the number of notifications collapsed in a burst group.
49
+ *
50
+ * @param key - The burst group key (`{domain}:{level}`).
51
+ * @returns The collapsed count, or 0 if no group exists.
52
+ */
53
+ getCollapsedCount(key: string): number;
54
+ /**
55
+ * Resets a specific burst group, clearing its state.
56
+ * Call this when the burst window expires and the group is ready to
57
+ * surface its summary.
58
+ *
59
+ * @param key - The burst group key to reset.
60
+ */
61
+ resetGroup(key: string): void;
62
+ /**
63
+ * Returns all currently active burst group keys.
64
+ *
65
+ * Callers can use this to surface summary notifications for each active
66
+ * burst group at flush time.
67
+ */
68
+ getActiveGroups(): string[];
69
+ }
70
+ //# sourceMappingURL=burst-policy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"burst-policy.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/policies/burst-policy.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAuBhD;;;GAGG;AACH,qBAAa,WAAW;IACtB,8DAA8D;IAC9D,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAiC;IAExD,gCAAgC;IAChC,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAS;IAE7C,iEAAiE;IACjE,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAS;IAExC,qEAAqE;IACrE,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAS;gBAGlC,mBAAmB,GAAE,MAAsC,EAC3D,cAAc,GAAE,MAAgC,EAChD,UAAU,GAAE,MAA4B;IAO1C;;;;;OAKG;IACH,OAAO,CAAC,QAAQ;IAIhB;;OAEG;IACH,OAAO,CAAC,WAAW;IAKnB;;;;;;OAMG;IACH,QAAQ,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM,GAAG,SAAS;IAyCxD;;;;;OAKG;IACH,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;IAItC;;;;;;OAMG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAI7B;;;;;OAKG;IACH,eAAe,IAAI,MAAM,EAAE;CAK5B"}
@@ -0,0 +1,122 @@
1
+ /**
2
+ * Burst policy — detects rapid notification floods within a short observation
3
+ * window and collapses them into a batch group key.
4
+ *
5
+ * Unlike the rolling BatchPolicy (which uses a fixed time window), the burst
6
+ * policy measures the event rate within a sliding observation window and
7
+ * activates only when the rate exceeds a configured threshold. Once activated,
8
+ * subsequent notifications in the group are collapsed until the burst subsides.
9
+ *
10
+ * A burst group key is `{domain}:{level}` — matching the BatchPolicy scheme
11
+ * so downstream consumers can coalesce both batch types uniformly.
12
+ */
13
+ /** Default observation window for rate measurement. */
14
+ const DEFAULT_OBSERVATION_WINDOW_MS = 1_000;
15
+ /** Default event count threshold that activates burst suppression. */
16
+ const DEFAULT_BURST_THRESHOLD = 3;
17
+ /** Default cooldown period after the last burst event before the group resets. */
18
+ const DEFAULT_COOLDOWN_MS = 3_000;
19
+ /**
20
+ * BurstPolicy tracks notification arrival rates per domain:level group and
21
+ * activates burst suppression when the rate exceeds the threshold.
22
+ */
23
+ export class BurstPolicy {
24
+ /** Active burst group entries keyed by `{domain}:{level}`. */
25
+ groups = new Map();
26
+ /** Observation window in ms. */
27
+ observationWindowMs;
28
+ /** Number of events within the window before burst activates. */
29
+ burstThreshold;
30
+ /** Cooldown in ms after last event before the burst group resets. */
31
+ cooldownMs;
32
+ constructor(observationWindowMs = DEFAULT_OBSERVATION_WINDOW_MS, burstThreshold = DEFAULT_BURST_THRESHOLD, cooldownMs = DEFAULT_COOLDOWN_MS) {
33
+ this.observationWindowMs = Math.max(1, observationWindowMs);
34
+ this.burstThreshold = Math.max(1, burstThreshold);
35
+ this.cooldownMs = Math.max(0, cooldownMs);
36
+ }
37
+ /**
38
+ * Builds the burst group key for a notification.
39
+ *
40
+ * @param notification - The notification to key.
41
+ * @returns A string key in the form `{domain}:{level}`.
42
+ */
43
+ buildKey(notification) {
44
+ return `${notification.domain}:${notification.level}`;
45
+ }
46
+ /**
47
+ * Prune timestamps outside the current observation window.
48
+ */
49
+ pruneWindow(entry, now) {
50
+ const cutoff = now - this.observationWindowMs;
51
+ entry.timestamps = entry.timestamps.filter((t) => t >= cutoff);
52
+ }
53
+ /**
54
+ * Evaluates a notification against the burst policy.
55
+ *
56
+ * @param notification - Incoming notification to evaluate.
57
+ * @returns The burst group key if the notification is being burst-collapsed,
58
+ * or undefined if it should proceed to the next policy stage.
59
+ */
60
+ evaluate(notification) {
61
+ const key = this.buildKey(notification);
62
+ const now = notification.timestamp;
63
+ let entry = this.groups.get(key);
64
+ if (!entry) {
65
+ entry = { timestamps: [], active: false, lastSeen: now, collapsedCount: 0 };
66
+ this.groups.set(key, entry);
67
+ }
68
+ // Expire cooldown: if the group was active but the last event is beyond
69
+ // the cooldown window, reset it.
70
+ if (entry.active && now - entry.lastSeen > this.cooldownMs) {
71
+ entry.active = false;
72
+ entry.collapsedCount = 0;
73
+ entry.timestamps = [];
74
+ }
75
+ this.pruneWindow(entry, now);
76
+ entry.timestamps.push(now);
77
+ entry.lastSeen = now;
78
+ const rate = entry.timestamps.length;
79
+ if (entry.active) {
80
+ // Already in burst mode — collapse this notification.
81
+ entry.collapsedCount += 1;
82
+ return key;
83
+ }
84
+ if (rate > this.burstThreshold) {
85
+ // Rate exceeded threshold — activate burst suppression.
86
+ entry.active = true;
87
+ entry.collapsedCount += 1;
88
+ return key;
89
+ }
90
+ return undefined;
91
+ }
92
+ /**
93
+ * Returns the number of notifications collapsed in a burst group.
94
+ *
95
+ * @param key - The burst group key (`{domain}:{level}`).
96
+ * @returns The collapsed count, or 0 if no group exists.
97
+ */
98
+ getCollapsedCount(key) {
99
+ return this.groups.get(key)?.collapsedCount ?? 0;
100
+ }
101
+ /**
102
+ * Resets a specific burst group, clearing its state.
103
+ * Call this when the burst window expires and the group is ready to
104
+ * surface its summary.
105
+ *
106
+ * @param key - The burst group key to reset.
107
+ */
108
+ resetGroup(key) {
109
+ this.groups.delete(key);
110
+ }
111
+ /**
112
+ * Returns all currently active burst group keys.
113
+ *
114
+ * Callers can use this to surface summary notifications for each active
115
+ * burst group at flush time.
116
+ */
117
+ getActiveGroups() {
118
+ return Array.from(this.groups.entries())
119
+ .filter(([, entry]) => entry.active)
120
+ .map(([key]) => key);
121
+ }
122
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Default routing policy — maps notification level + domain verbosity to a
3
+ * NotificationTarget. This is the base layer; other policies (quiet-typing,
4
+ * batch) layer on top.
5
+ */
6
+ import type { DomainVerbosity, NotificationLevel, NotificationTarget } from '../types.js';
7
+ /**
8
+ * Apply the default level-based routing rule.
9
+ *
10
+ * Rules:
11
+ * - `critical` → always `conversation`
12
+ * - `warning` → `conversation` if verbosity is `normal` or `verbose`, else `status_bar`
13
+ * - `info` → `panel_only` unless verbosity is `verbose` (then `status_bar`)
14
+ * - `debug` → always `panel_only`
15
+ *
16
+ * @param level - Notification severity level.
17
+ * @param verbosity - Per-domain verbosity setting.
18
+ * @returns The base routing target before suppression/batch policies apply.
19
+ */
20
+ export declare function applyDefaultPolicy(level: NotificationLevel, verbosity: DomainVerbosity): NotificationTarget;
21
+ //# sourceMappingURL=default-policy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"default-policy.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/policies/default-policy.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EACV,eAAe,EACf,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,aAAa,CAAC;AAErB;;;;;;;;;;;;GAYG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,iBAAiB,EACxB,SAAS,EAAE,eAAe,GACzB,kBAAkB,CAgBpB"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Default routing policy — maps notification level + domain verbosity to a
3
+ * NotificationTarget. This is the base layer; other policies (quiet-typing,
4
+ * batch) layer on top.
5
+ */
6
+ /**
7
+ * Apply the default level-based routing rule.
8
+ *
9
+ * Rules:
10
+ * - `critical` → always `conversation`
11
+ * - `warning` → `conversation` if verbosity is `normal` or `verbose`, else `status_bar`
12
+ * - `info` → `panel_only` unless verbosity is `verbose` (then `status_bar`)
13
+ * - `debug` → always `panel_only`
14
+ *
15
+ * @param level - Notification severity level.
16
+ * @param verbosity - Per-domain verbosity setting.
17
+ * @returns The base routing target before suppression/batch policies apply.
18
+ */
19
+ export function applyDefaultPolicy(level, verbosity) {
20
+ switch (level) {
21
+ case 'critical':
22
+ return 'conversation';
23
+ case 'warning':
24
+ return verbosity === 'normal' || verbosity === 'verbose'
25
+ ? 'conversation'
26
+ : 'status_bar';
27
+ case 'info':
28
+ return verbosity === 'verbose' ? 'status_bar' : 'panel_only';
29
+ case 'debug':
30
+ return 'panel_only';
31
+ }
32
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Notification policies — barrel export.
3
+ */
4
+ export { applyDefaultPolicy } from './default-policy.js';
5
+ export { applyQuietTypingPolicy } from './quiet-typing.js';
6
+ export { BatchPolicy } from './batch-policy.js';
7
+ export { applyModeContextPolicy } from './mode-context-policy.js';
8
+ export { BurstPolicy } from './burst-policy.js';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/platform/runtime/notifications/policies/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Notification policies — barrel export.
3
+ */
4
+ export { applyDefaultPolicy } from './default-policy.js';
5
+ export { applyQuietTypingPolicy } from './quiet-typing.js';
6
+ export { BatchPolicy } from './batch-policy.js';
7
+ export { applyModeContextPolicy } from './mode-context-policy.js';
8
+ export { BurstPolicy } from './burst-policy.js';