@aria-cli/tools 1.0.19 → 1.0.31

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 (459) hide show
  1. package/dist/.aria-build-stamp.json +1 -1
  2. package/dist/ask-user-interaction.js +23 -0
  3. package/dist/cache/web-cache.js +67 -0
  4. package/dist/definitions/arion.js +105 -0
  5. package/dist/definitions/browser/browser.js +419 -0
  6. package/dist/definitions/browser/index.js +5 -0
  7. package/dist/definitions/browser/pw-downloads.js +115 -0
  8. package/dist/definitions/browser/pw-interactions.js +200 -0
  9. package/dist/definitions/browser/pw-responses.js +77 -0
  10. package/dist/definitions/browser/pw-session.js +311 -0
  11. package/dist/definitions/browser/pw-shared.js +67 -0
  12. package/dist/definitions/browser/pw-snapshot.js +302 -0
  13. package/dist/definitions/browser/pw-state.js +63 -0
  14. package/dist/definitions/browser/types.js +5 -0
  15. package/dist/definitions/code-intelligence.js +471 -0
  16. package/dist/definitions/core.js +110 -0
  17. package/dist/definitions/delegation.js +513 -0
  18. package/dist/definitions/deploy.js +66 -0
  19. package/dist/definitions/filesystem.js +197 -0
  20. package/dist/definitions/frg.js +64 -0
  21. package/{dist-cjs/definitions/index.d.ts → dist/definitions/index.js} +2 -0
  22. package/dist/definitions/memory.js +124 -0
  23. package/dist/definitions/messaging.js +626 -0
  24. package/dist/definitions/meta.js +350 -0
  25. package/dist/definitions/network.js +160 -0
  26. package/dist/definitions/outlook.js +278 -0
  27. package/dist/definitions/patch/apply-patch.js +185 -0
  28. package/dist/definitions/patch/fuzzy-match.js +167 -0
  29. package/{dist-cjs/definitions/patch/index.d.ts → dist/definitions/patch/index.js} +1 -0
  30. package/dist/definitions/patch/patch-parser.js +208 -0
  31. package/dist/definitions/patch/sandbox-paths.js +106 -0
  32. package/dist/definitions/process/index.js +5 -0
  33. package/dist/definitions/process/process-registry.js +214 -0
  34. package/dist/definitions/process/process.js +387 -0
  35. package/dist/definitions/process/pty-keys.js +255 -0
  36. package/dist/definitions/process/session-slug.js +143 -0
  37. package/dist/definitions/quip.js +196 -0
  38. package/dist/definitions/search.js +61 -0
  39. package/dist/definitions/session-history.js +70 -0
  40. package/dist/definitions/shell.js +182 -0
  41. package/dist/definitions/slack.js +181 -0
  42. package/dist/definitions/web.js +110 -0
  43. package/dist/executors/apply-patch.js +902 -0
  44. package/dist/executors/arion.js +120 -0
  45. package/dist/executors/code-intelligence.js +883 -0
  46. package/dist/executors/deploy.js +849 -0
  47. package/dist/executors/filesystem.js +1119 -0
  48. package/dist/executors/frg-freshness.js +577 -0
  49. package/dist/executors/frg.js +299 -0
  50. package/{dist-cjs/executors/index.d.ts → dist/executors/index.js} +22 -19
  51. package/dist/executors/learning-meta.js +1147 -0
  52. package/dist/executors/lsp-client.js +297 -0
  53. package/dist/executors/memory.js +751 -0
  54. package/dist/executors/meta.js +221 -0
  55. package/dist/executors/process-registry.js +466 -0
  56. package/dist/executors/pty-session-store.js +31 -0
  57. package/dist/executors/pty.js +281 -0
  58. package/dist/executors/restart.js +120 -0
  59. package/dist/executors/search-freshness.js +196 -0
  60. package/dist/executors/search-types.js +53 -0
  61. package/dist/executors/search.js +67 -0
  62. package/dist/executors/self-diagnose.js +399 -0
  63. package/dist/executors/session-history.js +284 -0
  64. package/dist/executors/shell-safety.js +474 -0
  65. package/dist/executors/shell.js +955 -0
  66. package/dist/executors/utils.js +34 -0
  67. package/dist/executors/web.js +543 -0
  68. package/dist/extraction/content-extraction.js +248 -0
  69. package/dist/extraction/index.js +5 -0
  70. package/dist/headless-control-contract.js +968 -0
  71. package/dist/{index-v49pd2a0.js → index-45qvfjbf.js} +2 -2
  72. package/dist/index.js +71 -372
  73. package/dist/local-control-http-auth.js +3 -0
  74. package/dist/mcp/client.js +182 -0
  75. package/dist/mcp/connection.js +484 -0
  76. package/dist/mcp/index.js +11 -0
  77. package/dist/mcp/jsonrpc.js +145 -0
  78. package/dist/mcp/types.js +8 -0
  79. package/dist/network-control-adapter.js +73 -0
  80. package/dist/network-runtime/address-types.js +166 -0
  81. package/dist/network-runtime/db-owner-fencing.js +70 -0
  82. package/dist/network-runtime/delivery-receipts.js +270 -0
  83. package/dist/network-runtime/direct-endpoint-authority.js +26 -0
  84. package/dist/network-runtime/index.js +13 -1
  85. package/dist/network-runtime/local-control-contract.js +628 -0
  86. package/dist/network-runtime/node-store-contract.js +35 -0
  87. package/dist/network-runtime/pair-route-contract.js +78 -0
  88. package/dist/network-runtime/peer-capabilities.js +29 -0
  89. package/dist/network-runtime/peer-principal-ref.js +13 -0
  90. package/dist/network-runtime/peer-state-machine.js +122 -0
  91. package/dist/network-runtime/protocol-schemas.js +206 -0
  92. package/dist/network-runtime/runtime-bootstrap-contract.js +61 -0
  93. package/dist/outlook/desktop-session.js +280 -0
  94. package/dist/policy.js +150 -0
  95. package/dist/providers/brave.js +63 -0
  96. package/dist/providers/duckduckgo.js +177 -0
  97. package/dist/providers/exa.js +64 -0
  98. package/dist/providers/firecrawl.js +56 -0
  99. package/{dist-cjs/providers/index.d.ts → dist/providers/index.js} +1 -1
  100. package/dist/providers/jina.js +50 -0
  101. package/dist/providers/router.js +97 -0
  102. package/dist/providers/search-provider.js +33 -0
  103. package/dist/providers/tavily.js +55 -0
  104. package/dist/pty-w5c9dv33.js +1 -0
  105. package/dist/quip/desktop-session.js +318 -0
  106. package/{dist-cjs/registry/index.d.ts → dist/registry/index.js} +1 -0
  107. package/dist/registry/registry.js +757 -0
  108. package/dist/runtime-socket-local-control-client.js +331 -0
  109. package/dist/security/dns-normalization.js +20 -0
  110. package/dist/security/dns-pinning.js +124 -0
  111. package/dist/security/external-content.js +92 -0
  112. package/dist/security/ssrf.js +182 -0
  113. package/dist/slack/desktop-session.js +325 -0
  114. package/dist/tool-factory.js +48 -0
  115. package/dist/types.js +8 -0
  116. package/dist/utils/retry.js +133 -0
  117. package/dist/utils/safe-parse-json.js +161 -0
  118. package/dist/utils/url.js +20 -0
  119. package/dist-cjs/ask-user-interaction.js +28 -0
  120. package/dist-cjs/cache/web-cache.js +71 -0
  121. package/dist-cjs/definitions/arion.js +108 -0
  122. package/dist-cjs/definitions/browser/browser.js +422 -0
  123. package/dist-cjs/definitions/browser/index.js +9 -0
  124. package/dist-cjs/definitions/browser/pw-downloads.js +118 -0
  125. package/dist-cjs/definitions/browser/pw-interactions.js +214 -0
  126. package/dist-cjs/definitions/browser/pw-responses.js +85 -0
  127. package/dist-cjs/definitions/browser/pw-session.js +327 -0
  128. package/dist-cjs/definitions/browser/pw-shared.js +73 -0
  129. package/dist-cjs/definitions/browser/pw-snapshot.js +308 -0
  130. package/dist-cjs/definitions/browser/pw-state.js +71 -0
  131. package/dist-cjs/definitions/browser/types.js +6 -0
  132. package/dist-cjs/definitions/code-intelligence.js +474 -0
  133. package/dist-cjs/definitions/core.js +134 -0
  134. package/dist-cjs/definitions/delegation.js +516 -0
  135. package/dist-cjs/definitions/deploy.js +69 -0
  136. package/dist-cjs/definitions/filesystem.js +200 -0
  137. package/dist-cjs/definitions/frg.js +67 -0
  138. package/dist-cjs/definitions/index.js +44 -0
  139. package/dist-cjs/definitions/memory.js +127 -0
  140. package/dist-cjs/definitions/messaging.js +632 -0
  141. package/dist-cjs/definitions/meta.js +353 -0
  142. package/dist-cjs/definitions/network.js +163 -0
  143. package/dist-cjs/definitions/outlook.js +281 -0
  144. package/dist-cjs/definitions/patch/apply-patch.js +192 -0
  145. package/dist-cjs/definitions/patch/fuzzy-match.js +173 -0
  146. package/dist-cjs/definitions/patch/index.js +6 -0
  147. package/dist-cjs/definitions/patch/patch-parser.js +216 -0
  148. package/dist-cjs/definitions/patch/sandbox-paths.js +114 -0
  149. package/dist-cjs/definitions/process/index.js +9 -0
  150. package/dist-cjs/definitions/process/process-registry.js +232 -0
  151. package/dist-cjs/definitions/process/process.js +390 -0
  152. package/dist-cjs/definitions/process/pty-keys.js +260 -0
  153. package/dist-cjs/definitions/process/session-slug.js +146 -0
  154. package/dist-cjs/definitions/quip.js +199 -0
  155. package/dist-cjs/definitions/search.js +64 -0
  156. package/dist-cjs/definitions/session-history.js +73 -0
  157. package/dist-cjs/definitions/shell.js +185 -0
  158. package/dist-cjs/definitions/slack.js +184 -0
  159. package/dist-cjs/definitions/web.js +113 -0
  160. package/dist-cjs/executors/apply-patch.js +939 -0
  161. package/dist-cjs/executors/arion.js +126 -0
  162. package/dist-cjs/executors/code-intelligence.js +926 -0
  163. package/dist-cjs/executors/deploy.js +870 -0
  164. package/dist-cjs/executors/filesystem.js +1164 -0
  165. package/dist-cjs/executors/frg-freshness.js +628 -0
  166. package/dist-cjs/executors/frg.js +335 -0
  167. package/dist-cjs/executors/index.js +144 -0
  168. package/dist-cjs/executors/learning-meta.js +1166 -0
  169. package/dist-cjs/executors/memory.js +797 -0
  170. package/dist-cjs/executors/meta.js +227 -0
  171. package/dist-cjs/executors/process-registry.js +470 -0
  172. package/dist-cjs/executors/pty-session-store.js +35 -0
  173. package/dist-cjs/executors/pty.js +289 -0
  174. package/dist-cjs/executors/restart.js +156 -0
  175. package/dist-cjs/executors/search-freshness.js +235 -0
  176. package/dist-cjs/executors/search-types.js +57 -0
  177. package/dist-cjs/executors/search.js +103 -0
  178. package/dist-cjs/executors/self-diagnose.js +435 -0
  179. package/dist-cjs/executors/session-history.js +321 -0
  180. package/dist-cjs/executors/shell-safety.js +479 -0
  181. package/dist-cjs/executors/shell.js +1002 -0
  182. package/dist-cjs/executors/utils.js +74 -0
  183. package/dist-cjs/executors/web.js +548 -0
  184. package/dist-cjs/extraction/content-extraction.js +289 -0
  185. package/dist-cjs/extraction/index.js +9 -0
  186. package/dist-cjs/headless-control-contract.js +973 -0
  187. package/dist-cjs/index.js +436 -385
  188. package/dist-cjs/local-control-http-auth.js +6 -0
  189. package/dist-cjs/mcp/client.js +186 -0
  190. package/dist-cjs/mcp/connection.js +488 -0
  191. package/dist-cjs/mcp/index.js +31 -0
  192. package/dist-cjs/mcp/jsonrpc.js +149 -0
  193. package/dist-cjs/mcp/types.js +9 -0
  194. package/dist-cjs/network-control-adapter.js +78 -0
  195. package/dist-cjs/network-runtime/address-types.js +169 -0
  196. package/dist-cjs/network-runtime/db-owner-fencing.js +77 -0
  197. package/dist-cjs/network-runtime/delivery-receipts.js +279 -0
  198. package/dist-cjs/network-runtime/direct-endpoint-authority.js +30 -0
  199. package/dist-cjs/network-runtime/index.js +173 -8
  200. package/dist-cjs/network-runtime/local-control-contract.js +634 -0
  201. package/dist-cjs/network-runtime/node-store-contract.js +39 -0
  202. package/dist-cjs/network-runtime/pair-route-contract.js +81 -0
  203. package/dist-cjs/network-runtime/peer-capabilities.js +38 -0
  204. package/dist-cjs/network-runtime/peer-principal-ref.js +16 -0
  205. package/dist-cjs/network-runtime/peer-state-machine.js +130 -0
  206. package/dist-cjs/network-runtime/protocol-schemas.js +213 -0
  207. package/dist-cjs/network-runtime/runtime-bootstrap-contract.js +64 -0
  208. package/dist-cjs/outlook/desktop-session.js +319 -0
  209. package/dist-cjs/policy.js +156 -0
  210. package/dist-cjs/providers/brave.js +67 -0
  211. package/dist-cjs/providers/duckduckgo.js +181 -0
  212. package/dist-cjs/providers/exa.js +68 -0
  213. package/dist-cjs/providers/firecrawl.js +60 -0
  214. package/dist-cjs/providers/index.js +18 -0
  215. package/dist-cjs/providers/jina.js +54 -0
  216. package/dist-cjs/providers/router.js +101 -0
  217. package/dist-cjs/providers/search-provider.js +37 -0
  218. package/dist-cjs/providers/tavily.js +59 -0
  219. package/dist-cjs/quip/desktop-session.js +354 -0
  220. package/dist-cjs/registry/index.js +7 -0
  221. package/dist-cjs/registry/registry.js +762 -0
  222. package/dist-cjs/runtime-socket-local-control-client.js +368 -0
  223. package/dist-cjs/security/dns-normalization.js +23 -0
  224. package/dist-cjs/security/dns-pinning.js +161 -0
  225. package/dist-cjs/security/external-content.js +96 -0
  226. package/dist-cjs/security/ssrf.js +222 -0
  227. package/dist-cjs/slack/desktop-session.js +367 -0
  228. package/dist-cjs/tool-factory.js +51 -0
  229. package/dist-cjs/types.js +9 -0
  230. package/dist-cjs/utils/retry.js +170 -0
  231. package/dist-cjs/utils/safe-parse-json.js +165 -0
  232. package/dist-cjs/utils/url.js +24 -0
  233. package/package.json +11 -10
  234. package/dist/ask-user-interaction.d.ts +0 -10
  235. package/dist/cache/web-cache.d.ts +0 -52
  236. package/dist/definitions/arion.d.ts +0 -8
  237. package/dist/definitions/browser/browser.d.ts +0 -2
  238. package/dist/definitions/browser/index.d.ts +0 -1
  239. package/dist/definitions/browser/pw-downloads.d.ts +0 -13
  240. package/dist/definitions/browser/pw-interactions.d.ts +0 -78
  241. package/dist/definitions/browser/pw-responses.d.ts +0 -28
  242. package/dist/definitions/browser/pw-session.d.ts +0 -65
  243. package/dist/definitions/browser/pw-shared.d.ts +0 -22
  244. package/dist/definitions/browser/pw-snapshot.d.ts +0 -34
  245. package/dist/definitions/browser/pw-state.d.ts +0 -22
  246. package/dist/definitions/browser/types.d.ts +0 -277
  247. package/dist/definitions/code-intelligence.d.ts +0 -8
  248. package/dist/definitions/core.d.ts +0 -47
  249. package/dist/definitions/delegation.d.ts +0 -11
  250. package/dist/definitions/deploy.d.ts +0 -15
  251. package/dist/definitions/filesystem.d.ts +0 -9
  252. package/dist/definitions/frg.d.ts +0 -3
  253. package/dist/definitions/index.d.ts +0 -19
  254. package/dist/definitions/memory.d.ts +0 -8
  255. package/dist/definitions/messaging.d.ts +0 -11
  256. package/dist/definitions/meta.d.ts +0 -11
  257. package/dist/definitions/network.d.ts +0 -11
  258. package/dist/definitions/outlook.d.ts +0 -2
  259. package/dist/definitions/patch/apply-patch.d.ts +0 -11
  260. package/dist/definitions/patch/fuzzy-match.d.ts +0 -10
  261. package/dist/definitions/patch/index.d.ts +0 -1
  262. package/dist/definitions/patch/patch-parser.d.ts +0 -50
  263. package/dist/definitions/patch/sandbox-paths.d.ts +0 -18
  264. package/dist/definitions/process/index.d.ts +0 -1
  265. package/dist/definitions/process/process-registry.d.ts +0 -67
  266. package/dist/definitions/process/process.d.ts +0 -9
  267. package/dist/definitions/process/pty-keys.d.ts +0 -13
  268. package/dist/definitions/process/session-slug.d.ts +0 -1
  269. package/dist/definitions/quip.d.ts +0 -2
  270. package/dist/definitions/search.d.ts +0 -9
  271. package/dist/definitions/session-history.d.ts +0 -11
  272. package/dist/definitions/shell.d.ts +0 -8
  273. package/dist/definitions/slack.d.ts +0 -2
  274. package/dist/definitions/web.d.ts +0 -8
  275. package/dist/executors/apply-patch.d.ts +0 -51
  276. package/dist/executors/arion.d.ts +0 -50
  277. package/dist/executors/code-intelligence.d.ts +0 -138
  278. package/dist/executors/deploy.d.ts +0 -169
  279. package/dist/executors/filesystem.d.ts +0 -150
  280. package/dist/executors/frg-freshness.d.ts +0 -93
  281. package/dist/executors/frg.d.ts +0 -27
  282. package/dist/executors/index.d.ts +0 -44
  283. package/dist/executors/learning-meta.d.ts +0 -87
  284. package/dist/executors/lsp-client.d.ts +0 -38
  285. package/dist/executors/memory.d.ts +0 -203
  286. package/dist/executors/meta.d.ts +0 -73
  287. package/dist/executors/process-registry.d.ts +0 -98
  288. package/dist/executors/pty-session-store.d.ts +0 -14
  289. package/dist/executors/pty.d.ts +0 -133
  290. package/dist/executors/restart.d.ts +0 -13
  291. package/dist/executors/search-freshness.d.ts +0 -50
  292. package/dist/executors/search-types.d.ts +0 -52
  293. package/dist/executors/search.d.ts +0 -11
  294. package/dist/executors/self-diagnose.d.ts +0 -89
  295. package/dist/executors/session-history.d.ts +0 -75
  296. package/dist/executors/shell-safety.d.ts +0 -27
  297. package/dist/executors/shell.d.ts +0 -168
  298. package/dist/executors/utils.d.ts +0 -20
  299. package/dist/executors/web.d.ts +0 -89
  300. package/dist/extraction/content-extraction.d.ts +0 -48
  301. package/dist/extraction/index.d.ts +0 -4
  302. package/dist/headless-control-contract.d.ts +0 -3182
  303. package/dist/index.d.ts +0 -62
  304. package/dist/local-control-http-auth.d.ts +0 -2
  305. package/dist/mcp/client.d.ts +0 -68
  306. package/dist/mcp/connection.d.ts +0 -54
  307. package/dist/mcp/index.d.ts +0 -10
  308. package/dist/mcp/jsonrpc.d.ts +0 -36
  309. package/dist/mcp/types.d.ts +0 -178
  310. package/dist/network-control-adapter.d.ts +0 -4
  311. package/dist/network-runtime/address-types.d.ts +0 -201
  312. package/dist/network-runtime/db-owner-fencing.d.ts +0 -43
  313. package/dist/network-runtime/delivery-receipts.d.ts +0 -117
  314. package/dist/network-runtime/direct-endpoint-authority.d.ts +0 -8
  315. package/dist/network-runtime/index.d.ts +0 -24
  316. package/dist/network-runtime/local-control-contract.d.ts +0 -758
  317. package/dist/network-runtime/node-store-contract.d.ts +0 -49
  318. package/dist/network-runtime/pair-route-contract.d.ts +0 -100
  319. package/dist/network-runtime/peer-capabilities.d.ts +0 -10
  320. package/dist/network-runtime/peer-principal-ref.d.ts +0 -9
  321. package/dist/network-runtime/peer-state-machine.d.ts +0 -70
  322. package/dist/network-runtime/protocol-schemas.d.ts +0 -328
  323. package/dist/network-runtime/runtime-bootstrap-contract.d.ts +0 -81
  324. package/dist/outlook/desktop-session.d.ts +0 -68
  325. package/dist/policy.d.ts +0 -43
  326. package/dist/providers/brave.d.ts +0 -10
  327. package/dist/providers/duckduckgo.d.ts +0 -18
  328. package/dist/providers/exa.d.ts +0 -10
  329. package/dist/providers/firecrawl.d.ts +0 -10
  330. package/dist/providers/index.d.ts +0 -8
  331. package/dist/providers/jina.d.ts +0 -10
  332. package/dist/providers/router.d.ts +0 -21
  333. package/dist/providers/search-provider.d.ts +0 -35
  334. package/dist/providers/tavily.d.ts +0 -10
  335. package/dist/pty-cf6pmvx6.js +0 -1
  336. package/dist/quip/desktop-session.d.ts +0 -69
  337. package/dist/registry/index.d.ts +0 -1
  338. package/dist/registry/registry.d.ts +0 -156
  339. package/dist/runtime-socket-local-control-client.d.ts +0 -10
  340. package/dist/security/dns-normalization.d.ts +0 -6
  341. package/dist/security/dns-pinning.d.ts +0 -27
  342. package/dist/security/external-content.d.ts +0 -40
  343. package/dist/security/ssrf.d.ts +0 -40
  344. package/dist/slack/desktop-session.d.ts +0 -69
  345. package/dist/tool-factory.d.ts +0 -46
  346. package/dist/types.d.ts +0 -1192
  347. package/dist/utils/retry.d.ts +0 -11
  348. package/dist/utils/safe-parse-json.d.ts +0 -26
  349. package/dist/utils/url.d.ts +0 -10
  350. package/dist-cjs/ask-user-interaction.d.ts +0 -10
  351. package/dist-cjs/cache/web-cache.d.ts +0 -52
  352. package/dist-cjs/definitions/arion.d.ts +0 -8
  353. package/dist-cjs/definitions/browser/browser.d.ts +0 -2
  354. package/dist-cjs/definitions/browser/index.d.ts +0 -1
  355. package/dist-cjs/definitions/browser/pw-downloads.d.ts +0 -13
  356. package/dist-cjs/definitions/browser/pw-interactions.d.ts +0 -78
  357. package/dist-cjs/definitions/browser/pw-responses.d.ts +0 -28
  358. package/dist-cjs/definitions/browser/pw-session.d.ts +0 -65
  359. package/dist-cjs/definitions/browser/pw-shared.d.ts +0 -22
  360. package/dist-cjs/definitions/browser/pw-snapshot.d.ts +0 -34
  361. package/dist-cjs/definitions/browser/pw-state.d.ts +0 -22
  362. package/dist-cjs/definitions/browser/types.d.ts +0 -277
  363. package/dist-cjs/definitions/code-intelligence.d.ts +0 -8
  364. package/dist-cjs/definitions/core.d.ts +0 -47
  365. package/dist-cjs/definitions/delegation.d.ts +0 -11
  366. package/dist-cjs/definitions/deploy.d.ts +0 -15
  367. package/dist-cjs/definitions/filesystem.d.ts +0 -9
  368. package/dist-cjs/definitions/frg.d.ts +0 -3
  369. package/dist-cjs/definitions/memory.d.ts +0 -8
  370. package/dist-cjs/definitions/messaging.d.ts +0 -11
  371. package/dist-cjs/definitions/meta.d.ts +0 -11
  372. package/dist-cjs/definitions/network.d.ts +0 -11
  373. package/dist-cjs/definitions/outlook.d.ts +0 -2
  374. package/dist-cjs/definitions/patch/apply-patch.d.ts +0 -11
  375. package/dist-cjs/definitions/patch/fuzzy-match.d.ts +0 -10
  376. package/dist-cjs/definitions/patch/patch-parser.d.ts +0 -50
  377. package/dist-cjs/definitions/patch/sandbox-paths.d.ts +0 -18
  378. package/dist-cjs/definitions/process/index.d.ts +0 -1
  379. package/dist-cjs/definitions/process/process-registry.d.ts +0 -67
  380. package/dist-cjs/definitions/process/process.d.ts +0 -9
  381. package/dist-cjs/definitions/process/pty-keys.d.ts +0 -13
  382. package/dist-cjs/definitions/process/session-slug.d.ts +0 -1
  383. package/dist-cjs/definitions/quip.d.ts +0 -2
  384. package/dist-cjs/definitions/search.d.ts +0 -9
  385. package/dist-cjs/definitions/session-history.d.ts +0 -11
  386. package/dist-cjs/definitions/shell.d.ts +0 -8
  387. package/dist-cjs/definitions/slack.d.ts +0 -2
  388. package/dist-cjs/definitions/web.d.ts +0 -8
  389. package/dist-cjs/executors/apply-patch.d.ts +0 -51
  390. package/dist-cjs/executors/arion.d.ts +0 -50
  391. package/dist-cjs/executors/code-intelligence.d.ts +0 -138
  392. package/dist-cjs/executors/deploy.d.ts +0 -169
  393. package/dist-cjs/executors/filesystem.d.ts +0 -150
  394. package/dist-cjs/executors/frg-freshness.d.ts +0 -93
  395. package/dist-cjs/executors/frg.d.ts +0 -27
  396. package/dist-cjs/executors/learning-meta.d.ts +0 -87
  397. package/dist-cjs/executors/lsp-client.d.ts +0 -38
  398. package/dist-cjs/executors/memory.d.ts +0 -203
  399. package/dist-cjs/executors/meta.d.ts +0 -73
  400. package/dist-cjs/executors/process-registry.d.ts +0 -98
  401. package/dist-cjs/executors/pty-session-store.d.ts +0 -14
  402. package/dist-cjs/executors/pty.d.ts +0 -133
  403. package/dist-cjs/executors/restart.d.ts +0 -13
  404. package/dist-cjs/executors/search-freshness.d.ts +0 -50
  405. package/dist-cjs/executors/search-types.d.ts +0 -52
  406. package/dist-cjs/executors/search.d.ts +0 -11
  407. package/dist-cjs/executors/self-diagnose.d.ts +0 -89
  408. package/dist-cjs/executors/session-history.d.ts +0 -75
  409. package/dist-cjs/executors/shell-safety.d.ts +0 -27
  410. package/dist-cjs/executors/shell.d.ts +0 -168
  411. package/dist-cjs/executors/utils.d.ts +0 -20
  412. package/dist-cjs/executors/web.d.ts +0 -89
  413. package/dist-cjs/extraction/content-extraction.d.ts +0 -48
  414. package/dist-cjs/extraction/index.d.ts +0 -4
  415. package/dist-cjs/headless-control-contract.d.ts +0 -3182
  416. package/dist-cjs/index.d.ts +0 -62
  417. package/dist-cjs/local-control-http-auth.d.ts +0 -2
  418. package/dist-cjs/mcp/client.d.ts +0 -68
  419. package/dist-cjs/mcp/connection.d.ts +0 -54
  420. package/dist-cjs/mcp/index.d.ts +0 -10
  421. package/dist-cjs/mcp/jsonrpc.d.ts +0 -36
  422. package/dist-cjs/mcp/types.d.ts +0 -178
  423. package/dist-cjs/network-control-adapter.d.ts +0 -4
  424. package/dist-cjs/network-runtime/address-types.d.ts +0 -201
  425. package/dist-cjs/network-runtime/db-owner-fencing.d.ts +0 -43
  426. package/dist-cjs/network-runtime/delivery-receipts.d.ts +0 -117
  427. package/dist-cjs/network-runtime/direct-endpoint-authority.d.ts +0 -8
  428. package/dist-cjs/network-runtime/index.d.ts +0 -24
  429. package/dist-cjs/network-runtime/local-control-contract.d.ts +0 -758
  430. package/dist-cjs/network-runtime/node-store-contract.d.ts +0 -49
  431. package/dist-cjs/network-runtime/pair-route-contract.d.ts +0 -100
  432. package/dist-cjs/network-runtime/peer-capabilities.d.ts +0 -10
  433. package/dist-cjs/network-runtime/peer-principal-ref.d.ts +0 -9
  434. package/dist-cjs/network-runtime/peer-state-machine.d.ts +0 -70
  435. package/dist-cjs/network-runtime/protocol-schemas.d.ts +0 -328
  436. package/dist-cjs/network-runtime/runtime-bootstrap-contract.d.ts +0 -81
  437. package/dist-cjs/outlook/desktop-session.d.ts +0 -68
  438. package/dist-cjs/policy.d.ts +0 -43
  439. package/dist-cjs/providers/brave.d.ts +0 -10
  440. package/dist-cjs/providers/duckduckgo.d.ts +0 -18
  441. package/dist-cjs/providers/exa.d.ts +0 -10
  442. package/dist-cjs/providers/firecrawl.d.ts +0 -10
  443. package/dist-cjs/providers/jina.d.ts +0 -10
  444. package/dist-cjs/providers/router.d.ts +0 -21
  445. package/dist-cjs/providers/search-provider.d.ts +0 -35
  446. package/dist-cjs/providers/tavily.d.ts +0 -10
  447. package/dist-cjs/quip/desktop-session.d.ts +0 -69
  448. package/dist-cjs/registry/registry.d.ts +0 -156
  449. package/dist-cjs/runtime-socket-local-control-client.d.ts +0 -10
  450. package/dist-cjs/security/dns-normalization.d.ts +0 -6
  451. package/dist-cjs/security/dns-pinning.d.ts +0 -27
  452. package/dist-cjs/security/external-content.d.ts +0 -40
  453. package/dist-cjs/security/ssrf.d.ts +0 -40
  454. package/dist-cjs/slack/desktop-session.d.ts +0 -69
  455. package/dist-cjs/tool-factory.d.ts +0 -46
  456. package/dist-cjs/types.d.ts +0 -1192
  457. package/dist-cjs/utils/retry.d.ts +0 -11
  458. package/dist-cjs/utils/safe-parse-json.d.ts +0 -26
  459. package/dist-cjs/utils/url.d.ts +0 -10
