@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,2384 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "transport": "http-json",
4
+ "basePath": "/api/remote",
5
+ "peerKinds": [
6
+ "node",
7
+ "device"
8
+ ],
9
+ "workTypes": [
10
+ "invoke",
11
+ "status.request",
12
+ "location.request",
13
+ "session.message",
14
+ "automation.run"
15
+ ],
16
+ "scopes": [
17
+ "remote:heartbeat",
18
+ "remote:pull",
19
+ "remote:complete"
20
+ ],
21
+ "recommendedHeartbeatMs": 30000,
22
+ "recommendedWorkPullMs": 2000,
23
+ "endpoints": [
24
+ {
25
+ "id": "pair.request",
26
+ "method": "POST",
27
+ "path": "/api/remote/pair/request",
28
+ "auth": "none",
29
+ "description": "Create a pending pair request and receive a challenge for operator approval.",
30
+ "inputSchema": {
31
+ "type": "object",
32
+ "properties": {
33
+ "peerKind": {
34
+ "type": "string",
35
+ "enum": [
36
+ "node",
37
+ "device"
38
+ ]
39
+ },
40
+ "label": {
41
+ "type": "string"
42
+ },
43
+ "requestedId": {
44
+ "type": "string"
45
+ },
46
+ "platform": {
47
+ "type": "string"
48
+ },
49
+ "deviceFamily": {
50
+ "type": "string"
51
+ },
52
+ "version": {
53
+ "type": "string"
54
+ },
55
+ "clientMode": {
56
+ "type": "string"
57
+ },
58
+ "capabilities": {
59
+ "type": "array",
60
+ "items": {
61
+ "type": "string"
62
+ }
63
+ },
64
+ "commands": {
65
+ "type": "array",
66
+ "items": {
67
+ "type": "string"
68
+ }
69
+ },
70
+ "ttlMs": {
71
+ "type": "number"
72
+ },
73
+ "metadata": {
74
+ "type": "object",
75
+ "additionalProperties": {
76
+ "anyOf": [
77
+ {
78
+ "type": "string"
79
+ },
80
+ {
81
+ "type": "number"
82
+ },
83
+ {
84
+ "type": "boolean"
85
+ },
86
+ {
87
+ "type": "null"
88
+ },
89
+ {
90
+ "type": "object",
91
+ "additionalProperties": {
92
+ "$ref": "$.endpoints[0].inputSchema.properties.metadata.additionalProperties"
93
+ }
94
+ },
95
+ {
96
+ "type": "array",
97
+ "items": {
98
+ "$ref": "$.endpoints[0].inputSchema.properties.metadata.additionalProperties"
99
+ }
100
+ }
101
+ ]
102
+ }
103
+ }
104
+ },
105
+ "required": [
106
+ "peerKind",
107
+ "label"
108
+ ],
109
+ "additionalProperties": true
110
+ },
111
+ "outputSchema": {
112
+ "type": "object",
113
+ "properties": {
114
+ "request": {
115
+ "type": "object",
116
+ "properties": {
117
+ "id": {
118
+ "type": "string"
119
+ },
120
+ "peerKind": {
121
+ "type": "string",
122
+ "enum": [
123
+ "node",
124
+ "device"
125
+ ]
126
+ },
127
+ "requestedId": {
128
+ "type": "string"
129
+ },
130
+ "label": {
131
+ "type": "string"
132
+ },
133
+ "platform": {
134
+ "type": "string"
135
+ },
136
+ "deviceFamily": {
137
+ "type": "string"
138
+ },
139
+ "version": {
140
+ "type": "string"
141
+ },
142
+ "clientMode": {
143
+ "type": "string"
144
+ },
145
+ "capabilities": {
146
+ "type": "array",
147
+ "items": {
148
+ "type": "string"
149
+ }
150
+ },
151
+ "commands": {
152
+ "type": "array",
153
+ "items": {
154
+ "type": "string"
155
+ }
156
+ },
157
+ "requestedBy": {
158
+ "type": "string",
159
+ "enum": [
160
+ "remote",
161
+ "operator"
162
+ ]
163
+ },
164
+ "status": {
165
+ "type": "string",
166
+ "enum": [
167
+ "pending",
168
+ "approved",
169
+ "verified",
170
+ "rejected",
171
+ "expired"
172
+ ]
173
+ },
174
+ "challengePreview": {
175
+ "type": "string"
176
+ },
177
+ "createdAt": {
178
+ "type": "number"
179
+ },
180
+ "updatedAt": {
181
+ "type": "number"
182
+ },
183
+ "approvedAt": {
184
+ "type": "number"
185
+ },
186
+ "verifiedAt": {
187
+ "type": "number"
188
+ },
189
+ "rejectedAt": {
190
+ "type": "number"
191
+ },
192
+ "expiresAt": {
193
+ "type": "number"
194
+ },
195
+ "peerId": {
196
+ "type": "string"
197
+ },
198
+ "remoteAddress": {
199
+ "type": "string"
200
+ },
201
+ "metadata": {
202
+ "type": "object",
203
+ "additionalProperties": {
204
+ "anyOf": [
205
+ {
206
+ "type": "string"
207
+ },
208
+ {
209
+ "type": "number"
210
+ },
211
+ {
212
+ "type": "boolean"
213
+ },
214
+ {
215
+ "type": "null"
216
+ },
217
+ {
218
+ "type": "object",
219
+ "additionalProperties": {
220
+ "$ref": "$.endpoints[0].outputSchema.properties.request.properties.metadata.additionalProperties"
221
+ }
222
+ },
223
+ {
224
+ "type": "array",
225
+ "items": {
226
+ "$ref": "$.endpoints[0].outputSchema.properties.request.properties.metadata.additionalProperties"
227
+ }
228
+ }
229
+ ]
230
+ }
231
+ }
232
+ },
233
+ "required": [
234
+ "id",
235
+ "peerKind",
236
+ "requestedId",
237
+ "label",
238
+ "capabilities",
239
+ "commands",
240
+ "requestedBy",
241
+ "status",
242
+ "challengePreview",
243
+ "createdAt",
244
+ "updatedAt",
245
+ "expiresAt",
246
+ "metadata"
247
+ ],
248
+ "additionalProperties": true
249
+ },
250
+ "challenge": {
251
+ "type": "string"
252
+ }
253
+ },
254
+ "required": [
255
+ "request",
256
+ "challenge"
257
+ ],
258
+ "additionalProperties": false
259
+ }
260
+ },
261
+ {
262
+ "id": "pair.verify",
263
+ "method": "POST",
264
+ "path": "/api/remote/pair/verify",
265
+ "auth": "none",
266
+ "description": "Exchange an approved pair request and challenge for a scoped peer token.",
267
+ "inputSchema": {
268
+ "type": "object",
269
+ "properties": {
270
+ "requestId": {
271
+ "type": "string"
272
+ },
273
+ "challenge": {
274
+ "type": "string"
275
+ },
276
+ "metadata": {
277
+ "type": "object",
278
+ "additionalProperties": {
279
+ "anyOf": [
280
+ {
281
+ "type": "string"
282
+ },
283
+ {
284
+ "type": "number"
285
+ },
286
+ {
287
+ "type": "boolean"
288
+ },
289
+ {
290
+ "type": "null"
291
+ },
292
+ {
293
+ "type": "object",
294
+ "additionalProperties": {
295
+ "$ref": "$.endpoints[1].inputSchema.properties.metadata.additionalProperties"
296
+ }
297
+ },
298
+ {
299
+ "type": "array",
300
+ "items": {
301
+ "$ref": "$.endpoints[1].inputSchema.properties.metadata.additionalProperties"
302
+ }
303
+ }
304
+ ]
305
+ }
306
+ }
307
+ },
308
+ "required": [
309
+ "requestId",
310
+ "challenge"
311
+ ],
312
+ "additionalProperties": true
313
+ },
314
+ "outputSchema": {
315
+ "type": "object",
316
+ "properties": {
317
+ "peer": {
318
+ "type": "object",
319
+ "properties": {
320
+ "id": {
321
+ "type": "string"
322
+ },
323
+ "kind": {
324
+ "type": "string",
325
+ "enum": [
326
+ "node",
327
+ "device"
328
+ ]
329
+ },
330
+ "label": {
331
+ "type": "string"
332
+ },
333
+ "requestedId": {
334
+ "type": "string"
335
+ },
336
+ "platform": {
337
+ "type": "string"
338
+ },
339
+ "deviceFamily": {
340
+ "type": "string"
341
+ },
342
+ "version": {
343
+ "type": "string"
344
+ },
345
+ "clientMode": {
346
+ "type": "string"
347
+ },
348
+ "capabilities": {
349
+ "type": "array",
350
+ "items": {
351
+ "type": "string"
352
+ }
353
+ },
354
+ "commands": {
355
+ "type": "array",
356
+ "items": {
357
+ "type": "string"
358
+ }
359
+ },
360
+ "permissions": {
361
+ "type": "object",
362
+ "additionalProperties": {
363
+ "type": "boolean"
364
+ }
365
+ },
366
+ "status": {
367
+ "type": "string",
368
+ "enum": [
369
+ "paired",
370
+ "connected",
371
+ "idle",
372
+ "disconnected",
373
+ "revoked"
374
+ ]
375
+ },
376
+ "pairedAt": {
377
+ "type": "number"
378
+ },
379
+ "verifiedAt": {
380
+ "type": "number"
381
+ },
382
+ "lastSeenAt": {
383
+ "type": "number"
384
+ },
385
+ "lastConnectedAt": {
386
+ "type": "number"
387
+ },
388
+ "lastDisconnectedAt": {
389
+ "type": "number"
390
+ },
391
+ "lastRemoteAddress": {
392
+ "type": "string"
393
+ },
394
+ "activeTokenId": {
395
+ "type": "string"
396
+ },
397
+ "tokens": {
398
+ "type": "array",
399
+ "items": {
400
+ "type": "object",
401
+ "properties": {
402
+ "id": {
403
+ "type": "string"
404
+ },
405
+ "label": {
406
+ "type": "string"
407
+ },
408
+ "scopes": {
409
+ "type": "array",
410
+ "items": {
411
+ "type": "string"
412
+ }
413
+ },
414
+ "issuedAt": {
415
+ "type": "number"
416
+ },
417
+ "lastUsedAt": {
418
+ "type": "number"
419
+ },
420
+ "rotatedAt": {
421
+ "type": "number"
422
+ },
423
+ "revokedAt": {
424
+ "type": "number"
425
+ },
426
+ "fingerprint": {
427
+ "type": "string"
428
+ }
429
+ },
430
+ "required": [
431
+ "id",
432
+ "label",
433
+ "scopes",
434
+ "issuedAt",
435
+ "fingerprint"
436
+ ],
437
+ "additionalProperties": true
438
+ }
439
+ },
440
+ "metadata": {
441
+ "type": "object",
442
+ "additionalProperties": {
443
+ "anyOf": [
444
+ {
445
+ "type": "string"
446
+ },
447
+ {
448
+ "type": "number"
449
+ },
450
+ {
451
+ "type": "boolean"
452
+ },
453
+ {
454
+ "type": "null"
455
+ },
456
+ {
457
+ "type": "object",
458
+ "additionalProperties": {
459
+ "$ref": "$.endpoints[1].outputSchema.properties.peer.properties.metadata.additionalProperties"
460
+ }
461
+ },
462
+ {
463
+ "type": "array",
464
+ "items": {
465
+ "$ref": "$.endpoints[1].outputSchema.properties.peer.properties.metadata.additionalProperties"
466
+ }
467
+ }
468
+ ]
469
+ }
470
+ }
471
+ },
472
+ "required": [
473
+ "id",
474
+ "kind",
475
+ "label",
476
+ "requestedId",
477
+ "capabilities",
478
+ "commands",
479
+ "status",
480
+ "pairedAt",
481
+ "tokens",
482
+ "metadata"
483
+ ],
484
+ "additionalProperties": true
485
+ },
486
+ "token": {
487
+ "type": "object",
488
+ "properties": {
489
+ "id": {
490
+ "type": "string"
491
+ },
492
+ "label": {
493
+ "type": "string"
494
+ },
495
+ "scopes": {
496
+ "type": "array",
497
+ "items": {
498
+ "type": "string"
499
+ }
500
+ },
501
+ "issuedAt": {
502
+ "type": "number"
503
+ },
504
+ "lastUsedAt": {
505
+ "type": "number"
506
+ },
507
+ "rotatedAt": {
508
+ "type": "number"
509
+ },
510
+ "revokedAt": {
511
+ "type": "number"
512
+ },
513
+ "fingerprint": {
514
+ "type": "string"
515
+ },
516
+ "value": {
517
+ "type": "string"
518
+ }
519
+ },
520
+ "required": [
521
+ "id",
522
+ "label",
523
+ "scopes",
524
+ "issuedAt",
525
+ "fingerprint",
526
+ "value"
527
+ ],
528
+ "additionalProperties": true
529
+ }
530
+ },
531
+ "required": [
532
+ "peer",
533
+ "token"
534
+ ],
535
+ "additionalProperties": false
536
+ }
537
+ },
538
+ {
539
+ "id": "peer.heartbeat",
540
+ "method": "POST",
541
+ "path": "/api/remote/heartbeat",
542
+ "auth": "bearer-peer-token",
543
+ "requiredScope": "remote:heartbeat",
544
+ "description": "Report peer liveness, capability, command, version, and client-mode metadata.",
545
+ "inputSchema": {
546
+ "type": "object",
547
+ "properties": {
548
+ "capabilities": {
549
+ "type": "array",
550
+ "items": {
551
+ "type": "string"
552
+ }
553
+ },
554
+ "commands": {
555
+ "type": "array",
556
+ "items": {
557
+ "type": "string"
558
+ }
559
+ },
560
+ "version": {
561
+ "type": "string"
562
+ },
563
+ "clientMode": {
564
+ "type": "string"
565
+ },
566
+ "metadata": {
567
+ "type": "object",
568
+ "additionalProperties": {
569
+ "anyOf": [
570
+ {
571
+ "type": "string"
572
+ },
573
+ {
574
+ "type": "number"
575
+ },
576
+ {
577
+ "type": "boolean"
578
+ },
579
+ {
580
+ "type": "null"
581
+ },
582
+ {
583
+ "type": "object",
584
+ "additionalProperties": {
585
+ "$ref": "$.endpoints[2].inputSchema.properties.metadata.additionalProperties"
586
+ }
587
+ },
588
+ {
589
+ "type": "array",
590
+ "items": {
591
+ "$ref": "$.endpoints[2].inputSchema.properties.metadata.additionalProperties"
592
+ }
593
+ }
594
+ ]
595
+ }
596
+ }
597
+ },
598
+ "additionalProperties": true
599
+ },
600
+ "outputSchema": {
601
+ "type": "object",
602
+ "properties": {
603
+ "peer": {
604
+ "type": "object",
605
+ "properties": {
606
+ "id": {
607
+ "type": "string"
608
+ },
609
+ "kind": {
610
+ "type": "string",
611
+ "enum": [
612
+ "node",
613
+ "device"
614
+ ]
615
+ },
616
+ "label": {
617
+ "type": "string"
618
+ },
619
+ "requestedId": {
620
+ "type": "string"
621
+ },
622
+ "platform": {
623
+ "type": "string"
624
+ },
625
+ "deviceFamily": {
626
+ "type": "string"
627
+ },
628
+ "version": {
629
+ "type": "string"
630
+ },
631
+ "clientMode": {
632
+ "type": "string"
633
+ },
634
+ "capabilities": {
635
+ "type": "array",
636
+ "items": {
637
+ "type": "string"
638
+ }
639
+ },
640
+ "commands": {
641
+ "type": "array",
642
+ "items": {
643
+ "type": "string"
644
+ }
645
+ },
646
+ "permissions": {
647
+ "type": "object",
648
+ "additionalProperties": {
649
+ "type": "boolean"
650
+ }
651
+ },
652
+ "status": {
653
+ "type": "string",
654
+ "enum": [
655
+ "paired",
656
+ "connected",
657
+ "idle",
658
+ "disconnected",
659
+ "revoked"
660
+ ]
661
+ },
662
+ "pairedAt": {
663
+ "type": "number"
664
+ },
665
+ "verifiedAt": {
666
+ "type": "number"
667
+ },
668
+ "lastSeenAt": {
669
+ "type": "number"
670
+ },
671
+ "lastConnectedAt": {
672
+ "type": "number"
673
+ },
674
+ "lastDisconnectedAt": {
675
+ "type": "number"
676
+ },
677
+ "lastRemoteAddress": {
678
+ "type": "string"
679
+ },
680
+ "activeTokenId": {
681
+ "type": "string"
682
+ },
683
+ "tokens": {
684
+ "type": "array",
685
+ "items": {
686
+ "type": "object",
687
+ "properties": {
688
+ "id": {
689
+ "type": "string"
690
+ },
691
+ "label": {
692
+ "type": "string"
693
+ },
694
+ "scopes": {
695
+ "type": "array",
696
+ "items": {
697
+ "type": "string"
698
+ }
699
+ },
700
+ "issuedAt": {
701
+ "type": "number"
702
+ },
703
+ "lastUsedAt": {
704
+ "type": "number"
705
+ },
706
+ "rotatedAt": {
707
+ "type": "number"
708
+ },
709
+ "revokedAt": {
710
+ "type": "number"
711
+ },
712
+ "fingerprint": {
713
+ "type": "string"
714
+ }
715
+ },
716
+ "required": [
717
+ "id",
718
+ "label",
719
+ "scopes",
720
+ "issuedAt",
721
+ "fingerprint"
722
+ ],
723
+ "additionalProperties": true
724
+ }
725
+ },
726
+ "metadata": {
727
+ "type": "object",
728
+ "additionalProperties": {
729
+ "anyOf": [
730
+ {
731
+ "type": "string"
732
+ },
733
+ {
734
+ "type": "number"
735
+ },
736
+ {
737
+ "type": "boolean"
738
+ },
739
+ {
740
+ "type": "null"
741
+ },
742
+ {
743
+ "type": "object",
744
+ "additionalProperties": {
745
+ "$ref": "$.endpoints[2].outputSchema.properties.peer.properties.metadata.additionalProperties"
746
+ }
747
+ },
748
+ {
749
+ "type": "array",
750
+ "items": {
751
+ "$ref": "$.endpoints[2].outputSchema.properties.peer.properties.metadata.additionalProperties"
752
+ }
753
+ }
754
+ ]
755
+ }
756
+ }
757
+ },
758
+ "required": [
759
+ "id",
760
+ "kind",
761
+ "label",
762
+ "requestedId",
763
+ "capabilities",
764
+ "commands",
765
+ "status",
766
+ "pairedAt",
767
+ "tokens",
768
+ "metadata"
769
+ ],
770
+ "additionalProperties": true
771
+ }
772
+ },
773
+ "required": [
774
+ "peer"
775
+ ],
776
+ "additionalProperties": false
777
+ }
778
+ },
779
+ {
780
+ "id": "work.pull",
781
+ "method": "POST",
782
+ "path": "/api/remote/work/pull",
783
+ "auth": "bearer-peer-token",
784
+ "requiredScope": "remote:pull",
785
+ "description": "Claim queued work for the authenticated peer.",
786
+ "inputSchema": {
787
+ "type": "object",
788
+ "properties": {
789
+ "maxItems": {
790
+ "type": "number"
791
+ },
792
+ "leaseMs": {
793
+ "type": "number"
794
+ }
795
+ },
796
+ "additionalProperties": true
797
+ },
798
+ "outputSchema": {
799
+ "type": "object",
800
+ "properties": {
801
+ "work": {
802
+ "type": "array",
803
+ "items": {
804
+ "type": "object",
805
+ "properties": {
806
+ "id": {
807
+ "type": "string"
808
+ },
809
+ "peerId": {
810
+ "type": "string"
811
+ },
812
+ "peerKind": {
813
+ "type": "string",
814
+ "enum": [
815
+ "node",
816
+ "device"
817
+ ]
818
+ },
819
+ "type": {
820
+ "type": "string",
821
+ "enum": [
822
+ "invoke",
823
+ "status.request",
824
+ "location.request",
825
+ "session.message",
826
+ "automation.run"
827
+ ]
828
+ },
829
+ "command": {
830
+ "type": "string"
831
+ },
832
+ "priority": {
833
+ "type": "string",
834
+ "enum": [
835
+ "default",
836
+ "normal",
837
+ "high"
838
+ ]
839
+ },
840
+ "status": {
841
+ "type": "string",
842
+ "enum": [
843
+ "queued",
844
+ "claimed",
845
+ "completed",
846
+ "failed",
847
+ "cancelled",
848
+ "expired"
849
+ ]
850
+ },
851
+ "payload": {
852
+ "anyOf": [
853
+ {
854
+ "type": "string"
855
+ },
856
+ {
857
+ "type": "number"
858
+ },
859
+ {
860
+ "type": "boolean"
861
+ },
862
+ {
863
+ "type": "null"
864
+ },
865
+ {
866
+ "type": "object",
867
+ "additionalProperties": {
868
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.payload"
869
+ }
870
+ },
871
+ {
872
+ "type": "array",
873
+ "items": {
874
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.payload"
875
+ }
876
+ }
877
+ ]
878
+ },
879
+ "createdAt": {
880
+ "type": "number"
881
+ },
882
+ "updatedAt": {
883
+ "type": "number"
884
+ },
885
+ "queuedBy": {
886
+ "type": "string"
887
+ },
888
+ "claimedAt": {
889
+ "type": "number"
890
+ },
891
+ "claimTokenId": {
892
+ "type": "string"
893
+ },
894
+ "leaseExpiresAt": {
895
+ "type": "number"
896
+ },
897
+ "completedAt": {
898
+ "type": "number"
899
+ },
900
+ "timeoutMs": {
901
+ "type": "number"
902
+ },
903
+ "sessionId": {
904
+ "type": "string"
905
+ },
906
+ "routeId": {
907
+ "type": "string"
908
+ },
909
+ "automationRunId": {
910
+ "type": "string"
911
+ },
912
+ "automationJobId": {
913
+ "type": "string"
914
+ },
915
+ "approvalId": {
916
+ "type": "string"
917
+ },
918
+ "result": {
919
+ "anyOf": [
920
+ {
921
+ "type": "string"
922
+ },
923
+ {
924
+ "type": "number"
925
+ },
926
+ {
927
+ "type": "boolean"
928
+ },
929
+ {
930
+ "type": "null"
931
+ },
932
+ {
933
+ "type": "object",
934
+ "additionalProperties": {
935
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.result"
936
+ }
937
+ },
938
+ {
939
+ "type": "array",
940
+ "items": {
941
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.result"
942
+ }
943
+ }
944
+ ]
945
+ },
946
+ "error": {
947
+ "type": "string"
948
+ },
949
+ "telemetry": {
950
+ "type": "object",
951
+ "properties": {
952
+ "usage": {
953
+ "type": "object",
954
+ "properties": {
955
+ "inputTokens": {
956
+ "type": "number"
957
+ },
958
+ "outputTokens": {
959
+ "type": "number"
960
+ },
961
+ "cacheReadTokens": {
962
+ "type": "number"
963
+ },
964
+ "cacheWriteTokens": {
965
+ "type": "number"
966
+ },
967
+ "reasoningTokens": {
968
+ "type": "number"
969
+ }
970
+ },
971
+ "required": [
972
+ "inputTokens",
973
+ "outputTokens",
974
+ "cacheReadTokens",
975
+ "cacheWriteTokens"
976
+ ],
977
+ "additionalProperties": false
978
+ },
979
+ "llmCallCount": {
980
+ "type": "number"
981
+ },
982
+ "toolCallCount": {
983
+ "type": "number"
984
+ },
985
+ "turnCount": {
986
+ "type": "number"
987
+ },
988
+ "modelId": {
989
+ "type": "string"
990
+ },
991
+ "providerId": {
992
+ "type": "string"
993
+ },
994
+ "reasoningSummaryPresent": {
995
+ "type": "boolean"
996
+ },
997
+ "source": {
998
+ "type": "string",
999
+ "enum": [
1000
+ "local-agent",
1001
+ "shared-session",
1002
+ "remote-node",
1003
+ "remote-device"
1004
+ ]
1005
+ }
1006
+ },
1007
+ "required": [
1008
+ "usage"
1009
+ ],
1010
+ "additionalProperties": true
1011
+ },
1012
+ "metadata": {
1013
+ "type": "object",
1014
+ "additionalProperties": {
1015
+ "anyOf": [
1016
+ {
1017
+ "type": "string"
1018
+ },
1019
+ {
1020
+ "type": "number"
1021
+ },
1022
+ {
1023
+ "type": "boolean"
1024
+ },
1025
+ {
1026
+ "type": "null"
1027
+ },
1028
+ {
1029
+ "type": "object",
1030
+ "additionalProperties": {
1031
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.metadata.additionalProperties"
1032
+ }
1033
+ },
1034
+ {
1035
+ "type": "array",
1036
+ "items": {
1037
+ "$ref": "$.endpoints[3].outputSchema.properties.work.items.properties.metadata.additionalProperties"
1038
+ }
1039
+ }
1040
+ ]
1041
+ }
1042
+ }
1043
+ },
1044
+ "required": [
1045
+ "id",
1046
+ "peerId",
1047
+ "peerKind",
1048
+ "type",
1049
+ "command",
1050
+ "priority",
1051
+ "status",
1052
+ "createdAt",
1053
+ "updatedAt",
1054
+ "queuedBy",
1055
+ "metadata"
1056
+ ],
1057
+ "additionalProperties": true
1058
+ }
1059
+ }
1060
+ },
1061
+ "required": [
1062
+ "work"
1063
+ ],
1064
+ "additionalProperties": false
1065
+ }
1066
+ },
1067
+ {
1068
+ "id": "work.complete",
1069
+ "method": "POST",
1070
+ "path": "/api/remote/work/{workId}/complete",
1071
+ "auth": "bearer-peer-token",
1072
+ "requiredScope": "remote:complete",
1073
+ "description": "Complete, fail, or cancel a claimed work item.",
1074
+ "inputSchema": {
1075
+ "type": "object",
1076
+ "properties": {
1077
+ "workId": {
1078
+ "type": "string"
1079
+ },
1080
+ "status": {
1081
+ "type": "string",
1082
+ "enum": [
1083
+ "completed",
1084
+ "failed",
1085
+ "cancelled"
1086
+ ]
1087
+ },
1088
+ "result": {
1089
+ "anyOf": [
1090
+ {
1091
+ "type": "string"
1092
+ },
1093
+ {
1094
+ "type": "number"
1095
+ },
1096
+ {
1097
+ "type": "boolean"
1098
+ },
1099
+ {
1100
+ "type": "null"
1101
+ },
1102
+ {
1103
+ "type": "object",
1104
+ "additionalProperties": {
1105
+ "$ref": "$.endpoints[4].inputSchema.properties.result"
1106
+ }
1107
+ },
1108
+ {
1109
+ "type": "array",
1110
+ "items": {
1111
+ "$ref": "$.endpoints[4].inputSchema.properties.result"
1112
+ }
1113
+ }
1114
+ ]
1115
+ },
1116
+ "error": {
1117
+ "type": "string"
1118
+ },
1119
+ "metadata": {
1120
+ "type": "object",
1121
+ "additionalProperties": {
1122
+ "anyOf": [
1123
+ {
1124
+ "type": "string"
1125
+ },
1126
+ {
1127
+ "type": "number"
1128
+ },
1129
+ {
1130
+ "type": "boolean"
1131
+ },
1132
+ {
1133
+ "type": "null"
1134
+ },
1135
+ {
1136
+ "type": "object",
1137
+ "additionalProperties": {
1138
+ "$ref": "$.endpoints[4].inputSchema.properties.metadata.additionalProperties"
1139
+ }
1140
+ },
1141
+ {
1142
+ "type": "array",
1143
+ "items": {
1144
+ "$ref": "$.endpoints[4].inputSchema.properties.metadata.additionalProperties"
1145
+ }
1146
+ }
1147
+ ]
1148
+ }
1149
+ }
1150
+ },
1151
+ "required": [
1152
+ "workId"
1153
+ ],
1154
+ "additionalProperties": true
1155
+ },
1156
+ "outputSchema": {
1157
+ "type": "object",
1158
+ "properties": {
1159
+ "work": {
1160
+ "type": "object",
1161
+ "properties": {
1162
+ "id": {
1163
+ "type": "string"
1164
+ },
1165
+ "peerId": {
1166
+ "type": "string"
1167
+ },
1168
+ "peerKind": {
1169
+ "type": "string",
1170
+ "enum": [
1171
+ "node",
1172
+ "device"
1173
+ ]
1174
+ },
1175
+ "type": {
1176
+ "type": "string",
1177
+ "enum": [
1178
+ "invoke",
1179
+ "status.request",
1180
+ "location.request",
1181
+ "session.message",
1182
+ "automation.run"
1183
+ ]
1184
+ },
1185
+ "command": {
1186
+ "type": "string"
1187
+ },
1188
+ "priority": {
1189
+ "type": "string",
1190
+ "enum": [
1191
+ "default",
1192
+ "normal",
1193
+ "high"
1194
+ ]
1195
+ },
1196
+ "status": {
1197
+ "type": "string",
1198
+ "enum": [
1199
+ "queued",
1200
+ "claimed",
1201
+ "completed",
1202
+ "failed",
1203
+ "cancelled",
1204
+ "expired"
1205
+ ]
1206
+ },
1207
+ "payload": {
1208
+ "anyOf": [
1209
+ {
1210
+ "type": "string"
1211
+ },
1212
+ {
1213
+ "type": "number"
1214
+ },
1215
+ {
1216
+ "type": "boolean"
1217
+ },
1218
+ {
1219
+ "type": "null"
1220
+ },
1221
+ {
1222
+ "type": "object",
1223
+ "additionalProperties": {
1224
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.payload"
1225
+ }
1226
+ },
1227
+ {
1228
+ "type": "array",
1229
+ "items": {
1230
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.payload"
1231
+ }
1232
+ }
1233
+ ]
1234
+ },
1235
+ "createdAt": {
1236
+ "type": "number"
1237
+ },
1238
+ "updatedAt": {
1239
+ "type": "number"
1240
+ },
1241
+ "queuedBy": {
1242
+ "type": "string"
1243
+ },
1244
+ "claimedAt": {
1245
+ "type": "number"
1246
+ },
1247
+ "claimTokenId": {
1248
+ "type": "string"
1249
+ },
1250
+ "leaseExpiresAt": {
1251
+ "type": "number"
1252
+ },
1253
+ "completedAt": {
1254
+ "type": "number"
1255
+ },
1256
+ "timeoutMs": {
1257
+ "type": "number"
1258
+ },
1259
+ "sessionId": {
1260
+ "type": "string"
1261
+ },
1262
+ "routeId": {
1263
+ "type": "string"
1264
+ },
1265
+ "automationRunId": {
1266
+ "type": "string"
1267
+ },
1268
+ "automationJobId": {
1269
+ "type": "string"
1270
+ },
1271
+ "approvalId": {
1272
+ "type": "string"
1273
+ },
1274
+ "result": {
1275
+ "anyOf": [
1276
+ {
1277
+ "type": "string"
1278
+ },
1279
+ {
1280
+ "type": "number"
1281
+ },
1282
+ {
1283
+ "type": "boolean"
1284
+ },
1285
+ {
1286
+ "type": "null"
1287
+ },
1288
+ {
1289
+ "type": "object",
1290
+ "additionalProperties": {
1291
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.result"
1292
+ }
1293
+ },
1294
+ {
1295
+ "type": "array",
1296
+ "items": {
1297
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.result"
1298
+ }
1299
+ }
1300
+ ]
1301
+ },
1302
+ "error": {
1303
+ "type": "string"
1304
+ },
1305
+ "telemetry": {
1306
+ "type": "object",
1307
+ "properties": {
1308
+ "usage": {
1309
+ "type": "object",
1310
+ "properties": {
1311
+ "inputTokens": {
1312
+ "type": "number"
1313
+ },
1314
+ "outputTokens": {
1315
+ "type": "number"
1316
+ },
1317
+ "cacheReadTokens": {
1318
+ "type": "number"
1319
+ },
1320
+ "cacheWriteTokens": {
1321
+ "type": "number"
1322
+ },
1323
+ "reasoningTokens": {
1324
+ "type": "number"
1325
+ }
1326
+ },
1327
+ "required": [
1328
+ "inputTokens",
1329
+ "outputTokens",
1330
+ "cacheReadTokens",
1331
+ "cacheWriteTokens"
1332
+ ],
1333
+ "additionalProperties": false
1334
+ },
1335
+ "llmCallCount": {
1336
+ "type": "number"
1337
+ },
1338
+ "toolCallCount": {
1339
+ "type": "number"
1340
+ },
1341
+ "turnCount": {
1342
+ "type": "number"
1343
+ },
1344
+ "modelId": {
1345
+ "type": "string"
1346
+ },
1347
+ "providerId": {
1348
+ "type": "string"
1349
+ },
1350
+ "reasoningSummaryPresent": {
1351
+ "type": "boolean"
1352
+ },
1353
+ "source": {
1354
+ "type": "string",
1355
+ "enum": [
1356
+ "local-agent",
1357
+ "shared-session",
1358
+ "remote-node",
1359
+ "remote-device"
1360
+ ]
1361
+ }
1362
+ },
1363
+ "required": [
1364
+ "usage"
1365
+ ],
1366
+ "additionalProperties": true
1367
+ },
1368
+ "metadata": {
1369
+ "type": "object",
1370
+ "additionalProperties": {
1371
+ "anyOf": [
1372
+ {
1373
+ "type": "string"
1374
+ },
1375
+ {
1376
+ "type": "number"
1377
+ },
1378
+ {
1379
+ "type": "boolean"
1380
+ },
1381
+ {
1382
+ "type": "null"
1383
+ },
1384
+ {
1385
+ "type": "object",
1386
+ "additionalProperties": {
1387
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.metadata.additionalProperties"
1388
+ }
1389
+ },
1390
+ {
1391
+ "type": "array",
1392
+ "items": {
1393
+ "$ref": "$.endpoints[4].outputSchema.properties.work.properties.metadata.additionalProperties"
1394
+ }
1395
+ }
1396
+ ]
1397
+ }
1398
+ }
1399
+ },
1400
+ "required": [
1401
+ "id",
1402
+ "peerId",
1403
+ "peerKind",
1404
+ "type",
1405
+ "command",
1406
+ "priority",
1407
+ "status",
1408
+ "createdAt",
1409
+ "updatedAt",
1410
+ "queuedBy",
1411
+ "metadata"
1412
+ ],
1413
+ "additionalProperties": true
1414
+ }
1415
+ },
1416
+ "required": [
1417
+ "work"
1418
+ ],
1419
+ "additionalProperties": false
1420
+ }
1421
+ },
1422
+ {
1423
+ "id": "operator.snapshot",
1424
+ "method": "GET",
1425
+ "path": "/api/remote",
1426
+ "auth": "bearer-operator-token",
1427
+ "description": "Inspect distributed runtime pair requests, peers, work, and audit state.",
1428
+ "outputSchema": {
1429
+ "type": "object",
1430
+ "properties": {
1431
+ "daemon": {
1432
+ "type": "object",
1433
+ "properties": {
1434
+ "transportState": {
1435
+ "type": "string"
1436
+ },
1437
+ "isRunning": {
1438
+ "type": "boolean"
1439
+ },
1440
+ "reconnectAttempts": {
1441
+ "type": "number"
1442
+ },
1443
+ "runningJobCount": {
1444
+ "type": "number"
1445
+ },
1446
+ "lastError": {
1447
+ "type": "string"
1448
+ }
1449
+ },
1450
+ "required": [
1451
+ "transportState",
1452
+ "isRunning",
1453
+ "reconnectAttempts",
1454
+ "runningJobCount"
1455
+ ],
1456
+ "additionalProperties": true
1457
+ },
1458
+ "acp": {
1459
+ "type": "object",
1460
+ "properties": {
1461
+ "transportState": {
1462
+ "type": "string"
1463
+ },
1464
+ "activeConnectionIds": {
1465
+ "type": "array",
1466
+ "items": {
1467
+ "type": "string"
1468
+ }
1469
+ },
1470
+ "totalSpawned": {
1471
+ "type": "number"
1472
+ },
1473
+ "totalFailed": {
1474
+ "type": "number"
1475
+ },
1476
+ "lastError": {
1477
+ "type": "string"
1478
+ }
1479
+ },
1480
+ "required": [
1481
+ "transportState",
1482
+ "activeConnectionIds",
1483
+ "totalSpawned",
1484
+ "totalFailed"
1485
+ ],
1486
+ "additionalProperties": true
1487
+ },
1488
+ "registry": {
1489
+ "type": "object",
1490
+ "properties": {
1491
+ "pools": {
1492
+ "type": "number"
1493
+ },
1494
+ "contracts": {
1495
+ "type": "number"
1496
+ },
1497
+ "artifacts": {
1498
+ "type": "number"
1499
+ },
1500
+ "poolEntries": {
1501
+ "type": "array",
1502
+ "items": {
1503
+ "type": "object",
1504
+ "properties": {
1505
+ "id": {
1506
+ "type": "string"
1507
+ },
1508
+ "label": {
1509
+ "type": "string"
1510
+ },
1511
+ "trustClass": {
1512
+ "type": "string"
1513
+ },
1514
+ "preferredTemplate": {
1515
+ "type": "string"
1516
+ },
1517
+ "maxRunners": {
1518
+ "type": "number"
1519
+ },
1520
+ "runnerIds": {
1521
+ "type": "array",
1522
+ "items": {
1523
+ "type": "string"
1524
+ }
1525
+ }
1526
+ },
1527
+ "required": [
1528
+ "id",
1529
+ "label",
1530
+ "trustClass",
1531
+ "preferredTemplate",
1532
+ "maxRunners",
1533
+ "runnerIds"
1534
+ ],
1535
+ "additionalProperties": true
1536
+ }
1537
+ },
1538
+ "contractEntries": {
1539
+ "type": "array",
1540
+ "items": {
1541
+ "type": "object",
1542
+ "properties": {
1543
+ "id": {
1544
+ "type": "string"
1545
+ },
1546
+ "runnerId": {
1547
+ "type": "string"
1548
+ },
1549
+ "label": {
1550
+ "type": "string"
1551
+ },
1552
+ "template": {
1553
+ "type": "string"
1554
+ },
1555
+ "poolId": {
1556
+ "type": "string"
1557
+ },
1558
+ "taskId": {
1559
+ "type": "string"
1560
+ },
1561
+ "sourceTransport": {
1562
+ "type": "string"
1563
+ },
1564
+ "trustClass": {
1565
+ "type": "string"
1566
+ },
1567
+ "executionProtocol": {
1568
+ "type": "string"
1569
+ },
1570
+ "reviewMode": {
1571
+ "type": "string"
1572
+ },
1573
+ "communicationLane": {
1574
+ "type": "string"
1575
+ },
1576
+ "transportState": {
1577
+ "type": "string"
1578
+ },
1579
+ "lastError": {
1580
+ "type": "string"
1581
+ }
1582
+ },
1583
+ "required": [
1584
+ "id",
1585
+ "runnerId",
1586
+ "label",
1587
+ "template",
1588
+ "sourceTransport",
1589
+ "trustClass",
1590
+ "executionProtocol",
1591
+ "reviewMode",
1592
+ "communicationLane",
1593
+ "transportState"
1594
+ ],
1595
+ "additionalProperties": true
1596
+ }
1597
+ },
1598
+ "artifactEntries": {
1599
+ "type": "array",
1600
+ "items": {
1601
+ "type": "object",
1602
+ "properties": {
1603
+ "id": {
1604
+ "type": "string"
1605
+ },
1606
+ "runnerId": {
1607
+ "type": "string"
1608
+ },
1609
+ "createdAt": {
1610
+ "type": "number"
1611
+ },
1612
+ "status": {
1613
+ "type": "string"
1614
+ },
1615
+ "summary": {
1616
+ "type": "string"
1617
+ },
1618
+ "error": {
1619
+ "type": "string"
1620
+ }
1621
+ },
1622
+ "required": [
1623
+ "id",
1624
+ "runnerId",
1625
+ "createdAt",
1626
+ "status",
1627
+ "summary"
1628
+ ],
1629
+ "additionalProperties": true
1630
+ }
1631
+ }
1632
+ },
1633
+ "required": [
1634
+ "pools",
1635
+ "contracts",
1636
+ "artifacts",
1637
+ "poolEntries",
1638
+ "contractEntries",
1639
+ "artifactEntries"
1640
+ ],
1641
+ "additionalProperties": false
1642
+ },
1643
+ "supervisor": {
1644
+ "type": "object",
1645
+ "properties": {
1646
+ "sessions": {
1647
+ "type": "number"
1648
+ },
1649
+ "degraded": {
1650
+ "type": "number"
1651
+ },
1652
+ "capturedAt": {
1653
+ "type": "number"
1654
+ },
1655
+ "entries": {
1656
+ "type": "array",
1657
+ "items": {
1658
+ "type": "object",
1659
+ "properties": {
1660
+ "runnerId": {
1661
+ "type": "string"
1662
+ },
1663
+ "label": {
1664
+ "type": "string"
1665
+ },
1666
+ "transportState": {
1667
+ "type": "string"
1668
+ },
1669
+ "heartbeat": {
1670
+ "type": "string"
1671
+ },
1672
+ "taskId": {
1673
+ "type": "string"
1674
+ }
1675
+ },
1676
+ "required": [
1677
+ "runnerId",
1678
+ "label",
1679
+ "transportState",
1680
+ "heartbeat"
1681
+ ],
1682
+ "additionalProperties": true
1683
+ }
1684
+ }
1685
+ },
1686
+ "required": [
1687
+ "sessions",
1688
+ "degraded",
1689
+ "capturedAt",
1690
+ "entries"
1691
+ ],
1692
+ "additionalProperties": false
1693
+ },
1694
+ "distributed": {
1695
+ "type": "object",
1696
+ "properties": {
1697
+ "pairRequests": {
1698
+ "type": "array",
1699
+ "items": {
1700
+ "type": "object",
1701
+ "properties": {
1702
+ "id": {
1703
+ "type": "string"
1704
+ },
1705
+ "peerKind": {
1706
+ "type": "string",
1707
+ "enum": [
1708
+ "node",
1709
+ "device"
1710
+ ]
1711
+ },
1712
+ "requestedId": {
1713
+ "type": "string"
1714
+ },
1715
+ "label": {
1716
+ "type": "string"
1717
+ },
1718
+ "platform": {
1719
+ "type": "string"
1720
+ },
1721
+ "deviceFamily": {
1722
+ "type": "string"
1723
+ },
1724
+ "version": {
1725
+ "type": "string"
1726
+ },
1727
+ "clientMode": {
1728
+ "type": "string"
1729
+ },
1730
+ "capabilities": {
1731
+ "type": "array",
1732
+ "items": {
1733
+ "type": "string"
1734
+ }
1735
+ },
1736
+ "commands": {
1737
+ "type": "array",
1738
+ "items": {
1739
+ "type": "string"
1740
+ }
1741
+ },
1742
+ "requestedBy": {
1743
+ "type": "string",
1744
+ "enum": [
1745
+ "remote",
1746
+ "operator"
1747
+ ]
1748
+ },
1749
+ "status": {
1750
+ "type": "string",
1751
+ "enum": [
1752
+ "pending",
1753
+ "approved",
1754
+ "verified",
1755
+ "rejected",
1756
+ "expired"
1757
+ ]
1758
+ },
1759
+ "challengePreview": {
1760
+ "type": "string"
1761
+ },
1762
+ "createdAt": {
1763
+ "type": "number"
1764
+ },
1765
+ "updatedAt": {
1766
+ "type": "number"
1767
+ },
1768
+ "approvedAt": {
1769
+ "type": "number"
1770
+ },
1771
+ "verifiedAt": {
1772
+ "type": "number"
1773
+ },
1774
+ "rejectedAt": {
1775
+ "type": "number"
1776
+ },
1777
+ "expiresAt": {
1778
+ "type": "number"
1779
+ },
1780
+ "peerId": {
1781
+ "type": "string"
1782
+ },
1783
+ "remoteAddress": {
1784
+ "type": "string"
1785
+ },
1786
+ "metadata": {
1787
+ "type": "object",
1788
+ "additionalProperties": {
1789
+ "anyOf": [
1790
+ {
1791
+ "type": "string"
1792
+ },
1793
+ {
1794
+ "type": "number"
1795
+ },
1796
+ {
1797
+ "type": "boolean"
1798
+ },
1799
+ {
1800
+ "type": "null"
1801
+ },
1802
+ {
1803
+ "type": "object",
1804
+ "additionalProperties": {
1805
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
1806
+ }
1807
+ },
1808
+ {
1809
+ "type": "array",
1810
+ "items": {
1811
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
1812
+ }
1813
+ }
1814
+ ]
1815
+ }
1816
+ }
1817
+ },
1818
+ "required": [
1819
+ "id",
1820
+ "peerKind",
1821
+ "requestedId",
1822
+ "label",
1823
+ "capabilities",
1824
+ "commands",
1825
+ "requestedBy",
1826
+ "status",
1827
+ "challengePreview",
1828
+ "createdAt",
1829
+ "updatedAt",
1830
+ "expiresAt",
1831
+ "metadata"
1832
+ ],
1833
+ "additionalProperties": true
1834
+ }
1835
+ },
1836
+ "peers": {
1837
+ "type": "array",
1838
+ "items": {
1839
+ "type": "object",
1840
+ "properties": {
1841
+ "id": {
1842
+ "type": "string"
1843
+ },
1844
+ "kind": {
1845
+ "type": "string",
1846
+ "enum": [
1847
+ "node",
1848
+ "device"
1849
+ ]
1850
+ },
1851
+ "label": {
1852
+ "type": "string"
1853
+ },
1854
+ "requestedId": {
1855
+ "type": "string"
1856
+ },
1857
+ "platform": {
1858
+ "type": "string"
1859
+ },
1860
+ "deviceFamily": {
1861
+ "type": "string"
1862
+ },
1863
+ "version": {
1864
+ "type": "string"
1865
+ },
1866
+ "clientMode": {
1867
+ "type": "string"
1868
+ },
1869
+ "capabilities": {
1870
+ "type": "array",
1871
+ "items": {
1872
+ "type": "string"
1873
+ }
1874
+ },
1875
+ "commands": {
1876
+ "type": "array",
1877
+ "items": {
1878
+ "type": "string"
1879
+ }
1880
+ },
1881
+ "permissions": {
1882
+ "type": "object",
1883
+ "additionalProperties": {
1884
+ "type": "boolean"
1885
+ }
1886
+ },
1887
+ "status": {
1888
+ "type": "string",
1889
+ "enum": [
1890
+ "paired",
1891
+ "connected",
1892
+ "idle",
1893
+ "disconnected",
1894
+ "revoked"
1895
+ ]
1896
+ },
1897
+ "pairedAt": {
1898
+ "type": "number"
1899
+ },
1900
+ "verifiedAt": {
1901
+ "type": "number"
1902
+ },
1903
+ "lastSeenAt": {
1904
+ "type": "number"
1905
+ },
1906
+ "lastConnectedAt": {
1907
+ "type": "number"
1908
+ },
1909
+ "lastDisconnectedAt": {
1910
+ "type": "number"
1911
+ },
1912
+ "lastRemoteAddress": {
1913
+ "type": "string"
1914
+ },
1915
+ "activeTokenId": {
1916
+ "type": "string"
1917
+ },
1918
+ "tokens": {
1919
+ "type": "array",
1920
+ "items": {
1921
+ "type": "object",
1922
+ "properties": {
1923
+ "id": {
1924
+ "type": "string"
1925
+ },
1926
+ "label": {
1927
+ "type": "string"
1928
+ },
1929
+ "scopes": {
1930
+ "type": "array",
1931
+ "items": {
1932
+ "type": "string"
1933
+ }
1934
+ },
1935
+ "issuedAt": {
1936
+ "type": "number"
1937
+ },
1938
+ "lastUsedAt": {
1939
+ "type": "number"
1940
+ },
1941
+ "rotatedAt": {
1942
+ "type": "number"
1943
+ },
1944
+ "revokedAt": {
1945
+ "type": "number"
1946
+ },
1947
+ "fingerprint": {
1948
+ "type": "string"
1949
+ }
1950
+ },
1951
+ "required": [
1952
+ "id",
1953
+ "label",
1954
+ "scopes",
1955
+ "issuedAt",
1956
+ "fingerprint"
1957
+ ],
1958
+ "additionalProperties": true
1959
+ }
1960
+ },
1961
+ "metadata": {
1962
+ "type": "object",
1963
+ "additionalProperties": {
1964
+ "anyOf": [
1965
+ {
1966
+ "type": "string"
1967
+ },
1968
+ {
1969
+ "type": "number"
1970
+ },
1971
+ {
1972
+ "type": "boolean"
1973
+ },
1974
+ {
1975
+ "type": "null"
1976
+ },
1977
+ {
1978
+ "type": "object",
1979
+ "additionalProperties": {
1980
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
1981
+ }
1982
+ },
1983
+ {
1984
+ "type": "array",
1985
+ "items": {
1986
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
1987
+ }
1988
+ }
1989
+ ]
1990
+ }
1991
+ }
1992
+ },
1993
+ "required": [
1994
+ "id",
1995
+ "kind",
1996
+ "label",
1997
+ "requestedId",
1998
+ "capabilities",
1999
+ "commands",
2000
+ "status",
2001
+ "pairedAt",
2002
+ "tokens",
2003
+ "metadata"
2004
+ ],
2005
+ "additionalProperties": true
2006
+ }
2007
+ },
2008
+ "work": {
2009
+ "type": "array",
2010
+ "items": {
2011
+ "type": "object",
2012
+ "properties": {
2013
+ "id": {
2014
+ "type": "string"
2015
+ },
2016
+ "peerId": {
2017
+ "type": "string"
2018
+ },
2019
+ "peerKind": {
2020
+ "type": "string",
2021
+ "enum": [
2022
+ "node",
2023
+ "device"
2024
+ ]
2025
+ },
2026
+ "type": {
2027
+ "type": "string",
2028
+ "enum": [
2029
+ "invoke",
2030
+ "status.request",
2031
+ "location.request",
2032
+ "session.message",
2033
+ "automation.run"
2034
+ ]
2035
+ },
2036
+ "command": {
2037
+ "type": "string"
2038
+ },
2039
+ "priority": {
2040
+ "type": "string",
2041
+ "enum": [
2042
+ "default",
2043
+ "normal",
2044
+ "high"
2045
+ ]
2046
+ },
2047
+ "status": {
2048
+ "type": "string",
2049
+ "enum": [
2050
+ "queued",
2051
+ "claimed",
2052
+ "completed",
2053
+ "failed",
2054
+ "cancelled",
2055
+ "expired"
2056
+ ]
2057
+ },
2058
+ "payload": {
2059
+ "anyOf": [
2060
+ {
2061
+ "type": "string"
2062
+ },
2063
+ {
2064
+ "type": "number"
2065
+ },
2066
+ {
2067
+ "type": "boolean"
2068
+ },
2069
+ {
2070
+ "type": "null"
2071
+ },
2072
+ {
2073
+ "type": "object",
2074
+ "additionalProperties": {
2075
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.payload"
2076
+ }
2077
+ },
2078
+ {
2079
+ "type": "array",
2080
+ "items": {
2081
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.payload"
2082
+ }
2083
+ }
2084
+ ]
2085
+ },
2086
+ "createdAt": {
2087
+ "type": "number"
2088
+ },
2089
+ "updatedAt": {
2090
+ "type": "number"
2091
+ },
2092
+ "queuedBy": {
2093
+ "type": "string"
2094
+ },
2095
+ "claimedAt": {
2096
+ "type": "number"
2097
+ },
2098
+ "claimTokenId": {
2099
+ "type": "string"
2100
+ },
2101
+ "leaseExpiresAt": {
2102
+ "type": "number"
2103
+ },
2104
+ "completedAt": {
2105
+ "type": "number"
2106
+ },
2107
+ "timeoutMs": {
2108
+ "type": "number"
2109
+ },
2110
+ "sessionId": {
2111
+ "type": "string"
2112
+ },
2113
+ "routeId": {
2114
+ "type": "string"
2115
+ },
2116
+ "automationRunId": {
2117
+ "type": "string"
2118
+ },
2119
+ "automationJobId": {
2120
+ "type": "string"
2121
+ },
2122
+ "approvalId": {
2123
+ "type": "string"
2124
+ },
2125
+ "result": {
2126
+ "anyOf": [
2127
+ {
2128
+ "type": "string"
2129
+ },
2130
+ {
2131
+ "type": "number"
2132
+ },
2133
+ {
2134
+ "type": "boolean"
2135
+ },
2136
+ {
2137
+ "type": "null"
2138
+ },
2139
+ {
2140
+ "type": "object",
2141
+ "additionalProperties": {
2142
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.result"
2143
+ }
2144
+ },
2145
+ {
2146
+ "type": "array",
2147
+ "items": {
2148
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.result"
2149
+ }
2150
+ }
2151
+ ]
2152
+ },
2153
+ "error": {
2154
+ "type": "string"
2155
+ },
2156
+ "telemetry": {
2157
+ "type": "object",
2158
+ "properties": {
2159
+ "usage": {
2160
+ "type": "object",
2161
+ "properties": {
2162
+ "inputTokens": {
2163
+ "type": "number"
2164
+ },
2165
+ "outputTokens": {
2166
+ "type": "number"
2167
+ },
2168
+ "cacheReadTokens": {
2169
+ "type": "number"
2170
+ },
2171
+ "cacheWriteTokens": {
2172
+ "type": "number"
2173
+ },
2174
+ "reasoningTokens": {
2175
+ "type": "number"
2176
+ }
2177
+ },
2178
+ "required": [
2179
+ "inputTokens",
2180
+ "outputTokens",
2181
+ "cacheReadTokens",
2182
+ "cacheWriteTokens"
2183
+ ],
2184
+ "additionalProperties": false
2185
+ },
2186
+ "llmCallCount": {
2187
+ "type": "number"
2188
+ },
2189
+ "toolCallCount": {
2190
+ "type": "number"
2191
+ },
2192
+ "turnCount": {
2193
+ "type": "number"
2194
+ },
2195
+ "modelId": {
2196
+ "type": "string"
2197
+ },
2198
+ "providerId": {
2199
+ "type": "string"
2200
+ },
2201
+ "reasoningSummaryPresent": {
2202
+ "type": "boolean"
2203
+ },
2204
+ "source": {
2205
+ "type": "string",
2206
+ "enum": [
2207
+ "local-agent",
2208
+ "shared-session",
2209
+ "remote-node",
2210
+ "remote-device"
2211
+ ]
2212
+ }
2213
+ },
2214
+ "required": [
2215
+ "usage"
2216
+ ],
2217
+ "additionalProperties": true
2218
+ },
2219
+ "metadata": {
2220
+ "type": "object",
2221
+ "additionalProperties": {
2222
+ "anyOf": [
2223
+ {
2224
+ "type": "string"
2225
+ },
2226
+ {
2227
+ "type": "number"
2228
+ },
2229
+ {
2230
+ "type": "boolean"
2231
+ },
2232
+ {
2233
+ "type": "null"
2234
+ },
2235
+ {
2236
+ "type": "object",
2237
+ "additionalProperties": {
2238
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
2239
+ }
2240
+ },
2241
+ {
2242
+ "type": "array",
2243
+ "items": {
2244
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
2245
+ }
2246
+ }
2247
+ ]
2248
+ }
2249
+ }
2250
+ },
2251
+ "required": [
2252
+ "id",
2253
+ "peerId",
2254
+ "peerKind",
2255
+ "type",
2256
+ "command",
2257
+ "priority",
2258
+ "status",
2259
+ "createdAt",
2260
+ "updatedAt",
2261
+ "queuedBy",
2262
+ "metadata"
2263
+ ],
2264
+ "additionalProperties": true
2265
+ }
2266
+ },
2267
+ "audit": {
2268
+ "type": "array",
2269
+ "items": {
2270
+ "type": "object",
2271
+ "properties": {
2272
+ "id": {
2273
+ "type": "string"
2274
+ },
2275
+ "action": {
2276
+ "type": "string",
2277
+ "enum": [
2278
+ "pair-requested",
2279
+ "pair-approved",
2280
+ "pair-rejected",
2281
+ "pair-verified",
2282
+ "pair-expired",
2283
+ "token-rotated",
2284
+ "token-revoked",
2285
+ "peer-connected",
2286
+ "peer-disconnected",
2287
+ "work-queued",
2288
+ "work-claimed",
2289
+ "work-completed",
2290
+ "work-failed",
2291
+ "work-cancelled",
2292
+ "work-expired"
2293
+ ]
2294
+ },
2295
+ "actor": {
2296
+ "type": "string"
2297
+ },
2298
+ "peerId": {
2299
+ "type": "string"
2300
+ },
2301
+ "requestId": {
2302
+ "type": "string"
2303
+ },
2304
+ "workId": {
2305
+ "type": "string"
2306
+ },
2307
+ "createdAt": {
2308
+ "type": "number"
2309
+ },
2310
+ "note": {
2311
+ "type": "string"
2312
+ },
2313
+ "metadata": {
2314
+ "type": "object",
2315
+ "additionalProperties": {
2316
+ "anyOf": [
2317
+ {
2318
+ "type": "string"
2319
+ },
2320
+ {
2321
+ "type": "number"
2322
+ },
2323
+ {
2324
+ "type": "boolean"
2325
+ },
2326
+ {
2327
+ "type": "null"
2328
+ },
2329
+ {
2330
+ "type": "object",
2331
+ "additionalProperties": {
2332
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
2333
+ }
2334
+ },
2335
+ {
2336
+ "type": "array",
2337
+ "items": {
2338
+ "$ref": "$.endpoints[5].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
2339
+ }
2340
+ }
2341
+ ]
2342
+ }
2343
+ }
2344
+ },
2345
+ "required": [
2346
+ "id",
2347
+ "action",
2348
+ "actor",
2349
+ "createdAt",
2350
+ "metadata"
2351
+ ],
2352
+ "additionalProperties": true
2353
+ }
2354
+ }
2355
+ },
2356
+ "required": [
2357
+ "pairRequests",
2358
+ "peers",
2359
+ "work",
2360
+ "audit"
2361
+ ],
2362
+ "additionalProperties": false
2363
+ }
2364
+ },
2365
+ "required": [
2366
+ "daemon",
2367
+ "acp",
2368
+ "registry",
2369
+ "supervisor",
2370
+ "distributed"
2371
+ ],
2372
+ "additionalProperties": false
2373
+ }
2374
+ }
2375
+ ],
2376
+ "workCompletionStatuses": [
2377
+ "completed",
2378
+ "failed",
2379
+ "cancelled"
2380
+ ],
2381
+ "metadata": {
2382
+ "note": "Node/device hosts are external processes. GoodVibes owns the pair/token/work protocol and can be controlled from web, channel, or daemon clients."
2383
+ }
2384
+ }