@astrale-os/sdk 0.5.0-beta.8 → 0.5.0-beta.81

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 (1313) hide show
  1. package/CHANGELOG.md +1370 -0
  2. package/README.md +39 -23
  3. package/dist/application/action/action.d.ts +40 -0
  4. package/dist/application/action/action.js +1 -0
  5. package/dist/application/action/authoring.d.ts +4 -0
  6. package/dist/application/action/authoring.js +1 -0
  7. package/dist/application/action/context.d.ts +71 -0
  8. package/dist/application/action/context.js +1 -0
  9. package/dist/application/action/define.d.ts +8 -0
  10. package/dist/application/action/define.js +29 -0
  11. package/dist/application/action/index.d.ts +4 -0
  12. package/dist/application/action/index.js +1 -0
  13. package/dist/application/action/output.d.ts +6 -0
  14. package/dist/application/action/output.js +1 -0
  15. package/dist/application/application.d.ts +28 -0
  16. package/dist/application/application.js +1 -0
  17. package/dist/application/define.d.ts +16 -0
  18. package/dist/application/define.js +40 -0
  19. package/dist/application/index.d.ts +9 -0
  20. package/dist/application/index.js +4 -0
  21. package/dist/application/integration/admission.d.ts +9 -0
  22. package/dist/application/integration/admission.js +21 -0
  23. package/dist/application/integration/client.d.ts +25 -0
  24. package/dist/application/integration/client.js +100 -0
  25. package/dist/application/integration/define.d.ts +24 -0
  26. package/dist/application/integration/define.js +101 -0
  27. package/dist/application/integration/index.d.ts +7 -0
  28. package/dist/application/integration/index.js +2 -0
  29. package/dist/application/integration/integration.d.ts +19 -0
  30. package/dist/application/integration/integration.js +1 -0
  31. package/dist/application/integration/operation.d.ts +35 -0
  32. package/dist/application/integration/operation.js +1 -0
  33. package/dist/application/integration/provider.d.ts +14 -0
  34. package/dist/application/integration/provider.js +1 -0
  35. package/dist/application/integration/replay.d.ts +3 -0
  36. package/dist/application/integration/replay.js +37 -0
  37. package/dist/application/mutation/authoring/builder.d.ts +55 -0
  38. package/dist/application/mutation/authoring/builder.js +102 -0
  39. package/dist/application/mutation/authoring/endpoint.d.ts +16 -0
  40. package/dist/application/mutation/authoring/endpoint.js +13 -0
  41. package/dist/application/mutation/authoring/index.d.ts +4 -0
  42. package/dist/application/mutation/authoring/index.js +1 -0
  43. package/dist/application/mutation/authoring/precondition.d.ts +7 -0
  44. package/dist/application/mutation/authoring/precondition.js +8 -0
  45. package/dist/application/mutation/authoring/properties.d.ts +22 -0
  46. package/dist/application/mutation/authoring/properties.js +29 -0
  47. package/dist/application/mutation/authoring/transition.d.ts +26 -0
  48. package/dist/application/mutation/authoring/transition.js +63 -0
  49. package/dist/application/mutation/define.d.ts +12 -0
  50. package/dist/application/mutation/define.js +56 -0
  51. package/dist/application/mutation/execution/execute.d.ts +9 -0
  52. package/dist/application/mutation/execution/execute.js +21 -0
  53. package/dist/application/mutation/execution/executor.d.ts +13 -0
  54. package/dist/application/mutation/execution/executor.js +7 -0
  55. package/dist/application/mutation/execution/index.d.ts +2 -0
  56. package/dist/application/mutation/execution/index.js +1 -0
  57. package/dist/application/mutation/execution/projection.d.ts +3 -0
  58. package/dist/application/mutation/execution/projection.js +3 -0
  59. package/dist/application/mutation/failure.d.ts +13 -0
  60. package/dist/application/mutation/failure.js +51 -0
  61. package/dist/application/mutation/index.d.ts +7 -0
  62. package/dist/application/mutation/index.js +4 -0
  63. package/dist/application/mutation/mutation.d.ts +24 -0
  64. package/dist/application/mutation/mutation.js +1 -0
  65. package/dist/application/query/collection/identity.d.ts +4 -0
  66. package/dist/application/query/collection/identity.js +15 -0
  67. package/dist/application/query/collection/limits.d.ts +5 -0
  68. package/dist/application/query/collection/limits.js +5 -0
  69. package/dist/application/query/collection/metadata.d.ts +11 -0
  70. package/dist/application/query/collection/metadata.js +62 -0
  71. package/dist/application/query/collection/union.d.ts +19 -0
  72. package/dist/application/query/collection/union.js +157 -0
  73. package/dist/application/query/composite/builder.d.ts +46 -0
  74. package/dist/application/query/composite/builder.js +176 -0
  75. package/dist/application/query/composite/errors.d.ts +7 -0
  76. package/dist/application/query/composite/errors.js +8 -0
  77. package/dist/application/query/composite/index.d.ts +4 -0
  78. package/dist/application/query/composite/index.js +3 -0
  79. package/dist/application/query/composite/plan.d.ts +24 -0
  80. package/dist/application/query/composite/plan.js +85 -0
  81. package/dist/application/query/composite/query.d.ts +44 -0
  82. package/dist/application/query/composite/query.js +1 -0
  83. package/dist/application/query/define.d.ts +48 -0
  84. package/dist/application/query/define.js +162 -0
  85. package/dist/application/query/execution/execute.d.ts +14 -0
  86. package/dist/application/query/execution/execute.js +74 -0
  87. package/dist/application/query/execution/executor.d.ts +14 -0
  88. package/dist/application/query/execution/executor.js +7 -0
  89. package/dist/application/query/execution/index.d.ts +2 -0
  90. package/dist/application/query/execution/index.js +1 -0
  91. package/dist/application/query/execution/pages.d.ts +1 -0
  92. package/dist/application/query/execution/pages.js +1 -0
  93. package/dist/application/query/execution/projection.d.ts +3 -0
  94. package/dist/application/query/execution/projection.js +3 -0
  95. package/dist/application/query/failure.d.ts +10 -0
  96. package/dist/application/query/failure.js +14 -0
  97. package/dist/application/query/index.d.ts +10 -0
  98. package/dist/application/query/index.js +6 -0
  99. package/dist/application/query/query.d.ts +35 -0
  100. package/dist/application/query/query.js +1 -0
  101. package/dist/application/query/single/index.d.ts +4 -0
  102. package/dist/application/query/single/index.js +3 -0
  103. package/dist/application/query/single/node.d.ts +18 -0
  104. package/dist/application/query/single/node.js +86 -0
  105. package/dist/application/query/single/pagination.d.ts +9 -0
  106. package/dist/application/query/single/pagination.js +24 -0
  107. package/dist/application/query/single/query.d.ts +47 -0
  108. package/dist/application/query/single/query.js +1 -0
  109. package/dist/application/query/single/selection.d.ts +2 -0
  110. package/dist/application/query/single/selection.js +23 -0
  111. package/dist/application/requirements/administration.d.ts +7 -0
  112. package/dist/application/requirements/administration.js +38 -0
  113. package/dist/application/requirements/callables.d.ts +4 -0
  114. package/dist/application/requirements/callables.js +30 -0
  115. package/dist/application/requirements/classes.d.ts +9 -0
  116. package/dist/application/requirements/classes.js +52 -0
  117. package/dist/application/requirements/index.d.ts +16 -0
  118. package/dist/application/requirements/index.js +29 -0
  119. package/dist/application/requirements/requirement.d.ts +17 -0
  120. package/dist/application/requirements/requirement.js +1 -0
  121. package/dist/application/routes/admission.d.ts +5 -0
  122. package/dist/application/routes/admission.js +15 -0
  123. package/dist/application/routes/collection.d.ts +8 -0
  124. package/dist/application/routes/collection.js +23 -0
  125. package/dist/application/routes/index.d.ts +9 -0
  126. package/dist/application/routes/index.js +45 -0
  127. package/dist/application/routes/route.d.ts +10 -0
  128. package/dist/application/routes/route.js +1 -0
  129. package/dist/application/runtime/actions.d.ts +10 -0
  130. package/dist/application/runtime/actions.js +27 -0
  131. package/dist/application/runtime/authoring.d.ts +5 -0
  132. package/dist/application/runtime/authoring.js +1 -0
  133. package/dist/application/runtime/callables.d.ts +11 -0
  134. package/dist/application/runtime/callables.js +40 -0
  135. package/dist/application/runtime/define.d.ts +28 -0
  136. package/dist/application/runtime/define.js +49 -0
  137. package/dist/application/runtime/index.d.ts +6 -0
  138. package/dist/application/runtime/index.js +2 -0
  139. package/dist/application/runtime/initialize.d.ts +10 -0
  140. package/dist/application/runtime/initialize.js +1 -0
  141. package/dist/application/runtime/integrations.d.ts +3 -0
  142. package/dist/application/runtime/integrations.js +1 -0
  143. package/dist/application/runtime/runtime.d.ts +32 -0
  144. package/dist/application/runtime/runtime.js +28 -0
  145. package/dist/application/runtime/workflows.d.ts +11 -0
  146. package/dist/application/runtime/workflows.js +33 -0
  147. package/dist/application/state/index.d.ts +2 -0
  148. package/dist/application/state/index.js +1 -0
  149. package/dist/application/view/admission.d.ts +3 -0
  150. package/dist/application/view/admission.js +8 -0
  151. package/dist/application/view/define.d.ts +4 -0
  152. package/dist/application/view/define.js +52 -0
  153. package/dist/application/view/frontend.d.ts +19 -0
  154. package/dist/application/view/frontend.js +1 -0
  155. package/dist/application/view/index.d.ts +6 -0
  156. package/dist/application/view/index.js +3 -0
  157. package/dist/application/view/route.d.ts +19 -0
  158. package/dist/application/view/route.js +131 -0
  159. package/dist/application/view/source.d.ts +16 -0
  160. package/dist/application/view/source.js +55 -0
  161. package/dist/application/workflow/authoring.d.ts +3 -0
  162. package/dist/application/workflow/authoring.js +1 -0
  163. package/dist/application/workflow/context.d.ts +8 -0
  164. package/dist/application/workflow/context.js +1 -0
  165. package/dist/application/workflow/define.d.ts +7 -0
  166. package/dist/application/workflow/define.js +32 -0
  167. package/dist/application/workflow/index.d.ts +5 -0
  168. package/dist/application/workflow/index.js +3 -0
  169. package/dist/application/workflow/runner/index.d.ts +2 -0
  170. package/dist/application/workflow/runner/index.js +1 -0
  171. package/dist/application/workflow/runner/inline.d.ts +3 -0
  172. package/dist/application/workflow/runner/inline.js +55 -0
  173. package/dist/application/workflow/runner/runner.d.ts +9 -0
  174. package/dist/application/workflow/runner/runner.js +1 -0
  175. package/dist/application/workflow/step/index.d.ts +2 -0
  176. package/dist/application/workflow/step/index.js +1 -0
  177. package/dist/application/workflow/step/run.d.ts +2 -0
  178. package/dist/application/workflow/step/run.js +10 -0
  179. package/dist/application/workflow/step/step.d.ts +4 -0
  180. package/dist/application/workflow/step/step.js +1 -0
  181. package/dist/application/workflow/workflow.d.ts +22 -0
  182. package/dist/application/workflow/workflow.js +1 -0
  183. package/dist/deployment/adapter/adapter.d.ts +22 -0
  184. package/dist/deployment/adapter/adapter.js +1 -0
  185. package/dist/deployment/adapter/define.d.ts +4 -0
  186. package/dist/deployment/adapter/define.js +68 -0
  187. package/dist/deployment/adapter/deploy/context.d.ts +9 -0
  188. package/dist/deployment/adapter/deploy/context.js +1 -0
  189. package/dist/deployment/adapter/deploy/index.d.ts +2 -0
  190. package/dist/deployment/adapter/deploy/index.js +1 -0
  191. package/dist/deployment/adapter/deploy/result.d.ts +48 -0
  192. package/dist/deployment/adapter/deploy/result.js +1 -0
  193. package/dist/deployment/adapter/development/context.d.ts +16 -0
  194. package/dist/deployment/adapter/development/context.js +1 -0
  195. package/dist/deployment/adapter/development/index.d.ts +4 -0
  196. package/dist/deployment/adapter/development/index.js +1 -0
  197. package/dist/deployment/adapter/development/input.d.ts +6 -0
  198. package/dist/deployment/adapter/development/input.js +1 -0
  199. package/dist/deployment/adapter/development/placement.d.ts +15 -0
  200. package/dist/deployment/adapter/development/placement.js +1 -0
  201. package/dist/deployment/adapter/development/session.d.ts +9 -0
  202. package/dist/deployment/adapter/development/session.js +1 -0
  203. package/dist/deployment/adapter/index.d.ts +5 -0
  204. package/dist/deployment/adapter/index.js +1 -0
  205. package/dist/deployment/adapter/prepare/artifact.d.ts +33 -0
  206. package/dist/deployment/adapter/prepare/artifact.js +1 -0
  207. package/dist/deployment/adapter/prepare/context.d.ts +15 -0
  208. package/dist/deployment/adapter/prepare/context.js +1 -0
  209. package/dist/deployment/adapter/prepare/index.d.ts +2 -0
  210. package/dist/deployment/adapter/prepare/index.js +1 -0
  211. package/dist/deployment/authoring.d.ts +5 -0
  212. package/dist/deployment/authoring.js +2 -0
  213. package/dist/deployment/build/admission.d.ts +12 -0
  214. package/dist/deployment/build/admission.js +15 -0
  215. package/dist/deployment/build/build.d.ts +13 -0
  216. package/dist/deployment/build/build.js +1 -0
  217. package/dist/deployment/build/compile.d.ts +9 -0
  218. package/dist/deployment/build/compile.js +81 -0
  219. package/dist/deployment/build/frontend/compilation.d.ts +18 -0
  220. package/dist/deployment/build/frontend/compilation.js +29 -0
  221. package/dist/deployment/build/frontend/digest.d.ts +4 -0
  222. package/dist/deployment/build/frontend/digest.js +23 -0
  223. package/dist/deployment/build/frontend/files.d.ts +13 -0
  224. package/dist/deployment/build/frontend/files.js +61 -0
  225. package/dist/deployment/build/frontend/index.d.ts +6 -0
  226. package/dist/deployment/build/frontend/index.js +4 -0
  227. package/dist/deployment/build/frontend/provenance.d.ts +7 -0
  228. package/dist/deployment/build/frontend/provenance.js +12 -0
  229. package/dist/deployment/build/index.d.ts +6 -0
  230. package/dist/deployment/build/index.js +4 -0
  231. package/dist/deployment/build/material.d.ts +42 -0
  232. package/dist/deployment/build/material.js +201 -0
  233. package/dist/deployment/build/schema.d.ts +10 -0
  234. package/dist/deployment/build/schema.js +1 -0
  235. package/dist/deployment/deploy.d.ts +14 -0
  236. package/dist/deployment/deploy.js +31 -0
  237. package/dist/deployment/deployment.d.ts +6 -0
  238. package/dist/deployment/deployment.js +1 -0
  239. package/dist/deployment/index.d.ts +13 -7
  240. package/dist/deployment/index.js +6 -4
  241. package/dist/deployment/release/addressing.d.ts +7 -0
  242. package/dist/deployment/release/addressing.js +27 -0
  243. package/dist/deployment/release/admission.d.ts +3 -0
  244. package/dist/deployment/release/admission.js +8 -0
  245. package/dist/deployment/release/assemble.d.ts +5 -0
  246. package/dist/deployment/release/assemble.js +20 -0
  247. package/dist/deployment/release/index.d.ts +5 -0
  248. package/dist/deployment/release/index.js +4 -0
  249. package/dist/deployment/release/invocation.d.ts +2 -0
  250. package/dist/deployment/release/invocation.js +5 -0
  251. package/dist/deployment/release/publication/callables.d.ts +4 -0
  252. package/dist/deployment/release/publication/callables.js +8 -0
  253. package/dist/deployment/release/publication/index.d.ts +6 -0
  254. package/dist/deployment/release/publication/index.js +6 -0
  255. package/dist/deployment/release/publication/manifest.d.ts +3 -0
  256. package/dist/deployment/release/publication/manifest.js +5 -0
  257. package/dist/deployment/release/publication/requirements.d.ts +3 -0
  258. package/dist/deployment/release/publication/requirements.js +3 -0
  259. package/dist/deployment/release/publication/routes.d.ts +4 -0
  260. package/dist/deployment/release/publication/routes.js +4 -0
  261. package/dist/deployment/release/publication/seal.d.ts +11 -0
  262. package/dist/deployment/release/publication/seal.js +40 -0
  263. package/dist/deployment/release/publication/views.d.ts +4 -0
  264. package/dist/deployment/release/publication/views.js +13 -0
  265. package/dist/deployment/release/release.d.ts +11 -0
  266. package/dist/deployment/release/release.js +1 -0
  267. package/dist/deployment/release/runtime.d.ts +2 -0
  268. package/dist/deployment/release/runtime.js +2 -0
  269. package/dist/deployment/runtime/admission.d.ts +5 -0
  270. package/dist/deployment/runtime/admission.js +11 -0
  271. package/dist/deployment/runtime/index.d.ts +3 -0
  272. package/dist/deployment/runtime/index.js +3 -0
  273. package/dist/deployment/runtime/reference.d.ts +7 -0
  274. package/dist/deployment/runtime/reference.js +16 -0
  275. package/dist/deployment/runtime/resolve.d.ts +10 -0
  276. package/dist/deployment/runtime/resolve.js +29 -0
  277. package/dist/deployment/verify/index.d.ts +4 -0
  278. package/dist/deployment/verify/index.js +3 -0
  279. package/dist/deployment/verify/preflight/artifact.d.ts +6 -0
  280. package/dist/deployment/verify/preflight/artifact.js +122 -0
  281. package/dist/deployment/verify/preflight/build.d.ts +2 -0
  282. package/dist/deployment/verify/preflight/build.js +6 -0
  283. package/dist/deployment/verify/preflight/index.d.ts +13 -0
  284. package/dist/deployment/verify/preflight/index.js +13 -0
  285. package/dist/deployment/verify/preflight/publication.d.ts +4 -0
  286. package/dist/deployment/verify/preflight/publication.js +14 -0
  287. package/dist/deployment/verify/readiness/deployment.d.ts +3 -0
  288. package/dist/deployment/verify/readiness/deployment.js +147 -0
  289. package/dist/deployment/verify/readiness/identity.d.ts +7 -0
  290. package/dist/deployment/verify/readiness/identity.js +29 -0
  291. package/dist/deployment/verify/readiness/index.d.ts +10 -0
  292. package/dist/deployment/verify/readiness/index.js +10 -0
  293. package/dist/deployment/verify/readiness/publication.d.ts +11 -0
  294. package/dist/deployment/verify/readiness/publication.js +41 -0
  295. package/dist/execution/identity/authentication.d.ts +21 -0
  296. package/dist/execution/identity/authentication.js +162 -0
  297. package/dist/execution/identity/callback.d.ts +44 -0
  298. package/dist/execution/identity/callback.js +105 -0
  299. package/dist/execution/identity/delivery.d.ts +6 -0
  300. package/dist/execution/identity/delivery.js +34 -0
  301. package/dist/execution/identity/errors.d.ts +22 -0
  302. package/dist/execution/identity/errors.js +61 -0
  303. package/dist/execution/identity/exchange.d.ts +9 -0
  304. package/dist/execution/identity/exchange.js +115 -0
  305. package/dist/execution/identity/identity.d.ts +24 -0
  306. package/dist/execution/identity/identity.js +99 -0
  307. package/dist/execution/identity/index.d.ts +2 -0
  308. package/dist/execution/identity/index.js +2 -0
  309. package/dist/execution/identity/jwks.d.ts +29 -0
  310. package/dist/execution/identity/jwks.js +252 -0
  311. package/dist/execution/identity/signing.d.ts +9 -0
  312. package/dist/execution/identity/signing.js +28 -0
  313. package/dist/execution/index.d.ts +5 -0
  314. package/dist/execution/index.js +3 -0
  315. package/dist/execution/invocation/admission/authentication.d.ts +13 -0
  316. package/dist/execution/invocation/admission/authentication.js +142 -0
  317. package/dist/execution/invocation/admission/authority.d.ts +34 -0
  318. package/dist/execution/invocation/admission/authority.js +23 -0
  319. package/dist/execution/invocation/admission/index.d.ts +5 -0
  320. package/dist/execution/invocation/admission/index.js +4 -0
  321. package/dist/execution/invocation/admission/input.d.ts +2 -0
  322. package/dist/execution/invocation/admission/input.js +4 -0
  323. package/dist/execution/invocation/admission/target.d.ts +8 -0
  324. package/dist/execution/invocation/admission/target.js +30 -0
  325. package/dist/execution/invocation/dispatch/action.d.ts +3 -0
  326. package/dist/execution/invocation/dispatch/action.js +3 -0
  327. package/dist/execution/invocation/dispatch/context.d.ts +22 -0
  328. package/dist/execution/invocation/dispatch/context.js +43 -0
  329. package/dist/execution/invocation/dispatch/index.d.ts +5 -0
  330. package/dist/execution/invocation/dispatch/index.js +5 -0
  331. package/dist/execution/invocation/dispatch/receiver.d.ts +4 -0
  332. package/dist/execution/invocation/dispatch/receiver.js +18 -0
  333. package/dist/execution/invocation/dispatch/select.d.ts +10 -0
  334. package/dist/execution/invocation/dispatch/select.js +20 -0
  335. package/dist/execution/invocation/dispatch/workflow.d.ts +4 -0
  336. package/dist/execution/invocation/dispatch/workflow.js +11 -0
  337. package/dist/execution/invocation/handler.d.ts +7 -0
  338. package/dist/execution/invocation/handler.js +37 -0
  339. package/dist/execution/invocation/index.d.ts +5 -0
  340. package/dist/execution/invocation/index.js +3 -0
  341. package/dist/execution/invocation/integration/call.d.ts +5 -0
  342. package/dist/execution/invocation/integration/call.js +19 -0
  343. package/dist/execution/invocation/integration/clients.d.ts +5 -0
  344. package/dist/execution/invocation/integration/clients.js +4 -0
  345. package/dist/execution/invocation/integration/index.d.ts +2 -0
  346. package/dist/execution/invocation/integration/index.js +2 -0
  347. package/dist/execution/invocation/invocation.d.ts +10 -0
  348. package/dist/execution/invocation/invocation.js +53 -0
  349. package/dist/execution/invocation/lifecycle/active.d.ts +4 -0
  350. package/dist/execution/invocation/lifecycle/active.js +61 -0
  351. package/dist/execution/invocation/lifecycle/index.d.ts +1 -0
  352. package/dist/execution/invocation/lifecycle/index.js +1 -0
  353. package/dist/execution/invocation/result/errors.d.ts +22 -0
  354. package/dist/execution/invocation/result/errors.js +92 -0
  355. package/dist/execution/invocation/result/index.d.ts +4 -0
  356. package/dist/execution/invocation/result/index.js +3 -0
  357. package/dist/execution/invocation/result/project.d.ts +3 -0
  358. package/dist/execution/invocation/result/project.js +186 -0
  359. package/dist/execution/invocation/result/validate.d.ts +4 -0
  360. package/dist/execution/invocation/result/validate.js +25 -0
  361. package/dist/execution/node/index.d.ts +2 -0
  362. package/dist/execution/node/index.js +1 -0
  363. package/dist/execution/node/listener.d.ts +10 -0
  364. package/dist/execution/node/listener.js +25 -0
  365. package/dist/execution/node/serve.d.ts +9 -0
  366. package/dist/execution/node/serve.js +44 -0
  367. package/dist/execution/runtime/admission.d.ts +3 -0
  368. package/dist/execution/runtime/admission.js +8 -0
  369. package/dist/execution/runtime/index.d.ts +5 -0
  370. package/dist/execution/runtime/index.js +5 -0
  371. package/dist/execution/runtime/initialize.d.ts +11 -0
  372. package/dist/execution/runtime/initialize.js +13 -0
  373. package/dist/execution/runtime/integrations.d.ts +3 -0
  374. package/dist/execution/runtime/integrations.js +5 -0
  375. package/dist/execution/runtime/load.d.ts +14 -0
  376. package/dist/execution/runtime/load.js +12 -0
  377. package/dist/execution/runtime/providers.d.ts +3 -0
  378. package/dist/execution/runtime/providers.js +12 -0
  379. package/dist/execution/serve.d.ts +27 -0
  380. package/dist/execution/serve.js +61 -0
  381. package/dist/execution/service/create.d.ts +4 -0
  382. package/dist/execution/service/create.js +113 -0
  383. package/dist/execution/service/errors.d.ts +3 -0
  384. package/dist/execution/service/errors.js +3 -0
  385. package/dist/execution/service/index.d.ts +3 -0
  386. package/dist/execution/service/index.js +1 -0
  387. package/dist/execution/service/initialization.d.ts +6 -0
  388. package/dist/execution/service/initialization.js +18 -0
  389. package/dist/execution/service/lifecycle.d.ts +7 -0
  390. package/dist/execution/service/lifecycle.js +25 -0
  391. package/dist/execution/service/publication/delivery.d.ts +2 -0
  392. package/dist/execution/service/publication/delivery.js +9 -0
  393. package/dist/execution/service/publication/index.d.ts +3 -0
  394. package/dist/execution/service/publication/index.js +3 -0
  395. package/dist/execution/service/publication/installation.d.ts +3 -0
  396. package/dist/execution/service/publication/installation.js +8 -0
  397. package/dist/execution/service/publication/source.d.ts +3 -0
  398. package/dist/execution/service/publication/source.js +11 -0
  399. package/dist/execution/service/release.d.ts +7 -0
  400. package/dist/execution/service/release.js +12 -0
  401. package/dist/execution/service/service.d.ts +23 -0
  402. package/dist/execution/service/service.js +1 -0
  403. package/dist/index.d.ts +19 -21
  404. package/dist/index.js +10 -11
  405. package/dist/platform/auth/exchange/configuration.d.ts +3 -0
  406. package/dist/platform/auth/exchange/configuration.js +3 -0
  407. package/dist/platform/auth/exchange/index.d.ts +2 -0
  408. package/dist/platform/auth/exchange/index.js +2 -0
  409. package/dist/platform/auth/exchange/response.d.ts +2 -0
  410. package/dist/platform/auth/exchange/response.js +2 -0
  411. package/dist/platform/auth/index.d.ts +4 -0
  412. package/dist/platform/auth/index.js +4 -0
  413. package/dist/platform/client/index.d.ts +5 -0
  414. package/dist/platform/client/index.js +4 -0
  415. package/dist/platform/client/schema/index.d.ts +2 -0
  416. package/dist/platform/client/schema/index.js +2 -0
  417. package/dist/platform/client/session/index.d.ts +2 -0
  418. package/dist/platform/client/session/index.js +2 -0
  419. package/dist/platform/client/store/index.d.ts +2 -0
  420. package/dist/platform/client/store/index.js +2 -0
  421. package/dist/platform/graph/class/index.d.ts +4 -0
  422. package/dist/platform/graph/class/index.js +2 -0
  423. package/dist/platform/graph/document/index.d.ts +2 -0
  424. package/dist/platform/graph/document/index.js +2 -0
  425. package/dist/platform/graph/edge/index.d.ts +2 -0
  426. package/dist/platform/graph/edge/index.js +2 -0
  427. package/dist/platform/graph/index.d.ts +13 -0
  428. package/dist/platform/graph/index.js +12 -0
  429. package/dist/platform/graph/node/index.d.ts +2 -0
  430. package/dist/platform/graph/node/index.js +2 -0
  431. package/dist/platform/graph/path/index.d.ts +2 -0
  432. package/dist/platform/graph/path/index.js +2 -0
  433. package/dist/platform/graph/properties/index.d.ts +2 -0
  434. package/dist/platform/graph/properties/index.js +2 -0
  435. package/dist/platform/invocation/index.d.ts +2 -0
  436. package/dist/platform/invocation/index.js +2 -0
  437. package/dist/platform/publication/index.d.ts +2 -0
  438. package/dist/platform/publication/index.js +2 -0
  439. package/dist/platform/result/index.d.ts +2 -0
  440. package/dist/platform/result/index.js +1 -0
  441. package/dist/platform/result/result.d.ts +10 -0
  442. package/dist/platform/result/result.js +6 -0
  443. package/dist/platform/schema/addressing/index.d.ts +3 -0
  444. package/dist/platform/schema/addressing/index.js +2 -0
  445. package/dist/platform/schema/index.d.ts +18 -0
  446. package/dist/platform/schema/index.js +8 -0
  447. package/dist/platform/value/index.d.ts +3 -0
  448. package/dist/platform/value/index.js +3 -0
  449. package/dist/tooling/cli/arguments.d.ts +14 -0
  450. package/dist/tooling/cli/arguments.js +184 -0
  451. package/dist/tooling/cli/bin.d.ts +6 -0
  452. package/dist/tooling/cli/bin.js +36 -0
  453. package/dist/tooling/cli/bun.d.ts +15 -0
  454. package/dist/tooling/cli/bun.js +108 -0
  455. package/dist/tooling/cli/development/develop.d.ts +9 -0
  456. package/dist/tooling/cli/development/develop.js +397 -0
  457. package/dist/tooling/cli/development/lifecycle.d.ts +9 -0
  458. package/dist/tooling/cli/development/lifecycle.js +39 -0
  459. package/dist/tooling/cli/development/project-lock.d.ts +17 -0
  460. package/dist/tooling/cli/development/project-lock.js +193 -0
  461. package/dist/tooling/cli/development/rebuild.d.ts +13 -0
  462. package/dist/tooling/cli/development/rebuild.js +58 -0
  463. package/dist/tooling/cli/development/session-file.d.ts +53 -0
  464. package/dist/tooling/cli/development/session-file.js +337 -0
  465. package/dist/tooling/cli/development/source-watch.d.ts +14 -0
  466. package/dist/tooling/cli/development/source-watch.js +92 -0
  467. package/dist/tooling/cli/dotenv.d.ts +17 -0
  468. package/dist/tooling/cli/dotenv.js +54 -0
  469. package/dist/tooling/cli/failure.d.ts +2 -0
  470. package/dist/tooling/cli/failure.js +13 -0
  471. package/dist/tooling/cli/help.d.ts +8 -0
  472. package/dist/tooling/cli/help.js +122 -0
  473. package/dist/tooling/cli/index.d.ts +16 -0
  474. package/dist/tooling/cli/index.js +15 -0
  475. package/dist/tooling/cli/log.d.ts +10 -0
  476. package/dist/tooling/cli/log.js +16 -0
  477. package/dist/tooling/cli/orchestrate.d.ts +1 -0
  478. package/dist/tooling/cli/orchestrate.js +160 -0
  479. package/dist/tooling/cli/run.d.ts +1 -0
  480. package/dist/tooling/cli/run.js +1 -0
  481. package/dist/tooling/cli/source.d.ts +2 -0
  482. package/dist/tooling/cli/source.js +2 -0
  483. package/dist/tooling/linter/adapters/typescript/discover.d.ts +3 -0
  484. package/dist/tooling/linter/adapters/typescript/discover.js +423 -0
  485. package/dist/tooling/linter/adapters/typescript/evidence-admission.d.ts +4 -0
  486. package/dist/tooling/linter/adapters/typescript/evidence-admission.js +21 -0
  487. package/dist/tooling/linter/adapters/typescript/imports.d.ts +6 -0
  488. package/dist/tooling/linter/adapters/typescript/imports.js +170 -0
  489. package/dist/tooling/linter/adapters/typescript/index.d.ts +48 -0
  490. package/dist/tooling/linter/adapters/typescript/index.js +8 -0
  491. package/dist/tooling/linter/adapters/typescript/query-collection-type.d.ts +4 -0
  492. package/dist/tooling/linter/adapters/typescript/query-collection-type.js +94 -0
  493. package/dist/tooling/linter/adapters/typescript/query-observation.d.ts +3 -0
  494. package/dist/tooling/linter/adapters/typescript/query-observation.js +228 -0
  495. package/dist/tooling/linter/adapters/typescript/suppression-directives.d.ts +4 -0
  496. package/dist/tooling/linter/adapters/typescript/suppression-directives.js +84 -0
  497. package/dist/tooling/linter/adapters/typescript/syntax.d.ts +38 -0
  498. package/dist/tooling/linter/adapters/typescript/syntax.js +182 -0
  499. package/dist/tooling/linter/adapters/typescript/type-universe.d.ts +1 -0
  500. package/dist/tooling/linter/adapters/typescript/type-universe.js +264 -0
  501. package/dist/tooling/linter/analysis/query/decision.d.ts +4 -0
  502. package/dist/tooling/linter/analysis/query/decision.js +73 -0
  503. package/dist/tooling/linter/analysis/query/index.d.ts +3 -0
  504. package/dist/tooling/linter/analysis/query/index.js +2 -0
  505. package/dist/tooling/linter/analysis/query/observation.d.ts +35 -0
  506. package/dist/tooling/linter/analysis/query/observation.js +12 -0
  507. package/dist/tooling/linter/catalog/compile.d.ts +2 -0
  508. package/dist/tooling/linter/catalog/compile.js +110 -0
  509. package/dist/tooling/linter/catalog/index.d.ts +18 -0
  510. package/dist/tooling/linter/catalog/index.js +2 -0
  511. package/dist/tooling/linter/catalog/revision.d.ts +6 -0
  512. package/dist/tooling/linter/catalog/revision.js +12 -0
  513. package/dist/tooling/linter/diagnostics/error.d.ts +9 -0
  514. package/dist/tooling/linter/diagnostics/error.js +9 -0
  515. package/dist/tooling/linter/diagnostics/index.d.ts +28 -0
  516. package/dist/tooling/linter/diagnostics/index.js +2 -0
  517. package/dist/tooling/linter/diagnostics/sort.d.ts +2 -0
  518. package/dist/tooling/linter/diagnostics/sort.js +26 -0
  519. package/dist/tooling/linter/evaluation/binding/bind.d.ts +4 -0
  520. package/dist/tooling/linter/evaluation/binding/bind.js +384 -0
  521. package/dist/tooling/linter/evaluation/binding/diagnostic.d.ts +4 -0
  522. package/dist/tooling/linter/evaluation/binding/diagnostic.js +16 -0
  523. package/dist/tooling/linter/evaluation/binding/index.d.ts +1 -0
  524. package/dist/tooling/linter/evaluation/binding/index.js +1 -0
  525. package/dist/tooling/linter/evaluation/contract/availability.d.ts +30 -0
  526. package/dist/tooling/linter/evaluation/contract/availability.js +1 -0
  527. package/dist/tooling/linter/evaluation/contract/decision.d.ts +25 -0
  528. package/dist/tooling/linter/evaluation/contract/decision.js +1 -0
  529. package/dist/tooling/linter/evaluation/contract/evidence.d.ts +11 -0
  530. package/dist/tooling/linter/evaluation/contract/evidence.js +1 -0
  531. package/dist/tooling/linter/evaluation/contract/implementation.d.ts +21 -0
  532. package/dist/tooling/linter/evaluation/contract/implementation.js +1 -0
  533. package/dist/tooling/linter/evaluation/contract/index.d.ts +4 -0
  534. package/dist/tooling/linter/evaluation/contract/index.js +1 -0
  535. package/dist/tooling/linter/evaluation/index.d.ts +2 -0
  536. package/dist/tooling/linter/evaluation/index.js +1 -0
  537. package/dist/tooling/linter/implementations/source/actions.d.ts +2 -0
  538. package/dist/tooling/linter/implementations/source/actions.js +184 -0
  539. package/dist/tooling/linter/implementations/source/global.d.ts +2 -0
  540. package/dist/tooling/linter/implementations/source/global.js +963 -0
  541. package/dist/tooling/linter/implementations/source/index.d.ts +3 -0
  542. package/dist/tooling/linter/implementations/source/index.js +3 -0
  543. package/dist/tooling/linter/implementations/source/integrations.d.ts +2 -0
  544. package/dist/tooling/linter/implementations/source/integrations.js +40 -0
  545. package/dist/tooling/linter/implementations/source/migrations.d.ts +2 -0
  546. package/dist/tooling/linter/implementations/source/migrations.js +114 -0
  547. package/dist/tooling/linter/implementations/source/mutations.d.ts +2 -0
  548. package/dist/tooling/linter/implementations/source/mutations.js +946 -0
  549. package/dist/tooling/linter/implementations/source/providers.d.ts +2 -0
  550. package/dist/tooling/linter/implementations/source/providers.js +376 -0
  551. package/dist/tooling/linter/implementations/source/queries.d.ts +2 -0
  552. package/dist/tooling/linter/implementations/source/queries.js +1176 -0
  553. package/dist/tooling/linter/implementations/source/rules.d.ts +2 -0
  554. package/dist/tooling/linter/implementations/source/rules.js +140 -0
  555. package/dist/tooling/linter/implementations/source/schema.d.ts +2 -0
  556. package/dist/tooling/linter/implementations/source/schema.js +368 -0
  557. package/dist/tooling/linter/implementations/source/shared.d.ts +44 -0
  558. package/dist/tooling/linter/implementations/source/shared.js +319 -0
  559. package/dist/tooling/linter/implementations/source/state-machine.d.ts +24 -0
  560. package/dist/tooling/linter/implementations/source/state-machine.js +364 -0
  561. package/dist/tooling/linter/implementations/source/states.d.ts +2 -0
  562. package/dist/tooling/linter/implementations/source/states.js +367 -0
  563. package/dist/tooling/linter/implementations/source/tests.d.ts +2 -0
  564. package/dist/tooling/linter/implementations/source/tests.js +35 -0
  565. package/dist/tooling/linter/implementations/source/ui.d.ts +2 -0
  566. package/dist/tooling/linter/implementations/source/ui.js +20 -0
  567. package/dist/tooling/linter/implementations/source/utility-rules.d.ts +2 -0
  568. package/dist/tooling/linter/implementations/source/utility-rules.js +28 -0
  569. package/dist/tooling/linter/implementations/source/verifier.d.ts +16 -0
  570. package/dist/tooling/linter/implementations/source/verifier.js +52 -0
  571. package/dist/tooling/linter/implementations/source/verifiers.d.ts +2 -0
  572. package/dist/tooling/linter/implementations/source/verifiers.js +32 -0
  573. package/dist/tooling/linter/implementations/source/views.d.ts +2 -0
  574. package/dist/tooling/linter/implementations/source/views.js +57 -0
  575. package/dist/tooling/linter/implementations/source/workflows.d.ts +2 -0
  576. package/dist/tooling/linter/implementations/source/workflows.js +265 -0
  577. package/dist/tooling/linter/index.d.ts +9 -0
  578. package/dist/tooling/linter/index.js +3 -0
  579. package/dist/tooling/linter/lint.d.ts +25 -0
  580. package/dist/tooling/linter/lint.js +70 -0
  581. package/dist/tooling/linter/oxlint/index.d.ts +3 -0
  582. package/dist/tooling/linter/oxlint/index.js +1 -0
  583. package/dist/tooling/linter/oxlint/process.d.ts +18 -0
  584. package/dist/tooling/linter/oxlint/process.js +169 -0
  585. package/dist/tooling/linter/oxlint/run.d.ts +7 -0
  586. package/dist/tooling/linter/oxlint/run.js +253 -0
  587. package/dist/tooling/linter/oxlint-config/ignore-patterns.d.ts +5 -0
  588. package/dist/tooling/linter/oxlint-config/ignore-patterns.js +9 -0
  589. package/dist/tooling/linter/oxlint-config/index.d.ts +4 -0
  590. package/dist/tooling/linter/oxlint-config/index.js +38 -0
  591. package/dist/tooling/linter/packs/domain.d.ts +2 -0
  592. package/dist/tooling/linter/packs/domain.js +7 -0
  593. package/dist/tooling/linter/packs/index.d.ts +8 -0
  594. package/dist/tooling/linter/packs/index.js +1 -0
  595. package/dist/tooling/linter/policy/compile.d.ts +2 -0
  596. package/dist/tooling/linter/policy/compile.js +271 -0
  597. package/dist/tooling/linter/policy/configuration.d.ts +21 -0
  598. package/dist/tooling/linter/policy/configuration.js +149 -0
  599. package/dist/tooling/linter/policy/generated.d.ts +4 -0
  600. package/dist/tooling/linter/policy/generated.js +856 -0
  601. package/dist/tooling/linter/policy/index.d.ts +45 -0
  602. package/dist/tooling/linter/policy/index.js +3 -0
  603. package/dist/tooling/linter/qualification/index.d.ts +10 -0
  604. package/dist/tooling/linter/qualification/index.js +2 -0
  605. package/dist/tooling/linter/qualification/query-fixtures.d.ts +2 -0
  606. package/dist/tooling/linter/qualification/query-fixtures.js +68 -0
  607. package/dist/tooling/linter/qualification/runner.d.ts +3 -0
  608. package/dist/tooling/linter/qualification/runner.js +6 -0
  609. package/dist/tooling/linter/report/format.d.ts +3 -0
  610. package/dist/tooling/linter/report/format.js +46 -0
  611. package/dist/tooling/linter/report/index.d.ts +2 -0
  612. package/dist/tooling/linter/report/index.js +1 -0
  613. package/dist/tooling/linter/requirements/index.d.ts +2 -0
  614. package/dist/tooling/linter/requirements/index.js +1 -0
  615. package/dist/tooling/linter/requirements/registry.d.ts +3 -0
  616. package/dist/tooling/linter/requirements/registry.js +192 -0
  617. package/dist/tooling/linter/requirements/requirement.d.ts +8 -0
  618. package/dist/tooling/linter/requirements/requirement.js +1 -0
  619. package/dist/tooling/linter/suppression/apply.d.ts +3 -0
  620. package/dist/tooling/linter/suppression/apply.js +47 -0
  621. package/dist/tooling/linter/suppression/directive.d.ts +10 -0
  622. package/dist/tooling/linter/suppression/directive.js +1 -0
  623. package/dist/tooling/linter/suppression/index.d.ts +13 -0
  624. package/dist/tooling/linter/suppression/index.js +1 -0
  625. package/dist/tooling/packaging/admission.d.ts +9 -0
  626. package/dist/tooling/packaging/admission.js +93 -0
  627. package/dist/tooling/packaging/compile.d.ts +15 -0
  628. package/dist/tooling/packaging/compile.js +366 -0
  629. package/dist/tooling/packaging/declarations/admission.d.ts +7 -0
  630. package/dist/tooling/packaging/declarations/admission.js +56 -0
  631. package/dist/tooling/packaging/declarations/admission.typecheck.d.ts +7 -0
  632. package/dist/tooling/packaging/declarations/admission.typecheck.js +1 -0
  633. package/dist/tooling/packaging/declarations/imports.d.ts +16 -0
  634. package/dist/tooling/packaging/declarations/imports.js +50 -0
  635. package/dist/tooling/packaging/declarations/index.d.ts +7 -0
  636. package/dist/tooling/packaging/declarations/index.js +9 -0
  637. package/dist/tooling/packaging/declarations/normalize.d.ts +13 -0
  638. package/dist/tooling/packaging/declarations/normalize.js +135 -0
  639. package/dist/tooling/packaging/declarations/ownership.d.ts +9 -0
  640. package/dist/tooling/packaging/declarations/ownership.js +85 -0
  641. package/dist/tooling/packaging/declarations/references.d.ts +5 -0
  642. package/dist/tooling/packaging/declarations/references.js +38 -0
  643. package/dist/tooling/packaging/declarations/transform.d.ts +11 -0
  644. package/dist/tooling/packaging/declarations/transform.js +76 -0
  645. package/dist/tooling/packaging/declarations/verify.d.ts +11 -0
  646. package/dist/tooling/packaging/declarations/verify.js +44 -0
  647. package/dist/tooling/packaging/exports.d.ts +11 -0
  648. package/dist/tooling/packaging/exports.js +61 -0
  649. package/dist/tooling/packaging/index.d.ts +2 -0
  650. package/dist/tooling/packaging/index.js +1 -0
  651. package/dist/tooling/packaging/javascript.d.ts +3 -0
  652. package/dist/tooling/packaging/javascript.js +71 -0
  653. package/dist/tooling/packaging/packaging.d.ts +10 -0
  654. package/dist/tooling/packaging/packaging.js +198 -0
  655. package/dist/tooling/packaging/self.d.ts +9 -0
  656. package/dist/tooling/packaging/self.js +25 -0
  657. package/package.json +180 -113
  658. package/dist/auth/exchange.d.ts +0 -11
  659. package/dist/auth/exchange.d.ts.map +0 -1
  660. package/dist/auth/exchange.js +0 -8
  661. package/dist/auth/exchange.js.map +0 -1
  662. package/dist/auth/index.d.ts +0 -9
  663. package/dist/auth/index.d.ts.map +0 -1
  664. package/dist/auth/index.js +0 -4
  665. package/dist/auth/index.js.map +0 -1
  666. package/dist/capability/client.d.ts +0 -25
  667. package/dist/capability/client.d.ts.map +0 -1
  668. package/dist/capability/client.js +0 -147
  669. package/dist/capability/client.js.map +0 -1
  670. package/dist/capability/contract.d.ts +0 -70
  671. package/dist/capability/contract.d.ts.map +0 -1
  672. package/dist/capability/contract.js +0 -3
  673. package/dist/capability/contract.js.map +0 -1
  674. package/dist/capability/define.d.ts +0 -14
  675. package/dist/capability/define.d.ts.map +0 -1
  676. package/dist/capability/define.js +0 -145
  677. package/dist/capability/define.js.map +0 -1
  678. package/dist/capability/index.d.ts +0 -3
  679. package/dist/capability/index.d.ts.map +0 -1
  680. package/dist/capability/index.js +0 -2
  681. package/dist/capability/index.js.map +0 -1
  682. package/dist/cli/arguments.d.ts +0 -21
  683. package/dist/cli/arguments.d.ts.map +0 -1
  684. package/dist/cli/arguments.js +0 -220
  685. package/dist/cli/arguments.js.map +0 -1
  686. package/dist/cli/bin.d.ts +0 -7
  687. package/dist/cli/bin.d.ts.map +0 -1
  688. package/dist/cli/bin.js +0 -15
  689. package/dist/cli/bin.js.map +0 -1
  690. package/dist/cli/dotenv.d.ts +0 -18
  691. package/dist/cli/dotenv.d.ts.map +0 -1
  692. package/dist/cli/dotenv.js +0 -55
  693. package/dist/cli/dotenv.js.map +0 -1
  694. package/dist/cli/index.d.ts +0 -14
  695. package/dist/cli/index.d.ts.map +0 -1
  696. package/dist/cli/index.js +0 -14
  697. package/dist/cli/index.js.map +0 -1
  698. package/dist/cli/log.d.ts +0 -11
  699. package/dist/cli/log.d.ts.map +0 -1
  700. package/dist/cli/log.js +0 -17
  701. package/dist/cli/log.js.map +0 -1
  702. package/dist/cli/publish.d.ts +0 -35
  703. package/dist/cli/publish.d.ts.map +0 -1
  704. package/dist/cli/publish.js +0 -271
  705. package/dist/cli/publish.js.map +0 -1
  706. package/dist/cli/run.d.ts +0 -30
  707. package/dist/cli/run.d.ts.map +0 -1
  708. package/dist/cli/run.js +0 -390
  709. package/dist/cli/run.js.map +0 -1
  710. package/dist/deployment/artifact/bindings.d.ts +0 -7
  711. package/dist/deployment/artifact/bindings.d.ts.map +0 -1
  712. package/dist/deployment/artifact/bindings.js +0 -44
  713. package/dist/deployment/artifact/bindings.js.map +0 -1
  714. package/dist/deployment/artifact/deployment.d.ts +0 -50
  715. package/dist/deployment/artifact/deployment.d.ts.map +0 -1
  716. package/dist/deployment/artifact/deployment.js +0 -124
  717. package/dist/deployment/artifact/deployment.js.map +0 -1
  718. package/dist/deployment/artifact/index.d.ts +0 -5
  719. package/dist/deployment/artifact/index.d.ts.map +0 -1
  720. package/dist/deployment/artifact/index.js +0 -4
  721. package/dist/deployment/artifact/index.js.map +0 -1
  722. package/dist/deployment/check/check.d.ts +0 -8
  723. package/dist/deployment/check/check.d.ts.map +0 -1
  724. package/dist/deployment/check/check.js +0 -87
  725. package/dist/deployment/check/check.js.map +0 -1
  726. package/dist/deployment/check/contract.d.ts +0 -29
  727. package/dist/deployment/check/contract.d.ts.map +0 -1
  728. package/dist/deployment/check/contract.js +0 -2
  729. package/dist/deployment/check/contract.js.map +0 -1
  730. package/dist/deployment/check/index.d.ts +0 -3
  731. package/dist/deployment/check/index.d.ts.map +0 -1
  732. package/dist/deployment/check/index.js +0 -2
  733. package/dist/deployment/check/index.js.map +0 -1
  734. package/dist/deployment/index.d.ts.map +0 -1
  735. package/dist/deployment/index.js.map +0 -1
  736. package/dist/deployment/provider/adapter.d.ts +0 -56
  737. package/dist/deployment/provider/adapter.d.ts.map +0 -1
  738. package/dist/deployment/provider/adapter.js +0 -84
  739. package/dist/deployment/provider/adapter.js.map +0 -1
  740. package/dist/deployment/provider/config.d.ts +0 -10
  741. package/dist/deployment/provider/config.d.ts.map +0 -1
  742. package/dist/deployment/provider/config.js +0 -8
  743. package/dist/deployment/provider/config.js.map +0 -1
  744. package/dist/deployment/provider/index.d.ts +0 -5
  745. package/dist/deployment/provider/index.d.ts.map +0 -1
  746. package/dist/deployment/provider/index.js +0 -3
  747. package/dist/deployment/provider/index.js.map +0 -1
  748. package/dist/domain/app.d.ts +0 -34
  749. package/dist/domain/app.d.ts.map +0 -1
  750. package/dist/domain/app.js +0 -2
  751. package/dist/domain/app.js.map +0 -1
  752. package/dist/domain/context.d.ts +0 -68
  753. package/dist/domain/context.d.ts.map +0 -1
  754. package/dist/domain/context.js +0 -2
  755. package/dist/domain/context.js.map +0 -1
  756. package/dist/domain/define.d.ts +0 -101
  757. package/dist/domain/define.d.ts.map +0 -1
  758. package/dist/domain/define.js +0 -81
  759. package/dist/domain/define.js.map +0 -1
  760. package/dist/domain/handlers.d.ts +0 -53
  761. package/dist/domain/handlers.d.ts.map +0 -1
  762. package/dist/domain/handlers.js +0 -88
  763. package/dist/domain/handlers.js.map +0 -1
  764. package/dist/domain/implement.d.ts +0 -5
  765. package/dist/domain/implement.d.ts.map +0 -1
  766. package/dist/domain/implement.js +0 -23
  767. package/dist/domain/implement.js.map +0 -1
  768. package/dist/domain/index.d.ts +0 -14
  769. package/dist/domain/index.d.ts.map +0 -1
  770. package/dist/domain/index.js +0 -8
  771. package/dist/domain/index.js.map +0 -1
  772. package/dist/domain/requirements.d.ts +0 -26
  773. package/dist/domain/requirements.d.ts.map +0 -1
  774. package/dist/domain/requirements.js +0 -98
  775. package/dist/domain/requirements.js.map +0 -1
  776. package/dist/graph/class/index.d.ts +0 -3
  777. package/dist/graph/class/index.d.ts.map +0 -1
  778. package/dist/graph/class/index.js +0 -3
  779. package/dist/graph/class/index.js.map +0 -1
  780. package/dist/graph/edge/index.d.ts +0 -3
  781. package/dist/graph/edge/index.d.ts.map +0 -1
  782. package/dist/graph/edge/index.js +0 -3
  783. package/dist/graph/edge/index.js.map +0 -1
  784. package/dist/graph/index.d.ts +0 -10
  785. package/dist/graph/index.d.ts.map +0 -1
  786. package/dist/graph/index.js +0 -9
  787. package/dist/graph/index.js.map +0 -1
  788. package/dist/graph/model/index.d.ts +0 -3
  789. package/dist/graph/model/index.d.ts.map +0 -1
  790. package/dist/graph/model/index.js +0 -3
  791. package/dist/graph/model/index.js.map +0 -1
  792. package/dist/graph/node/index.d.ts +0 -3
  793. package/dist/graph/node/index.d.ts.map +0 -1
  794. package/dist/graph/node/index.js +0 -3
  795. package/dist/graph/node/index.js.map +0 -1
  796. package/dist/graph/path/index.d.ts +0 -3
  797. package/dist/graph/path/index.d.ts.map +0 -1
  798. package/dist/graph/path/index.js +0 -3
  799. package/dist/graph/path/index.js.map +0 -1
  800. package/dist/graph/properties/index.d.ts +0 -3
  801. package/dist/graph/properties/index.d.ts.map +0 -1
  802. package/dist/graph/properties/index.js +0 -3
  803. package/dist/graph/properties/index.js.map +0 -1
  804. package/dist/index.d.ts.map +0 -1
  805. package/dist/index.js.map +0 -1
  806. package/dist/invocation/handler.d.ts +0 -51
  807. package/dist/invocation/handler.d.ts.map +0 -1
  808. package/dist/invocation/handler.js +0 -289
  809. package/dist/invocation/handler.js.map +0 -1
  810. package/dist/invocation/index.d.ts +0 -3
  811. package/dist/invocation/index.d.ts.map +0 -1
  812. package/dist/invocation/index.js +0 -2
  813. package/dist/invocation/index.js.map +0 -1
  814. package/dist/invocation/receiver.d.ts +0 -5
  815. package/dist/invocation/receiver.d.ts.map +0 -1
  816. package/dist/invocation/receiver.js +0 -70
  817. package/dist/invocation/receiver.js.map +0 -1
  818. package/dist/invocation/result.d.ts +0 -5
  819. package/dist/invocation/result.d.ts.map +0 -1
  820. package/dist/invocation/result.js +0 -146
  821. package/dist/invocation/result.js.map +0 -1
  822. package/dist/invocation/selection.d.ts +0 -22
  823. package/dist/invocation/selection.d.ts.map +0 -1
  824. package/dist/invocation/selection.js +0 -107
  825. package/dist/invocation/selection.js.map +0 -1
  826. package/dist/linter/adapters/typescript/discover.d.ts +0 -4
  827. package/dist/linter/adapters/typescript/discover.d.ts.map +0 -1
  828. package/dist/linter/adapters/typescript/discover.js +0 -412
  829. package/dist/linter/adapters/typescript/discover.js.map +0 -1
  830. package/dist/linter/adapters/typescript/evidence-admission.d.ts +0 -5
  831. package/dist/linter/adapters/typescript/evidence-admission.d.ts.map +0 -1
  832. package/dist/linter/adapters/typescript/evidence-admission.js +0 -22
  833. package/dist/linter/adapters/typescript/evidence-admission.js.map +0 -1
  834. package/dist/linter/adapters/typescript/imports.d.ts +0 -7
  835. package/dist/linter/adapters/typescript/imports.d.ts.map +0 -1
  836. package/dist/linter/adapters/typescript/imports.js +0 -171
  837. package/dist/linter/adapters/typescript/imports.js.map +0 -1
  838. package/dist/linter/adapters/typescript/index.d.ts +0 -48
  839. package/dist/linter/adapters/typescript/index.d.ts.map +0 -1
  840. package/dist/linter/adapters/typescript/index.js +0 -8
  841. package/dist/linter/adapters/typescript/index.js.map +0 -1
  842. package/dist/linter/adapters/typescript/query-observation.d.ts +0 -4
  843. package/dist/linter/adapters/typescript/query-observation.d.ts.map +0 -1
  844. package/dist/linter/adapters/typescript/query-observation.js +0 -172
  845. package/dist/linter/adapters/typescript/query-observation.js.map +0 -1
  846. package/dist/linter/adapters/typescript/suppression-directives.d.ts +0 -5
  847. package/dist/linter/adapters/typescript/suppression-directives.d.ts.map +0 -1
  848. package/dist/linter/adapters/typescript/suppression-directives.js +0 -85
  849. package/dist/linter/adapters/typescript/suppression-directives.js.map +0 -1
  850. package/dist/linter/adapters/typescript/syntax.d.ts +0 -39
  851. package/dist/linter/adapters/typescript/syntax.d.ts.map +0 -1
  852. package/dist/linter/adapters/typescript/syntax.js +0 -183
  853. package/dist/linter/adapters/typescript/syntax.js.map +0 -1
  854. package/dist/linter/adapters/typescript/type-universe.d.ts +0 -2
  855. package/dist/linter/adapters/typescript/type-universe.d.ts.map +0 -1
  856. package/dist/linter/adapters/typescript/type-universe.js +0 -265
  857. package/dist/linter/adapters/typescript/type-universe.js.map +0 -1
  858. package/dist/linter/catalog/compile.d.ts +0 -3
  859. package/dist/linter/catalog/compile.d.ts.map +0 -1
  860. package/dist/linter/catalog/compile.js +0 -111
  861. package/dist/linter/catalog/compile.js.map +0 -1
  862. package/dist/linter/catalog/index.d.ts +0 -19
  863. package/dist/linter/catalog/index.d.ts.map +0 -1
  864. package/dist/linter/catalog/index.js +0 -3
  865. package/dist/linter/catalog/index.js.map +0 -1
  866. package/dist/linter/catalog/revision.d.ts +0 -7
  867. package/dist/linter/catalog/revision.d.ts.map +0 -1
  868. package/dist/linter/catalog/revision.js +0 -13
  869. package/dist/linter/catalog/revision.js.map +0 -1
  870. package/dist/linter/diagnostics/error.d.ts +0 -10
  871. package/dist/linter/diagnostics/error.d.ts.map +0 -1
  872. package/dist/linter/diagnostics/error.js +0 -10
  873. package/dist/linter/diagnostics/error.js.map +0 -1
  874. package/dist/linter/diagnostics/index.d.ts +0 -29
  875. package/dist/linter/diagnostics/index.d.ts.map +0 -1
  876. package/dist/linter/diagnostics/index.js +0 -3
  877. package/dist/linter/diagnostics/index.js.map +0 -1
  878. package/dist/linter/diagnostics/sort.d.ts +0 -3
  879. package/dist/linter/diagnostics/sort.d.ts.map +0 -1
  880. package/dist/linter/diagnostics/sort.js +0 -27
  881. package/dist/linter/diagnostics/sort.js.map +0 -1
  882. package/dist/linter/evaluation/binding/bind.d.ts +0 -5
  883. package/dist/linter/evaluation/binding/bind.d.ts.map +0 -1
  884. package/dist/linter/evaluation/binding/bind.js +0 -356
  885. package/dist/linter/evaluation/binding/bind.js.map +0 -1
  886. package/dist/linter/evaluation/binding/diagnostic.d.ts +0 -5
  887. package/dist/linter/evaluation/binding/diagnostic.d.ts.map +0 -1
  888. package/dist/linter/evaluation/binding/diagnostic.js +0 -17
  889. package/dist/linter/evaluation/binding/diagnostic.js.map +0 -1
  890. package/dist/linter/evaluation/binding/index.d.ts +0 -2
  891. package/dist/linter/evaluation/binding/index.d.ts.map +0 -1
  892. package/dist/linter/evaluation/binding/index.js +0 -2
  893. package/dist/linter/evaluation/binding/index.js.map +0 -1
  894. package/dist/linter/evaluation/contract/availability.d.ts +0 -28
  895. package/dist/linter/evaluation/contract/availability.d.ts.map +0 -1
  896. package/dist/linter/evaluation/contract/availability.js +0 -2
  897. package/dist/linter/evaluation/contract/availability.js.map +0 -1
  898. package/dist/linter/evaluation/contract/decision.d.ts +0 -26
  899. package/dist/linter/evaluation/contract/decision.d.ts.map +0 -1
  900. package/dist/linter/evaluation/contract/decision.js +0 -2
  901. package/dist/linter/evaluation/contract/decision.js.map +0 -1
  902. package/dist/linter/evaluation/contract/evidence.d.ts +0 -12
  903. package/dist/linter/evaluation/contract/evidence.d.ts.map +0 -1
  904. package/dist/linter/evaluation/contract/evidence.js +0 -2
  905. package/dist/linter/evaluation/contract/evidence.js.map +0 -1
  906. package/dist/linter/evaluation/contract/implementation.d.ts +0 -22
  907. package/dist/linter/evaluation/contract/implementation.d.ts.map +0 -1
  908. package/dist/linter/evaluation/contract/implementation.js +0 -2
  909. package/dist/linter/evaluation/contract/implementation.js.map +0 -1
  910. package/dist/linter/evaluation/contract/index.d.ts +0 -5
  911. package/dist/linter/evaluation/contract/index.d.ts.map +0 -1
  912. package/dist/linter/evaluation/contract/index.js +0 -2
  913. package/dist/linter/evaluation/contract/index.js.map +0 -1
  914. package/dist/linter/evaluation/index.d.ts +0 -3
  915. package/dist/linter/evaluation/index.d.ts.map +0 -1
  916. package/dist/linter/evaluation/index.js +0 -2
  917. package/dist/linter/evaluation/index.js.map +0 -1
  918. package/dist/linter/implementations/source/capabilities.d.ts +0 -3
  919. package/dist/linter/implementations/source/capabilities.d.ts.map +0 -1
  920. package/dist/linter/implementations/source/capabilities.js +0 -41
  921. package/dist/linter/implementations/source/capabilities.js.map +0 -1
  922. package/dist/linter/implementations/source/contract.d.ts +0 -17
  923. package/dist/linter/implementations/source/contract.d.ts.map +0 -1
  924. package/dist/linter/implementations/source/contract.js +0 -53
  925. package/dist/linter/implementations/source/contract.js.map +0 -1
  926. package/dist/linter/implementations/source/functions.d.ts +0 -3
  927. package/dist/linter/implementations/source/functions.d.ts.map +0 -1
  928. package/dist/linter/implementations/source/functions.js +0 -102
  929. package/dist/linter/implementations/source/functions.js.map +0 -1
  930. package/dist/linter/implementations/source/global.d.ts +0 -3
  931. package/dist/linter/implementations/source/global.d.ts.map +0 -1
  932. package/dist/linter/implementations/source/global.js +0 -814
  933. package/dist/linter/implementations/source/global.js.map +0 -1
  934. package/dist/linter/implementations/source/index.d.ts +0 -4
  935. package/dist/linter/implementations/source/index.d.ts.map +0 -1
  936. package/dist/linter/implementations/source/index.js +0 -4
  937. package/dist/linter/implementations/source/index.js.map +0 -1
  938. package/dist/linter/implementations/source/integrations.d.ts +0 -3
  939. package/dist/linter/implementations/source/integrations.d.ts.map +0 -1
  940. package/dist/linter/implementations/source/integrations.js +0 -186
  941. package/dist/linter/implementations/source/integrations.js.map +0 -1
  942. package/dist/linter/implementations/source/migrations.d.ts +0 -3
  943. package/dist/linter/implementations/source/migrations.d.ts.map +0 -1
  944. package/dist/linter/implementations/source/migrations.js +0 -115
  945. package/dist/linter/implementations/source/migrations.js.map +0 -1
  946. package/dist/linter/implementations/source/mutations.d.ts +0 -3
  947. package/dist/linter/implementations/source/mutations.d.ts.map +0 -1
  948. package/dist/linter/implementations/source/mutations.js +0 -185
  949. package/dist/linter/implementations/source/mutations.js.map +0 -1
  950. package/dist/linter/implementations/source/queries.d.ts +0 -3
  951. package/dist/linter/implementations/source/queries.d.ts.map +0 -1
  952. package/dist/linter/implementations/source/queries.js +0 -1000
  953. package/dist/linter/implementations/source/queries.js.map +0 -1
  954. package/dist/linter/implementations/source/rules.d.ts +0 -3
  955. package/dist/linter/implementations/source/rules.d.ts.map +0 -1
  956. package/dist/linter/implementations/source/rules.js +0 -141
  957. package/dist/linter/implementations/source/rules.js.map +0 -1
  958. package/dist/linter/implementations/source/schema.d.ts +0 -3
  959. package/dist/linter/implementations/source/schema.d.ts.map +0 -1
  960. package/dist/linter/implementations/source/schema.js +0 -105
  961. package/dist/linter/implementations/source/schema.js.map +0 -1
  962. package/dist/linter/implementations/source/shared.d.ts +0 -42
  963. package/dist/linter/implementations/source/shared.d.ts.map +0 -1
  964. package/dist/linter/implementations/source/shared.js +0 -239
  965. package/dist/linter/implementations/source/shared.js.map +0 -1
  966. package/dist/linter/implementations/source/states.d.ts +0 -3
  967. package/dist/linter/implementations/source/states.d.ts.map +0 -1
  968. package/dist/linter/implementations/source/states.js +0 -2
  969. package/dist/linter/implementations/source/states.js.map +0 -1
  970. package/dist/linter/implementations/source/tests.d.ts +0 -3
  971. package/dist/linter/implementations/source/tests.d.ts.map +0 -1
  972. package/dist/linter/implementations/source/tests.js +0 -32
  973. package/dist/linter/implementations/source/tests.js.map +0 -1
  974. package/dist/linter/implementations/source/ui.d.ts +0 -3
  975. package/dist/linter/implementations/source/ui.d.ts.map +0 -1
  976. package/dist/linter/implementations/source/ui.js +0 -21
  977. package/dist/linter/implementations/source/ui.js.map +0 -1
  978. package/dist/linter/implementations/source/utils.d.ts +0 -3
  979. package/dist/linter/implementations/source/utils.d.ts.map +0 -1
  980. package/dist/linter/implementations/source/utils.js +0 -29
  981. package/dist/linter/implementations/source/utils.js.map +0 -1
  982. package/dist/linter/implementations/source/verifiers.d.ts +0 -3
  983. package/dist/linter/implementations/source/verifiers.d.ts.map +0 -1
  984. package/dist/linter/implementations/source/verifiers.js +0 -33
  985. package/dist/linter/implementations/source/verifiers.js.map +0 -1
  986. package/dist/linter/implementations/source/views.d.ts +0 -3
  987. package/dist/linter/implementations/source/views.d.ts.map +0 -1
  988. package/dist/linter/implementations/source/views.js +0 -36
  989. package/dist/linter/implementations/source/views.js.map +0 -1
  990. package/dist/linter/implementations/source/workflows.d.ts +0 -3
  991. package/dist/linter/implementations/source/workflows.d.ts.map +0 -1
  992. package/dist/linter/implementations/source/workflows.js +0 -308
  993. package/dist/linter/implementations/source/workflows.js.map +0 -1
  994. package/dist/linter/index.d.ts +0 -10
  995. package/dist/linter/index.d.ts.map +0 -1
  996. package/dist/linter/index.js +0 -4
  997. package/dist/linter/index.js.map +0 -1
  998. package/dist/linter/lint.d.ts +0 -24
  999. package/dist/linter/lint.d.ts.map +0 -1
  1000. package/dist/linter/lint.js +0 -70
  1001. package/dist/linter/lint.js.map +0 -1
  1002. package/dist/linter/oxlint/index.d.ts +0 -4
  1003. package/dist/linter/oxlint/index.d.ts.map +0 -1
  1004. package/dist/linter/oxlint/index.js +0 -2
  1005. package/dist/linter/oxlint/index.js.map +0 -1
  1006. package/dist/linter/oxlint/process.d.ts +0 -19
  1007. package/dist/linter/oxlint/process.d.ts.map +0 -1
  1008. package/dist/linter/oxlint/process.js +0 -170
  1009. package/dist/linter/oxlint/process.js.map +0 -1
  1010. package/dist/linter/oxlint/run.d.ts +0 -8
  1011. package/dist/linter/oxlint/run.d.ts.map +0 -1
  1012. package/dist/linter/oxlint/run.js +0 -252
  1013. package/dist/linter/oxlint/run.js.map +0 -1
  1014. package/dist/linter/oxlint-config/ignore-patterns.d.ts +0 -6
  1015. package/dist/linter/oxlint-config/ignore-patterns.d.ts.map +0 -1
  1016. package/dist/linter/oxlint-config/ignore-patterns.js +0 -10
  1017. package/dist/linter/oxlint-config/ignore-patterns.js.map +0 -1
  1018. package/dist/linter/oxlint-config/index.d.ts +0 -5
  1019. package/dist/linter/oxlint-config/index.d.ts.map +0 -1
  1020. package/dist/linter/oxlint-config/index.js +0 -18
  1021. package/dist/linter/oxlint-config/index.js.map +0 -1
  1022. package/dist/linter/packs/domain.d.ts +0 -3
  1023. package/dist/linter/packs/domain.d.ts.map +0 -1
  1024. package/dist/linter/packs/domain.js +0 -8
  1025. package/dist/linter/packs/domain.js.map +0 -1
  1026. package/dist/linter/packs/index.d.ts +0 -9
  1027. package/dist/linter/packs/index.d.ts.map +0 -1
  1028. package/dist/linter/packs/index.js +0 -2
  1029. package/dist/linter/packs/index.js.map +0 -1
  1030. package/dist/linter/policy/compile.d.ts +0 -3
  1031. package/dist/linter/policy/compile.d.ts.map +0 -1
  1032. package/dist/linter/policy/compile.js +0 -258
  1033. package/dist/linter/policy/compile.js.map +0 -1
  1034. package/dist/linter/policy/configuration.d.ts +0 -12
  1035. package/dist/linter/policy/configuration.d.ts.map +0 -1
  1036. package/dist/linter/policy/configuration.js +0 -119
  1037. package/dist/linter/policy/configuration.js.map +0 -1
  1038. package/dist/linter/policy/generated.d.ts +0 -5
  1039. package/dist/linter/policy/generated.d.ts.map +0 -1
  1040. package/dist/linter/policy/generated.js +0 -776
  1041. package/dist/linter/policy/generated.js.map +0 -1
  1042. package/dist/linter/policy/index.d.ts +0 -45
  1043. package/dist/linter/policy/index.d.ts.map +0 -1
  1044. package/dist/linter/policy/index.js +0 -4
  1045. package/dist/linter/policy/index.js.map +0 -1
  1046. package/dist/linter/qualification/index.d.ts +0 -11
  1047. package/dist/linter/qualification/index.d.ts.map +0 -1
  1048. package/dist/linter/qualification/index.js +0 -3
  1049. package/dist/linter/qualification/index.js.map +0 -1
  1050. package/dist/linter/qualification/query-fixtures.d.ts +0 -3
  1051. package/dist/linter/qualification/query-fixtures.d.ts.map +0 -1
  1052. package/dist/linter/qualification/query-fixtures.js +0 -69
  1053. package/dist/linter/qualification/query-fixtures.js.map +0 -1
  1054. package/dist/linter/qualification/runner.d.ts +0 -4
  1055. package/dist/linter/qualification/runner.d.ts.map +0 -1
  1056. package/dist/linter/qualification/runner.js +0 -7
  1057. package/dist/linter/qualification/runner.js.map +0 -1
  1058. package/dist/linter/report/format.d.ts +0 -4
  1059. package/dist/linter/report/format.d.ts.map +0 -1
  1060. package/dist/linter/report/format.js +0 -33
  1061. package/dist/linter/report/format.js.map +0 -1
  1062. package/dist/linter/report/index.d.ts +0 -3
  1063. package/dist/linter/report/index.d.ts.map +0 -1
  1064. package/dist/linter/report/index.js +0 -2
  1065. package/dist/linter/report/index.js.map +0 -1
  1066. package/dist/linter/requirements/index.d.ts +0 -3
  1067. package/dist/linter/requirements/index.d.ts.map +0 -1
  1068. package/dist/linter/requirements/index.js +0 -2
  1069. package/dist/linter/requirements/index.js.map +0 -1
  1070. package/dist/linter/requirements/model.d.ts +0 -9
  1071. package/dist/linter/requirements/model.d.ts.map +0 -1
  1072. package/dist/linter/requirements/model.js +0 -2
  1073. package/dist/linter/requirements/model.js.map +0 -1
  1074. package/dist/linter/requirements/registry.d.ts +0 -4
  1075. package/dist/linter/requirements/registry.d.ts.map +0 -1
  1076. package/dist/linter/requirements/registry.js +0 -188
  1077. package/dist/linter/requirements/registry.js.map +0 -1
  1078. package/dist/linter/semantics/query/decision.d.ts +0 -5
  1079. package/dist/linter/semantics/query/decision.d.ts.map +0 -1
  1080. package/dist/linter/semantics/query/decision.js +0 -74
  1081. package/dist/linter/semantics/query/decision.js.map +0 -1
  1082. package/dist/linter/semantics/query/index.d.ts +0 -4
  1083. package/dist/linter/semantics/query/index.d.ts.map +0 -1
  1084. package/dist/linter/semantics/query/index.js +0 -3
  1085. package/dist/linter/semantics/query/index.js.map +0 -1
  1086. package/dist/linter/semantics/query/observation.d.ts +0 -36
  1087. package/dist/linter/semantics/query/observation.d.ts.map +0 -1
  1088. package/dist/linter/semantics/query/observation.js +0 -13
  1089. package/dist/linter/semantics/query/observation.js.map +0 -1
  1090. package/dist/linter/suppression/apply.d.ts +0 -4
  1091. package/dist/linter/suppression/apply.d.ts.map +0 -1
  1092. package/dist/linter/suppression/apply.js +0 -48
  1093. package/dist/linter/suppression/apply.js.map +0 -1
  1094. package/dist/linter/suppression/directive.d.ts +0 -11
  1095. package/dist/linter/suppression/directive.d.ts.map +0 -1
  1096. package/dist/linter/suppression/directive.js +0 -2
  1097. package/dist/linter/suppression/directive.js.map +0 -1
  1098. package/dist/linter/suppression/index.d.ts +0 -14
  1099. package/dist/linter/suppression/index.d.ts.map +0 -1
  1100. package/dist/linter/suppression/index.js +0 -2
  1101. package/dist/linter/suppression/index.js.map +0 -1
  1102. package/dist/mutation/contract.d.ts +0 -134
  1103. package/dist/mutation/contract.d.ts.map +0 -1
  1104. package/dist/mutation/contract.js +0 -2
  1105. package/dist/mutation/contract.js.map +0 -1
  1106. package/dist/mutation/define.d.ts +0 -9
  1107. package/dist/mutation/define.d.ts.map +0 -1
  1108. package/dist/mutation/define.js +0 -24
  1109. package/dist/mutation/define.js.map +0 -1
  1110. package/dist/mutation/errors.d.ts +0 -3
  1111. package/dist/mutation/errors.d.ts.map +0 -1
  1112. package/dist/mutation/errors.js +0 -30
  1113. package/dist/mutation/errors.js.map +0 -1
  1114. package/dist/mutation/execute.d.ts +0 -11
  1115. package/dist/mutation/execute.d.ts.map +0 -1
  1116. package/dist/mutation/execute.js +0 -24
  1117. package/dist/mutation/execute.js.map +0 -1
  1118. package/dist/mutation/index.d.ts +0 -8
  1119. package/dist/mutation/index.d.ts.map +0 -1
  1120. package/dist/mutation/index.js +0 -5
  1121. package/dist/mutation/index.js.map +0 -1
  1122. package/dist/mutation/rich.d.ts +0 -4
  1123. package/dist/mutation/rich.d.ts.map +0 -1
  1124. package/dist/mutation/rich.js +0 -147
  1125. package/dist/mutation/rich.js.map +0 -1
  1126. package/dist/query/composite/contract.d.ts +0 -37
  1127. package/dist/query/composite/contract.d.ts.map +0 -1
  1128. package/dist/query/composite/contract.js +0 -2
  1129. package/dist/query/composite/contract.js.map +0 -1
  1130. package/dist/query/composite/errors.d.ts +0 -8
  1131. package/dist/query/composite/errors.d.ts.map +0 -1
  1132. package/dist/query/composite/errors.js +0 -9
  1133. package/dist/query/composite/errors.js.map +0 -1
  1134. package/dist/query/composite/index.d.ts +0 -6
  1135. package/dist/query/composite/index.d.ts.map +0 -1
  1136. package/dist/query/composite/index.js +0 -3
  1137. package/dist/query/composite/index.js.map +0 -1
  1138. package/dist/query/composite/plan.d.ts +0 -38
  1139. package/dist/query/composite/plan.d.ts.map +0 -1
  1140. package/dist/query/composite/plan.js +0 -225
  1141. package/dist/query/composite/plan.js.map +0 -1
  1142. package/dist/query/contract.d.ts +0 -58
  1143. package/dist/query/contract.d.ts.map +0 -1
  1144. package/dist/query/contract.js +0 -2
  1145. package/dist/query/contract.js.map +0 -1
  1146. package/dist/query/define.d.ts +0 -3
  1147. package/dist/query/define.d.ts.map +0 -1
  1148. package/dist/query/define.js +0 -90
  1149. package/dist/query/define.js.map +0 -1
  1150. package/dist/query/definition.d.ts +0 -29
  1151. package/dist/query/definition.d.ts.map +0 -1
  1152. package/dist/query/definition.js +0 -2
  1153. package/dist/query/definition.js.map +0 -1
  1154. package/dist/query/errors.d.ts +0 -9
  1155. package/dist/query/errors.d.ts.map +0 -1
  1156. package/dist/query/errors.js +0 -15
  1157. package/dist/query/errors.js.map +0 -1
  1158. package/dist/query/execute.d.ts +0 -20
  1159. package/dist/query/execute.d.ts.map +0 -1
  1160. package/dist/query/execute.js +0 -97
  1161. package/dist/query/execute.js.map +0 -1
  1162. package/dist/query/index.d.ts +0 -15
  1163. package/dist/query/index.d.ts.map +0 -1
  1164. package/dist/query/index.js +0 -8
  1165. package/dist/query/index.js.map +0 -1
  1166. package/dist/query/node.d.ts +0 -109
  1167. package/dist/query/node.d.ts.map +0 -1
  1168. package/dist/query/node.js +0 -166
  1169. package/dist/query/node.js.map +0 -1
  1170. package/dist/query/result/contract.d.ts +0 -23
  1171. package/dist/query/result/contract.d.ts.map +0 -1
  1172. package/dist/query/result/contract.js +0 -2
  1173. package/dist/query/result/contract.js.map +0 -1
  1174. package/dist/query/result/index.d.ts +0 -3
  1175. package/dist/query/result/index.d.ts.map +0 -1
  1176. package/dist/query/result/index.js +0 -2
  1177. package/dist/query/result/index.js.map +0 -1
  1178. package/dist/query/result/projection.d.ts +0 -3
  1179. package/dist/query/result/projection.d.ts.map +0 -1
  1180. package/dist/query/result/projection.js +0 -100
  1181. package/dist/query/result/projection.js.map +0 -1
  1182. package/dist/query/selection.d.ts +0 -4
  1183. package/dist/query/selection.d.ts.map +0 -1
  1184. package/dist/query/selection.js +0 -25
  1185. package/dist/query/selection.js.map +0 -1
  1186. package/dist/react/compile.d.ts +0 -9
  1187. package/dist/react/compile.d.ts.map +0 -1
  1188. package/dist/react/compile.js +0 -64
  1189. package/dist/react/compile.js.map +0 -1
  1190. package/dist/react/define.d.ts +0 -8
  1191. package/dist/react/define.d.ts.map +0 -1
  1192. package/dist/react/define.js +0 -89
  1193. package/dist/react/define.js.map +0 -1
  1194. package/dist/react/definition.d.ts +0 -69
  1195. package/dist/react/definition.d.ts.map +0 -1
  1196. package/dist/react/definition.js +0 -2
  1197. package/dist/react/definition.js.map +0 -1
  1198. package/dist/react/index.d.ts +0 -4
  1199. package/dist/react/index.d.ts.map +0 -1
  1200. package/dist/react/index.js +0 -3
  1201. package/dist/react/index.js.map +0 -1
  1202. package/dist/result/index.d.ts +0 -3
  1203. package/dist/result/index.d.ts.map +0 -1
  1204. package/dist/result/index.js +0 -2
  1205. package/dist/result/index.js.map +0 -1
  1206. package/dist/result/result.d.ts +0 -10
  1207. package/dist/result/result.d.ts.map +0 -1
  1208. package/dist/result/result.js +0 -7
  1209. package/dist/result/result.js.map +0 -1
  1210. package/dist/schema/index.d.ts +0 -3
  1211. package/dist/schema/index.d.ts.map +0 -1
  1212. package/dist/schema/index.js +0 -3
  1213. package/dist/schema/index.js.map +0 -1
  1214. package/dist/schema/kernel/index.d.ts +0 -3
  1215. package/dist/schema/kernel/index.d.ts.map +0 -1
  1216. package/dist/schema/kernel/index.js +0 -3
  1217. package/dist/schema/kernel/index.js.map +0 -1
  1218. package/dist/schema/v1/index.d.ts +0 -3
  1219. package/dist/schema/v1/index.d.ts.map +0 -1
  1220. package/dist/schema/v1/index.js +0 -3
  1221. package/dist/schema/v1/index.js.map +0 -1
  1222. package/dist/server/application.d.ts +0 -36
  1223. package/dist/server/application.d.ts.map +0 -1
  1224. package/dist/server/application.js +0 -128
  1225. package/dist/server/application.js.map +0 -1
  1226. package/dist/server/index.d.ts +0 -5
  1227. package/dist/server/index.d.ts.map +0 -1
  1228. package/dist/server/index.js +0 -3
  1229. package/dist/server/index.js.map +0 -1
  1230. package/dist/server/node/index.d.ts +0 -3
  1231. package/dist/server/node/index.d.ts.map +0 -1
  1232. package/dist/server/node/index.js +0 -2
  1233. package/dist/server/node/index.js.map +0 -1
  1234. package/dist/server/node/server.d.ts +0 -14
  1235. package/dist/server/node/server.d.ts.map +0 -1
  1236. package/dist/server/node/server.js +0 -71
  1237. package/dist/server/node/server.js.map +0 -1
  1238. package/dist/server/remote.d.ts +0 -57
  1239. package/dist/server/remote.d.ts.map +0 -1
  1240. package/dist/server/remote.js +0 -799
  1241. package/dist/server/remote.js.map +0 -1
  1242. package/dist/server/source.d.ts +0 -13
  1243. package/dist/server/source.d.ts.map +0 -1
  1244. package/dist/server/source.js +0 -40
  1245. package/dist/server/source.js.map +0 -1
  1246. package/dist/state/index.d.ts +0 -4
  1247. package/dist/state/index.d.ts.map +0 -1
  1248. package/dist/state/index.js +0 -2
  1249. package/dist/state/index.js.map +0 -1
  1250. package/dist/state/machine.d.ts +0 -28
  1251. package/dist/state/machine.d.ts.map +0 -1
  1252. package/dist/state/machine.js +0 -32
  1253. package/dist/state/machine.js.map +0 -1
  1254. package/dist/state/relation.d.ts +0 -28
  1255. package/dist/state/relation.d.ts.map +0 -1
  1256. package/dist/state/relation.js +0 -48
  1257. package/dist/state/relation.js.map +0 -1
  1258. package/dist/value/index.d.ts +0 -3
  1259. package/dist/value/index.d.ts.map +0 -1
  1260. package/dist/value/index.js +0 -3
  1261. package/dist/value/index.js.map +0 -1
  1262. package/dist/view/admission.d.ts +0 -6
  1263. package/dist/view/admission.d.ts.map +0 -1
  1264. package/dist/view/admission.js +0 -43
  1265. package/dist/view/admission.js.map +0 -1
  1266. package/dist/view/compile.d.ts +0 -15
  1267. package/dist/view/compile.d.ts.map +0 -1
  1268. package/dist/view/compile.js +0 -189
  1269. package/dist/view/compile.js.map +0 -1
  1270. package/dist/view/define.d.ts +0 -20
  1271. package/dist/view/define.d.ts.map +0 -1
  1272. package/dist/view/define.js +0 -236
  1273. package/dist/view/define.js.map +0 -1
  1274. package/dist/view/definition.d.ts +0 -96
  1275. package/dist/view/definition.d.ts.map +0 -1
  1276. package/dist/view/definition.js +0 -2
  1277. package/dist/view/definition.js.map +0 -1
  1278. package/dist/view/index.d.ts +0 -4
  1279. package/dist/view/index.d.ts.map +0 -1
  1280. package/dist/view/index.js +0 -3
  1281. package/dist/view/index.js.map +0 -1
  1282. package/dist/workflow/binding.d.ts +0 -43
  1283. package/dist/workflow/binding.d.ts.map +0 -1
  1284. package/dist/workflow/binding.js +0 -32
  1285. package/dist/workflow/binding.js.map +0 -1
  1286. package/dist/workflow/contract.d.ts +0 -57
  1287. package/dist/workflow/contract.d.ts.map +0 -1
  1288. package/dist/workflow/contract.js +0 -2
  1289. package/dist/workflow/contract.js.map +0 -1
  1290. package/dist/workflow/define.d.ts +0 -4
  1291. package/dist/workflow/define.d.ts.map +0 -1
  1292. package/dist/workflow/define.js +0 -57
  1293. package/dist/workflow/define.js.map +0 -1
  1294. package/dist/workflow/index.d.ts +0 -7
  1295. package/dist/workflow/index.d.ts.map +0 -1
  1296. package/dist/workflow/index.js +0 -4
  1297. package/dist/workflow/index.js.map +0 -1
  1298. package/dist/workflow/runner.d.ts +0 -4
  1299. package/dist/workflow/runner.d.ts.map +0 -1
  1300. package/dist/workflow/runner.js +0 -24
  1301. package/dist/workflow/runner.js.map +0 -1
  1302. package/dist/workflow/step/index.d.ts +0 -3
  1303. package/dist/workflow/step/index.d.ts.map +0 -1
  1304. package/dist/workflow/step/index.js +0 -2
  1305. package/dist/workflow/step/index.js.map +0 -1
  1306. package/dist/workflow/step/inline.d.ts +0 -6
  1307. package/dist/workflow/step/inline.d.ts.map +0 -1
  1308. package/dist/workflow/step/inline.js +0 -44
  1309. package/dist/workflow/step/inline.js.map +0 -1
  1310. package/dist/workflow/step/step.d.ts +0 -5
  1311. package/dist/workflow/step/step.d.ts.map +0 -1
  1312. package/dist/workflow/step/step.js +0 -2
  1313. package/dist/workflow/step/step.js.map +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,1370 @@
