@astrale-os/sdk 0.5.0-beta.6 → 0.5.0-beta.61

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