@@ -0,0 +1,634 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LocalControlSocketRequestSchema = exports.LocalControlSocketMethodSchema = exports.LocalControlSocketDetachClientResponseSchema = exports.LocalControlSocketDetachClientRequestSchema = exports.LocalControlSocketAttachClientResponseSchema = exports.LocalControlSocketAttachClientRequestSchema = exports.AttachedClientAuthSchema = exports.AttachedClientLeaseGrantSchema = exports.AttachedClientViewSchema = exports.LocalControlClientKindSchema = exports.RepairPeerResponseSchema = exports.RepairPeerRequestSchema = exports.RevokePeerResponseSchema = exports.RevokePeerRequestSchema = exports.DirectPairResponseSchema = exports.DirectPairRequestJsonSchema = exports.DirectPairRequestSchema = exports.CancelInviteResponseSchema = exports.CancelInviteRequestSchema = exports.AcceptInviteTokenResponseSchema = exports.AcceptInviteTokenRequestSchema = exports.AcceptInviteResponseSchema = exports.InvitePeerResultSchema = exports.PairingProofStateSchema = exports.InvitePeerRequestSchema = exports.CreateInviteResponseSchema = exports.CreateInviteRequestSchema = exports.PairRequestResponseSchema = exports.PairRequestDecisionSchema = exports.PendingInviteViewSchema = exports.PendingPairRequestViewSchema = exports.RuntimeAutonomousLoopCommandSchema = exports.RuntimeStatusSchema = exports.RuntimeAutonomousLoopStatusSchema = exports.RuntimeAutonomousLoopSafetyPolicySummarySchema = exports.NearbyPeerViewSchema = exports.PeerViewEventSchema = exports.PersistedInboxEventSchema = exports.InboxListRequestSchema = exports.InboxCursorSchema = exports.RuntimeEventCursorSchema = exports.OutboundMessageSchema = exports.RuntimeDeliveryReceiptSchema = exports.RuntimeQueuedReceiptSchema = exports.RuntimeRunEventSchema = exports.ResumeRunRequestSchema = exports.RunResultSchema = exports.RuntimeErrorDiagnosticSchema = exports.RunRequestSchema = exports.AcceptInviteRequestSchema = void 0;
4
+ exports.LocalControlSocketResponseSchema = exports.LocalControlSocketErrorResponseSchema = exports.LocalControlSocketSuccessResponseSchema = void 0;
5
+ exports.resolveTrustedRuntimeErrorMessage = resolveTrustedRuntimeErrorMessage;
6
+ exports.createTrustedRuntimeError = createTrustedRuntimeError;
7
+ const zod_1 = require("zod");
8
+ const address_types_js_1 = require("./address-types.js");
9
+ const delivery_receipts_js_1 = require("./delivery-receipts.js");
10
+ const pair_route_contract_js_1 = require("./pair-route-contract.js");
11
+ Object.defineProperty(exports, "AcceptInviteRequestSchema", { enumerable: true, get: function () { return pair_route_contract_js_1.AcceptInviteRequestSchema; } });
12
+ const peer_state_machine_js_1 = require("./peer-state-machine.js");
13
+ const NonEmptyStringSchema = zod_1.z.string().trim().min(1);
14
+ const AutonomySchema = zod_1.z.enum(["minimal", "balanced", "high", "full"]);
15
+ const ToolNameListSchema = zod_1.z.array(zod_1.z.string()).optional();
16
+ const MessageHistorySchema = zod_1.z.array(zod_1.z.custom()).optional();
17
+ function toFastifyBodyJsonSchema(schema) {
18
+ const jsonSchema = zod_1.z.toJSONSchema(schema);
19
+ delete jsonSchema.$schema;
20
+ return jsonSchema;
21
+ }
22
+ exports.RunRequestSchema = zod_1.z
23
+ .object({
24
+ task: NonEmptyStringSchema,
25
+ arion: NonEmptyStringSchema.optional(),
26
+ cwd: NonEmptyStringSchema.optional(),
27
+ history: MessageHistorySchema,
28
+ requestedModel: NonEmptyStringSchema.optional(),
29
+ preferredTier: zod_1.z.enum(["fast", "balanced", "powerful", "ensemble"]).optional(),
30
+ budget: zod_1.z.number().positive().optional(),
31
+ maxTurns: zod_1.z.number().int().positive().optional(),
32
+ autonomy: AutonomySchema.optional(),
33
+ allowedTools: ToolNameListSchema,
34
+ deniedTools: ToolNameListSchema,
35
+ noMemory: zod_1.z.boolean().optional(),
36
+ systemPrompt: zod_1.z.string().optional(),
37
+ approvalMode: zod_1.z.enum(["pause", "approve", "deny"]).optional(),
38
+ askUserAnswers: zod_1.z.array(zod_1.z.string()).optional(),
39
+ })
40
+ .strict();
41
+ exports.RuntimeErrorDiagnosticSchema = zod_1.z.lazy(() => zod_1.z
42
+ .object({
43
+ message: zod_1.z.string(),
44
+ name: zod_1.z.string().optional(),
45
+ stack: zod_1.z.string().optional(),
46
+ cause: exports.RuntimeErrorDiagnosticSchema.optional(),
47
+ })
48
+ .catchall(zod_1.z.unknown()));
49
+ function extractRuntimeDiagnosticMessage(diagnostic) {
50
+ if (!diagnostic || typeof diagnostic !== "object") {
51
+ return undefined;
52
+ }
53
+ const message = diagnostic.message;
54
+ if (typeof message !== "string") {
55
+ return undefined;
56
+ }
57
+ const trimmed = message.trim();
58
+ return trimmed.length > 0 ? trimmed : undefined;
59
+ }
60
+ function isGenericTrustedRuntimeMessage(message) {
61
+ const normalized = message.trim().toLowerCase();
62
+ return (normalized === "internal server error" ||
63
+ normalized.startsWith("internal server error:") ||
64
+ normalized.startsWith("http 500"));
65
+ }
66
+ function resolveTrustedRuntimeErrorMessage(message, diagnostic) {
67
+ const fallback = typeof message === "string" && message.trim().length > 0 ? message : undefined;
68
+ const diagnosticMessage = extractRuntimeDiagnosticMessage(diagnostic);
69
+ if (!diagnosticMessage) {
70
+ return fallback;
71
+ }
72
+ if (!fallback || isGenericTrustedRuntimeMessage(fallback)) {
73
+ return diagnosticMessage;
74
+ }
75
+ return fallback;
76
+ }
77
+ function createTrustedRuntimeError(message, diagnostic) {
78
+ const resolvedMessage = resolveTrustedRuntimeErrorMessage(message, diagnostic) ?? "Trusted runtime error";
79
+ return Object.assign(new Error(resolvedMessage), {
80
+ ...(diagnostic === undefined ? {} : { diagnostic }),
81
+ ...(typeof message === "string" && message.trim().length > 0 && message !== resolvedMessage
82
+ ? { publicMessage: message }
83
+ : {}),
84
+ });
85
+ }
86
+ exports.RunResultSchema = zod_1.z
87
+ .object({
88
+ success: zod_1.z.boolean(),
89
+ output: zod_1.z.string().optional(),
90
+ messages: zod_1.z.array(zod_1.z.unknown()).optional(),
91
+ toolCalls: zod_1.z.array(zod_1.z.unknown()).optional(),
92
+ usage: zod_1.z.unknown().optional(),
93
+ turnCount: zod_1.z.number().int().nonnegative().optional(),
94
+ thinking: zod_1.z.array(zod_1.z.unknown()).optional(),
95
+ nativeToolResults: zod_1.z.array(zod_1.z.unknown()).optional(),
96
+ traces: zod_1.z.array(zod_1.z.unknown()).optional(),
97
+ pipelineTiming: zod_1.z.unknown().optional(),
98
+ guardrailEvents: zod_1.z.array(zod_1.z.unknown()).optional(),
99
+ handoffs: zod_1.z.array(zod_1.z.unknown()).optional(),
100
+ state: zod_1.z.unknown().optional(),
101
+ error: zod_1.z.string().optional(),
102
+ diagnostic: exports.RuntimeErrorDiagnosticSchema.optional(),
103
+ })
104
+ .strict();
105
+ exports.ResumeRunRequestSchema = zod_1.z
106
+ .object({
107
+ state: zod_1.z.unknown(),
108
+ arion: NonEmptyStringSchema.optional(),
109
+ cwd: NonEmptyStringSchema.optional(),
110
+ requestedModel: NonEmptyStringSchema.optional(),
111
+ preferredTier: zod_1.z.enum(["fast", "balanced", "powerful", "ensemble"]).optional(),
112
+ budget: zod_1.z.number().positive().optional(),
113
+ maxTurns: zod_1.z.number().int().positive().optional(),
114
+ autonomy: AutonomySchema.optional(),
115
+ allowedTools: ToolNameListSchema,
116
+ deniedTools: ToolNameListSchema,
117
+ noMemory: zod_1.z.boolean().optional(),
118
+ systemPrompt: zod_1.z.string().optional(),
119
+ approvalMode: zod_1.z.enum(["pause", "approve", "deny"]).optional(),
120
+ askUserAnswers: zod_1.z.array(zod_1.z.string()).optional(),
121
+ })
122
+ .strict();
123
+ exports.RuntimeRunEventSchema = zod_1.z.discriminatedUnion("type", [
124
+ zod_1.z.object({
125
+ type: zod_1.z.literal("text_delta"),
126
+ content: zod_1.z.string(),
127
+ }),
128
+ zod_1.z.object({
129
+ type: zod_1.z.literal("tool_start"),
130
+ id: NonEmptyStringSchema,
131
+ name: NonEmptyStringSchema,
132
+ input: zod_1.z.unknown().optional(),
133
+ }),
134
+ zod_1.z.object({
135
+ type: zod_1.z.literal("approval_needed"),
136
+ toolName: NonEmptyStringSchema,
137
+ toolInput: zod_1.z.unknown().optional(),
138
+ riskLevel: zod_1.z.string().optional(),
139
+ issues: zod_1.z.array(zod_1.z.string()).optional(),
140
+ }),
141
+ zod_1.z.object({
142
+ type: zod_1.z.literal("tool_result"),
143
+ id: NonEmptyStringSchema,
144
+ name: NonEmptyStringSchema,
145
+ durationMs: zod_1.z.number().nonnegative(),
146
+ result: zod_1.z.unknown(),
147
+ input: zod_1.z.unknown().optional(),
148
+ }),
149
+ zod_1.z.object({
150
+ type: zod_1.z.literal("usage_update"),
151
+ usage: zod_1.z.unknown(),
152
+ }),
153
+ zod_1.z.object({
154
+ type: zod_1.z.literal("turn_complete"),
155
+ turnNumber: zod_1.z.number().int().nonnegative(),
156
+ }),
157
+ zod_1.z.object({
158
+ type: zod_1.z.literal("guardrail_rejected"),
159
+ stage: zod_1.z.enum(["input", "output"]),
160
+ message: zod_1.z.string(),
161
+ }),
162
+ zod_1.z.object({
163
+ type: zod_1.z.literal("pipeline_timing"),
164
+ report: zod_1.z.unknown(),
165
+ }),
166
+ zod_1.z.object({
167
+ type: zod_1.z.literal("messages_snapshot"),
168
+ messages: zod_1.z.array(zod_1.z.unknown()),
169
+ }),
170
+ zod_1.z.object({
171
+ type: zod_1.z.literal("error"),
172
+ error: zod_1.z.object({
173
+ message: zod_1.z.string(),
174
+ diagnostic: exports.RuntimeErrorDiagnosticSchema.optional(),
175
+ }),
176
+ }),
177
+ zod_1.z.object({
178
+ type: zod_1.z.literal("native_tool_result"),
179
+ metadata: zod_1.z.unknown(),
180
+ }),
181
+ zod_1.z.object({
182
+ type: zod_1.z.literal("thinking_start"),
183
+ }),
184
+ zod_1.z.object({
185
+ type: zod_1.z.literal("thinking_delta"),
186
+ content: zod_1.z.string(),
187
+ }),
188
+ zod_1.z.object({
189
+ type: zod_1.z.literal("thinking_end"),
190
+ blocks: zod_1.z.array(zod_1.z.unknown()),
191
+ durationMs: zod_1.z.number().nonnegative(),
192
+ }),
193
+ zod_1.z.object({
194
+ type: zod_1.z.literal("tool_args_delta"),
195
+ id: NonEmptyStringSchema,
196
+ args: zod_1.z.string(),
197
+ }),
198
+ zod_1.z.object({
199
+ type: zod_1.z.literal("span_start"),
200
+ spanId: NonEmptyStringSchema,
201
+ spanType: NonEmptyStringSchema,
202
+ name: NonEmptyStringSchema,
203
+ }),
204
+ zod_1.z.object({
205
+ type: zod_1.z.literal("span_end"),
206
+ spanId: NonEmptyStringSchema,
207
+ durationMs: zod_1.z.number().nonnegative(),
208
+ }),
209
+ zod_1.z.object({
210
+ type: zod_1.z.literal("handoff_start"),
211
+ target: NonEmptyStringSchema,
212
+ id: NonEmptyStringSchema,
213
+ }),
214
+ zod_1.z.object({
215
+ type: zod_1.z.literal("handoff_result"),
216
+ target: NonEmptyStringSchema,
217
+ result: zod_1.z.string(),
218
+ id: NonEmptyStringSchema,
219
+ }),
220
+ zod_1.z.object({
221
+ type: zod_1.z.literal("paused"),
222
+ state: zod_1.z.unknown(),
223
+ }),
224
+ ]);
225
+ exports.RuntimeQueuedReceiptSchema = zod_1.z
226
+ .object(delivery_receipts_js_1.DeliveryReceiptInputSchema.shape)
227
+ .strict()
228
+ .transform((receipt) => (0, delivery_receipts_js_1.canonicalizeDeliveryReceipt)(receipt));
229
+ exports.RuntimeDeliveryReceiptSchema = zod_1.z
230
+ .object({
231
+ transport: delivery_receipts_js_1.RuntimeTransportSchema,
232
+ delivered: zod_1.z.boolean(),
233
+ queued: zod_1.z.boolean(),
234
+ accepted: zod_1.z.boolean().optional(),
235
+ deliveryState: delivery_receipts_js_1.DeliveryStateSchema.optional(),
236
+ sessionState: delivery_receipts_js_1.SessionStateSchema.optional(),
237
+ deliveryReadiness: delivery_receipts_js_1.DeliveryReadinessSchema.optional(),
238
+ queuedReason: delivery_receipts_js_1.QueuedReasonSchema.optional(),
239
+ storedAt: zod_1.z.number().int().nonnegative().optional(),
240
+ })
241
+ .strict()
242
+ .transform(({ storedAt, ...receipt }) => ({
243
+ ...(0, delivery_receipts_js_1.canonicalizeDeliveryReceipt)(receipt),
244
+ ...(storedAt !== undefined ? { storedAt } : {}),
245
+ }));
246
+ exports.OutboundMessageSchema = zod_1.z
247
+ .object({
248
+ rawMessage: zod_1.z.record(zod_1.z.string(), zod_1.z.unknown()),
249
+ recipientInbox: address_types_js_1.InboxAddressSchema.optional(),
250
+ to: NonEmptyStringSchema.optional(),
251
+ content: zod_1.z.string().optional(),
252
+ type: NonEmptyStringSchema.optional(),
253
+ priority: zod_1.z.number().int().optional(),
254
+ correlationId: zod_1.z.string().optional(),
255
+ metadata: zod_1.z.record(zod_1.z.string(), zod_1.z.unknown()).optional(),
256
+ })
257
+ .strict()
258
+ .superRefine((message, ctx) => {
259
+ if (!message.recipientInbox || message.to === undefined) {
260
+ return;
261
+ }
262
+ if (message.recipientInbox.kind === "client") {
263
+ ctx.addIssue({
264
+ code: zod_1.z.ZodIssueCode.custom,
265
+ message: 'OutboundMessage.to is a compatibility alias for node recipients only; omit it for recipientInbox.kind === "client"',
266
+ path: ["to"],
267
+ });
268
+ return;
269
+ }
270
+ if (message.recipientInbox.nodeId !== message.to) {
271
+ ctx.addIssue({
272
+ code: zod_1.z.ZodIssueCode.custom,
273
+ message: "OutboundMessage.recipientInbox.nodeId must match OutboundMessage.to when both are provided",
274
+ path: ["to"],
275
+ });
276
+ }
277
+ });
278
+ exports.RuntimeEventCursorSchema = zod_1.z
279
+ .object({
280
+ afterRevision: zod_1.z.number().int().nonnegative().optional(),
281
+ })
282
+ .strict();
283
+ exports.InboxCursorSchema = zod_1.z
284
+ .object({
285
+ afterCreatedAt: zod_1.z.number().int().nonnegative().optional(),
286
+ })
287
+ .strict();
288
+ exports.InboxListRequestSchema = zod_1.z
289
+ .object({
290
+ cursor: exports.InboxCursorSchema.optional(),
291
+ limit: zod_1.z.number().int().positive().max(1000).optional(),
292
+ unreadOnly: zod_1.z.boolean().optional(),
293
+ })
294
+ .strict();
295
+ exports.PersistedInboxEventSchema = zod_1.z
296
+ .object({
297
+ id: NonEmptyStringSchema,
298
+ senderNodeId: address_types_js_1.NodeIdSchema,
299
+ senderDisplayNameSnapshot: NonEmptyStringSchema.optional(),
300
+ senderType: NonEmptyStringSchema.optional(),
301
+ senderClientId: zod_1.z.string().nullable().optional(),
302
+ recipientClientId: zod_1.z.string().nullable().optional(),
303
+ inboxAddress: address_types_js_1.InboxAddressSchema,
304
+ type: NonEmptyStringSchema,
305
+ content: zod_1.z.string(),
306
+ priority: zod_1.z.number().int(),
307
+ createdAt: zod_1.z.number().int().nonnegative(),
308
+ correlationId: zod_1.z.string().nullable().optional(),
309
+ replyTo: zod_1.z.string().nullable().optional(),
310
+ })
311
+ .strict();
312
+ exports.PeerViewEventSchema = zod_1.z
313
+ .object({
314
+ nodeId: address_types_js_1.NodeIdSchema,
315
+ transportPublicKey: address_types_js_1.PeerTransportIdSchema,
316
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
317
+ identityState: peer_state_machine_js_1.PeerIdentityStateSchema,
318
+ transportState: peer_state_machine_js_1.PeerTransportStateSchema,
319
+ endpointRevision: address_types_js_1.EndpointRevisionSchema,
320
+ updatedAt: zod_1.z.string(),
321
+ lastSeenAt: zod_1.z.string().optional(),
322
+ })
323
+ .strict();
324
+ exports.NearbyPeerViewSchema = zod_1.z
325
+ .object({
326
+ displayNameSnapshot: NonEmptyStringSchema,
327
+ nodeId: address_types_js_1.NodeIdSchema,
328
+ host: NonEmptyStringSchema,
329
+ port: zod_1.z.number().int().min(1).max(65535),
330
+ principalFingerprint: address_types_js_1.PrincipalFingerprintSchema,
331
+ version: NonEmptyStringSchema,
332
+ tlsCaFingerprint: address_types_js_1.TlsCaFingerprintSchema.optional(),
333
+ transport: zod_1.z.enum(["lan", "wan"]).optional(),
334
+ status: zod_1.z.enum(["discovered", "connected"]).optional(),
335
+ })
336
+ .strict();
337
+ exports.RuntimeAutonomousLoopSafetyPolicySummarySchema = zod_1.z
338
+ .object({
339
+ allowedToolCategories: zod_1.z.array(NonEmptyStringSchema).optional(),
340
+ allowedShellCommands: zod_1.z.array(NonEmptyStringSchema).optional(),
341
+ maxWriteOpsPerMinute: zod_1.z.number().int().positive().optional(),
342
+ maxGitPushesPerHour: zod_1.z.number().int().positive().optional(),
343
+ })
344
+ .strict();
345
+ exports.RuntimeAutonomousLoopStatusSchema = zod_1.z
346
+ .object({
347
+ status: zod_1.z.enum(["running", "stopped"]),
348
+ intervalMs: zod_1.z.number().int().positive().nullable(),
349
+ lastWakeTickAt: zod_1.z.string().nullable(),
350
+ lastCheckpointResult: zod_1.z.enum(["success", "error", "never"]),
351
+ safetyPolicySummary: exports.RuntimeAutonomousLoopSafetyPolicySummarySchema,
352
+ ownerClientKind: NonEmptyStringSchema.nullable(),
353
+ })
354
+ .strict();
355
+ function createDefaultRuntimeAutonomousLoopStatus() {
356
+ return {
357
+ status: "stopped",
358
+ intervalMs: null,
359
+ lastWakeTickAt: null,
360
+ lastCheckpointResult: "never",
361
+ safetyPolicySummary: {},
362
+ ownerClientKind: null,
363
+ };
364
+ }
365
+ exports.RuntimeStatusSchema = zod_1.z
366
+ .object({
367
+ nodeId: address_types_js_1.NodeIdSchema,
368
+ runtimeId: address_types_js_1.RuntimeIdSchema,
369
+ port: zod_1.z.number().int().min(1).max(65535),
370
+ attachedClients: zod_1.z.number().int().nonnegative().optional(),
371
+ autonomousLoop: exports.RuntimeAutonomousLoopStatusSchema.optional().default(createDefaultRuntimeAutonomousLoopStatus()),
372
+ })
373
+ .strict();
374
+ exports.RuntimeAutonomousLoopCommandSchema = zod_1.z
375
+ .object({
376
+ intervalMs: zod_1.z.number().int().positive().optional(),
377
+ safetyPolicy: exports.RuntimeAutonomousLoopSafetyPolicySummarySchema.optional(),
378
+ })
379
+ .strict();
380
+ exports.PendingPairRequestViewSchema = zod_1.z
381
+ .object({
382
+ id: NonEmptyStringSchema,
383
+ nodeId: address_types_js_1.NodeIdSchema,
384
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
385
+ principalFingerprint: address_types_js_1.PrincipalFingerprintSchema,
386
+ })
387
+ .strict();
388
+ exports.PendingInviteViewSchema = zod_1.z
389
+ .object({
390
+ inviteId: NonEmptyStringSchema,
391
+ inviteLabel: NonEmptyStringSchema.optional(),
392
+ createdAt: NonEmptyStringSchema,
393
+ expiresAt: NonEmptyStringSchema.nullable().optional(),
394
+ })
395
+ .strict();
396
+ exports.PairRequestDecisionSchema = zod_1.z
397
+ .object({
398
+ requestId: NonEmptyStringSchema,
399
+ accepted: zod_1.z.boolean(),
400
+ })
401
+ .strict();
402
+ exports.PairRequestResponseSchema = zod_1.z
403
+ .object({
404
+ accepted: zod_1.z.boolean().optional(),
405
+ inviteToken: zod_1.z.string().optional(),
406
+ error: zod_1.z.string().optional(),
407
+ })
408
+ .strict();
409
+ exports.CreateInviteRequestSchema = zod_1.z
410
+ .object({
411
+ inviteLabel: NonEmptyStringSchema.optional(),
412
+ durationMs: zod_1.z.number().int().min(0).optional(),
413
+ })
414
+ .strict();
415
+ exports.CreateInviteResponseSchema = zod_1.z
416
+ .object({
417
+ inviteToken: NonEmptyStringSchema,
418
+ pendingInvite: exports.PendingInviteViewSchema,
419
+ })
420
+ .strict();
421
+ exports.InvitePeerRequestSchema = zod_1.z
422
+ .object({
423
+ nodeId: address_types_js_1.NodeIdSchema,
424
+ displayName: NonEmptyStringSchema,
425
+ principalFingerprint: address_types_js_1.PrincipalFingerprintSchema.optional(),
426
+ controlEndpoint: address_types_js_1.ControlEndpointAdvertisementSchema,
427
+ transportEndpoint: address_types_js_1.TransportEndpointAdvertisementSchema.optional(),
428
+ transport: zod_1.z.enum(["lan", "wan"]).optional(),
429
+ })
430
+ .strict();
431
+ exports.PairingProofStateSchema = zod_1.z.enum(["pending_verification"]);
432
+ exports.InvitePeerResultSchema = zod_1.z.discriminatedUnion("mode", [
433
+ zod_1.z
434
+ .object({
435
+ nodeId: address_types_js_1.NodeIdSchema,
436
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
437
+ mode: zod_1.z.literal("lan_direct"),
438
+ pairingProofState: zod_1.z.literal("pending_verification"),
439
+ })
440
+ .strict(),
441
+ zod_1.z
442
+ .object({
443
+ nodeId: address_types_js_1.NodeIdSchema,
444
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
445
+ mode: zod_1.z.literal("wan_pair"),
446
+ pairingProofState: zod_1.z.literal("pending_verification"),
447
+ })
448
+ .strict(),
449
+ ]);
450
+ exports.AcceptInviteResponseSchema = zod_1.z
451
+ .object({
452
+ success: zod_1.z.boolean(),
453
+ nodeId: address_types_js_1.NodeIdSchema,
454
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
455
+ })
456
+ .strict();
457
+ exports.AcceptInviteTokenRequestSchema = zod_1.z
458
+ .object({
459
+ inviteToken: NonEmptyStringSchema,
460
+ })
461
+ .strict();
462
+ exports.AcceptInviteTokenResponseSchema = exports.AcceptInviteResponseSchema;
463
+ exports.CancelInviteRequestSchema = zod_1.z
464
+ .object({
465
+ inviteId: NonEmptyStringSchema,
466
+ })
467
+ .strict();
468
+ exports.CancelInviteResponseSchema = zod_1.z
469
+ .object({
470
+ cancelled: zod_1.z.boolean(),
471
+ inviteId: NonEmptyStringSchema,
472
+ })
473
+ .strict();
474
+ exports.DirectPairRequestSchema = zod_1.z
475
+ .object({
476
+ peerNodeId: address_types_js_1.NodeIdSchema,
477
+ principalFingerprint: address_types_js_1.PrincipalFingerprintSchema,
478
+ peerDisplayName: NonEmptyStringSchema.optional(),
479
+ peerWgPubkey: address_types_js_1.PeerTransportIdSchema,
480
+ peerSigningPubkey: NonEmptyStringSchema,
481
+ transportEndpoint: address_types_js_1.TransportEndpointAdvertisementSchema,
482
+ controlEndpoint: address_types_js_1.ControlEndpointAdvertisementSchema,
483
+ psk: NonEmptyStringSchema,
484
+ })
485
+ .strict();
486
+ exports.DirectPairRequestJsonSchema = toFastifyBodyJsonSchema(exports.DirectPairRequestSchema);
487
+ exports.DirectPairResponseSchema = zod_1.z
488
+ .object({
489
+ received: zod_1.z.literal(true),
490
+ pairingProofState: zod_1.z.literal("pending_verification"),
491
+ })
492
+ .strict();
493
+ exports.RevokePeerRequestSchema = zod_1.z
494
+ .object({
495
+ nodeId: address_types_js_1.NodeIdSchema,
496
+ envelope: zod_1.z.record(zod_1.z.string(), zod_1.z.unknown()).optional(),
497
+ })
498
+ .strict();
499
+ exports.RevokePeerResponseSchema = zod_1.z
500
+ .object({
501
+ revoked: zod_1.z.boolean(),
502
+ nodeId: address_types_js_1.NodeIdSchema,
503
+ displayNameSnapshot: NonEmptyStringSchema.optional(),
504
+ })
505
+ .strict();
506
+ exports.RepairPeerRequestSchema = zod_1.z
507
+ .object({
508
+ nodeId: address_types_js_1.NodeIdSchema,
509
+ endpointHost: NonEmptyStringSchema,
510
+ endpointPort: zod_1.z.number().int().min(1).max(65535),
511
+ endpointRevision: address_types_js_1.EndpointRevisionSchema,
512
+ })
513
+ .strict();
514
+ exports.RepairPeerResponseSchema = zod_1.z
515
+ .object({
516
+ repaired: zod_1.z.boolean(),
517
+ nodeId: address_types_js_1.NodeIdSchema,
518
+ endpointHost: NonEmptyStringSchema,
519
+ endpointPort: zod_1.z.number().int().min(1).max(65535),
520
+ endpointRevision: address_types_js_1.EndpointRevisionSchema,
521
+ })
522
+ .strict();
523
+ exports.LocalControlClientKindSchema = zod_1.z.enum(["tui", "daemon-launcher", "pipe", "local-api"]);
524
+ exports.AttachedClientViewSchema = zod_1.z
525
+ .object({
526
+ clientId: address_types_js_1.ClientIdSchema,
527
+ clientKind: exports.LocalControlClientKindSchema,
528
+ displayLabel: NonEmptyStringSchema,
529
+ self: zod_1.z.boolean(),
530
+ attachedAt: NonEmptyStringSchema,
531
+ lastSeenAt: NonEmptyStringSchema,
532
+ })
533
+ .strict();
534
+ exports.AttachedClientLeaseGrantSchema = zod_1.z
535
+ .object({
536
+ clientId: address_types_js_1.ClientIdSchema,
537
+ clientAuthToken: NonEmptyStringSchema,
538
+ })
539
+ .strict();
540
+ exports.AttachedClientAuthSchema = exports.AttachedClientLeaseGrantSchema;
541
+ exports.LocalControlSocketAttachClientRequestSchema = zod_1.z
542
+ .object({
543
+ clientKind: exports.LocalControlClientKindSchema,
544
+ lease: zod_1.z.boolean().optional(),
545
+ pid: zod_1.z.number().optional(),
546
+ displayName: zod_1.z.string().optional(),
547
+ })
548
+ .strict();
549
+ exports.LocalControlSocketAttachClientResponseSchema = exports.AttachedClientLeaseGrantSchema;
550
+ exports.LocalControlSocketDetachClientRequestSchema = zod_1.z
551
+ .object({
552
+ clientId: address_types_js_1.ClientIdSchema,
553
+ })
554
+ .strict();
555
+ exports.LocalControlSocketDetachClientResponseSchema = zod_1.z
556
+ .object({
557
+ detached: zod_1.z.boolean(),
558
+ })
559
+ .strict();
560
+ exports.LocalControlSocketMethodSchema = zod_1.z.enum([
561
+ "submitRun",
562
+ "resumeRun",
563
+ "streamRun",
564
+ "subscribeRuntimeEvents",
565
+ "sendBestEffort",
566
+ "sendDurable",
567
+ "listInbox",
568
+ "listDirectClientInbox",
569
+ "listPeers",
570
+ "listNearbyPeers",
571
+ "listAttachedClients",
572
+ "subscribeDirectClientInbox",
573
+ "getRuntimeStatus",
574
+ "startAutonomousLoop",
575
+ "stopAutonomousLoop",
576
+ "getRuntimeBootstrap",
577
+ "listPendingPairRequests",
578
+ "respondToPairRequest",
579
+ "createInvite",
580
+ "listPendingInvites",
581
+ "acceptInviteToken",
582
+ "cancelInvite",
583
+ "invitePeer",
584
+ "acceptInvite",
585
+ "directPair",
586
+ "revokePeer",
587
+ "repairPeer",
588
+ "attachClient",
589
+ "detachClient",
590
+ "watchInbox",
591
+ ]);
592
+ const AttachedClientAuthRequiredSocketMethods = new Set([
593
+ "listAttachedClients",
594
+ "listDirectClientInbox",
595
+ "subscribeDirectClientInbox",
596
+ ]);
597
+ exports.LocalControlSocketRequestSchema = zod_1.z
598
+ .object({
599
+ id: NonEmptyStringSchema,
600
+ method: exports.LocalControlSocketMethodSchema,
601
+ payload: zod_1.z.unknown().optional(),
602
+ auth: exports.AttachedClientAuthSchema.optional(),
603
+ })
604
+ .strict()
605
+ .superRefine((request, ctx) => {
606
+ if (AttachedClientAuthRequiredSocketMethods.has(request.method) && request.auth === undefined) {
607
+ ctx.addIssue({
608
+ code: zod_1.z.ZodIssueCode.custom,
609
+ message: `Local control socket method ${request.method} requires attached-client auth`,
610
+ path: ["auth"],
611
+ });
612
+ }
613
+ });
614
+ exports.LocalControlSocketSuccessResponseSchema = zod_1.z
615
+ .object({
616
+ id: NonEmptyStringSchema,
617
+ ok: zod_1.z.literal(true),
618
+ payload: zod_1.z.unknown().optional(),
619
+ })
620
+ .strict();
621
+ exports.LocalControlSocketErrorResponseSchema = zod_1.z
622
+ .object({
623
+ id: NonEmptyStringSchema,
624
+ ok: zod_1.z.literal(false),
625
+ error: NonEmptyStringSchema,
626
+ reason: zod_1.z.string().optional(),
627
+ diagnostic: exports.RuntimeErrorDiagnosticSchema.optional(),
628
+ })
629
+ .strict();
630
+ exports.LocalControlSocketResponseSchema = zod_1.z.discriminatedUnion("ok", [
631
+ exports.LocalControlSocketSuccessResponseSchema,
632
+ exports.LocalControlSocketErrorResponseSchema,
633
+ ]);
634
+ //# sourceMappingURL=local-control-contract.js.map
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RuntimeEventSchema = exports.RuntimeEventKindSchema = exports.RuntimeOwnerRecordSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const address_types_js_1 = require("./address-types.js");
6
+ const NonEmptyStringSchema = zod_1.z.string().trim().min(1);
7
+ const RecordSchema = zod_1.z.record(zod_1.z.string(), zod_1.z.unknown());
8
+ var address_types_js_2 = require("./address-types.js");
9
+ Object.defineProperty(exports, "RuntimeOwnerRecordSchema", { enumerable: true, get: function () { return address_types_js_2.RuntimeOwnerRecordSchema; } });
10
+ exports.RuntimeEventKindSchema = zod_1.z.enum([
11
+ "client_attached",
12
+ "client_detached",
13
+ "runtime_started",
14
+ "runtime_stopped",
15
+ "runtime_stale",
16
+ "runtime_restarted",
17
+ "pair_proposed",
18
+ "proof_committed",
19
+ "continuity_bound",
20
+ "revocation_committed",
21
+ "ingress_accepted",
22
+ "ingress_rejected",
23
+ "durable_send_queued",
24
+ "durable_send_dispatching",
25
+ "durable_send_acked",
26
+ "durable_send_expired",
27
+ ]);
28
+ exports.RuntimeEventSchema = zod_1.z
29
+ .object({
30
+ eventId: NonEmptyStringSchema,
31
+ nodeId: address_types_js_1.NodeIdSchema,
32
+ runtimeId: address_types_js_1.RuntimeIdSchema,
33
+ kind: exports.RuntimeEventKindSchema,
34
+ revision: zod_1.z.number().int().nonnegative().optional(),
35
+ recordedAt: NonEmptyStringSchema,
36
+ payload: RecordSchema,
37
+ })
38
+ .strict();
39
+ //# sourceMappingURL=node-store-contract.js.map