1
+ # Changelog
2
+
3
+ ## [0.5.0-beta.81](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.80...sdk-v0.5.0-beta.81) (2026-08-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * **app:** add development session file ([#339](https://github.com/astrale-os/sdk/issues/339)) ([f28e9c6](https://github.com/astrale-os/sdk/commit/f28e9c6fb707b8791a5bc63eba3b616aa7b02342))
9
+
10
+ ## [0.5.0-beta.80](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.79...sdk-v0.5.0-beta.80) (2026-08-29)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** consume portable Kernel redirect transport ([#337](https://github.com/astrale-os/sdk/issues/337)) ([9590f5e](https://github.com/astrale-os/sdk/commit/9590f5ef7d43fb0b65c6f7ef13a46bf65b6e4aaa))
16
+
17
+ ## [0.5.0-beta.79](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.78...sdk-v0.5.0-beta.79) (2026-08-29)
18
+
19
+
20
+ ### Features
21
+
22
+ * **state:** consume portable DSL topology ([#333](https://github.com/astrale-os/sdk/issues/333)) ([7f8e255](https://github.com/astrale-os/sdk/commit/7f8e25574f3409baa03ae6fa015ee906572a2aee))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **release:** require publishable public changes ([#335](https://github.com/astrale-os/sdk/issues/335)) ([46755ee](https://github.com/astrale-os/sdk/commit/46755ee9124ab01a9e72158da0126e96c9410774))
28
+
29
+ ## [0.5.0-beta.78](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.77...sdk-v0.5.0-beta.78) (2026-08-29)
30
+
31
+
32
+ ### Features
33
+
34
+ * **mutation:** support atomic transition deltas ([#331](https://github.com/astrale-os/sdk/issues/331)) ([0bf94fa](https://github.com/astrale-os/sdk/commit/0bf94fa8193cdc52047007f25cbf59e79f1f97b4))
35
+
36
+ ## [0.5.0-beta.77](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.76...sdk-v0.5.0-beta.77) (2026-08-29)
37
+
38
+
39
+ ### Features
40
+
41
+ * **iframe:** declare view iframe requirements ([#327](https://github.com/astrale-os/sdk/issues/327)) ([ca2e131](https://github.com/astrale-os/sdk/commit/ca2e1311291aee3c62a19cddb33a0b4c13a345d4))
42
+
43
+ ## [0.5.0-beta.76](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.75...sdk-v0.5.0-beta.76) (2026-08-29)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * **build:** preserve state transition authority ([#328](https://github.com/astrale-os/sdk/issues/328)) ([5ae3301](https://github.com/astrale-os/sdk/commit/5ae3301c6b72cc1dc7a5bf901e143f3235cb53ab))
49
+
50
+ ## [0.5.0-beta.75](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.74...sdk-v0.5.0-beta.75) (2026-08-29)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * **release:** qualify public Worker routing flag ([#325](https://github.com/astrale-os/sdk/issues/325)) ([4620617](https://github.com/astrale-os/sdk/commit/4620617f9a009ca4ab45909d50b1495b04eb7abb))
56
+
57
+ ## [0.5.0-beta.74](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.73...sdk-v0.5.0-beta.74) (2026-08-29)
58
+
59
+
60
+ ### Features
61
+
62
+ * **schema:** remove Property visibility from the V1 facade ([#324](https://github.com/astrale-os/sdk/issues/324)) ([0857b74](https://github.com/astrale-os/sdk/commit/0857b7493fad244999ba374ba73578f73889696e))
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * **adapter-cloudflare:** route Kernel callbacks through public Worker routes ([#323](https://github.com/astrale-os/sdk/issues/323)) ([a1cea33](https://github.com/astrale-os/sdk/commit/a1cea334d20b749f78d872ad3d6416dbe1e47f4e))
68
+
69
+
70
+ ### Documentation
71
+
72
+ * capture Admin beta delivery journey ([#321](https://github.com/astrale-os/sdk/issues/321)) ([e5cb249](https://github.com/astrale-os/sdk/commit/e5cb24948ddd3a37dda7da1e1897dcfb342cc210))
73
+
74
+ ## [0.5.0-beta.73](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.72...sdk-v0.5.0-beta.73) (2026-08-28)
75
+
76
+
77
+ ### Bug Fixes
78
+
79
+ * **adapter-astrale:** discover official CLI installation ([#320](https://github.com/astrale-os/sdk/issues/320)) ([aa5ade5](https://github.com/astrale-os/sdk/commit/aa5ade5e7d861b2b3e037ae84ca14a36fef48fb2))
80
+ * add command-specific astrale-domain help ([#318](https://github.com/astrale-os/sdk/issues/318)) ([4956a77](https://github.com/astrale-os/sdk/commit/4956a77337c70659fa45102bed84e4feab39aad1))
81
+
82
+ ## [0.5.0-beta.72](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.71...sdk-v0.5.0-beta.72) (2026-08-28)
83
+
84
+
85
+ ### Bug Fixes
86
+
87
+ * **linter:** recognize nested schema modules ([#316](https://github.com/astrale-os/sdk/issues/316)) ([d9ad841](https://github.com/astrale-os/sdk/commit/d9ad84165103ed7741f11801ea740476109b99b3))
88
+
89
+ ## [0.5.0-beta.71](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.70...sdk-v0.5.0-beta.71) (2026-08-28)
90
+
91
+
92
+ ### Bug Fixes
93
+
94
+ * **adapter-cloudflare:** bypass fresh tunnel DNS propagation ([#313](https://github.com/astrale-os/sdk/issues/313)) ([9a71196](https://github.com/astrale-os/sdk/commit/9a71196cf9bed1e2c27402ee893b44df3dd42d3f))
95
+
96
+ ## [0.5.0-beta.70](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.69...sdk-v0.5.0-beta.70) (2026-08-28)
97
+
98
+
99
+ ### Bug Fixes
100
+
101
+ * **ci:** align publication qualification prerequisites ([#311](https://github.com/astrale-os/sdk/issues/311)) ([814176e](https://github.com/astrale-os/sdk/commit/814176e1b659bdfb0fa03668901d47bcdd577bbb))
102
+
103
+ ## [0.5.0-beta.69](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.68...sdk-v0.5.0-beta.69) (2026-08-28)
104
+
105
+
106
+ ### Features
107
+
108
+ * add coordinated Domain development sessions ([#300](https://github.com/astrale-os/sdk/issues/300)) ([102104f](https://github.com/astrale-os/sdk/commit/102104f1ed55333f5892db23c036578aa0ffd2e1))
109
+ * **tooling:** keep frontend composition application-owned ([#310](https://github.com/astrale-os/sdk/issues/310)) ([31e9bb6](https://github.com/astrale-os/sdk/commit/31e9bb6de256ef9cdbcdb0296abb973086f11ff0))
110
+
111
+
112
+ ### Bug Fixes
113
+
114
+ * **adapter-astrale:** preserve explicit Services installation ownership ([#305](https://github.com/astrale-os/sdk/issues/305)) ([1b9dd64](https://github.com/astrale-os/sdk/commit/1b9dd6422e5d80a552ec5a70b5d262b8413dd6bc))
115
+ * **cli:** skip unused secrets files ([3a1c534](https://github.com/astrale-os/sdk/commit/3a1c53439d5172add9c2c724060daaffc0a517bb))
116
+
117
+ ## [0.5.0-beta.68](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.67...sdk-v0.5.0-beta.68) (2026-08-28)
118
+
119
+
120
+ ### Performance Improvements
121
+
122
+ * **execution:** cache issuer verification basis ([#307](https://github.com/astrale-os/sdk/issues/307)) ([a88f227](https://github.com/astrale-os/sdk/commit/a88f22700e61f5c5926621f95fc66638b462fbf5))
123
+
124
+ ## [0.5.0-beta.67](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.66...sdk-v0.5.0-beta.67) (2026-08-28)
125
+
126
+
127
+ ### Features
128
+
129
+ * make StateProperty transitions intrinsic ([#306](https://github.com/astrale-os/sdk/issues/306)) ([a2b2575](https://github.com/astrale-os/sdk/commit/a2b2575cf19c585c26539839c4777c0c2d413275))
130
+
131
+
132
+ ### Documentation
133
+
134
+ * **state:** ratify intrinsic property transitions ([#303](https://github.com/astrale-os/sdk/issues/303)) ([d484e58](https://github.com/astrale-os/sdk/commit/d484e58bc47f80c2571886b5c85d91d91da52b25))
135
+
136
+ ## [0.5.0-beta.66](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.65...sdk-v0.5.0-beta.66) (2026-08-27)
137
+
138
+
139
+ ### Features
140
+
141
+ * **state:** use machine transition authority ([#301](https://github.com/astrale-os/sdk/issues/301)) ([6424217](https://github.com/astrale-os/sdk/commit/642421784d391863d33e90e85c0a1c11b1a6ed7b))
142
+
143
+ ## [0.5.0-beta.65](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.64...sdk-v0.5.0-beta.65) (2026-08-27)
144
+
145
+
146
+ ### Features
147
+
148
+ * **query:** add portable collection unions ([#291](https://github.com/astrale-os/sdk/issues/291)) ([1ea53bc](https://github.com/astrale-os/sdk/commit/1ea53bcf4767ae5adb9637a5942e674d839fb231))
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * document safe remote route refresh ([#298](https://github.com/astrale-os/sdk/issues/298)) ([bd0d9b4](https://github.com/astrale-os/sdk/commit/bd0d9b479b61ba5007fed3abd30e7aeee1035df4))
154
+
155
+ ## [0.5.0-beta.64](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.63...sdk-v0.5.0-beta.64) (2026-08-27)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * normalize semantic imports in Domain packages ([#294](https://github.com/astrale-os/sdk/issues/294)) ([4041b2a](https://github.com/astrale-os/sdk/commit/4041b2ac6da30776f64a74e19f5b74208e9e1eb7))
161
+ * **release:** materialize generated Bun during publication proof ([#293](https://github.com/astrale-os/sdk/issues/293)) ([935529b](https://github.com/astrale-os/sdk/commit/935529b9f7ae629c88b35f84202e03d0f3203e16))
162
+
163
+ ## [0.5.0-beta.63](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.62...sdk-v0.5.0-beta.63) (2026-08-27)
164
+
165
+
166
+ ### Features
167
+
168
+ * expose Domain graph authority modes ([#287](https://github.com/astrale-os/sdk/issues/287)) ([84369ef](https://github.com/astrale-os/sdk/commit/84369ef9eec89506b9b5eb47894e83d7ac544149))
169
+
170
+ ## [0.5.0-beta.62](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.61...sdk-v0.5.0-beta.62) (2026-08-27)
171
+
172
+
173
+ ### Features
174
+
175
+ * **adapter-cloudflare:** configure invocation timeout ([#290](https://github.com/astrale-os/sdk/issues/290)) ([9c4e144](https://github.com/astrale-os/sdk/commit/9c4e144618846e8e1c8d76c432e8d5008285c3b7))
176
+
177
+
178
+ ### Bug Fixes
179
+
180
+ * admit pnpm multi-document locks ([#288](https://github.com/astrale-os/sdk/issues/288)) ([eedfdf4](https://github.com/astrale-os/sdk/commit/eedfdf4aa3be97766a546d1cf37556b233bdcfd3))
181
+
182
+ ## [0.5.0-beta.61](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.60...sdk-v0.5.0-beta.61) (2026-08-27)
183
+
184
+
185
+ ### Features
186
+
187
+ * **app:** make state machines authoritative ([#284](https://github.com/astrale-os/sdk/issues/284)) ([2c22561](https://github.com/astrale-os/sdk/commit/2c2256170a1cc1c86b4cc31fce9684329f87a4d1))
188
+ * declare layer facades at layer roots ([#281](https://github.com/astrale-os/sdk/issues/281)) ([86f875a](https://github.com/astrale-os/sdk/commit/86f875a73a9baeca7968e6bfefbd9c1b0b5eacc8))
189
+
190
+
191
+ ### Bug Fixes
192
+
193
+ * **app:** preserve Services deployment rejections ([#282](https://github.com/astrale-os/sdk/issues/282)) ([102a74f](https://github.com/astrale-os/sdk/commit/102a74f296c58bf70a59b0fd3ef942ebd813808e))
194
+ * conform lifecycle authority for domains ([#286](https://github.com/astrale-os/sdk/issues/286)) ([1725d11](https://github.com/astrale-os/sdk/commit/1725d11f75449930ba437c4a57549f40df2b4757))
195
+
196
+ ## [0.5.0-beta.60](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.59...sdk-v0.5.0-beta.60) (2026-08-27)
197
+
198
+
199
+ ### Bug Fixes
200
+
201
+ * **release:** qualify stable managed service requests ([#275](https://github.com/astrale-os/sdk/issues/275)) ([192efb8](https://github.com/astrale-os/sdk/commit/192efb8b9cdb990b8e3647e68f90fb649a132316))
202
+
203
+ ## [0.5.0-beta.59](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.58...sdk-v0.5.0-beta.59) (2026-08-27)
204
+
205
+
206
+ ### Bug Fixes
207
+
208
+ * align SDK with Edge policy Kernel cohort ([#277](https://github.com/astrale-os/sdk/issues/277)) ([1859301](https://github.com/astrale-os/sdk/commit/1859301e2d98200be0627001cdf48f653efd42a9))
209
+
210
+ ## [0.5.0-beta.58](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.57...sdk-v0.5.0-beta.58) (2026-08-27)
211
+
212
+
213
+ ### Features
214
+
215
+ * **app:** add project rule escape hatch ([#271](https://github.com/astrale-os/sdk/issues/271)) ([27edc07](https://github.com/astrale-os/sdk/commit/27edc078ac8936c86c325bbd382e9b11392bc79a))
216
+ * **app:** close hosted Application runtime contracts ([#261](https://github.com/astrale-os/sdk/issues/261)) ([b0ec17b](https://github.com/astrale-os/sdk/commit/b0ec17bcfeb613a2e6dcd986a22355ba8ea0efd5))
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * preserve stable compatible Service routing ([#272](https://github.com/astrale-os/sdk/issues/272)) ([059f188](https://github.com/astrale-os/sdk/commit/059f1884c7d4e65018721abc0ad0af17917e9812))
222
+
223
+ ## [0.5.0-beta.57](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.56...sdk-v0.5.0-beta.57) (2026-08-27)
224
+
225
+
226
+ ### Features
227
+
228
+ * **app:** enforce cross-domain capability requirements ([#267](https://github.com/astrale-os/sdk/issues/267)) ([5c358e3](https://github.com/astrale-os/sdk/commit/5c358e3a36f8e277eee552f0709e1b875b2e511d))
229
+
230
+ ## [0.5.0-beta.56](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.55...sdk-v0.5.0-beta.56) (2026-08-27)
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * **execution:** serve canonical publication media type ([#268](https://github.com/astrale-os/sdk/issues/268)) ([62b4d49](https://github.com/astrale-os/sdk/commit/62b4d49e1f8736916d83240401662f3b9c705d38))
236
+
237
+ ## [0.5.0-beta.55](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.54...sdk-v0.5.0-beta.55) (2026-08-26)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * **ci:** normalize terminal output in publication proof ([#259](https://github.com/astrale-os/sdk/issues/259)) ([5eb3f90](https://github.com/astrale-os/sdk/commit/5eb3f90892667d26f813141965e5dc5762f552bf))
243
+ * **identity:** refresh callbacks during long invocations ([#263](https://github.com/astrale-os/sdk/issues/263)) ([dcfbfb7](https://github.com/astrale-os/sdk/commit/dcfbfb7e570e44b8b1a17b7decdde7e4a2d407fc))
244
+
245
+ ## [0.5.0-beta.54](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.53...sdk-v0.5.0-beta.54) (2026-08-26)
246
+
247
+
248
+ ### Bug Fixes
249
+
250
+ * **ci:** isolate manual qualification runs ([#256](https://github.com/astrale-os/sdk/issues/256)) ([50d48fe](https://github.com/astrale-os/sdk/commit/50d48fed713f1d898395d36645fcd6276ac7e2f0))
251
+ * **release:** adopt latest Kernel client cohort ([#258](https://github.com/astrale-os/sdk/issues/258)) ([ee7f865](https://github.com/astrale-os/sdk/commit/ee7f865b410598819b807202a8382c82689e59a4))
252
+
253
+ ## [0.5.0-beta.53](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.52...sdk-v0.5.0-beta.53) (2026-08-26)
254
+
255
+
256
+ ### Features
257
+
258
+ * package multiple Domain schemas ([#253](https://github.com/astrale-os/sdk/issues/253)) ([3074518](https://github.com/astrale-os/sdk/commit/3074518dc342c30d12aee64754aba4701d3ed806))
259
+
260
+
261
+ ### Bug Fixes
262
+
263
+ * **ci:** admit manual qualification recovery ([#254](https://github.com/astrale-os/sdk/issues/254)) ([103a383](https://github.com/astrale-os/sdk/commit/103a3837e163ee586f1f40d806dd0d28e634403a))
264
+
265
+ ## [0.5.0-beta.52](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.51...sdk-v0.5.0-beta.52) (2026-08-26)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * **ci:** finalize SDK publication qualification ([#250](https://github.com/astrale-os/sdk/issues/250)) ([5de288c](https://github.com/astrale-os/sdk/commit/5de288c9b15486ae244d56e2d1424639acb79aee))
271
+
272
+ ## [0.5.0-beta.51](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.50...sdk-v0.5.0-beta.51) (2026-08-26)
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * **worker:** restore exact generated builds ([#248](https://github.com/astrale-os/sdk/issues/248)) ([f4cc0e0](https://github.com/astrale-os/sdk/commit/f4cc0e012c70c992ca8ff23ff5999d12c18e5e7d))
278
+
279
+ ## [0.5.0-beta.50](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.49...sdk-v0.5.0-beta.50) (2026-08-26)
280
+
281
+
282
+ ### Bug Fixes
283
+
284
+ * **cloudflare:** pin local development origin ([#246](https://github.com/astrale-os/sdk/issues/246)) ([0dbce7f](https://github.com/astrale-os/sdk/commit/0dbce7fbbe048a5856304b602c892b3e02af98f5))
285
+
286
+ ## [0.5.0-beta.49](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.48...sdk-v0.5.0-beta.49) (2026-08-26)
287
+
288
+
289
+ ### Bug Fixes
290
+
291
+ * **sdk:** adopt kernel beta 12 cohort ([#244](https://github.com/astrale-os/sdk/issues/244)) ([9e78c70](https://github.com/astrale-os/sdk/commit/9e78c70aecf542ab41728b3f1b1630e0ab182619))
292
+
293
+ ## [0.5.0-beta.48](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.47...sdk-v0.5.0-beta.48) (2026-08-26)
294
+
295
+
296
+ ### Bug Fixes
297
+
298
+ * **scaffold:** honor the selected package manager ([#242](https://github.com/astrale-os/sdk/issues/242)) ([e9afcdc](https://github.com/astrale-os/sdk/commit/e9afcdc9dc684a7fc29903313b6d6bce7b8113cb))
299
+
300
+ ## [0.5.0-beta.47](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.46...sdk-v0.5.0-beta.47) (2026-08-26)
301
+
302
+
303
+ ### Bug Fixes
304
+
305
+ * **deps:** pin internal package cohort ([#240](https://github.com/astrale-os/sdk/issues/240)) ([739d397](https://github.com/astrale-os/sdk/commit/739d397bd651e559fe6c97b0bdf9c684941054a1))
306
+
307
+ ## [0.5.0-beta.46](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.45...sdk-v0.5.0-beta.46) (2026-08-25)
308
+
309
+
310
+ ### Features
311
+
312
+ * **domain:** admit native binary responses and routes ([8554b24](https://github.com/astrale-os/sdk/commit/8554b24796ba11a067f828c982a766e001d84c0d))
313
+ * **domain:** support native binary HTTP routes ([6549db4](https://github.com/astrale-os/sdk/commit/6549db4206348632cdd2a4ed1567ffe7d89a7aa4))
314
+
315
+
316
+ ### Bug Fixes
317
+
318
+ * **app:** clarify binary Action receiver reads ([a91eeaa](https://github.com/astrale-os/sdk/commit/a91eeaaef7ff8e26c07070f564362eaee319dd60))
319
+ * **app:** follow buffered binary result ([c2f7b9a](https://github.com/astrale-os/sdk/commit/c2f7b9a8e4b7ad06525161400c3ca7537012113a))
320
+ * **deploy:** preserve partial readiness evidence ([c37a1c5](https://github.com/astrale-os/sdk/commit/c37a1c53680bf26211b51e880a4bd6519a842b0c))
321
+ * **scaffold:** register routes aliases ([2ad1675](https://github.com/astrale-os/sdk/commit/2ad1675db54193eb678a2c2d5b11f219f59100c2))
322
+
323
+
324
+ ### Documentation
325
+
326
+ * record Domain publication recovery ([97c6b73](https://github.com/astrale-os/sdk/commit/97c6b73fe62ea18f3a258b41a818647361df5111))
327
+ * record Domain publication recovery ([009b1cb](https://github.com/astrale-os/sdk/commit/009b1cb07221d037ba5d3f15204f0dd85cad8a6c))
328
+
329
+ ## [0.5.0-beta.45](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.44...sdk-v0.5.0-beta.45) (2026-08-25)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * **schema:** keep KernelSchema declarations portable ([bd4690b](https://github.com/astrale-os/sdk/commit/bd4690bf5defde05a847770f0df90de1a4f77180))
335
+ * **schema:** keep KernelSchema declarations portable ([bae4bc2](https://github.com/astrale-os/sdk/commit/bae4bc2e9f432aa013f96921c53b789723c175c8))
336
+
337
+
338
+ ### Documentation
339
+
340
+ * record KernelSchema CI proof ([6f67d04](https://github.com/astrale-os/sdk/commit/6f67d04c2e0b4ca838b2c3ea7efa1de5f8190243))
341
+
342
+ ## [0.5.0-beta.44](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.43...sdk-v0.5.0-beta.44) (2026-08-25)
343
+
344
+
345
+ ### Features
346
+
347
+ * make Domain packages Schema-only by default ([2eea4ef](https://github.com/astrale-os/sdk/commit/2eea4ef46360026bbabfb3607b8defc75f89d23e))
348
+
349
+
350
+ ### Bug Fixes
351
+
352
+ * **ci:** materialize admitted Bun during publication qualification ([ca0e998](https://github.com/astrale-os/sdk/commit/ca0e9985cafae26aead5e39a80c3b98f5b73507d))
353
+ * **ci:** materialize admitted Bun during publication qualification ([7f23b30](https://github.com/astrale-os/sdk/commit/7f23b300849200c7431beeabfab742be276e03c6))
354
+
355
+
356
+ ### Documentation
357
+
358
+ * **history:** decouple generic Domains workflows ([3b13f5f](https://github.com/astrale-os/sdk/commit/3b13f5fd1d164c21dc4b625f7195a24603997f13))
359
+ * **history:** record generic workflow CI ([1eb39a4](https://github.com/astrale-os/sdk/commit/1eb39a44de59d582b85c5908a853e8651d2d4c31))
360
+ * **history:** record Windows publication proof ([d054ba5](https://github.com/astrale-os/sdk/commit/d054ba5f80c356a2af63ebff28b47aea8212eda4))
361
+
362
+ ## [0.5.0-beta.43](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.42...sdk-v0.5.0-beta.43) (2026-08-25)
363
+
364
+
365
+ ### Bug Fixes
366
+
367
+ * **app:** provision project-local Bun in domain scaffold ([5e8b462](https://github.com/astrale-os/sdk/commit/5e8b462a8f966759428339ea353a926e0b600021))
368
+ * **scaffold:** provision project-local bun ([132a939](https://github.com/astrale-os/sdk/commit/132a9399573196e833d693c21460d55995089205))
369
+
370
+
371
+ ### Documentation
372
+
373
+ * **history:** retain Services function latency proof ([32a398c](https://github.com/astrale-os/sdk/commit/32a398c7c932c717b540d8c3a342094c7c851a96))
374
+ * **history:** retain Services function latency proof ([413b1bf](https://github.com/astrale-os/sdk/commit/413b1bfe349c56530f7d949e5c81211472748247))
375
+
376
+ ## [0.5.0-beta.42](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.41...sdk-v0.5.0-beta.42) (2026-08-25)
377
+
378
+
379
+ ### Bug Fixes
380
+
381
+ * **cloudflare:** prefer concrete SPA assets ([039d47b](https://github.com/astrale-os/sdk/commit/039d47b347d0b1a6d3cda5e6896cbcecc9a65106))
382
+ * **cloudflare:** serve root frontend assets ([f8f5a11](https://github.com/astrale-os/sdk/commit/f8f5a11b4558107713608605be883aeedcc60907))
383
+ * **frontend:** serve complete generated identity ([0a8987e](https://github.com/astrale-os/sdk/commit/0a8987e82e47850d4fbfbad7c4ef475dfae56388))
384
+ * **scaffold:** generate complete frontend identity ([c5b03b4](https://github.com/astrale-os/sdk/commit/c5b03b4f97bce129ac934e96583e5e83f4516367))
385
+
386
+ ## [0.5.0-beta.41](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.40...sdk-v0.5.0-beta.41) (2026-08-25)
387
+
388
+
389
+ ### Bug Fixes
390
+
391
+ * **cloudflare:** admit compatibility flag order ([#227](https://github.com/astrale-os/sdk/issues/227)) ([b4a7695](https://github.com/astrale-os/sdk/commit/b4a769525ae75beaa480a0b0d860d44a7bfe785a))
392
+
393
+
394
+ ### Documentation
395
+
396
+ * **history:** retain Services latency qualification ([#223](https://github.com/astrale-os/sdk/issues/223)) ([c3a7107](https://github.com/astrale-os/sdk/commit/c3a71076a103f6ed2be565fbda3f5c718e9fd2c5))
397
+
398
+ ## [0.5.0-beta.40](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.39...sdk-v0.5.0-beta.40) (2026-08-25)
399
+
400
+
401
+ ### Performance Improvements
402
+
403
+ * **cloudflare:** serve frontend before runtime realization ([#221](https://github.com/astrale-os/sdk/issues/221)) ([1c3f8db](https://github.com/astrale-os/sdk/commit/1c3f8db9fe3f8a0f3120fe92f5341ddf5bcd7f3f))
404
+
405
+ ## [0.5.0-beta.39](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.38...sdk-v0.5.0-beta.39) (2026-08-25)
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * **client:** consume retained query provenance ([#218](https://github.com/astrale-os/sdk/issues/218)) ([00781c8](https://github.com/astrale-os/sdk/commit/00781c88cf683d040116c94107f51864058a9b64))
411
+
412
+ ## [0.5.0-beta.38](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.37...sdk-v0.5.0-beta.38) (2026-08-25)
413
+
414
+
415
+ ### Bug Fixes
416
+
417
+ * **scaffold:** discover project frontend sources ([#216](https://github.com/astrale-os/sdk/issues/216)) ([019ef30](https://github.com/astrale-os/sdk/commit/019ef3096f8e29aa532b4ea67bd9816dc11d7781))
418
+
419
+ ## [0.5.0-beta.37](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.36...sdk-v0.5.0-beta.37) (2026-08-25)
420
+
421
+
422
+ ### Bug Fixes
423
+
424
+ * **adapter-cloudflare:** parse status stdout only ([#213](https://github.com/astrale-os/sdk/issues/213)) ([4ebb41a](https://github.com/astrale-os/sdk/commit/4ebb41ad918e1cb8aefbfb396218204c96a9fd48))
425
+ * **release:** invoke the canonical deployment script ([#215](https://github.com/astrale-os/sdk/issues/215)) ([b59e739](https://github.com/astrale-os/sdk/commit/b59e7395c7cb6f41ce17d05270f9aa844ca26d0d))
426
+
427
+ ## [0.5.0-beta.36](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.35...sdk-v0.5.0-beta.36) (2026-08-25)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * **scaffold:** remove redundant prod script ([#210](https://github.com/astrale-os/sdk/issues/210)) ([7327ea9](https://github.com/astrale-os/sdk/commit/7327ea9e09daadc7a060a11b0b3df423a2be66b1))
433
+
434
+ ## [0.5.0-beta.35](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.34...sdk-v0.5.0-beta.35) (2026-08-25)
435
+
436
+
437
+ ### Bug Fixes
438
+
439
+ * **adapter-cloudflare:** retain watch service modules ([#208](https://github.com/astrale-os/sdk/issues/208)) ([0c0fb64](https://github.com/astrale-os/sdk/commit/0c0fb6497776cabb399717df92b0a7b3eab9f5d8))
440
+
441
+ ## [0.5.0-beta.34](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.33...sdk-v0.5.0-beta.34) (2026-08-25)
442
+
443
+
444
+ ### Bug Fixes
445
+
446
+ * **scaffold:** own selected adapter closure ([#205](https://github.com/astrale-os/sdk/issues/205)) ([19336f5](https://github.com/astrale-os/sdk/commit/19336f50819ab5237ced04f7a55d3ca9f50796eb))
447
+
448
+ ## [0.5.0-beta.33](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.32...sdk-v0.5.0-beta.33) (2026-08-25)
449
+
450
+
451
+ ### Bug Fixes
452
+
453
+ * **adapter-astrale:** carry large managed artifacts portably ([#201](https://github.com/astrale-os/sdk/issues/201)) ([49425dd](https://github.com/astrale-os/sdk/commit/49425dd89ac9e45fc51b5b0ebbe86ecf068479b2))
454
+
455
+ ## [0.5.0-beta.32](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.31...sdk-v0.5.0-beta.32) (2026-08-25)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * **schema:** consume compact resolved projections ([#202](https://github.com/astrale-os/sdk/issues/202)) ([ec59d41](https://github.com/astrale-os/sdk/commit/ec59d41cbcf632dba0059e0dad7dce3e545c499c))
461
+
462
+ ## [0.5.0-beta.31](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.30...sdk-v0.5.0-beta.31) (2026-08-24)
463
+
464
+
465
+ ### Bug Fixes
466
+
467
+ * **client:** consume canonical mutation closure ([#197](https://github.com/astrale-os/sdk/issues/197)) ([6023215](https://github.com/astrale-os/sdk/commit/6023215cfdd797832f173b1ef9f72d181173ba94))
468
+ * **deps:** close downstream package boundaries ([#193](https://github.com/astrale-os/sdk/issues/193)) ([00ac85a](https://github.com/astrale-os/sdk/commit/00ac85a23f65f4d34384812e33f3a77b9cc8e572))
469
+
470
+ ## [0.5.0-beta.30](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.29...sdk-v0.5.0-beta.30) (2026-08-24)
471
+
472
+
473
+ ### Bug Fixes
474
+
475
+ * **release:** pin token-scoped package mirror ([#194](https://github.com/astrale-os/sdk/issues/194)) ([1c95eeb](https://github.com/astrale-os/sdk/commit/1c95eebbdfc1e3356a1298a27323a66ef46528c5))
476
+
477
+ ## [0.5.0-beta.29](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.28...sdk-v0.5.0-beta.29) (2026-08-24)
478
+
479
+
480
+ ### Bug Fixes
481
+
482
+ * **app:** complete projected recipe realization ([#188](https://github.com/astrale-os/sdk/issues/188)) ([47bd9ed](https://github.com/astrale-os/sdk/commit/47bd9ed54292962721cf79c356ff1198608c6834))
483
+ * **cloudflare:** disable workers.dev for routed deployments ([#189](https://github.com/astrale-os/sdk/issues/189)) ([d0781f6](https://github.com/astrale-os/sdk/commit/d0781f6027cfdaf34d304af2e12a4c917740729e))
484
+
485
+ ## [0.5.0-beta.28](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.27...sdk-v0.5.0-beta.28) (2026-08-24)
486
+
487
+
488
+ ### Bug Fixes
489
+
490
+ * **release:** admit exact managed publication projection ([#190](https://github.com/astrale-os/sdk/issues/190)) ([20bd081](https://github.com/astrale-os/sdk/commit/20bd08149261089daed9d70b50f8986c5eb07ddf))
491
+
492
+ ## [0.5.0-beta.27](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.26...sdk-v0.5.0-beta.27) (2026-08-24)
493
+
494
+
495
+ ### Features
496
+
497
+ * **adapters:** productionize managed Astrale deployment ([#181](https://github.com/astrale-os/sdk/issues/181)) ([bf6180a](https://github.com/astrale-os/sdk/commit/bf6180af70ed3e6c1863b509ba2d038fba27ed9e))
498
+ * **release:** mirror private GitHub packages ([#187](https://github.com/astrale-os/sdk/issues/187)) ([a39f8a3](https://github.com/astrale-os/sdk/commit/a39f8a335473d46b237539aafd0dad79bc92c295))
499
+
500
+
501
+ ### Bug Fixes
502
+
503
+ * **cloudflare:** watch admitted worker entrypoint ([#186](https://github.com/astrale-os/sdk/issues/186)) ([37a70b5](https://github.com/astrale-os/sdk/commit/37a70b5f5a3fe1453947edfd9e5dad81a9e8221d))
504
+
505
+ ## [0.5.0-beta.26](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.25...sdk-v0.5.0-beta.26) (2026-08-24)
506
+
507
+
508
+ ### Bug Fixes
509
+
510
+ * **adapter-cloudflare:** omit implicit router in local watch ([#182](https://github.com/astrale-os/sdk/issues/182)) ([4788faf](https://github.com/astrale-os/sdk/commit/4788fafec22d6906eedad9f08e7743f27e5a8e9f))
511
+
512
+ ## [0.5.0-beta.25](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.24...sdk-v0.5.0-beta.25) (2026-08-24)
513
+
514
+
515
+ ### Features
516
+
517
+ * complete cross-domain runtime execution ([#179](https://github.com/astrale-os/sdk/issues/179)) ([e6a3d6a](https://github.com/astrale-os/sdk/commit/e6a3d6a2985fb2ea2631a728e6c06497a4670f04))
518
+
519
+ ## [0.5.0-beta.24](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.23...sdk-v0.5.0-beta.24) (2026-08-24)
520
+
521
+
522
+ ### Performance Improvements
523
+
524
+ * reuse admitted build evidence ([#176](https://github.com/astrale-os/sdk/issues/176)) ([b13ad77](https://github.com/astrale-os/sdk/commit/b13ad772093ff61805fff576aa46f4f31bfe1cdf))
525
+
526
+ ## [0.5.0-beta.23](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.22...sdk-v0.5.0-beta.23) (2026-08-24)
527
+
528
+
529
+ ### Bug Fixes
530
+
531
+ * **app:** colocate custom scaffold features ([#174](https://github.com/astrale-os/sdk/issues/174)) ([4825bb6](https://github.com/astrale-os/sdk/commit/4825bb6d1395f91bec0a0f70690ff248603114e6))
532
+ * **cloudflare:** defer worker application loading ([#173](https://github.com/astrale-os/sdk/issues/173)) ([aa47ddd](https://github.com/astrale-os/sdk/commit/aa47ddda94372dadea9491b5492bfecf689f8d8a))
533
+
534
+ ## [0.5.0-beta.22](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.21...sdk-v0.5.0-beta.22) (2026-08-24)
535
+
536
+
537
+ ### Bug Fixes
538
+
539
+ * **packaging:** normalize local declaration specifiers ([#171](https://github.com/astrale-os/sdk/issues/171)) ([e7cda6d](https://github.com/astrale-os/sdk/commit/e7cda6dfb896e3ce26c621114ea0daa433f79b1b))
540
+
541
+ ## [0.5.0-beta.21](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.20...sdk-v0.5.0-beta.21) (2026-08-24)
542
+
543
+
544
+ ### Bug Fixes
545
+
546
+ * **scaffold:** isolate registry qualification ([#169](https://github.com/astrale-os/sdk/issues/169)) ([472e93b](https://github.com/astrale-os/sdk/commit/472e93bfa1a5d39070a05dc3ec7556ea76b425f6))
547
+
548
+ ## [0.5.0-beta.20](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.19...sdk-v0.5.0-beta.20) (2026-08-24)
549
+
550
+
551
+ ### Bug Fixes
552
+
553
+ * **ci:** install bun for release qualification ([#167](https://github.com/astrale-os/sdk/issues/167)) ([dae20bf](https://github.com/astrale-os/sdk/commit/dae20bfd6775a8efe35ddb37bd6bafaff7ffcf78))
554
+
555
+ ## [0.5.0-beta.19](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.18...sdk-v0.5.0-beta.19) (2026-08-24)
556
+
557
+
558
+ ### Bug Fixes
559
+
560
+ * **ci:** harden public package qualification ([#165](https://github.com/astrale-os/sdk/issues/165)) ([da0728f](https://github.com/astrale-os/sdk/commit/da0728f70ac7b9b9db5e0be46b20a101f9689f9b))
561
+ * **release:** remove cohort publication topology ([#163](https://github.com/astrale-os/sdk/issues/163)) ([eab66f5](https://github.com/astrale-os/sdk/commit/eab66f51c4e003d0e81b909eca83783a2101388a))
562
+
563
+ ## [0.5.0-beta.18](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.17...sdk-v0.5.0-beta.18) (2026-08-24)
564
+
565
+
566
+ ### Bug Fixes
567
+
568
+ * **ci:** publish public packages through npm ([65fa7f9](https://github.com/astrale-os/sdk/commit/65fa7f98c4248dfc2aaa9cd19f1a397bcf24dccc))
569
+ * **ci:** publish public packages through npm ([4a6960e](https://github.com/astrale-os/sdk/commit/4a6960e685c7c46ed5667352e87552d8f73d132f))
570
+
571
+ ## [0.5.0-beta.17](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.16...sdk-v0.5.0-beta.17) (2026-08-24)
572
+
573
+
574
+ ### Features
575
+
576
+ * **action:** bind query and mutation executors ([1e7dd8b](https://github.com/astrale-os/sdk/commit/1e7dd8b22b3450671bb046997a6d0f905ae15ab0))
577
+ * **action:** bind query and mutation executors ([459068c](https://github.com/astrale-os/sdk/commit/459068cc20773e311e1347e44f721ce2c2d3e4b5))
578
+ * **app:** accept string mutation bindings ([fd509c0](https://github.com/astrale-os/sdk/commit/fd509c052566bf51577bb1311b1796b984c38a7b))
579
+ * expose canonical DNS label values ([2c8d251](https://github.com/astrale-os/sdk/commit/2c8d251f48377da4470c057aa72b0b4c579eea6f))
580
+ * **platform:** expose wire contract facades ([a0f2cd2](https://github.com/astrale-os/sdk/commit/a0f2cd20eac1dc4f334f4fef72a56777e4cde7ec))
581
+
582
+
583
+ ### Bug Fixes
584
+
585
+ * **adapter-cloudflare:** retain installed schema revisions ([f3b65a6](https://github.com/astrale-os/sdk/commit/f3b65a601d77989bcbfafe605644c5b90e6538cc))
586
+ * **adapter-cloudflare:** retain installed schema revisions ([32b277b](https://github.com/astrale-os/sdk/commit/32b277b1bdec619ef227183046765249f460da5a))
587
+ * **adapters:** retain execution signing identity ([1b8d50d](https://github.com/astrale-os/sdk/commit/1b8d50d73708c3202bb886dadaf1bf2dce09525c))
588
+ * **app:** keep recipe declarations portable ([ec9f334](https://github.com/astrale-os/sdk/commit/ec9f33473d47600351c04385e7bf1769bc8b1350))
589
+ * **app:** preserve exact packed domain types ([866e4af](https://github.com/astrale-os/sdk/commit/866e4af37df3ffae24c9009355d53bdcec352799))
590
+ * **cloudflare:** admit revision deployment evidence ([82de3cf](https://github.com/astrale-os/sdk/commit/82de3cf20348b0782efc74dce8791b2a32c14b24))
591
+ * **cloudflare:** derive signing key ids from material ([3423348](https://github.com/astrale-os/sdk/commit/3423348017dbbcfc77f3038e867fd6a315dd51dc))
592
+ * **cloudflare:** derive signing key ids from material ([324f61f](https://github.com/astrale-os/sdk/commit/324f61f3a75e2486a436827d5f69729765a42487))
593
+ * **cloudflare:** migrate legacy signing key ids ([afe97d7](https://github.com/astrale-os/sdk/commit/afe97d79627ea95b82d46f0ce38e7728e4f1cbb3))
594
+ * **deps:** advance published kernel cohort ([b95952c](https://github.com/astrale-os/sdk/commit/b95952c6ce34378b551234f48db5e5a2467d7578))
595
+ * **deps:** consume the Kernel beta.10 cohort ([75c380f](https://github.com/astrale-os/sdk/commit/75c380ffb0e5e324ccd9dac7cbb30c6bee14aab0))
596
+ * **deps:** consume the Kernel beta.10 cohort ([a6a34d2](https://github.com/astrale-os/sdk/commit/a6a34d213d62501d3471c593b9ceb6af9a7aa1d3))
597
+ * **deps:** preserve release-age admission ([f0c7977](https://github.com/astrale-os/sdk/commit/f0c7977b0c4deef6e4cef8798c3db6d990553e7f))
598
+ * **packaging:** admit the exact domain package boundary ([d84900e](https://github.com/astrale-os/sdk/commit/d84900efa7c8954c89f47b1e02973c178c62f839))
599
+ * **packaging:** publish domains through sdk facades ([48d3eef](https://github.com/astrale-os/sdk/commit/48d3eef0825d97d34a38a8fef671e085baea913a))
600
+ * **platform:** restore result facade ([d07152c](https://github.com/astrale-os/sdk/commit/d07152c975c001c9eb88283e9b847298aa124cba))
601
+ * remove broken published source maps ([38237dc](https://github.com/astrale-os/sdk/commit/38237dc4f6c4b7a91a1de1001dbb930216c24324))
602
+ * select precise declaration facades ([c5ba6c3](https://github.com/astrale-os/sdk/commit/c5ba6c320372b48aaaafbd3c47b1b18017827809))
603
+ * **worker:** merge Cloudflare revision gateway ([df2887c](https://github.com/astrale-os/sdk/commit/df2887ce2b097623548c04e1c13456952aec4230))
604
+ * **worker:** merge Cloudflare signing identity ([3aefa00](https://github.com/astrale-os/sdk/commit/3aefa00c84d385fc929fa9f3bf416d8af11c6ed3))
605
+
606
+
607
+ ### Documentation
608
+
609
+ * close kernel publication gate ([c291b25](https://github.com/astrale-os/sdk/commit/c291b259f3ba16ec32f1bf62383b89d091e88dfa))
610
+ * record downstream release readiness ([d571c7e](https://github.com/astrale-os/sdk/commit/d571c7e09a072877f3e8e84f38fd3f3fc5f1cd76))
611
+ * record public Shell release owner ([28d5104](https://github.com/astrale-os/sdk/commit/28d5104c5c92f0bff6e905aeac8b17dd152166f1))
612
+
613
+ ## [0.5.0-beta.16](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.15...sdk-v0.5.0-beta.16) (2026-08-24)
614
+
615
+
616
+ ### ⚠ BREAKING CHANGES
617
+
618
+ * redesign SDK V1 authoring and execution
619
+
620
+ * redesign SDK V1 authoring and execution ([41653c2](https://github.com/astrale-os/sdk/commit/41653c20e371e5ed3d3992a930ad5460e3163019))
621
+
622
+
623
+ ### Features
624
+
625
+ * **application:** expose direct graph node targets ([fd05d33](https://github.com/astrale-os/sdk/commit/fd05d335ace1ee00fe672ec222818d7d8a2d1b59))
626
+ * **application:** expose direct graph node targets ([9ae24d9](https://github.com/astrale-os/sdk/commit/9ae24d941f42b4817497ca7ab26b900fed8d74d8))
627
+
628
+
629
+ ### Bug Fixes
630
+
631
+ * **ci:** contain runtime delegation failures ([ac9da14](https://github.com/astrale-os/sdk/commit/ac9da14394f6f57db0f39768ba9d3b4af659597e))
632
+ * **ci:** delegate runtime commands to bun ([2a6c878](https://github.com/astrale-os/sdk/commit/2a6c878f4a6bad1e615f8bb1bfb900cb3c50b3b4))
633
+ * **ci:** preserve sdk cli executable mode ([207d4e1](https://github.com/astrale-os/sdk/commit/207d4e1288a5a46e286210aab34db043b54d280e))
634
+ * **ci:** run package tooling under node ([577222f](https://github.com/astrale-os/sdk/commit/577222f2f4510d6dbd606be69a291161dfa3ed05))
635
+ * **ci:** separate source and published cli runtimes ([66c0729](https://github.com/astrale-os/sdk/commit/66c0729060e18789f93f065036183fa8d9ff0520))
636
+ * **ci:** supervise sdk runtime delegation ([355a1bb](https://github.com/astrale-os/sdk/commit/355a1bb93a5f4dd829b9cd5408843a21f042cfd2))
637
+ * **ci:** verify exact linked kernel cohort ([eb17821](https://github.com/astrale-os/sdk/commit/eb178210e01b83e52580d701720191110323a739))
638
+ * **deployment:** use resolved domain projection ([#146](https://github.com/astrale-os/sdk/issues/146)) ([af58848](https://github.com/astrale-os/sdk/commit/af5884810048758d05e9606235fcb83846a9871e))
639
+ * **deps:** consume the published Kernel cohort ([#152](https://github.com/astrale-os/sdk/issues/152)) ([8ca7548](https://github.com/astrale-os/sdk/commit/8ca7548191d176089bf75ffb887a253a69425691))
640
+ * **execution:** complete remote admission proof ([f7e988e](https://github.com/astrale-os/sdk/commit/f7e988e450fd26974087bf98035bc90826a7446b))
641
+ * **sdk:** close downstream facade and runtime boundaries ([bb4a29f](https://github.com/astrale-os/sdk/commit/bb4a29f62a612b9eb96dc137b51edfb8eef0abe0))
642
+ * **sdk:** close downstream facade and runtime boundaries ([740799b](https://github.com/astrale-os/sdk/commit/740799bb9b13b2947f0b28133b21517dfff33f68))
643
+ * **sdk:** make packed authoring token-free ([feacf89](https://github.com/astrale-os/sdk/commit/feacf8941dfac1e372cfdc04623c59f3903e4305))
644
+
645
+
646
+ ### Documentation
647
+
648
+ * refresh final SDK V1 evidence ([0a0c96b](https://github.com/astrale-os/sdk/commit/0a0c96b1d6a5f00f0d3d10608f89d3e30fdeaa3d))
649
+
650
+ ## [0.5.0-beta.15](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.14...sdk-v0.5.0-beta.15) (2026-08-21)
651
+
652
+
653
+ ### Bug Fixes
654
+
655
+ * **scaffold:** align generated domains with the cohort ([#142](https://github.com/astrale-os/sdk/issues/142)) ([3877bfa](https://github.com/astrale-os/sdk/commit/3877bfa1713093b5beaf42dca18e7daf26f7866b))
656
+
657
+ ## [0.5.0-beta.14](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.13...sdk-v0.5.0-beta.14) (2026-08-21)
658
+
659
+
660
+ ### Bug Fixes
661
+
662
+ * adopt the official kernel cohort ([#140](https://github.com/astrale-os/sdk/issues/140)) ([afb6580](https://github.com/astrale-os/sdk/commit/afb6580bc7ac39a1cc32a8668ba70ec19767b1be))
663
+
664
+ ## [0.5.0-beta.13](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.12...sdk-v0.5.0-beta.13) (2026-08-21)
665
+
666
+
667
+ ### ⚠ BREAKING CHANGES
668
+
669
+ * View declarations no longer accept or expose auth. Function authentication uses anonymous, authenticated, or authorized, while frontend access remains governed by publication routes and Shell handshake.
670
+
671
+ ### Features
672
+
673
+ * remove View authentication metadata ([33e99ad](https://github.com/astrale-os/sdk/commit/33e99adcee470a7f78278dbc3db6023c099d058f))
674
+
675
+ ## [0.5.0-beta.12](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.11...sdk-v0.5.0-beta.12) (2026-08-21)
676
+
677
+
678
+ ### Bug Fixes
679
+
680
+ * **app:** align InvocationError with Protocol ([f0b921f](https://github.com/astrale-os/sdk/commit/f0b921fbd58230fd599446a69971cf8bf7b96d3a))
681
+ * **app:** align InvocationError with Protocol ([f07d0ae](https://github.com/astrale-os/sdk/commit/f07d0ae59103022f85475baf925f8ad35f6d8cca))
682
+
683
+ ## [0.5.0-beta.11](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.10...sdk-v0.5.0-beta.11) (2026-08-21)
684
+
685
+
686
+ ### Bug Fixes
687
+
688
+ * **app:** expose Domain InvocationError ([bf23fc9](https://github.com/astrale-os/sdk/commit/bf23fc9c37d3388d6a841fab9d3af8776cd38847))
689
+ * **app:** expose Domain InvocationError ([b2e5bbe](https://github.com/astrale-os/sdk/commit/b2e5bbe2a078ae09da69f9632f2dcf758d194294))
690
+ * **ci:** qualify packed frontend lint boundary ([09478b4](https://github.com/astrale-os/sdk/commit/09478b4bde3fada6b4fbc3a9a56a5945ce6e5618))
691
+
692
+ ## [0.5.0-beta.10](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.9...sdk-v0.5.0-beta.10) (2026-08-21)
693
+
694
+
695
+ ### Bug Fixes
696
+
697
+ * **auth:** delegate Subject to Core ([c653d46](https://github.com/astrale-os/sdk/commit/c653d460a64cc2d9b1696c4dcd502b3e03b4f61f))
698
+ * **deps:** require Subject-compatible kernel cohort ([1146277](https://github.com/astrale-os/sdk/commit/114627729eea51b6960d28b36b71c6ad93bae6bc))
699
+ * **sdk:** restore private invocation boundary ([af016b0](https://github.com/astrale-os/sdk/commit/af016b09212d5a31afb139eaa917bd74dcb9823f))
700
+
701
+ ## [0.5.0-beta.9](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.8...sdk-v0.5.0-beta.9) (2026-08-21)
702
+
703
+
704
+ ### ⚠ BREAKING CHANGES
705
+
706
+ * Cloudflare domain workers no longer expose the legacy /meta endpoint; consumers must use the canonical Publication chain.
707
+
708
+ ### Features
709
+
710
+ * qualify deployment readiness through publications ([980cd35](https://github.com/astrale-os/sdk/commit/980cd35587483b50851744137f569a7bf0bb89bf))
711
+
712
+
713
+ ### Bug Fixes
714
+
715
+ * **invocation:** preserve mutation replay key ([951c404](https://github.com/astrale-os/sdk/commit/951c40429f8eb818e2ce2f60cd15d7e99d3636e4))
716
+ * **invocation:** preserve mutation replay key ([8f30a50](https://github.com/astrale-os/sdk/commit/8f30a5082bbcf34b0d243e3dd8da0d7a1f410ed8))
717
+
718
+ ## [0.5.0-beta.8](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.7...sdk-v0.5.0-beta.8) (2026-08-21)
719
+
720
+
721
+ ### Bug Fixes
722
+
723
+ * **release:** target repository when dispatching publish ([8cfc337](https://github.com/astrale-os/sdk/commit/8cfc3377b735dc40a5a82dc99ad71539d1e6718f))
724
+ * **release:** target repository when dispatching publish ([c94c89e](https://github.com/astrale-os/sdk/commit/c94c89ebebab83d88aa7b0ffbd9bc5010c9f4322))
725
+
726
+ ## [0.5.0-beta.7](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.6...sdk-v0.5.0-beta.7) (2026-08-21)
727
+
728
+
729
+ ### Bug Fixes
730
+
731
+ * **ci:** dispatch trusted Publish workflow ([d1c746d](https://github.com/astrale-os/sdk/commit/d1c746d2d682777ee8c0022f62a9e4801deee707))
732
+ * **ci:** dispatch trusted Publish workflow ([5b4caa0](https://github.com/astrale-os/sdk/commit/5b4caa06b27739cdee0fb1e6214a02771cb72857))
733
+
734
+ ## [0.5.0-beta.6](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.5...sdk-v0.5.0-beta.6) (2026-08-21)
735
+
736
+
737
+ ### Bug Fixes
738
+
739
+ * **ci:** isolate reusable publish concurrency ([f1436b0](https://github.com/astrale-os/sdk/commit/f1436b0f2ae4fb6f62b6491e32acd88397e9c9be))
740
+ * **ci:** isolate reusable publish concurrency ([b2de893](https://github.com/astrale-os/sdk/commit/b2de8937c147abf7da92f6824c69335527eacf74))
741
+ * **scaffold:** require compatible Shell beta ([f61a356](https://github.com/astrale-os/sdk/commit/f61a356d352b99ac7f6fd4be6b27ac9fb5b83b2a))
742
+ * **scaffold:** require compatible Shell beta ([7a8016a](https://github.com/astrale-os/sdk/commit/7a8016aa21db53bc8e472805b50c9a976a6bf283))
743
+ * **test:** launch Wrangler from its package root ([#122](https://github.com/astrale-os/sdk/issues/122)) ([547b450](https://github.com/astrale-os/sdk/commit/547b45022625fc84834215223e6e4ffb56f862ad))
744
+
745
+ ## [0.5.0-beta.5](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.1...sdk-v0.5.0-beta.5) (2026-08-21)
746
+
747
+
748
+ ### ⚠ BREAKING CHANGES
749
+
750
+ * expose explicit edge builders
751
+ * **sdk:** Capability replay kind non-repeatable is replaced by unsafe.
752
+ * adopt path-only invocation
753
+ * **sdk:** introduce semantic authoring modules
754
+ * **server:** adopt publication and installation vocabulary
755
+ * rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18))
756
+ * **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly
757
+ * **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core
758
+ * pushPatch and PatchKernel are removed from @astrale-os/sdk. Batch graph writes through ctx.graph.mutate(patch) instead.
759
+
760
+ * **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly ([c08b5a9](https://github.com/astrale-os/sdk/commit/c08b5a925aed63bd8c60dfaa5d23e3a02e8e8906))
761
+ * **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core ([bdf5483](https://github.com/astrale-os/sdk/commit/bdf54834b6577aa862471118adf1ea455cef0e8c))
762
+ * rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18)) ([e34bd3a](https://github.com/astrale-os/sdk/commit/e34bd3a77de6279e9f221996f04f56040233161d))
763
+ * route SDK graph access through function.get/mutate doors ([adf07ff](https://github.com/astrale-os/sdk/commit/adf07ffd423e8824ebeb8dcac525fb7b819d0ae6))
764
+ * **server:** adopt publication and installation vocabulary ([7309843](https://github.com/astrale-os/sdk/commit/7309843f7da3d349216a8392a87ecd989a14ae06))
765
+
766
+
767
+ ### Features
768
+
769
+ * **adapter-cloudflare:** load worker domains lazily ([15df5b1](https://github.com/astrale-os/sdk/commit/15df5b14f06c0a469dbdcedda2f331594d943397))
770
+ * **adapter-cloudflare:** load worker domains lazily ([45deafd](https://github.com/astrale-os/sdk/commit/45deafda5060be9000a4bd8a8048c5a945b193ae))
771
+ * **adapter-cloudflare:** resolve domain environment from bindings ([68dfa2b](https://github.com/astrale-os/sdk/commit/68dfa2bec4a8e69d34cd0dfa5e71353bde5dfc8c))
772
+ * add .dev.vars to .gitignore and update type assertion in derivePublicJwk function ([9a0cfc1](https://github.com/astrale-os/sdk/commit/9a0cfc13944f34ccd790a2f9832332886d6aaf1a))
773
+ * add `installLocation` domain-config field; place domains under /domains/<origin> ([7ee04f7](https://github.com/astrale-os/sdk/commit/7ee04f78dd70f584a1addcdbc2a981280dba94c0))
774
+ * add auth policy to remote method definitions ([369d5b4](https://github.com/astrale-os/sdk/commit/369d5b42561f502b8dd38986051aa217d4de2f46))
775
+ * add authorize hook + assertPerm helpers + fix public auth policy ([b644585](https://github.com/astrale-os/sdk/commit/b6445857cd3bef35890388869a4c61e5a618b35a))
776
+ * add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
777
+ * add defineCapability SDK contract ([2fe180a](https://github.com/astrale-os/sdk/commit/2fe180a0b46f845b99ff892c451b0e8edfa2527f))
778
+ * add defineCapability SDK contract ([1478747](https://github.com/astrale-os/sdk/commit/1478747becef9c6ebb90548bb340a0293e6b6dee))
779
+ * add dispatch method to SdkDispatcher for handling local resolutions and return types ([5c190b1](https://github.com/astrale-os/sdk/commit/5c190b15df995b34b24bc7ed1036745d08c52d31))
780
+ * add governed domain architecture toolkit ([672b179](https://github.com/astrale-os/sdk/commit/672b1793b8bc6d70e673c3276eb8d07196a36329))
781
+ * add governed domain architecture toolkit ([c36c54d](https://github.com/astrale-os/sdk/commit/c36c54d5c5b532dbd115d6e2ef601d46298ad110))
782
+ * add latest version of @typescript/native-preview to devDependencies ([003647a](https://github.com/astrale-os/sdk/commit/003647a30f96c1a161bf773946e221a5a71b8470))
783
+ * add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
784
+ * add optional core parameter to RemoteDomain and RemoteDomainConfig types ([ebacba6](https://github.com/astrale-os/sdk/commit/ebacba687506e81702d08115eeb623331b31d2ec))
785
+ * add remoteInterfaceMethods factory for interface-hosted methods ([#5](https://github.com/astrale-os/sdk/issues/5)) ([9f05a0c](https://github.com/astrale-os/sdk/commit/9f05a0cb71d1b8f73d7f676fb8af1e19ef9d1510))
786
+ * add requireEnv helper and require issuer in createRemoteServer ([ac4f25a](https://github.com/astrale-os/sdk/commit/ac4f25a610a549f069739a2b09891b0529fc2ec7))
787
+ * add schema-first domain definition ([72cd622](https://github.com/astrale-os/sdk/commit/72cd622de2b056086d3eb5fdaf85b0225f9c9713))
788
+ * add SDK v2 with JSON-RPC support and streaming capabilities ([a9c30ec](https://github.com/astrale-os/sdk/commit/a9c30ec1527e381c715d7881200af3db0903dc53))
789
+ * add SDK-native Astrale domain linter ([#50](https://github.com/astrale-os/sdk/issues/50)) ([002c4f0](https://github.com/astrale-os/sdk/commit/002c4f0da8f09670d4ad3fa8c139d336a0d6ca52))
790
+ * add semantic kernel facades ([31a212c](https://github.com/astrale-os/sdk/commit/31a212c9baf1b810e3948e654f042327ac06a0c1))
791
+ * add semantic kernel facades ([260c31c](https://github.com/astrale-os/sdk/commit/260c31cd25015f0ac2f2aa5d07d84294e4b9e50b))
792
+ * add unit tests for method resolution and enhance normalization logic ([b4ffebd](https://github.com/astrale-os/sdk/commit/b4ffebd3cc4a54aaf1eb2221982c46ddf32329fc))
793
+ * adopt kernel client session vocabulary ([87de6f1](https://github.com/astrale-os/sdk/commit/87de6f15bdf8b77b1f7bc0e06cdbae00efe2bec5))
794
+ * adopt Kernel Client Session vocabulary ([8810285](https://github.com/astrale-os/sdk/commit/881028508c4823315ecd2160161475c5cb7d871f))
795
+ * adopt path-only invocation ([6749661](https://github.com/astrale-os/sdk/commit/67496619c597257e0f3df4b6a888a1dddbec8400))
796
+ * astrale adapter ships prod secrets on the install call ([80f7420](https://github.com/astrale-os/sdk/commit/80f742035df96b13e3ff9c001f525ef543566b5b))
797
+ * astrale-domain publish = register-only (no deploy) + --public-url ([708656b](https://github.com/astrale-os/sdk/commit/708656b4c38b0daa5e69cb88802652fa774daf2b))
798
+ * astrale() managed adapter and template fixes (hono dep, bun compat) ([9cee71c](https://github.com/astrale-os/sdk/commit/9cee71c1c9ecbf6ed42451d8a6ac225ebd38a9c5))
799
+ * author publication authority requirements ([169df91](https://github.com/astrale-os/sdk/commit/169df91ec6ba22f71dd532c122d94c08afed81e1))
800
+ * **auth:** provide domain token exchange ([8fa9466](https://github.com/astrale-os/sdk/commit/8fa9466b643d1d5e49841fb58f5d80bd7d0cec2f))
801
+ * auto-materialize Views/RemoteFunctions + mount worker routes from defineRemoteDomain ([34f4011](https://github.com/astrale-os/sdk/commit/34f4011369d6bedcbd1293f0b43cbc256057c14c))
802
+ * **backend:** bind handler kernels from compiled schemas ([2f87bf9](https://github.com/astrale-os/sdk/commit/2f87bf9dc65362c1a8bd552a99afb1d8c9fe3439))
803
+ * **backend:** carry declarative core into builds ([e9b64b1](https://github.com/astrale-os/sdk/commit/e9b64b14ac1ac7eeb93b3b8c60f586631ca5ecfb))
804
+ * **backend:** provide Domain token exchange ([d9bc475](https://github.com/astrale-os/sdk/commit/d9bc475f14fa47bea2c7bcd1c01485ed3eac75ea))
805
+ * **backend:** support deferred and redirected functions ([4180d69](https://github.com/astrale-os/sdk/commit/4180d694a15af6de20f4c684b32fd91bde33425c))
806
+ * **backend:** support deferred handler execution ([1bb4fd8](https://github.com/astrale-os/sdk/commit/1bb4fd8fc5cd8b0c1e270f791a063caafd6b6643))
807
+ * carry publication and caller authority ([64088be](https://github.com/astrale-os/sdk/commit/64088be1d188229b78d3062a1f1671138ad645f6))
808
+ * **cli:** consume canonical domain definitions ([c498a8b](https://github.com/astrale-os/sdk/commit/c498a8b4c88d850f4e26c0fe5511eb6ed223577f))
809
+ * cloudflare adapter, create-astrale-domain, and devkit ([60d67ec](https://github.com/astrale-os/sdk/commit/60d67ec1f2dad3a77cce4c3410d6e52c088c228a))
810
+ * complete kernel v2 sdk migration ([854114d](https://github.com/astrale-os/sdk/commit/854114d256156cbb4e7f2e0fe3c50b3c99553db8))
811
+ * config hot-regen (adapter.regenerate + config watch) + X-Forwarded-Proto origin upgrade ([4cd5fb8](https://github.com/astrale-os/sdk/commit/4cd5fb878d03cd4333c12b10e48094f78e70c29b))
812
+ * ctx.callRemote for worker→worker remote-method calls ([d61a3aa](https://github.com/astrale-os/sdk/commit/d61a3aaa99b8d6ecb4b9e7e9f91e6a7c1b88b3fe))
813
+ * declare remote functions in the schema (functions-in-DSL) ([f5c1482](https://github.com/astrale-os/sdk/commit/f5c1482398de83091557ea1b20a6f08f92d570a4))
814
+ * decouple JWT issuer from server URL and use method path as outbound subject ([3af4055](https://github.com/astrale-os/sdk/commit/3af4055121dff6ef0d1cf5f2a192b7cdff719145))
815
+ * defineView and defineRemoteFunction declarative authoring helpers ([b300183](https://github.com/astrale-os/sdk/commit/b30018354e7523e06563f7db570db9548eccf332))
816
+ * dev --host <public-url> for off-localhost dev ([0d13136](https://github.com/astrale-os/sdk/commit/0d1313666a36bb69e0efcfc030cc5849bdc6db8d))
817
+ * devkit dev --port override ([17ff493](https://github.com/astrale-os/sdk/commit/17ff493f865a9227c56474ee83003d285c3f9e2a))
818
+ * devkit dx batch — loud dev build failure, adapter-swap hint, managed footer, missing-def hint ([b6c0b0b](https://github.com/astrale-os/sdk/commit/b6c0b0b611a9887b06569d6798d46c2b76016856))
819
+ * enhance authorization flow with JWKS and issuer registry support ([2bfab25](https://github.com/astrale-os/sdk/commit/2bfab25d1d651e7b97137a53112c20f4816212bd))
820
+ * enhance identity handling and function path derivation in remote server setup ([6cbdf59](https://github.com/astrale-os/sdk/commit/6cbdf591913bd982f5b3b070dd86316a6fb4f4f6))
821
+ * enhance SDK v2 with new domain methods and testing framework ([3ba1b5e](https://github.com/astrale-os/sdk/commit/3ba1b5e00b4af316ddbfec188a8cbefdd1846a6c))
822
+ * enhance SDK with domain installation and authorization features ([faaebab](https://github.com/astrale-os/sdk/commit/faaebab1ec1ec5ee29d56b765ccae18f26730653))
823
+ * enhance SdkValidationError to include detailed error messages and structure ([c498580](https://github.com/astrale-os/sdk/commit/c498580e44132ce05c272f13f557954f92b545c7))
824
+ * enhance self resolution handling and add tests for resolveSelf functionality ([63c8de5](https://github.com/astrale-os/sdk/commit/63c8de5b08281afc803dc57e711d080da374acb7))
825
+ * expose dispatcher capabilities to handlers ([0e32cba](https://github.com/astrale-os/sdk/commit/0e32cba3af1aeace84e695bfabdbd35eda9415fc))
826
+ * expose dispatcher capabilities to handlers ([26d5891](https://github.com/astrale-os/sdk/commit/26d5891986fc10c6db04a8559f3761fd42be3a64))
827
+ * expose explicit edge builders ([c067445](https://github.com/astrale-os/sdk/commit/c0674455f470d648cb91d856dc55e6332b088e9b))
828
+ * expose kernel client to defineRemoteFunction handlers ([b1ff25a](https://github.com/astrale-os/sdk/commit/b1ff25a698045b1a6df2df0d85072515f57c43dd))
829
+ * fail loud when a preset-declared secrets file is missing ([d2f7202](https://github.com/astrale-os/sdk/commit/d2f7202fc5f8b177a0b6da77cedb3b9504eec825))
830
+ * implement buildSpec function for RemoteDomain and update exports ([a1673db](https://github.com/astrale-os/sdk/commit/a1673dbfd3e7dc3b29e8f4ba03bfed2df5d8a4c8))
831
+ * implement deploy check functionality and related types for SDK deployment validation ([bf81c9a](https://github.com/astrale-os/sdk/commit/bf81c9abc5fe02efbec78786200a8aee2eabda16))
832
+ * implement managed service readiness checks and retry logic ([4d5f91d](https://github.com/astrale-os/sdk/commit/4d5f91dcadaf3f3314ba1de6d4bbbd380615038d))
833
+ * Implement StatusPage functionality with monitoring capabilities ([18cc7f6](https://github.com/astrale-os/sdk/commit/18cc7f6ea95e47740857effa19551c6ef58be725))
834
+ * initial SDK packages for Astrale OS ([9b0e085](https://github.com/astrale-os/sdk/commit/9b0e08591b301882686db51703ccf730901f70b6))
835
+ * integrate remaining kernel v2 SDK changes ([c614eac](https://github.com/astrale-os/sdk/commit/c614eacfbe6096021c174fa9fa517ed36fe2ac12))
836
+ * integrate remaining kernel v2 SDK changes ([e144a77](https://github.com/astrale-os/sdk/commit/e144a7762358df4a4d951d6e89278de38454ce69))
837
+ * introduce deploy and domain configuration for standalone domains ([eac596b](https://github.com/astrale-os/sdk/commit/eac596b3774719f2767ec8f2d6ec8bde60502266))
838
+ * introduce remote server configuration and creation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
839
+ * **invocation:** add v2 handler adapter ([87943bd](https://github.com/astrale-os/sdk/commit/87943bd3d9a02d71d241f9ee43c372e6732f679c))
840
+ * lazy self.node() accessor for method handlers ([920ac6a](https://github.com/astrale-os/sdk/commit/920ac6ae98690008ae9348fcd6eac11aba5072dc))
841
+ * managed adapter is the scaffold default; --instance stamps the slug ([4e300d6](https://github.com/astrale-os/sdk/commit/4e300d692e6b8bc91d9f298fb21f936ada9c10d9))
842
+ * managed deploys ship the client SPA — /ui serves on managed services ([51c1ee3](https://github.com/astrale-os/sdk/commit/51c1ee37d3f0b17c2ad6b0640a28cb951c446a59))
843
+ * modernize domain scaffolding ([d0830af](https://github.com/astrale-os/sdk/commit/d0830afb093426884b68a62266d64e1c67c0117a))
844
+ * normalize method names in resolveMethod and update buildSpec return type ([4175e22](https://github.com/astrale-os/sdk/commit/4175e220fdb0cc8ea603de10ea01f6fe37e1caf2))
845
+ * prepare canonical domain publications ([d27135f](https://github.com/astrale-os/sdk/commit/d27135f1d5dc5f0b973b7fb2a0f1b042610f6067))
846
+ * promote v2 to top-level sdk, archive legacy packages ([05946b0](https://github.com/astrale-os/sdk/commit/05946b05caa0e541ed6e6e40ad232a8a136c1605))
847
+ * **react:** add managed domain frontend substrate ([459ea31](https://github.com/astrale-os/sdk/commit/459ea31e121e74707d3bd08038516fcf37dec115))
848
+ * **react:** add managed Domain frontend substrate ([60d011d](https://github.com/astrale-os/sdk/commit/60d011d3efad53e407631b0ab653b3c45b782a51))
849
+ * redesign remote context api ([de02159](https://github.com/astrale-os/sdk/commit/de0215924b5b5e4c0c2055358ba93603a266792c))
850
+ * redesign remote context api ([f332ac8](https://github.com/astrale-os/sdk/commit/f332ac8fa9f9978e8f1ea975e1c36f371753e62d))
851
+ * refactor authentication and identity handling, improve method resolution and deploy checks ([a70bf10](https://github.com/astrale-os/sdk/commit/a70bf101473404b364dfed34b50a5d62c56b1d7d))
852
+ * refine domain dx refactor ([b2f7768](https://github.com/astrale-os/sdk/commit/b2f7768b521563a22411562d3878bb1c18d2ee86))
853
+ * replace BoundClient with BoundSessionView in authentication and dispatch layers ([c6020e3](https://github.com/astrale-os/sdk/commit/c6020e39fe4cee59d124c000def2ef0f9c1250ce))
854
+ * rich typed self (BoundNode) + schema-bound dispatch wiring ([#16](https://github.com/astrale-os/sdk/issues/16)) ([05c46b8](https://github.com/astrale-os/sdk/commit/05c46b8d01663aeb26e2bc2b0db266a182ea685e))
855
+ * scaffold ships the astrale-cli skill alongside astrale-domain ([52519c4](https://github.com/astrale-os/sdk/commit/52519c448ef3ea7a67d6649378f94b9bfcf63929))
856
+ * scaffolder prints the workspace-level skills registration one-liner ([9d838be](https://github.com/astrale-os/sdk/commit/9d838bea586524ad300abf0e84688b29a297d8cc))
857
+ * **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
858
+ * **scaffold:** rebuild the default domain template ([#43](https://github.com/astrale-os/sdk/issues/43)) ([091147c](https://github.com/astrale-os/sdk/commit/091147c156a2bfff783fa002cd0e7a8152013d33))
859
+ * scaffolds ship the astrale-domain authoring skill (.agents/skills) ([5e3338d](https://github.com/astrale-os/sdk/commit/5e3338dc94bb059df3ef1465329df81c92df94ff))
860
+ * **sdk:** add typed domain scaffolding ([bedff51](https://github.com/astrale-os/sdk/commit/bedff51fd81766077e92c34ef87667afc6ad1069))
861
+ * **sdk:** add typed domain scaffolding ([66a8b14](https://github.com/astrale-os/sdk/commit/66a8b14a1ae71de2a3578a7e9fcb5b771138ad26))
862
+ * **sdk:** expand governed domain primitives ([ecfa7c8](https://github.com/astrale-os/sdk/commit/ecfa7c8da819c68bf0de34003eb94b53e0ae0cb9))
863
+ * **sdk:** introduce semantic authoring modules ([638efd5](https://github.com/astrale-os/sdk/commit/638efd50be696cb2023996fadcb9f58eb602b7c6))
864
+ * **sdk:** rename replay kind to unsafe ([80ed6de](https://github.com/astrale-os/sdk/commit/80ed6de1c6f4ca03f4e434f72b46405ae6cf30d2))
865
+ * **sdk:** wire capability execution ([0d89524](https://github.com/astrale-os/sdk/commit/0d8952415d3470bc0a9d91d91f696d167df20b86))
866
+ * **sdk:** wire capability execution ([433beeb](https://github.com/astrale-os/sdk/commit/433beebe2ef88eb2117f08c092b5a643c7707389))
867
+ * selfKernel — public/webhook handlers act as the function's own identity ([30b71b6](https://github.com/astrale-os/sdk/commit/30b71b65e6a5e89939fcb257ce2235cc0a710876))
868
+ * selfKernel in the view render context + dev port auto-pick ([6a53616](https://github.com/astrale-os/sdk/commit/6a53616eab32accab79490e85cd2a3b9dc061f02))
869
+ * **server:** compose v2 application lifecycle ([68fa85a](https://github.com/astrale-os/sdk/commit/68fa85af6d98d3e4d244bf9142cdfe6787918842))
870
+ * single status-page view; release 0.2.0 ([cb202cd](https://github.com/astrale-os/sdk/commit/cb202cd30f15965d5d06657aec4bc1425b972a76))
871
+ * stamp /meta endpoint and spec.json with build provenance ([41d8a92](https://github.com/astrale-os/sdk/commit/41d8a92d0dce55c6ba91a7e59f11d6abd661a27c))
872
+ * support domain import aliases ([d56ec80](https://github.com/astrale-os/sdk/commit/d56ec801a35aab45ea2472a0cfaad319c8f52752))
873
+ * **template:** add domain import aliases ([b67032e](https://github.com/astrale-os/sdk/commit/b67032ec09ec0aefa8400f21170cfccde345a9fa))
874
+ * type auth context by policy ([db3d5f5](https://github.com/astrale-os/sdk/commit/db3d5f5278838136936808fd22519efa99e2af50))
875
+ * update /meta endpoint to publish JWKS URL and improve identity resolution ([265c170](https://github.com/astrale-os/sdk/commit/265c170d0ce4fd6bb47636865b9c734482064816))
876
+ * update buildSpec and defineRemoteDomain to streamline remote domain handling ([daba714](https://github.com/astrale-os/sdk/commit/daba714624cbb066a6ced0c18884670545e90d42))
877
+ * update buildSpec and identity binding to use Graph instead of PortableSpec ([acd3441](https://github.com/astrale-os/sdk/commit/acd344152dba56487076da10c1b5fe1ff9675e59))
878
+ * validate function outputs against outputSchema (parity with kernel) ([#6](https://github.com/astrale-os/sdk/issues/6)) ([22648ea](https://github.com/astrale-os/sdk/commit/22648ea2c9ceca5ff42dbaaf78944935c957c3f9))
879
+ * **worker:** add declarative hosted functions ([407f50c](https://github.com/astrale-os/sdk/commit/407f50c07f1b23455ac8bc0c90c1599f85e21a2b))
880
+ * **worker:** add declarative hosted functions ([ea0e457](https://github.com/astrale-os/sdk/commit/ea0e45739249f3503aa169a072c6ebaacd296bd8))
881
+ * **worker:** bind lazy domain resolution ([083a195](https://github.com/astrale-os/sdk/commit/083a195e67324957024fa65f47dc3fb6c6a9d3ee))
882
+ * **worker:** bind lazy Domain resolution ([f2b3612](https://github.com/astrale-os/sdk/commit/f2b3612d605689f4c364ea05b8ffbf990b8f6ed6))
883
+ * **worker:** compose domain environment from Cloudflare bindings ([dc7852c](https://github.com/astrale-os/sdk/commit/dc7852c02cc880fb7461dbab090243420faf5ecc))
884
+ * **worker:** refine monitoring template ([4c1887c](https://github.com/astrale-os/sdk/commit/4c1887c09fd1a785a72a47258bf2b4a4d87c859f))
885
+ * **worker:** simplify inline step contract ([de6a6e1](https://github.com/astrale-os/sdk/commit/de6a6e1eb11330ac552f491014d28507594f1c03))
886
+ * workspace-refactor enablers — manifest roles, DomainIssuer mint seam, fn-context graph ([6202965](https://github.com/astrale-os/sdk/commit/62029654453f67a365df93abaa9bcd1db130baff))
887
+
888
+
889
+ ### Bug Fixes
890
+
891
+ * 30m session-credential ttl — handlers outliving 60s could not write back ([985834d](https://github.com/astrale-os/sdk/commit/985834d0fd8a869633698d50f6fe30d32f457ce9))
892
+ * accept public/optional functions in domain function maps ([#9](https://github.com/astrale-os/sdk/issues/9)) ([46ccb4a](https://github.com/astrale-os/sdk/commit/46ccb4a7c6ff3c582475f2baaad60fb3a112d24e))
893
+ * accept public/optional method handlers in the AnyRemoteHandler bag ([#10](https://github.com/astrale-os/sdk/issues/10)) ([4969779](https://github.com/astrale-os/sdk/commit/49697796988ad28174cf16993401715c5282fe45))
894
+ * adapt build-spec to the kernel two-axis placement (parent, not mount) ([#17](https://github.com/astrale-os/sdk/issues/17)) ([61ac025](https://github.com/astrale-os/sdk/commit/61ac025bfe51f9460caf470be005b43716f0117c))
895
+ * **adapter-cloudflare:** keep Wrangler logs in workspace [skip ci] ([bb1dadc](https://github.com/astrale-os/sdk/commit/bb1dadc19c50747d851688ec644a4279a557a035))
896
+ * **adapter-cloudflare:** pin supported compatibility date ([9fd9798](https://github.com/astrale-os/sdk/commit/9fd9798037a50a1878b842aec1c96ad432f21d3b))
897
+ * **adapter-cloudflare:** pin supported compatibility date ([9652315](https://github.com/astrale-os/sdk/commit/9652315c78c86a4e11b797727ca91e80e2c52048))
898
+ * **adapter-cloudflare:** preserve remote invocation lifetime ([a77f4bf](https://github.com/astrale-os/sdk/commit/a77f4bfc2af85e053f532d76696bfce0c53342e0))
899
+ * **adapter-cloudflare:** preserve remote invocation lifetime ([fe95965](https://github.com/astrale-os/sdk/commit/fe95965c2e170526bc5c5865b83eef3e6e0804f8))
900
+ * **adapter-cloudflare:** refresh worker compatibility baseline ([00b921c](https://github.com/astrale-os/sdk/commit/00b921c4d111f7b8f0888bce11e433c0fa2220c6))
901
+ * add js/cjs/mjs to lint-staged config ([d932f8f](https://github.com/astrale-os/sdk/commit/d932f8f8c1825bc05a80654bcffcc3208bec1a65))
902
+ * align domain runtime with current kernel ([ab97857](https://github.com/astrale-os/sdk/commit/ab978576709860097a63f8cec40122a2fb35e64a))
903
+ * align packed beta scaffold ([e3fb45f](https://github.com/astrale-os/sdk/commit/e3fb45f1e50402c93df57da33e9bc0f2c88c5ab9))
904
+ * align remote domain delivery with current kernel protocol ([3cd6e2a](https://github.com/astrale-os/sdk/commit/3cd6e2aa1529c2d99b0643bd5c6d0fc349863f7a))
905
+ * align remote domain delivery with current kernel protocol ([3cd6e2a](https://github.com/astrale-os/sdk/commit/3cd6e2aa1529c2d99b0643bd5c6d0fc349863f7a))
906
+ * align SDK with current kernel beta APIs ([7a0bf6e](https://github.com/astrale-os/sdk/commit/7a0bf6e1dea5b619d15e536bb9dab7ef3afaa43f))
907
+ * align SDK with the current Kernel cohort ([0e553f8](https://github.com/astrale-os/sdk/commit/0e553f8a6af5b265bc4ec82211ef040625bc735a))
908
+ * apply CORS to auxiliary /functions and /views routes ([0cb8e12](https://github.com/astrale-os/sdk/commit/0cb8e12ae97c7b334584bcd79d2e907fbbf0ffa9))
909
+ * **app:** pin exchange proof verification basis ([bdd8782](https://github.com/astrale-os/sdk/commit/bdd878212ec4466647d3a8de789e29ed5cb92666))
910
+ * **app:** resolve eslint errors for empty object and any types ([6e4272a](https://github.com/astrale-os/sdk/commit/6e4272a3af3770e65f1e079838866e67edb05084))
911
+ * **app:** restore zod type import ([c9a9f99](https://github.com/astrale-os/sdk/commit/c9a9f997f390aa587749511862b57ead47c2b8ad))
912
+ * **app:** skip scaffold target instance prompt ([8b0254a](https://github.com/astrale-os/sdk/commit/8b0254a7b71f66f6773ca977a2f1bdbeacddd93a))
913
+ * **app:** skip scaffold target instance prompt (issue iss_8abc9b4b) ([fd6608e](https://github.com/astrale-os/sdk/commit/fd6608e2abeececd4d55552acd5283649b71e385))
914
+ * **backend:** deploy services by semantic method path ([991dcae](https://github.com/astrale-os/sdk/commit/991dcaecb861be7fe884ed9ff34e0d8c403e3135))
915
+ * **backend:** emit node-compatible ESM specifiers ([7cf13a9](https://github.com/astrale-os/sdk/commit/7cf13a997746ee93ec2ff0eefea27090d737b940))
916
+ * **backend:** forward ctx.issuer to remote handlers ([12031d4](https://github.com/astrale-os/sdk/commit/12031d408d68753f2c2aa53dfc1bb2eb286babdf))
917
+ * **backend:** keep lifetime adapter structurally private ([a3c70be](https://github.com/astrale-os/sdk/commit/a3c70bed0f22ccd7bef417181dbda5d741c44a1b))
918
+ * **ci:** admit packed runtime preinstall ([d34c6d6](https://github.com/astrale-os/sdk/commit/d34c6d6921c616b4df2797011816c20bb5af1557))
919
+ * **ci:** authenticate packed scaffold install ([b1249a7](https://github.com/astrale-os/sdk/commit/b1249a70c0bb3455e62196be75ce58a2d4078800))
920
+ * **ci:** automate SDK beta releases ([bbc2406](https://github.com/astrale-os/sdk/commit/bbc2406bc9c64f7da169dce8b3ce42a8388a1dfc))
921
+ * **ci:** automate SDK beta releases ([8d68ac4](https://github.com/astrale-os/sdk/commit/8d68ac49f57c86d0e758852720d0c56d14b82d83))
922
+ * **ci:** configure GitHub Packages auth for external dependencies ([9cbf721](https://github.com/astrale-os/sdk/commit/9cbf721ae811d3940de34e4c9a0ded09a7998c0d))
923
+ * **ci:** gracefully handle missing external dependencies ([a9e315e](https://github.com/astrale-os/sdk/commit/a9e315e0eae61e4e07e70085f285f75e062cf7db))
924
+ * **ci:** remove cache requirement and use --no-frozen-lockfile ([1f2e25e](https://github.com/astrale-os/sdk/commit/1f2e25e7aafb5efca62de7e0e4e62241c5fda31a))
925
+ * **ci:** target beta versions per package ([392e613](https://github.com/astrale-os/sdk/commit/392e6132638b2156b53dd5d3e8b1ee7b16f3c9eb))
926
+ * **ci:** update publish workflow to handle missing dependencies ([5ce3ea9](https://github.com/astrale-os/sdk/commit/5ce3ea94c217506157302193754e92e69aac8dbb))
927
+ * **ci:** use shared publish action and fix typegraph dependency ([9a211f4](https://github.com/astrale-os/sdk/commit/9a211f4005259ec2ae8178265715aa05fcfa0854))
928
+ * **ci:** verify SDK dist in linked workspaces ([64c47ce](https://github.com/astrale-os/sdk/commit/64c47cecb412b7245497d7990242f3acc4d4994e))
929
+ * clean up error handling and validation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
930
+ * **cloudflare:** adapt redirect before request construction ([243c80f](https://github.com/astrale-os/sdk/commit/243c80fcf32fd4cb697a7db64dc912c3e66c9fa9))
931
+ * **cloudflare:** adapt redirect before request construction ([e600814](https://github.com/astrale-os/sdk/commit/e6008146e80e3e8e229a9ec44191d087d39bf27c))
932
+ * **cloudflare:** preserve redirect error semantics ([aa2578c](https://github.com/astrale-os/sdk/commit/aa2578c49258069e1dfc7beb7dc272079b56956b))
933
+ * **cloudflare:** preserve redirect error semantics ([a2486e1](https://github.com/astrale-os/sdk/commit/a2486e1906d20034999f4e9f89bb02d7e65b3bd4))
934
+ * **cloudflare:** publish domain authority requirements ([011b024](https://github.com/astrale-os/sdk/commit/011b024807b327d6e878acc810cb419a8a4c321e))
935
+ * **cloudflare:** publish Domain-owned authority requirements ([a01ab1b](https://github.com/astrale-os/sdk/commit/a01ab1ba5cf3bcf68e240019daf0930e97dcbeae))
936
+ * **cloudflare:** restore service response metadata ([4d56d66](https://github.com/astrale-os/sdk/commit/4d56d6609f186827194e7c73fa800b0f486dee1e))
937
+ * **cloudflare:** restore service response metadata ([50128a1](https://github.com/astrale-os/sdk/commit/50128a1ad1ac82f9335c1c7f70cee2c61bd09d74))
938
+ * cold-run dx batch (timeout, epilogue, pnpm-first, .env.dev) ([a3398f0](https://github.com/astrale-os/sdk/commit/a3398f022e2eca98188627217443369d59469a69))
939
+ * correctness + quality pass on SDK dispatch, auth, and server ([d58f17c](https://github.com/astrale-os/sdk/commit/d58f17c8e95d0f9e201da2534a1243662b9ab5d5))
940
+ * **deploy:** ignore transport ETags in checks ([5c3f1c9](https://github.com/astrale-os/sdk/commit/5c3f1c9154648ae0a9d76bfe44234f4f7dd2f083))
941
+ * **deploy:** ignore transport ETags in checks [skip ci] ([eafd4e2](https://github.com/astrale-os/sdk/commit/eafd4e233786093d21f5edc1effc95480bd35fc3))
942
+ * **deps:** align kernel package family ([aab90fc](https://github.com/astrale-os/sdk/commit/aab90fc4a24a99de70d3d7c984815744e19a0b26))
943
+ * **deps:** require a consistent kernel package set ([11d738c](https://github.com/astrale-os/sdk/commit/11d738c7d0c18fc83c640cf1a055b6dfdfc60679))
944
+ * **deps:** require edge-cardinality kernel packages ([c7b81f8](https://github.com/astrale-os/sdk/commit/c7b81f894202e8826d0dbff1be3233894c6dc410))
945
+ * devkit --help prints usage instead of deploying; devkit 0.1.6 ([65541cd](https://github.com/astrale-os/sdk/commit/65541cd1c227de15406282139ffdbd4e41cfda62))
946
+ * **domain:** make install graphs authoritative ([#46](https://github.com/astrale-os/sdk/issues/46)) ([3d7e898](https://github.com/astrale-os/sdk/commit/3d7e898550676ba45e629a39268098946b2b5345))
947
+ * **domain:** reject classes without kernel bases ([d67a153](https://github.com/astrale-os/sdk/commit/d67a153c98390788a63dd2a5a002b916cd860706))
948
+ * **domain:** reject domains missing kernel before deploy ([16efcf3](https://github.com/astrale-os/sdk/commit/16efcf361177a88d98201c28784ac4e4bff0ecc6))
949
+ * drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
950
+ * drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([a3f73ec](https://github.com/astrale-os/sdk/commit/a3f73ec25a132f4cfa2f0b05bbe65b428edd8419))
951
+ * drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([c7876c4](https://github.com/astrale-os/sdk/commit/c7876c47d094a79607843d60166d09a6f9b438c6))
952
+ * export ./package.json in publishConfig.exports — the map that ships ([982eb50](https://github.com/astrale-os/sdk/commit/982eb50b808bc935e37ed907fd797159ad00d8e2))
953
+ * export ./package.json in publishConfig.exports — the map that ships ([a7b419f](https://github.com/astrale-os/sdk/commit/a7b419fecfd35052cf3c0d0a87466653b0bb899e))
954
+ * expose `self.id` on SelfResult for instance dispatch — META_TRACE [#61](https://github.com/astrale-os/sdk/issues/61) ([850ffd8](https://github.com/astrale-os/sdk/commit/850ffd8aa9b28d7f90a28b22344b88848a2b81d5))
955
+ * guard sdk preinstall for tarball installs + bump publish chain (workspace:^ internal pins) ([7519a29](https://github.com/astrale-os/sdk/commit/7519a29a1ae6b29a452cf5629b93b3c8419a324f))
956
+ * **iframe:** mark render views no-handshake ([5cfea82](https://github.com/astrale-os/sdk/commit/5cfea826edb2c96d113322ac9bca1595acda4759))
957
+ * **invocation:** honor kernel-selected receiver ([cf58a55](https://github.com/astrale-os/sdk/commit/cf58a55707e563f5921ee543c56c941bb7613013))
958
+ * **invocation:** honor kernel-selected receiver ([730fe57](https://github.com/astrale-os/sdk/commit/730fe57df22eb34d55d3cdcdcb5993504fc3ca74))
959
+ * **linter:** allow configurable layer paths ([b2d6bdd](https://github.com/astrale-os/sdk/commit/b2d6bdd1cf0b3aaddf4674062fe936bc50d08639))
960
+ * **linter:** honor configured physical source paths ([7d23e40](https://github.com/astrale-os/sdk/commit/7d23e40bc95bab9955345a07816435bb9ceabc5a))
961
+ * **linter:** prevent managed lint crashes and hangs ([4af5f40](https://github.com/astrale-os/sdk/commit/4af5f40b4c5e7de94c51019ce892d29a5b575eda))
962
+ * make astrale adapter params.instance optional for dev-only envs ([7e44313](https://github.com/astrale-os/sdk/commit/7e4431334cc440c9375c10922733f9c36ed22438))
963
+ * make packed scaffold installs reproducible ([17ccac6](https://github.com/astrale-os/sdk/commit/17ccac677435c5a089c896f5258c0b46df5f639a))
964
+ * never ship a pnpm-lock.yaml in scaffolds ([80c0196](https://github.com/astrale-os/sdk/commit/80c01964c5f777887f77cafc98fb4cb0da09e094))
965
+ * next-hop delegation mints as the function's own identity with composed grant ([77e570e](https://github.com/astrale-os/sdk/commit/77e570e9837be524c0f858e652fd966af3e021d6))
966
+ * opaque @hono/node-server import so worker bundles skip the optional peer ([e53e983](https://github.com/astrale-os/sdk/commit/e53e983638b2643875e55ca1587e1fe606479d1c))
967
+ * **package:** emit node-compatible esm specifiers ([257e312](https://github.com/astrale-os/sdk/commit/257e312597bd09da7f2aacd6937eb513f473e84e))
968
+ * pin zod by exact version in create-astrale-domain --link scaffolds ([9a778ca](https://github.com/astrale-os/sdk/commit/9a778ca44073a2f318faf7d1f1092844946046da))
969
+ * postInstall must be a typed colon-path - template seed becomes a Note static ([35c5d45](https://github.com/astrale-os/sdk/commit/35c5d45836c13109d28af0f541f41550457767f1))
970
+ * prevent managed lint crashes and hangs ([3c191d5](https://github.com/astrale-os/sdk/commit/3c191d549786d0c02cb7f05c63981f12ebfdc68a))
971
+ * **query:** support explicit edge endpoint counts ([f9846c7](https://github.com/astrale-os/sdk/commit/f9846c70a0322e81392327da08229376c1046aa7))
972
+ * **remote:** expose carried caller authority ([4e6d3da](https://github.com/astrale-os/sdk/commit/4e6d3dac8a8145b6aea333256300e69e80522632))
973
+ * replace ~20 `any` casts with proper types across worker, react, and backend ([786bba2](https://github.com/astrale-os/sdk/commit/786bba22a13e8ddef0e71b047163c2b6dc3145bd))
974
+ * require virtual capability-safe kernel client ([#41](https://github.com/astrale-os/sdk/issues/41)) ([5ce48a8](https://github.com/astrale-os/sdk/commit/5ce48a8aa48504e7b0e490b08dfee4b28e2a6182))
975
+ * resolve package imports in analyzer ([a9f7c15](https://github.com/astrale-os/sdk/commit/a9f7c15641171041e51180668df31f6e205d2f09))
976
+ * roll back partial scaffolds, name resolver failures, green client template ([50faef5](https://github.com/astrale-os/sdk/commit/50faef5146a61f25282f30486adf6f7e9ab19ef7))
977
+ * scaffold cp filter must test template-relative paths (npx installs live in node_modules) ([3fd0a79](https://github.com/astrale-os/sdk/commit/3fd0a7925bb3c77a5aba3cde24aad26013cd7973))
978
+ * **scaffold:** admit published shell fallback ([ddede2f](https://github.com/astrale-os/sdk/commit/ddede2fe76e3f0aa0dde025d2e8158bfe5e6dc46))
979
+ * **scaffold:** derive managed adapter range from target ([936561f](https://github.com/astrale-os/sdk/commit/936561f217c93b5e34abd5c1420211fdca11130b))
980
+ * **scaffold:** derive managed adapter range from target ([d8f0ad9](https://github.com/astrale-os/sdk/commit/d8f0ad971803e98ae33308d73693ad0aae7863dd))
981
+ * scaffolder rollback + failure transparency, client template green (iss_12ae5ba3, iss_a7fe5e38) ([c05ab86](https://github.com/astrale-os/sdk/commit/c05ab86520ab9268b00b98eba4779743ae5fed34))
982
+ * **scaffold:** omit bundled agent skills ([978b172](https://github.com/astrale-os/sdk/commit/978b17204ae67ced328cbc17d50e92343f360bbc))
983
+ * **scaffold:** qualify published dependencies ([b603ffd](https://github.com/astrale-os/sdk/commit/b603ffda9a46a5a87e748bc1ce8dece905488cf7))
984
+ * scaffolds keep template semver ranges; resilient package-root resolution ([e458207](https://github.com/astrale-os/sdk/commit/e458207891d7c5427b036b7af4233979e737aa17))
985
+ * scaffolds keep template semver ranges; resilient package-root resolution ([b43ba4a](https://github.com/astrale-os/sdk/commit/b43ba4aa6050264668f45a401be65372cfa3c978))
986
+ * sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))
987
+ * **sdk:** align remote delivery with kernel protocol ([3af21ca](https://github.com/astrale-os/sdk/commit/3af21ca72a3697f2c939f5fb91df9d085b02c200))
988
+ * **sdk:** preserve Domain failure semantics ([deb0ad3](https://github.com/astrale-os/sdk/commit/deb0ad314acddab6ba199d65f8d1434a6bff3f4a))
989
+ * **sdk:** preserve nested mutation failures ([97d3aca](https://github.com/astrale-os/sdk/commit/97d3aca82ea0d67c0fd9e8ec9b0e946ede2f9108))
990
+ * **sdk:** preserve remote public errors ([70e9349](https://github.com/astrale-os/sdk/commit/70e934977aa9c5af7c252b01ebac5becd8ad70b6))
991
+ * selfKernel prefers INSTANCE_KERNEL_URL (instance graph) over the host KERNEL_URL ([a767aa8](https://github.com/astrale-os/sdk/commit/a767aa83f9bf0c3357cbed6f7bfc11a4f94cb51a))
992
+ * **server:** publish verification-safe jwks ([a5a5608](https://github.com/astrale-os/sdk/commit/a5a560825f6ee6411b418d9c50da70ec0917dcd8))
993
+ * **server:** publish verification-safe JWKS ([abeb106](https://github.com/astrale-os/sdk/commit/abeb106c8bbffee76838ac9f679436a063cc57b1))
994
+ * **server:** support source-qualified invocation identities ([9817996](https://github.com/astrale-os/sdk/commit/9817996c093acd3c9fb080e1fe651e8b5dff6709))
995
+ * sign runtime creds with bare-slug iss; verify with audience tolerance ([16d8a26](https://github.com/astrale-os/sdk/commit/16d8a26025435059a03ce736efeb1225c976dd9a))
996
+ * support published beta cohort ([34984b6](https://github.com/astrale-os/sdk/commit/34984b6d3edfa28828f0b04c95ebeba859f9bcf1))
997
+ * template dep floors to known-good versions + pnpm build-gate declarations ([bc681da](https://github.com/astrale-os/sdk/commit/bc681daabc717316b1e22f9b0bcaa0b7c727981f))
998
+ * WFP tenant self-subrequest 404 + scaffolds shipping a stale lockfile ([fda3a28](https://github.com/astrale-os/sdk/commit/fda3a285ddc775474ec53c1ea2a902b4c364b361))
999
+ * wire + default-on the router service binding ([4d05110](https://github.com/astrale-os/sdk/commit/4d05110e4796a2dad9e7fca1fab53206dca39823))
1000
+ * **worker:** accept public domain environment resolution ([b41df98](https://github.com/astrale-os/sdk/commit/b41df98971983a8e9f360354ef85f7b24df157d8))
1001
+ * **worker:** accept public Domain environment resolution ([88a7e14](https://github.com/astrale-os/sdk/commit/88a7e1456936f8c23781dd1e78cd4ffbe187988a))
1002
+ * **worker:** dispatch same-origin self-subrequests in-process when no SELF binding ([6017c75](https://github.com/astrale-os/sdk/commit/6017c759c6ba70efdda9f8b699f1f6cb25b080fb))
1003
+ * **worker:** preserve raw request body for standalone function routes ([025a273](https://github.com/astrale-os/sdk/commit/025a2730a5ac14709cd956d174e56c53122c6609))
1004
+ * **worker:** preserve raw request body for standalone function routes ([aa23799](https://github.com/astrale-os/sdk/commit/aa2379940b84b5d3792a80c663587815d9024b2b))
1005
+ * **worker:** repair managed deploy hotfix ([65bdbb9](https://github.com/astrale-os/sdk/commit/65bdbb90c9036e5591e10be61079ed4f4baec52c))
1006
+ * **worker:** support schema-only domain deployments ([413a003](https://github.com/astrale-os/sdk/commit/413a0038ac3efabc8b2f72db023a245e7bb8d794))
1007
+
1008
+
1009
+ ### Performance Improvements
1010
+
1011
+ * cache JWKS resolvers, evict-and-retry on stale issuer keys ([bc31c93](https://github.com/astrale-os/sdk/commit/bc31c9317c421361182d1851e74ea25f5f23373a))
1012
+
1013
+
1014
+ ### Documentation
1015
+
1016
+ * **adapter-astrale:** document beta installation ([2e5cba8](https://github.com/astrale-os/sdk/commit/2e5cba8cdab2f647d5868994e5ea30cd5cf2639e))
1017
+ * **adapter-cloudflare:** document beta installation ([7c0b030](https://github.com/astrale-os/sdk/commit/7c0b030084191f1c794ba65ac0280eb2034d267b))
1018
+ * **backend:** reference kernel Domain.install in adapter-astrale comment ([1fcdca2](https://github.com/astrale-os/sdk/commit/1fcdca28b660985ddd31a056e026f636e9e294f6))
1019
+ * clarify development setup and workspace dependency ([6af5a67](https://github.com/astrale-os/sdk/commit/6af5a673dce763fa65e22234a76f74387fd1dc69))
1020
+ * **create-astrale-domain:** document beta scaffolding ([1a3b5b4](https://github.com/astrale-os/sdk/commit/1a3b5b4774df461284447d4003733e5de31b6348))
1021
+ * document instance kernel url for the cloudflare adapter ([4a25ddd](https://github.com/astrale-os/sdk/commit/4a25dddef405540935e180dd8c547c26ec04c323))
1022
+ * note raw build-spec-cli lacks cross-domain env injection (use astrale domain build) ([d9864ae](https://github.com/astrale-os/sdk/commit/d9864ae0aca9f4bc3857bee94a3a4184a2b7086c))
1023
+ * rename instance install -> domain install; point hints at --direct ([ce0c567](https://github.com/astrale-os/sdk/commit/ce0c567851077cce56d5fd8569cd9f110fc5216e))
1024
+ * self binding present on managed runtime; logs rows in skills ([265841e](https://github.com/astrale-os/sdk/commit/265841e7eb921bdcf75b7294f8f7604fbd92adf5))
1025
+ * selfKernel in skill webhook section ([4be446b](https://github.com/astrale-os/sdk/commit/4be446bc8620eaa2cc57ea1e2ab448b991d520c1))
1026
+ * skill — correct schema registration (edges under classes) and defineSchema import ([7b5de46](https://github.com/astrale-os/sdk/commit/7b5de46cdd17ac3d5f704e1925354919517e8352))
1027
+ * skill — dev --port ([9f1f90a](https://github.com/astrale-os/sdk/commit/9f1f90a9d6481732edef31bf7b6335ef76baa711))
1028
+ * skill — local-dev vs remote-instance install reality ([61eacaf](https://github.com/astrale-os/sdk/commit/61eacaf2517c63eb6fb04bfb9f83f9389076a7db))
1029
+ * skill — view discovery, mount semantics, managed-install debugging and recovery ([88f2e7f](https://github.com/astrale-os/sdk/commit/88f2e7f15a0018a9ef6b1c896a72f80f9adf5127))
1030
+ * skill — views ship on both adapters ([63b8825](https://github.com/astrale-os/sdk/commit/63b88253f6001d63f910d92ae113f88a31466f41))
1031
+ * skill + scope — managed secrets shipped ([55fe37e](https://github.com/astrale-os/sdk/commit/55fe37e01852b5717f7cbeb210f66b6957a9d023))
1032
+ * skill carries the grantperm snippet for the public-view pattern ([3c5d346](https://github.com/astrale-os/sdk/commit/3c5d346765a42946620d34acb352e6b141d57181))
1033
+ * skill recipe — public server-rendered view reading the graph ([32b00ea](https://github.com/astrale-os/sdk/commit/32b00ea0b115c8178c248c4dc5f61d05b45e9d2a))
1034
+ * update shell domain references ([099a01b](https://github.com/astrale-os/sdk/commit/099a01bd11b78b0a51a3896779b9fba0e93f999f))
1035
+ * update shell domain references ([1d97ac5](https://github.com/astrale-os/sdk/commit/1d97ac5508a8d94f11728cc288785cd83db34a91))
1036
+
1037
+ ## [0.4.19](https://github.com/astrale-os/sdk/compare/sdk-v0.4.18...sdk-v0.4.19) (2026-07-17)
1038
+
1039
+
1040
+ ### Bug Fixes
1041
+
1042
+ * **deps:** align kernel package family ([aab90fc](https://github.com/astrale-os/sdk/commit/aab90fc4a24a99de70d3d7c984815744e19a0b26))
1043
+ * **domain:** reject classes without kernel bases ([d67a153](https://github.com/astrale-os/sdk/commit/d67a153c98390788a63dd2a5a002b916cd860706))
1044
+ * **domain:** reject domains missing kernel before deploy ([16efcf3](https://github.com/astrale-os/sdk/commit/16efcf361177a88d98201c28784ac4e4bff0ecc6))
1045
+ * **linter:** prevent managed lint crashes and hangs ([4af5f40](https://github.com/astrale-os/sdk/commit/4af5f40b4c5e7de94c51019ce892d29a5b575eda))
1046
+ * make packed scaffold installs reproducible ([17ccac6](https://github.com/astrale-os/sdk/commit/17ccac677435c5a089c896f5258c0b46df5f639a))
1047
+ * prevent managed lint crashes and hangs ([3c191d5](https://github.com/astrale-os/sdk/commit/3c191d549786d0c02cb7f05c63981f12ebfdc68a))
1048
+
1049
+ ## [0.4.18](https://github.com/astrale-os/sdk/compare/sdk-v0.4.17...sdk-v0.4.18) (2026-07-16)
1050
+
1051
+
1052
+ ### Bug Fixes
1053
+
1054
+ * **scaffold:** derive managed adapter range from target ([936561f](https://github.com/astrale-os/sdk/commit/936561f217c93b5e34abd5c1420211fdca11130b))
1055
+ * **scaffold:** derive managed adapter range from target ([d8f0ad9](https://github.com/astrale-os/sdk/commit/d8f0ad971803e98ae33308d73693ad0aae7863dd))
1056
+
1057
+ ## [0.4.17](https://github.com/astrale-os/sdk/compare/sdk-v0.4.16...sdk-v0.4.17) (2026-07-16)
1058
+
1059
+
1060
+ ### Bug Fixes
1061
+
1062
+ * **app:** skip scaffold target instance prompt ([8b0254a](https://github.com/astrale-os/sdk/commit/8b0254a7b71f66f6773ca977a2f1bdbeacddd93a))
1063
+ * **app:** skip scaffold target instance prompt (issue iss_8abc9b4b) ([fd6608e](https://github.com/astrale-os/sdk/commit/fd6608e2abeececd4d55552acd5283649b71e385))
1064
+
1065
+ ## [0.4.16](https://github.com/astrale-os/sdk/compare/sdk-v0.4.15...sdk-v0.4.16) (2026-07-15)
1066
+
1067
+
1068
+ ### Bug Fixes
1069
+
1070
+ * **ci:** verify SDK dist in linked workspaces ([64c47ce](https://github.com/astrale-os/sdk/commit/64c47cecb412b7245497d7990242f3acc4d4994e))
1071
+
1072
+ ## [0.4.15](https://github.com/astrale-os/sdk/compare/sdk-v0.4.14...sdk-v0.4.15) (2026-07-14)
1073
+
1074
+
1075
+ ### Bug Fixes
1076
+
1077
+ * **adapter-cloudflare:** pin supported compatibility date ([9fd9798](https://github.com/astrale-os/sdk/commit/9fd9798037a50a1878b842aec1c96ad432f21d3b))
1078
+ * **adapter-cloudflare:** pin supported compatibility date ([9652315](https://github.com/astrale-os/sdk/commit/9652315c78c86a4e11b797727ca91e80e2c52048))
1079
+
1080
+ ## [0.4.14](https://github.com/astrale-os/sdk/compare/sdk-v0.4.13...sdk-v0.4.14) (2026-07-13)
1081
+
1082
+
1083
+ ### Features
1084
+
1085
+ * support domain import aliases ([d56ec80](https://github.com/astrale-os/sdk/commit/d56ec801a35aab45ea2472a0cfaad319c8f52752))
1086
+ * **template:** add domain import aliases ([b67032e](https://github.com/astrale-os/sdk/commit/b67032ec09ec0aefa8400f21170cfccde345a9fa))
1087
+ * **worker:** add declarative hosted functions ([407f50c](https://github.com/astrale-os/sdk/commit/407f50c07f1b23455ac8bc0c90c1599f85e21a2b))
1088
+ * **worker:** add declarative hosted functions ([ea0e457](https://github.com/astrale-os/sdk/commit/ea0e45739249f3503aa169a072c6ebaacd296bd8))
1089
+
1090
+
1091
+ ### Bug Fixes
1092
+
1093
+ * resolve package imports in analyzer ([a9f7c15](https://github.com/astrale-os/sdk/commit/a9f7c15641171041e51180668df31f6e205d2f09))
1094
+
1095
+ ## [0.4.13](https://github.com/astrale-os/sdk/compare/sdk-v0.4.12...sdk-v0.4.13) (2026-07-13)
1096
+
1097
+
1098
+ ### Features
1099
+
1100
+ * add SDK-native Astrale domain linter ([#50](https://github.com/astrale-os/sdk/issues/50)) ([002c4f0](https://github.com/astrale-os/sdk/commit/002c4f0da8f09670d4ad3fa8c139d336a0d6ca52))
1101
+ * expose dispatcher capabilities to handlers ([0e32cba](https://github.com/astrale-os/sdk/commit/0e32cba3af1aeace84e695bfabdbd35eda9415fc))
1102
+ * expose dispatcher capabilities to handlers ([26d5891](https://github.com/astrale-os/sdk/commit/26d5891986fc10c6db04a8559f3761fd42be3a64))
1103
+
1104
+ ## [0.4.12](https://github.com/astrale-os/sdk/compare/sdk-v0.4.11...sdk-v0.4.12) (2026-07-13)
1105
+
1106
+
1107
+ ### Bug Fixes
1108
+
1109
+ * **backend:** emit node-compatible ESM specifiers ([7cf13a9](https://github.com/astrale-os/sdk/commit/7cf13a997746ee93ec2ff0eefea27090d737b940))
1110
+ * **package:** emit node-compatible esm specifiers ([257e312](https://github.com/astrale-os/sdk/commit/257e312597bd09da7f2aacd6937eb513f473e84e))
1111
+
1112
+ ## [0.4.11](https://github.com/astrale-os/sdk/compare/sdk-v0.4.10...sdk-v0.4.11) (2026-07-13)
1113
+
1114
+
1115
+ ### Features
1116
+
1117
+ * **backend:** carry declarative core into builds ([e9b64b1](https://github.com/astrale-os/sdk/commit/e9b64b14ac1ac7eeb93b3b8c60f586631ca5ecfb))
1118
+ * **backend:** support deferred and redirected functions ([4180d69](https://github.com/astrale-os/sdk/commit/4180d694a15af6de20f4c684b32fd91bde33425c))
1119
+ * **backend:** support deferred handler execution ([1bb4fd8](https://github.com/astrale-os/sdk/commit/1bb4fd8fc5cd8b0c1e270f791a063caafd6b6643))
1120
+
1121
+
1122
+ ### Bug Fixes
1123
+
1124
+ * **adapter-cloudflare:** refresh worker compatibility baseline ([00b921c](https://github.com/astrale-os/sdk/commit/00b921c4d111f7b8f0888bce11e433c0fa2220c6))
1125
+ * **backend:** deploy services by semantic method path ([991dcae](https://github.com/astrale-os/sdk/commit/991dcaecb861be7fe884ed9ff34e0d8c403e3135))
1126
+ * **backend:** keep lifetime adapter structurally private ([a3c70be](https://github.com/astrale-os/sdk/commit/a3c70bed0f22ccd7bef417181dbda5d741c44a1b))
1127
+ * **domain:** make install graphs authoritative ([#46](https://github.com/astrale-os/sdk/issues/46)) ([3d7e898](https://github.com/astrale-os/sdk/commit/3d7e898550676ba45e629a39268098946b2b5345))
1128
+
1129
+ ## [0.4.10](https://github.com/astrale-os/sdk/compare/sdk-v0.4.9...sdk-v0.4.10) (2026-07-12)
1130
+
1131
+
1132
+ ### Features
1133
+
1134
+ * **scaffold:** rebuild the default domain template ([#43](https://github.com/astrale-os/sdk/issues/43)) ([091147c](https://github.com/astrale-os/sdk/commit/091147c156a2bfff783fa002cd0e7a8152013d33))
1135
+
1136
+ ## [0.4.9](https://github.com/astrale-os/sdk/compare/sdk-v0.4.8...sdk-v0.4.9) (2026-07-12)
1137
+
1138
+
1139
+ ### Bug Fixes
1140
+
1141
+ * require virtual capability-safe kernel client ([#41](https://github.com/astrale-os/sdk/issues/41)) ([5ce48a8](https://github.com/astrale-os/sdk/commit/5ce48a8aa48504e7b0e490b08dfee4b28e2a6182))
1142
+
1143
+ ## [0.4.8](https://github.com/astrale-os/sdk/compare/sdk-v0.4.7...sdk-v0.4.8) (2026-07-12)
1144
+
1145
+
1146
+ ### Bug Fixes
1147
+
1148
+ * **deps:** require edge-cardinality kernel packages ([c7b81f8](https://github.com/astrale-os/sdk/commit/c7b81f894202e8826d0dbff1be3233894c6dc410))
1149
+
1150
+ ## [0.4.7](https://github.com/astrale-os/sdk/compare/sdk-v0.4.6...sdk-v0.4.7) (2026-07-12)
1151
+
1152
+
1153
+ ### Bug Fixes
1154
+
1155
+ * **deps:** require a consistent kernel package set ([11d738c](https://github.com/astrale-os/sdk/commit/11d738c7d0c18fc83c640cf1a055b6dfdfc60679))
1156
+
1157
+ ## [0.4.6](https://github.com/astrale-os/sdk/compare/sdk-v0.4.5...sdk-v0.4.6) (2026-07-12)
1158
+
1159
+
1160
+ ### Features
1161
+
1162
+ * **backend:** bind handler kernels from compiled schemas ([2f87bf9](https://github.com/astrale-os/sdk/commit/2f87bf9dc65362c1a8bd552a99afb1d8c9fe3439))
1163
+
1164
+ ## [0.4.5](https://github.com/astrale-os/sdk/compare/sdk-v0.4.4...sdk-v0.4.5) (2026-07-11)
1165
+
1166
+
1167
+ ### Bug Fixes
1168
+
1169
+ * drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([a3f73ec](https://github.com/astrale-os/sdk/commit/a3f73ec25a132f4cfa2f0b05bbe65b428edd8419))
1170
+ * drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([c7876c4](https://github.com/astrale-os/sdk/commit/c7876c47d094a79607843d60166d09a6f9b438c6))
1171
+ * **worker:** preserve raw request body for standalone function routes ([025a273](https://github.com/astrale-os/sdk/commit/025a2730a5ac14709cd956d174e56c53122c6609))
1172
+ * **worker:** preserve raw request body for standalone function routes ([aa23799](https://github.com/astrale-os/sdk/commit/aa2379940b84b5d3792a80c663587815d9024b2b))
1173
+
1174
+ ## [0.4.4](https://github.com/astrale-os/sdk/compare/sdk-v0.4.3...sdk-v0.4.4) (2026-07-10)
1175
+
1176
+
1177
+ ### Bug Fixes
1178
+
1179
+ * roll back partial scaffolds, name resolver failures, green client template ([50faef5](https://github.com/astrale-os/sdk/commit/50faef5146a61f25282f30486adf6f7e9ab19ef7))
1180
+ * scaffolder rollback + failure transparency, client template green (iss_12ae5ba3, iss_a7fe5e38) ([c05ab86](https://github.com/astrale-os/sdk/commit/c05ab86520ab9268b00b98eba4779743ae5fed34))
1181
+
1182
+ ## [0.4.3](https://github.com/astrale-os/sdk/compare/sdk-v0.4.2...sdk-v0.4.3) (2026-07-10)
1183
+
1184
+
1185
+ ### Bug Fixes
1186
+
1187
+ * export ./package.json in publishConfig.exports — the map that ships ([982eb50](https://github.com/astrale-os/sdk/commit/982eb50b808bc935e37ed907fd797159ad00d8e2))
1188
+ * export ./package.json in publishConfig.exports — the map that ships ([a7b419f](https://github.com/astrale-os/sdk/commit/a7b419fecfd35052cf3c0d0a87466653b0bb899e))
1189
+ * scaffolds keep template semver ranges; resilient package-root resolution ([e458207](https://github.com/astrale-os/sdk/commit/e458207891d7c5427b036b7af4233979e737aa17))
1190
+ * scaffolds keep template semver ranges; resilient package-root resolution ([b43ba4a](https://github.com/astrale-os/sdk/commit/b43ba4aa6050264668f45a401be65372cfa3c978))
1191
+
1192
+ ## [0.4.2](https://github.com/astrale-os/sdk/compare/sdk-v0.4.1...sdk-v0.4.2) (2026-07-09)
1193
+
1194
+
1195
+ ### Features
1196
+
1197
+ * redesign remote context api ([de02159](https://github.com/astrale-os/sdk/commit/de0215924b5b5e4c0c2055358ba93603a266792c))
1198
+ * redesign remote context api ([f332ac8](https://github.com/astrale-os/sdk/commit/f332ac8fa9f9978e8f1ea975e1c36f371753e62d))
1199
+
1200
+ ## [0.4.1](https://github.com/astrale-os/sdk/compare/sdk-v0.4.0...sdk-v0.4.1) (2026-07-08)
1201
+
1202
+
1203
+ ### Bug Fixes
1204
+
1205
+ * **scaffold:** omit bundled agent skills ([978b172](https://github.com/astrale-os/sdk/commit/978b17204ae67ced328cbc17d50e92343f360bbc))
1206
+
1207
+ ## [0.4.0](https://github.com/astrale-os/sdk/compare/sdk-v0.3.0...sdk-v0.4.0) (2026-07-08)
1208
+
1209
+
1210
+ ### ⚠ BREAKING CHANGES
1211
+
1212
+ * rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18))
1213
+ * **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly
1214
+ * **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core
1215
+ * pushPatch and PatchKernel are removed from @astrale-os/sdk. Batch graph writes through ctx.graph.mutate(patch) instead.
1216
+
1217
+ * **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly ([c08b5a9](https://github.com/astrale-os/sdk/commit/c08b5a925aed63bd8c60dfaa5d23e3a02e8e8906))
1218
+ * **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core ([bdf5483](https://github.com/astrale-os/sdk/commit/bdf54834b6577aa862471118adf1ea455cef0e8c))
1219
+ * rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18)) ([e34bd3a](https://github.com/astrale-os/sdk/commit/e34bd3a77de6279e9f221996f04f56040233161d))
1220
+ * route SDK graph access through function.get/mutate doors ([adf07ff](https://github.com/astrale-os/sdk/commit/adf07ffd423e8824ebeb8dcac525fb7b819d0ae6))
1221
+
1222
+
1223
+ ### Features
1224
+
1225
+ * add .dev.vars to .gitignore and update type assertion in derivePublicJwk function ([9a0cfc1](https://github.com/astrale-os/sdk/commit/9a0cfc13944f34ccd790a2f9832332886d6aaf1a))
1226
+ * add `installLocation` domain-config field; place domains under /domains/<origin> ([7ee04f7](https://github.com/astrale-os/sdk/commit/7ee04f78dd70f584a1addcdbc2a981280dba94c0))
1227
+ * add auth policy to remote method definitions ([369d5b4](https://github.com/astrale-os/sdk/commit/369d5b42561f502b8dd38986051aa217d4de2f46))
1228
+ * add authorize hook + assertPerm helpers + fix public auth policy ([b644585](https://github.com/astrale-os/sdk/commit/b6445857cd3bef35890388869a4c61e5a618b35a))
1229
+ * add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
1230
+ * add dispatch method to SdkDispatcher for handling local resolutions and return types ([5c190b1](https://github.com/astrale-os/sdk/commit/5c190b15df995b34b24bc7ed1036745d08c52d31))
1231
+ * add latest version of @typescript/native-preview to devDependencies ([003647a](https://github.com/astrale-os/sdk/commit/003647a30f96c1a161bf773946e221a5a71b8470))
1232
+ * add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
1233
+ * add optional core parameter to RemoteDomain and RemoteDomainConfig types ([ebacba6](https://github.com/astrale-os/sdk/commit/ebacba687506e81702d08115eeb623331b31d2ec))
1234
+ * add remoteInterfaceMethods factory for interface-hosted methods ([#5](https://github.com/astrale-os/sdk/issues/5)) ([9f05a0c](https://github.com/astrale-os/sdk/commit/9f05a0cb71d1b8f73d7f676fb8af1e19ef9d1510))
1235
+ * add requireEnv helper and require issuer in createRemoteServer ([ac4f25a](https://github.com/astrale-os/sdk/commit/ac4f25a610a549f069739a2b09891b0529fc2ec7))
1236
+ * add SDK v2 with JSON-RPC support and streaming capabilities ([a9c30ec](https://github.com/astrale-os/sdk/commit/a9c30ec1527e381c715d7881200af3db0903dc53))
1237
+ * add unit tests for method resolution and enhance normalization logic ([b4ffebd](https://github.com/astrale-os/sdk/commit/b4ffebd3cc4a54aaf1eb2221982c46ddf32329fc))
1238
+ * astrale adapter ships prod secrets on the install call ([80f7420](https://github.com/astrale-os/sdk/commit/80f742035df96b13e3ff9c001f525ef543566b5b))
1239
+ * astrale-domain publish = register-only (no deploy) + --public-url ([708656b](https://github.com/astrale-os/sdk/commit/708656b4c38b0daa5e69cb88802652fa774daf2b))
1240
+ * astrale() managed adapter and template fixes (hono dep, bun compat) ([9cee71c](https://github.com/astrale-os/sdk/commit/9cee71c1c9ecbf6ed42451d8a6ac225ebd38a9c5))
1241
+ * auto-materialize Views/RemoteFunctions + mount worker routes from defineRemoteDomain ([34f4011](https://github.com/astrale-os/sdk/commit/34f4011369d6bedcbd1293f0b43cbc256057c14c))
1242
+ * cloudflare adapter, create-astrale-domain, and devkit ([60d67ec](https://github.com/astrale-os/sdk/commit/60d67ec1f2dad3a77cce4c3410d6e52c088c228a))
1243
+ * config hot-regen (adapter.regenerate + config watch) + X-Forwarded-Proto origin upgrade ([4cd5fb8](https://github.com/astrale-os/sdk/commit/4cd5fb878d03cd4333c12b10e48094f78e70c29b))
1244
+ * ctx.callRemote for worker→worker remote-method calls ([d61a3aa](https://github.com/astrale-os/sdk/commit/d61a3aaa99b8d6ecb4b9e7e9f91e6a7c1b88b3fe))
1245
+ * declare remote functions in the schema (functions-in-DSL) ([f5c1482](https://github.com/astrale-os/sdk/commit/f5c1482398de83091557ea1b20a6f08f92d570a4))
1246
+ * decouple JWT issuer from server URL and use method path as outbound subject ([3af4055](https://github.com/astrale-os/sdk/commit/3af4055121dff6ef0d1cf5f2a192b7cdff719145))
1247
+ * defineView and defineRemoteFunction declarative authoring helpers ([b300183](https://github.com/astrale-os/sdk/commit/b30018354e7523e06563f7db570db9548eccf332))
1248
+ * dev --host <public-url> for off-localhost dev ([0d13136](https://github.com/astrale-os/sdk/commit/0d1313666a36bb69e0efcfc030cc5849bdc6db8d))
1249
+ * devkit dev --port override ([17ff493](https://github.com/astrale-os/sdk/commit/17ff493f865a9227c56474ee83003d285c3f9e2a))
1250
+ * devkit dx batch — loud dev build failure, adapter-swap hint, managed footer, missing-def hint ([b6c0b0b](https://github.com/astrale-os/sdk/commit/b6c0b0b611a9887b06569d6798d46c2b76016856))
1251
+ * enhance authorization flow with JWKS and issuer registry support ([2bfab25](https://github.com/astrale-os/sdk/commit/2bfab25d1d651e7b97137a53112c20f4816212bd))
1252
+ * enhance identity handling and function path derivation in remote server setup ([6cbdf59](https://github.com/astrale-os/sdk/commit/6cbdf591913bd982f5b3b070dd86316a6fb4f4f6))
1253
+ * enhance SDK v2 with new domain methods and testing framework ([3ba1b5e](https://github.com/astrale-os/sdk/commit/3ba1b5e00b4af316ddbfec188a8cbefdd1846a6c))
1254
+ * enhance SDK with domain installation and authorization features ([faaebab](https://github.com/astrale-os/sdk/commit/faaebab1ec1ec5ee29d56b765ccae18f26730653))
1255
+ * enhance SdkValidationError to include detailed error messages and structure ([c498580](https://github.com/astrale-os/sdk/commit/c498580e44132ce05c272f13f557954f92b545c7))
1256
+ * enhance self resolution handling and add tests for resolveSelf functionality ([63c8de5](https://github.com/astrale-os/sdk/commit/63c8de5b08281afc803dc57e711d080da374acb7))
1257
+ * expose kernel client to defineRemoteFunction handlers ([b1ff25a](https://github.com/astrale-os/sdk/commit/b1ff25a698045b1a6df2df0d85072515f57c43dd))
1258
+ * fail loud when a preset-declared secrets file is missing ([d2f7202](https://github.com/astrale-os/sdk/commit/d2f7202fc5f8b177a0b6da77cedb3b9504eec825))
1259
+ * implement buildSpec function for RemoteDomain and update exports ([a1673db](https://github.com/astrale-os/sdk/commit/a1673dbfd3e7dc3b29e8f4ba03bfed2df5d8a4c8))
1260
+ * implement deploy check functionality and related types for SDK deployment validation ([bf81c9a](https://github.com/astrale-os/sdk/commit/bf81c9abc5fe02efbec78786200a8aee2eabda16))
1261
+ * implement managed service readiness checks and retry logic ([4d5f91d](https://github.com/astrale-os/sdk/commit/4d5f91dcadaf3f3314ba1de6d4bbbd380615038d))
1262
+ * Implement StatusPage functionality with monitoring capabilities ([18cc7f6](https://github.com/astrale-os/sdk/commit/18cc7f6ea95e47740857effa19551c6ef58be725))
1263
+ * initial SDK packages for Astrale OS ([9b0e085](https://github.com/astrale-os/sdk/commit/9b0e08591b301882686db51703ccf730901f70b6))
1264
+ * introduce deploy and domain configuration for standalone domains ([eac596b](https://github.com/astrale-os/sdk/commit/eac596b3774719f2767ec8f2d6ec8bde60502266))
1265
+ * introduce remote server configuration and creation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
1266
+ * lazy self.node() accessor for method handlers ([920ac6a](https://github.com/astrale-os/sdk/commit/920ac6ae98690008ae9348fcd6eac11aba5072dc))
1267
+ * managed adapter is the scaffold default; --instance stamps the slug ([4e300d6](https://github.com/astrale-os/sdk/commit/4e300d692e6b8bc91d9f298fb21f936ada9c10d9))
1268
+ * managed deploys ship the client SPA — /ui serves on managed services ([51c1ee3](https://github.com/astrale-os/sdk/commit/51c1ee37d3f0b17c2ad6b0640a28cb951c446a59))
1269
+ * normalize method names in resolveMethod and update buildSpec return type ([4175e22](https://github.com/astrale-os/sdk/commit/4175e220fdb0cc8ea603de10ea01f6fe37e1caf2))
1270
+ * promote v2 to top-level sdk, archive legacy packages ([05946b0](https://github.com/astrale-os/sdk/commit/05946b05caa0e541ed6e6e40ad232a8a136c1605))
1271
+ * refactor authentication and identity handling, improve method resolution and deploy checks ([a70bf10](https://github.com/astrale-os/sdk/commit/a70bf101473404b364dfed34b50a5d62c56b1d7d))
1272
+ * refine domain dx refactor ([b2f7768](https://github.com/astrale-os/sdk/commit/b2f7768b521563a22411562d3878bb1c18d2ee86))
1273
+ * replace BoundClient with BoundSessionView in authentication and dispatch layers ([c6020e3](https://github.com/astrale-os/sdk/commit/c6020e39fe4cee59d124c000def2ef0f9c1250ce))
1274
+ * rich typed self (BoundNode) + schema-bound dispatch wiring ([#16](https://github.com/astrale-os/sdk/issues/16)) ([05c46b8](https://github.com/astrale-os/sdk/commit/05c46b8d01663aeb26e2bc2b0db266a182ea685e))
1275
+ * scaffold ships the astrale-cli skill alongside astrale-domain ([52519c4](https://github.com/astrale-os/sdk/commit/52519c448ef3ea7a67d6649378f94b9bfcf63929))
1276
+ * scaffolder prints the workspace-level skills registration one-liner ([9d838be](https://github.com/astrale-os/sdk/commit/9d838bea586524ad300abf0e84688b29a297d8cc))
1277
+ * **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
1278
+ * scaffolds ship the astrale-domain authoring skill (.agents/skills) ([5e3338d](https://github.com/astrale-os/sdk/commit/5e3338dc94bb059df3ef1465329df81c92df94ff))
1279
+ * selfKernel — public/webhook handlers act as the function's own identity ([30b71b6](https://github.com/astrale-os/sdk/commit/30b71b65e6a5e89939fcb257ce2235cc0a710876))
1280
+ * selfKernel in the view render context + dev port auto-pick ([6a53616](https://github.com/astrale-os/sdk/commit/6a53616eab32accab79490e85cd2a3b9dc061f02))
1281
+ * single status-page view; release 0.2.0 ([cb202cd](https://github.com/astrale-os/sdk/commit/cb202cd30f15965d5d06657aec4bc1425b972a76))
1282
+ * stamp /meta endpoint and spec.json with build provenance ([41d8a92](https://github.com/astrale-os/sdk/commit/41d8a92d0dce55c6ba91a7e59f11d6abd661a27c))
1283
+ * type auth context by policy ([db3d5f5](https://github.com/astrale-os/sdk/commit/db3d5f5278838136936808fd22519efa99e2af50))
1284
+ * update /meta endpoint to publish JWKS URL and improve identity resolution ([265c170](https://github.com/astrale-os/sdk/commit/265c170d0ce4fd6bb47636865b9c734482064816))
1285
+ * update buildSpec and defineRemoteDomain to streamline remote domain handling ([daba714](https://github.com/astrale-os/sdk/commit/daba714624cbb066a6ced0c18884670545e90d42))
1286
+ * update buildSpec and identity binding to use Graph instead of PortableSpec ([acd3441](https://github.com/astrale-os/sdk/commit/acd344152dba56487076da10c1b5fe1ff9675e59))
1287
+ * validate function outputs against outputSchema (parity with kernel) ([#6](https://github.com/astrale-os/sdk/issues/6)) ([22648ea](https://github.com/astrale-os/sdk/commit/22648ea2c9ceca5ff42dbaaf78944935c957c3f9))
1288
+ * **worker:** refine monitoring template ([4c1887c](https://github.com/astrale-os/sdk/commit/4c1887c09fd1a785a72a47258bf2b4a4d87c859f))
1289
+ * workspace-refactor enablers — manifest roles, DomainIssuer mint seam, fn-context graph ([6202965](https://github.com/astrale-os/sdk/commit/62029654453f67a365df93abaa9bcd1db130baff))
1290
+
1291
+
1292
+ ### Bug Fixes
1293
+
1294
+ * 30m session-credential ttl — handlers outliving 60s could not write back ([985834d](https://github.com/astrale-os/sdk/commit/985834d0fd8a869633698d50f6fe30d32f457ce9))
1295
+ * accept public/optional functions in domain function maps ([#9](https://github.com/astrale-os/sdk/issues/9)) ([46ccb4a](https://github.com/astrale-os/sdk/commit/46ccb4a7c6ff3c582475f2baaad60fb3a112d24e))
1296
+ * accept public/optional method handlers in the AnyRemoteHandler bag ([#10](https://github.com/astrale-os/sdk/issues/10)) ([4969779](https://github.com/astrale-os/sdk/commit/49697796988ad28174cf16993401715c5282fe45))
1297
+ * adapt build-spec to the kernel two-axis placement (parent, not mount) ([#17](https://github.com/astrale-os/sdk/issues/17)) ([61ac025](https://github.com/astrale-os/sdk/commit/61ac025bfe51f9460caf470be005b43716f0117c))
1298
+ * add js/cjs/mjs to lint-staged config ([d932f8f](https://github.com/astrale-os/sdk/commit/d932f8f8c1825bc05a80654bcffcc3208bec1a65))
1299
+ * apply CORS to auxiliary /functions and /views routes ([0cb8e12](https://github.com/astrale-os/sdk/commit/0cb8e12ae97c7b334584bcd79d2e907fbbf0ffa9))
1300
+ * **app:** resolve eslint errors for empty object and any types ([6e4272a](https://github.com/astrale-os/sdk/commit/6e4272a3af3770e65f1e079838866e67edb05084))
1301
+ * **app:** restore zod type import ([c9a9f99](https://github.com/astrale-os/sdk/commit/c9a9f997f390aa587749511862b57ead47c2b8ad))
1302
+ * **backend:** forward ctx.issuer to remote handlers ([12031d4](https://github.com/astrale-os/sdk/commit/12031d408d68753f2c2aa53dfc1bb2eb286babdf))
1303
+ * **ci:** configure GitHub Packages auth for external dependencies ([9cbf721](https://github.com/astrale-os/sdk/commit/9cbf721ae811d3940de34e4c9a0ded09a7998c0d))
1304
+ * **ci:** gracefully handle missing external dependencies ([a9e315e](https://github.com/astrale-os/sdk/commit/a9e315e0eae61e4e07e70085f285f75e062cf7db))
1305
+ * **ci:** remove cache requirement and use --no-frozen-lockfile ([1f2e25e](https://github.com/astrale-os/sdk/commit/1f2e25e7aafb5efca62de7e0e4e62241c5fda31a))
1306
+ * **ci:** update publish workflow to handle missing dependencies ([5ce3ea9](https://github.com/astrale-os/sdk/commit/5ce3ea94c217506157302193754e92e69aac8dbb))
1307
+ * **ci:** use shared publish action and fix typegraph dependency ([9a211f4](https://github.com/astrale-os/sdk/commit/9a211f4005259ec2ae8178265715aa05fcfa0854))
1308
+ * clean up error handling and validation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
1309
+ * cold-run dx batch (timeout, epilogue, pnpm-first, .env.dev) ([a3398f0](https://github.com/astrale-os/sdk/commit/a3398f022e2eca98188627217443369d59469a69))
1310
+ * correctness + quality pass on SDK dispatch, auth, and server ([d58f17c](https://github.com/astrale-os/sdk/commit/d58f17c8e95d0f9e201da2534a1243662b9ab5d5))
1311
+ * devkit --help prints usage instead of deploying; devkit 0.1.6 ([65541cd](https://github.com/astrale-os/sdk/commit/65541cd1c227de15406282139ffdbd4e41cfda62))
1312
+ * drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
1313
+ * expose `self.id` on SelfResult for instance dispatch — META_TRACE [#61](https://github.com/astrale-os/sdk/issues/61) ([850ffd8](https://github.com/astrale-os/sdk/commit/850ffd8aa9b28d7f90a28b22344b88848a2b81d5))
1314
+ * guard sdk preinstall for tarball installs + bump publish chain (workspace:^ internal pins) ([7519a29](https://github.com/astrale-os/sdk/commit/7519a29a1ae6b29a452cf5629b93b3c8419a324f))
1315
+ * **iframe:** mark render views no-handshake ([5cfea82](https://github.com/astrale-os/sdk/commit/5cfea826edb2c96d113322ac9bca1595acda4759))
1316
+ * make astrale adapter params.instance optional for dev-only envs ([7e44313](https://github.com/astrale-os/sdk/commit/7e4431334cc440c9375c10922733f9c36ed22438))
1317
+ * never ship a pnpm-lock.yaml in scaffolds ([80c0196](https://github.com/astrale-os/sdk/commit/80c01964c5f777887f77cafc98fb4cb0da09e094))
1318
+ * next-hop delegation mints as the function's own identity with composed grant ([77e570e](https://github.com/astrale-os/sdk/commit/77e570e9837be524c0f858e652fd966af3e021d6))
1319
+ * opaque @hono/node-server import so worker bundles skip the optional peer ([e53e983](https://github.com/astrale-os/sdk/commit/e53e983638b2643875e55ca1587e1fe606479d1c))
1320
+ * pin zod by exact version in create-astrale-domain --link scaffolds ([9a778ca](https://github.com/astrale-os/sdk/commit/9a778ca44073a2f318faf7d1f1092844946046da))
1321
+ * postInstall must be a typed colon-path - template seed becomes a Note static ([35c5d45](https://github.com/astrale-os/sdk/commit/35c5d45836c13109d28af0f541f41550457767f1))
1322
+ * replace ~20 `any` casts with proper types across worker, react, and backend ([786bba2](https://github.com/astrale-os/sdk/commit/786bba22a13e8ddef0e71b047163c2b6dc3145bd))
1323
+ * scaffold cp filter must test template-relative paths (npx installs live in node_modules) ([3fd0a79](https://github.com/astrale-os/sdk/commit/3fd0a7925bb3c77a5aba3cde24aad26013cd7973))
1324
+ * sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))
1325
+ * selfKernel prefers INSTANCE_KERNEL_URL (instance graph) over the host KERNEL_URL ([a767aa8](https://github.com/astrale-os/sdk/commit/a767aa83f9bf0c3357cbed6f7bfc11a4f94cb51a))
1326
+ * sign runtime creds with bare-slug iss; verify with audience tolerance ([16d8a26](https://github.com/astrale-os/sdk/commit/16d8a26025435059a03ce736efeb1225c976dd9a))
1327
+ * template dep floors to known-good versions + pnpm build-gate declarations ([bc681da](https://github.com/astrale-os/sdk/commit/bc681daabc717316b1e22f9b0bcaa0b7c727981f))
1328
+ * WFP tenant self-subrequest 404 + scaffolds shipping a stale lockfile ([fda3a28](https://github.com/astrale-os/sdk/commit/fda3a285ddc775474ec53c1ea2a902b4c364b361))
1329
+ * wire + default-on the router service binding ([4d05110](https://github.com/astrale-os/sdk/commit/4d05110e4796a2dad9e7fca1fab53206dca39823))
1330
+ * **worker:** dispatch same-origin self-subrequests in-process when no SELF binding ([6017c75](https://github.com/astrale-os/sdk/commit/6017c759c6ba70efdda9f8b699f1f6cb25b080fb))
1331
+ * **worker:** repair managed deploy hotfix ([65bdbb9](https://github.com/astrale-os/sdk/commit/65bdbb90c9036e5591e10be61079ed4f4baec52c))
1332
+
1333
+
1334
+ ### Performance Improvements
1335
+
1336
+ * cache JWKS resolvers, evict-and-retry on stale issuer keys ([bc31c93](https://github.com/astrale-os/sdk/commit/bc31c9317c421361182d1851e74ea25f5f23373a))
1337
+
1338
+
1339
+ ### Documentation
1340
+
1341
+ * **backend:** reference kernel Domain.install in adapter-astrale comment ([1fcdca2](https://github.com/astrale-os/sdk/commit/1fcdca28b660985ddd31a056e026f636e9e294f6))
1342
+ * clarify development setup and workspace dependency ([6af5a67](https://github.com/astrale-os/sdk/commit/6af5a673dce763fa65e22234a76f74387fd1dc69))
1343
+ * document instance kernel url for the cloudflare adapter ([4a25ddd](https://github.com/astrale-os/sdk/commit/4a25dddef405540935e180dd8c547c26ec04c323))
1344
+ * note raw build-spec-cli lacks cross-domain env injection (use astrale domain build) ([d9864ae](https://github.com/astrale-os/sdk/commit/d9864ae0aca9f4bc3857bee94a3a4184a2b7086c))
1345
+ * rename instance install -> domain install; point hints at --direct ([ce0c567](https://github.com/astrale-os/sdk/commit/ce0c567851077cce56d5fd8569cd9f110fc5216e))
1346
+ * self binding present on managed runtime; logs rows in skills ([265841e](https://github.com/astrale-os/sdk/commit/265841e7eb921bdcf75b7294f8f7604fbd92adf5))
1347
+ * selfKernel in skill webhook section ([4be446b](https://github.com/astrale-os/sdk/commit/4be446bc8620eaa2cc57ea1e2ab448b991d520c1))
1348
+ * skill — correct schema registration (edges under classes) and defineSchema import ([7b5de46](https://github.com/astrale-os/sdk/commit/7b5de46cdd17ac3d5f704e1925354919517e8352))
1349
+ * skill — dev --port ([9f1f90a](https://github.com/astrale-os/sdk/commit/9f1f90a9d6481732edef31bf7b6335ef76baa711))
1350
+ * skill — local-dev vs remote-instance install reality ([61eacaf](https://github.com/astrale-os/sdk/commit/61eacaf2517c63eb6fb04bfb9f83f9389076a7db))
1351
+ * skill — view discovery, mount semantics, managed-install debugging and recovery ([88f2e7f](https://github.com/astrale-os/sdk/commit/88f2e7f15a0018a9ef6b1c896a72f80f9adf5127))
1352
+ * skill — views ship on both adapters ([63b8825](https://github.com/astrale-os/sdk/commit/63b88253f6001d63f910d92ae113f88a31466f41))
1353
+ * skill + scope — managed secrets shipped ([55fe37e](https://github.com/astrale-os/sdk/commit/55fe37e01852b5717f7cbeb210f66b6957a9d023))
1354
+ * skill carries the grantperm snippet for the public-view pattern ([3c5d346](https://github.com/astrale-os/sdk/commit/3c5d346765a42946620d34acb352e6b141d57181))
1355
+ * skill recipe — public server-rendered view reading the graph ([32b00ea](https://github.com/astrale-os/sdk/commit/32b00ea0b115c8178c248c4dc5f61d05b45e9d2a))
1356
+
1357
+ ## [0.2.1](https://github.com/astrale-os/sdk/compare/sdk-v0.2.0...sdk-v0.2.1) (2026-06-24)
1358
+
1359
+
1360
+ ### Features
1361
+
1362
+ * add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
1363
+ * add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
1364
+ * **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
1365
+
1366
+
1367
+ ### Bug Fixes
1368
+
1369
+ * drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
1370
+ * sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))