@astrale-os/cli 1.0.0-beta.1 → 1.0.0-beta.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (329) hide show
  1. package/README.md +23 -12
  2. package/dist/astrale.js +48048 -56798
  3. package/dist/public/connect-core.js +2011 -30765
  4. package/dist/public/keys/index.js +884 -29483
  5. package/dist/public/paths/index.js +13101 -41459
  6. package/dist/types/admin/binding.d.ts +19 -0
  7. package/dist/types/admin/instance/client.d.ts +22 -0
  8. package/dist/types/admin/instance/index.d.ts +2 -0
  9. package/dist/types/admin/instance/model.d.ts +5 -12
  10. package/dist/types/connection/auth.d.ts +3 -0
  11. package/dist/types/connection/call.d.ts +3 -0
  12. package/dist/types/connection/command.d.ts +27 -0
  13. package/dist/types/connection/credential.d.ts +14 -0
  14. package/dist/types/connection/errors.d.ts +1 -0
  15. package/dist/types/connection/exchange.d.ts +9 -0
  16. package/dist/types/connection/failure/classify.d.ts +2 -0
  17. package/dist/types/connection/failure/index.d.ts +5 -0
  18. package/dist/types/connection/failure/model.d.ts +25 -0
  19. package/dist/types/connection/failure/render.d.ts +3 -0
  20. package/dist/types/connection/index.d.ts +8 -0
  21. package/dist/types/connection/reasons.d.ts +37 -0
  22. package/dist/types/connection/self.d.ts +37 -0
  23. package/dist/types/connection/session.d.ts +31 -0
  24. package/dist/types/connection/target.d.ts +38 -0
  25. package/dist/types/errors.d.ts +1 -1
  26. package/dist/types/lib/admin-instance.d.ts +17 -0
  27. package/dist/types/lib/admin-target.d.ts +11 -36
  28. package/dist/types/lib/config.d.ts +7 -59
  29. package/dist/types/lib/failure-debug.d.ts +1 -0
  30. package/dist/types/lib/idp.d.ts +26 -168
  31. package/dist/types/lib/instance-target.d.ts +1 -1
  32. package/dist/types/lib/instance.d.ts +30 -88
  33. package/dist/types/lib/log.d.ts +5 -3
  34. package/dist/types/lib/meta.d.ts +2 -2
  35. package/dist/types/lib/proc.d.ts +43 -0
  36. package/dist/types/lib/self.d.ts +9 -0
  37. package/dist/types/lib/update.d.ts +91 -0
  38. package/dist/types/lib/validation.d.ts +4 -1
  39. package/package.json +16 -19
  40. package/src/__tests__/fixtures/publication.ts +20 -0
  41. package/src/admin/__tests__/binding.test.ts +31 -0
  42. package/src/admin/__tests__/fixture.ts +101 -0
  43. package/src/admin/binding.ts +98 -0
  44. package/src/admin/catalog/.spec/api.d.ts +2 -2
  45. package/src/admin/catalog/__tests__/client.test.ts +20 -49
  46. package/src/admin/catalog/client.ts +36 -32
  47. package/src/admin/catalog/model.ts +3 -4
  48. package/src/admin/graph/.spec/api.d.ts +4 -10
  49. package/src/admin/graph/nodes.ts +1 -1
  50. package/src/admin/instance/.spec/api.d.ts +2 -2
  51. package/src/admin/instance/__tests__/client.test.ts +39 -164
  52. package/src/admin/instance/client.ts +35 -124
  53. package/src/admin/instance/index.ts +1 -2
  54. package/src/admin/instance/model.ts +11 -20
  55. package/src/commands/__tests__/admin-instance.test.ts +11 -8
  56. package/src/commands/__tests__/auth-login.test.ts +54 -1
  57. package/src/commands/__tests__/call-describe.test.ts +46 -33
  58. package/src/commands/__tests__/call.test.ts +5 -1
  59. package/src/commands/__tests__/domain-install-operation.test.ts +12 -7
  60. package/src/commands/__tests__/domain-install-owned.test.ts +6 -2
  61. package/src/commands/__tests__/domain-list.test.ts +63 -4
  62. package/src/commands/__tests__/install-identity-override.test.ts +19 -19
  63. package/src/commands/__tests__/instance-list-rows.test.ts +1 -1
  64. package/src/commands/__tests__/instance-status.test.ts +139 -0
  65. package/src/commands/__tests__/read-commands.test.ts +35 -10
  66. package/src/commands/__tests__/studio-descriptor.test.ts +22 -0
  67. package/src/commands/__tests__/update.test.ts +48 -19
  68. package/src/commands/call-describe.ts +60 -68
  69. package/src/commands/call.ts +43 -56
  70. package/src/commands/domain/install.ts +13 -17
  71. package/src/commands/domain/list.ts +18 -13
  72. package/src/commands/domain/publish.ts +14 -11
  73. package/src/commands/domain/uninstall.ts +2 -2
  74. package/src/commands/get.ts +14 -15
  75. package/src/commands/identity/__tests__/register.test.ts +3 -3
  76. package/src/commands/identity/register.ts +5 -4
  77. package/src/commands/instance/create.ts +8 -16
  78. package/src/commands/instance/delete.ts +12 -9
  79. package/src/commands/instance/list.ts +2 -2
  80. package/src/commands/instance/status.ts +66 -20
  81. package/src/commands/instance/use.ts +16 -12
  82. package/src/commands/introspect.ts +9 -16
  83. package/src/commands/logs.ts +24 -25
  84. package/src/commands/mutate.ts +6 -5
  85. package/src/commands/query.ts +27 -30
  86. package/src/commands/studio.ts +20 -0
  87. package/src/commands/token.ts +8 -7
  88. package/src/commands/update.ts +38 -14
  89. package/src/commands/view.ts +7 -6
  90. package/src/connection/.spec/api.d.ts +7 -8
  91. package/src/connection/.spec/architecture.md +5 -4
  92. package/src/connection/.spec/flows/session.ts +2 -2
  93. package/src/connection/.spec/laws/connection.ts +6 -2
  94. package/src/connection/.spec/layout.ts +1 -0
  95. package/src/connection/__tests__/credential.test.ts +20 -1
  96. package/src/connection/__tests__/errors.test.ts +43 -32
  97. package/src/connection/__tests__/exchange.test.ts +36 -6
  98. package/src/connection/__tests__/failure-fixtures.ts +39 -0
  99. package/src/connection/__tests__/failure-safety.test.ts +75 -0
  100. package/src/connection/__tests__/self.test.ts +31 -11
  101. package/src/connection/__tests__/session.test.ts +3 -3
  102. package/src/connection/__tests__/target.test.ts +1 -0
  103. package/src/connection/auth.ts +13 -0
  104. package/src/connection/call.ts +1 -1
  105. package/src/connection/credential.ts +2 -2
  106. package/src/connection/errors.ts +1 -355
  107. package/src/connection/exchange.ts +52 -27
  108. package/src/connection/failure/classify.ts +110 -0
  109. package/src/connection/failure/index.ts +18 -0
  110. package/src/connection/failure/model.ts +28 -0
  111. package/src/connection/failure/render.ts +116 -0
  112. package/src/connection/reasons.ts +16 -0
  113. package/src/connection/self.ts +39 -21
  114. package/src/connection/session.ts +19 -8
  115. package/src/errors.ts +3 -2
  116. package/src/graph/.spec/api.d.ts +12 -5
  117. package/src/graph/.spec/layout.ts +9 -1
  118. package/src/graph/__tests__/mutation.test.ts +2 -2
  119. package/src/graph/__tests__/query.test.ts +25 -6
  120. package/src/graph/class.ts +30 -0
  121. package/src/graph/index.ts +1 -0
  122. package/src/graph/query.ts +21 -32
  123. package/src/identity/.spec/api.d.ts +2 -2
  124. package/src/identity/__tests__/registration.test.ts +1 -1
  125. package/src/identity/registration.ts +3 -3
  126. package/src/keys/__tests__/keys.test.ts +4 -0
  127. package/src/keys/credential.ts +1 -0
  128. package/src/lib/__tests__/admin-target.test.ts +12 -0
  129. package/src/lib/__tests__/command-dx.test.ts +1 -1
  130. package/src/lib/__tests__/domain-publication.test.ts +138 -0
  131. package/src/lib/__tests__/idp-session.test.ts +22 -0
  132. package/src/lib/__tests__/idp.test.ts +36 -4
  133. package/src/lib/__tests__/instance-candidates.test.ts +1 -3
  134. package/src/lib/__tests__/instance-target.test.ts +7 -39
  135. package/src/lib/__tests__/instance.test.ts +6 -0
  136. package/src/lib/__tests__/log-errors.test.ts +64 -0
  137. package/src/lib/__tests__/studio-server-deps.test.ts +53 -16
  138. package/src/lib/__tests__/update.test.ts +113 -8
  139. package/src/lib/__tests__/view-open-intent.test.ts +0 -2
  140. package/src/lib/__tests__/view-server.test.ts +18 -3
  141. package/src/lib/__tests__/view-session.test.ts +1 -1
  142. package/src/lib/admin-instance.ts +14 -8
  143. package/src/lib/admin-target.ts +21 -2
  144. package/src/lib/command-dx.ts +9 -9
  145. package/src/lib/domain-publication.ts +104 -0
  146. package/src/lib/failure-debug.ts +26 -0
  147. package/src/lib/idp.ts +39 -4
  148. package/src/lib/instance-candidates.ts +2 -2
  149. package/src/lib/instance-target.ts +3 -14
  150. package/src/lib/instance.ts +22 -12
  151. package/src/lib/log.ts +16 -9
  152. package/src/lib/login-flow.ts +13 -3
  153. package/src/lib/meta.ts +2 -2
  154. package/src/lib/provision-instance.ts +34 -57
  155. package/src/lib/update.ts +124 -30
  156. package/src/lib/validation.ts +2 -2
  157. package/src/lib/view/resolve.ts +1 -1
  158. package/src/lib/view/server.ts +17 -3
  159. package/src/program/__tests__/program.test.ts +20 -4
  160. package/src/program/build.ts +2 -2
  161. package/src/setup/__tests__/instance-step.test.ts +27 -10
  162. package/src/setup/steps/instance.ts +22 -15
  163. package/studio/client/dist/assets/elk-api-DjmKsHXc.js +1 -0
  164. package/studio/client/dist/assets/index-7YHdeCxp.js +81 -0
  165. package/studio/client/dist/assets/index-C0FAnwNw.css +2 -0
  166. package/studio/client/dist/assets/rolldown-runtime-Dd_uD5pT.js +1 -0
  167. package/studio/client/dist/assets/schema-studio-BilUNb6Z.css +1 -0
  168. package/studio/client/dist/assets/schema-studio-CABpTfvH.js +8 -0
  169. package/studio/client/dist/index.html +3 -2
  170. package/studio/package.json +10 -14
  171. package/studio/server/agent/ask.test.ts +1 -1
  172. package/studio/server/agent/bridge/grant.test.ts +1 -1
  173. package/studio/server/agent/bridge/routes.test.ts +1 -1
  174. package/studio/server/agent/bridge/stdio.ts +8 -1
  175. package/studio/server/agent/conversation.test.ts +10 -5
  176. package/studio/server/agent/conversation.ts +56 -8
  177. package/studio/server/agent/harness/claude/adapter.test.ts +15 -5
  178. package/studio/server/agent/harness/codex/loadout.ts +18 -21
  179. package/studio/server/agent/harness/gateway/config.ts +20 -18
  180. package/studio/server/agent/harness/selection.ts +9 -1
  181. package/studio/server/agent/prompts/anchors.test.ts +32 -36
  182. package/studio/server/agent/prompts/anchors.ts +20 -49
  183. package/studio/server/agent/prompts/system.test.ts +3 -2
  184. package/studio/server/agent/prompts/system.ts +6 -5
  185. package/studio/server/agent/prompts/turn.ts +13 -4
  186. package/studio/server/agent/routes.test.ts +1 -1
  187. package/studio/server/agent/run/completion.ts +2 -2
  188. package/studio/server/agent/run/coordinator.test.ts +1 -1
  189. package/studio/server/agent/run/preparation.ts +6 -5
  190. package/studio/server/agent/run/transcript.test.ts +35 -1
  191. package/studio/server/agent/run/transcript.ts +169 -3
  192. package/studio/server/agent/run/usage.test.ts +24 -0
  193. package/studio/server/agent/run/usage.ts +26 -1
  194. package/studio/server/api/canvas.ts +43 -0
  195. package/studio/server/api/comments.ts +85 -0
  196. package/studio/server/api/context.ts +61 -0
  197. package/studio/server/api/deployment.ts +39 -0
  198. package/studio/server/api/documents.ts +55 -0
  199. package/studio/server/api/domain.ts +59 -0
  200. package/studio/server/api/http.ts +45 -0
  201. package/studio/server/api/project.ts +57 -0
  202. package/studio/server/api/schema.ts +12 -0
  203. package/studio/server/api/views.ts +57 -0
  204. package/studio/server/api/workspace.ts +60 -0
  205. package/studio/server/api-agent-loadout.test.ts +1 -1
  206. package/studio/server/api.test.ts +147 -0
  207. package/studio/server/api.ts +20 -422
  208. package/studio/server/cache.test.ts +122 -0
  209. package/studio/server/cache.ts +162 -11
  210. package/studio/server/cli-consumers.test.ts +494 -0
  211. package/studio/server/cli.test.ts +88 -0
  212. package/studio/server/cli.ts +240 -0
  213. package/studio/server/client-package.ts +25 -1
  214. package/studio/server/domain.test.ts +50 -40
  215. package/studio/server/domain.ts +83 -52
  216. package/studio/server/environment/dotenv-preview.test.ts +39 -0
  217. package/studio/server/environment/dotenv-preview.ts +27 -0
  218. package/studio/server/environment/files.test.ts +53 -0
  219. package/studio/server/{state/env.ts → environment/files.ts} +7 -48
  220. package/studio/server/{state → handoff}/copy.ts +21 -6
  221. package/studio/server/handoff/service.test.ts +22 -0
  222. package/studio/server/{state/handoff.ts → handoff/service.ts} +21 -14
  223. package/studio/server/index.ts +1 -1
  224. package/studio/server/instances/active.ts +72 -0
  225. package/studio/server/instances/deploy-record.test.ts +31 -0
  226. package/studio/server/instances/deploy-record.ts +37 -0
  227. package/studio/server/instances/deploy.ts +56 -0
  228. package/studio/server/{state/instance.test.ts → instances/probe.test.ts} +25 -21
  229. package/studio/server/instances/probe.ts +67 -0
  230. package/studio/server/instances/status.test.ts +12 -0
  231. package/studio/server/instances/status.ts +49 -0
  232. package/studio/server/introspect/anatomy/client-tree.ts +57 -0
  233. package/studio/server/introspect/anatomy/env-fields.ts +66 -0
  234. package/studio/server/introspect/anatomy/schema-definition.ts +53 -0
  235. package/studio/server/introspect/anatomy/source.ts +181 -0
  236. package/studio/server/introspect/anatomy/views/routes.ts +114 -0
  237. package/studio/server/introspect/anatomy/views.ts +53 -0
  238. package/studio/server/introspect/anatomy-extras.test.ts +106 -35
  239. package/studio/server/introspect/anatomy-extras.ts +7 -726
  240. package/studio/server/introspect/anatomy.test.ts +22 -14
  241. package/studio/server/introspect/anatomy.ts +52 -28
  242. package/studio/server/introspect/bundle.ts +15 -9
  243. package/studio/server/introspect/canonical-schema.test.ts +93 -309
  244. package/studio/server/introspect/canonical-schema.ts +257 -425
  245. package/studio/server/introspect/config-preview.test.ts +32 -0
  246. package/studio/server/introspect/config-preview.ts +119 -0
  247. package/studio/server/introspect/core-extractor.ts +18 -127
  248. package/studio/server/introspect/core.ts +1 -2
  249. package/studio/server/introspect/diff.test.ts +18 -18
  250. package/studio/server/introspect/diff.ts +44 -90
  251. package/studio/server/introspect/extractor.ts +23 -116
  252. package/studio/server/introspect/hash.ts +5 -2
  253. package/studio/server/introspect/overlay-tsmorph.test.ts +119 -240
  254. package/studio/server/introspect/overlay-tsmorph.ts +7 -1305
  255. package/studio/server/introspect/overlay.test.ts +26 -54
  256. package/studio/server/introspect/overlay.ts +10 -37
  257. package/studio/server/introspect/revision.test.ts +54 -0
  258. package/studio/server/introspect/revision.ts +49 -0
  259. package/studio/server/introspect/runtime.test.ts +83 -143
  260. package/studio/server/introspect/runtime.ts +40 -11
  261. package/studio/server/introspect/schema-ir-json.test.ts +70 -0
  262. package/studio/server/introspect/schema-ir-json.ts +151 -0
  263. package/studio/server/introspect/schema-refs.test.ts +43 -88
  264. package/studio/server/introspect/schema-refs.ts +14 -49
  265. package/studio/server/introspect/source-overlay/annotations.ts +14 -0
  266. package/studio/server/introspect/source-overlay/handlers.ts +161 -0
  267. package/studio/server/introspect/source-overlay/kernel-calls.ts +46 -0
  268. package/studio/server/introspect/source-overlay/project.ts +248 -0
  269. package/studio/server/introspect/source-overlay/spans.ts +330 -0
  270. package/studio/server/json.ts +46 -0
  271. package/studio/server/lifecycle.ts +5 -1
  272. package/studio/server/sse.test.ts +26 -0
  273. package/studio/server/sse.ts +4 -1
  274. package/studio/server/state/baseline.test.ts +223 -7
  275. package/studio/server/state/baseline.ts +148 -34
  276. package/studio/server/state/comments.test.ts +66 -1
  277. package/studio/server/state/comments.ts +173 -10
  278. package/studio/server/state/context.ts +34 -2
  279. package/studio/server/state/documents.ts +42 -1
  280. package/studio/server/state/integrations.ts +27 -1
  281. package/studio/server/state/layout.test.ts +34 -0
  282. package/studio/server/state/layout.ts +44 -17
  283. package/studio/server/state/settings.ts +29 -22
  284. package/studio/server/state/store.test.ts +122 -0
  285. package/studio/server/state/store.ts +66 -17
  286. package/studio/server/state/visibility.ts +22 -11
  287. package/studio/server/views/model.test.ts +57 -0
  288. package/studio/server/views/model.ts +66 -0
  289. package/studio/server/views/runtime.ts +40 -0
  290. package/studio/server/views/selection-repository.test.ts +31 -0
  291. package/studio/server/views/selection-repository.ts +60 -0
  292. package/studio/server/views/session.test.ts +73 -0
  293. package/studio/server/views/session.ts +166 -0
  294. package/studio/server/views/target.test.ts +78 -0
  295. package/studio/server/views/target.ts +222 -0
  296. package/studio/server/watch.test.ts +11 -11
  297. package/studio/server/watch.ts +9 -5
  298. package/studio/server/workspace/catalog.test.ts +17 -0
  299. package/studio/server/workspace/catalog.ts +43 -0
  300. package/studio/server/{state → workspace}/create.test.ts +1 -1
  301. package/studio/server/{state → workspace}/create.ts +1 -1
  302. package/studio/server/{state → workspace}/git.ts +1 -1
  303. package/studio/server/workspace/updates.ts +83 -0
  304. package/studio/server/workspace-state.ts +1 -1
  305. package/studio/server/workspace-watch.ts +2 -2
  306. package/studio/shared/contracts/README.md +16 -0
  307. package/studio/shared/contracts/agent.ts +270 -0
  308. package/studio/shared/contracts/runtime.ts +50 -0
  309. package/studio/shared/contracts/schema.ts +393 -0
  310. package/studio/shared/contracts/surface.test.ts +317 -0
  311. package/studio/shared/contracts/workspace.ts +265 -0
  312. package/studio/shared/layout.test.ts +116 -0
  313. package/studio/shared/schema/identity.test.ts +34 -0
  314. package/studio/shared/schema/identity.ts +68 -0
  315. package/studio/shared/types.ts +11 -1099
  316. package/studio/tsconfig.json +1 -1
  317. package/viewer/dist/main.js +40 -61
  318. package/.check-workspace.cjs +0 -40
  319. package/src/commands/__tests__/instance-create-hosts.test.ts +0 -29
  320. package/studio/client/dist/assets/elk-api-D2xgMJvi.js +0 -1
  321. package/studio/client/dist/assets/index-BMdnsIJA.css +0 -1
  322. package/studio/client/dist/assets/index-ChOr3yP0.css +0 -1
  323. package/studio/client/dist/assets/index-D-vRV8w7.js +0 -8
  324. package/studio/client/dist/assets/index-LGSWRrk8.js +0 -81
  325. package/studio/server/state/catalog.ts +0 -117
  326. package/studio/server/state/instance.ts +0 -280
  327. package/studio/server/state/updates.ts +0 -63
  328. package/studio/server/state/views.test.ts +0 -286
  329. package/studio/server/state/views.ts +0 -535
@@ -0,0 +1,248 @@
1
+ /**
2
+ * Tolerant ts-morph project construction and authored-source resolution.
3
+ *
4
+ * This module owns syntax/value lookup only. It does not interpret handlers or
5
+ * schema members.
6
+ */
7
+ import { existsSync, realpathSync } from 'node:fs'
8
+ import { dirname, isAbsolute, relative, resolve as resolvePath } from 'node:path'
9
+ import { Node, Project, SyntaxKind, type CallExpression, type SourceFile } from 'ts-morph'
10
+
11
+ /** A fresh, in-memory-ish ts-morph project: no tsconfig, tolerant of errors. */
12
+ export function newProject(): Project {
13
+ return new Project({
14
+ useInMemoryFileSystem: false,
15
+ skipFileDependencyResolution: true,
16
+ skipLoadingLibFiles: true,
17
+ compilerOptions: {
18
+ allowJs: true,
19
+ // `allowImportingTsExtensions` keeps `.ts`-suffixed imports from blowing up.
20
+ allowImportingTsExtensions: true,
21
+ },
22
+ })
23
+ }
24
+
25
+ /** Add a file to the project if it exists; returns undefined otherwise. */
26
+ export function tryAddFile(project: Project, file: string): SourceFile | undefined {
27
+ try {
28
+ if (!existsSync(file)) return undefined
29
+ return project.getSourceFile(file) ?? project.addSourceFileAtPath(file)
30
+ } catch {
31
+ return undefined
32
+ }
33
+ }
34
+
35
+ /** Path relative to `root`, POSIX-style ('schema/monitor.ts'), never absolute. */
36
+ export function relToRoot(root: string, file: string): string {
37
+ const abs = isAbsolute(file) ? file : resolvePath(root, file)
38
+ const canonical = (value: string) => {
39
+ try {
40
+ return realpathSync(value)
41
+ } catch {
42
+ return value
43
+ }
44
+ }
45
+ return relative(canonical(root), canonical(abs)).split('\\').join('/')
46
+ }
47
+
48
+ /** The call's callee identifier name, e.g. `method` / `classMethods` / `todo`. */
49
+ export function calleeName(call: CallExpression): string | undefined {
50
+ const expr = call.getExpression()
51
+ if (Node.isIdentifier(expr)) return expr.getText()
52
+ if (Node.isPropertyAccessExpression(expr)) return expr.getName()
53
+ return undefined
54
+ }
55
+
56
+ /** Remove syntax-only wrappers around a runtime value. */
57
+ export function unwrapExpression(node: Node): Node {
58
+ let current = node
59
+ while (
60
+ Node.isParenthesizedExpression(current) ||
61
+ Node.isAsExpression(current) ||
62
+ Node.isSatisfiesExpression(current) ||
63
+ Node.isTypeAssertion(current)
64
+ ) {
65
+ current = current.getExpression()
66
+ }
67
+ return current
68
+ }
69
+
70
+ /** Resolve a local or relatively imported identifier to its runtime value. */
71
+ export function valueOfIdentifier(id: Node): Node | undefined {
72
+ if (!Node.isIdentifier(id)) return undefined
73
+ const decl = firstValueDeclaration(id)
74
+ if (decl && Node.isVariableDeclaration(decl)) return decl.getInitializer()
75
+ return resolveImportedValue(id)
76
+ }
77
+
78
+ /** Follow a named relative import to the exported value that defines it. */
79
+ function resolveImportedValue(id: Node): Node | undefined {
80
+ if (!Node.isIdentifier(id)) return undefined
81
+ const localName = id.getText()
82
+ const sourceFile = id.getSourceFile()
83
+
84
+ for (const imp of sourceFile.getImportDeclarations()) {
85
+ for (const named of imp.getNamedImports()) {
86
+ const local = named.getAliasNode()?.getText() ?? named.getName()
87
+ if (local !== localName) continue
88
+ const target = resolveModuleFile(sourceFile, imp.getModuleSpecifierValue())
89
+ if (!target) return undefined
90
+ return findExportedValue(id.getProject(), target, named.getName(), new Set<string>())
91
+ }
92
+ }
93
+ return undefined
94
+ }
95
+
96
+ /** Find an exported variable/function value, following local and barrel exports. */
97
+ function findExportedValue(
98
+ project: Project,
99
+ file: string,
100
+ exportName: string,
101
+ seen: Set<string>,
102
+ ): Node | undefined {
103
+ const key = `${file}:${exportName}`
104
+ if (seen.has(key)) return undefined
105
+ seen.add(key)
106
+ const sf = tryAddFile(project, file)
107
+ if (!sf) return undefined
108
+
109
+ const localValue = (name: string, exportedOnly: boolean): Node | undefined => {
110
+ const variable = sf
111
+ .getVariableDeclarations()
112
+ .find(
113
+ (candidate) => candidate.getName() === name && (!exportedOnly || candidate.isExported()),
114
+ )
115
+ if (variable) return variable.getInitializer()
116
+ return sf
117
+ .getFunctions()
118
+ .find(
119
+ (candidate) => candidate.getName() === name && (!exportedOnly || candidate.isExported()),
120
+ )
121
+ }
122
+
123
+ const direct = localValue(exportName, true)
124
+ if (direct) return direct
125
+
126
+ for (const ex of sf.getExportDeclarations()) {
127
+ const modSpec = ex.getModuleSpecifierValue()
128
+ const target = modSpec ? resolveModuleFile(sf, modSpec) : undefined
129
+ const named = ex.getNamedExports()
130
+ if (named.length > 0) {
131
+ for (const specifier of named) {
132
+ const exposed = specifier.getAliasNode()?.getText() ?? specifier.getName()
133
+ if (exposed !== exportName) continue
134
+ const original = specifier.getName()
135
+ if (target) return findExportedValue(project, target, original, seen)
136
+ return localValue(original, false)
137
+ }
138
+ } else if (target) {
139
+ const found = findExportedValue(project, target, exportName, seen)
140
+ if (found) return found
141
+ }
142
+ }
143
+ return undefined
144
+ }
145
+
146
+ /** Get the value node of an object-literal property (handles shorthand). */
147
+ export function getProp(obj: Node, name: string): Node | undefined {
148
+ if (!Node.isObjectLiteralExpression(obj)) return undefined
149
+ const prop = obj.getProperty(name)
150
+ if (!prop) return undefined
151
+ if (Node.isPropertyAssignment(prop)) return prop.getInitializer()
152
+ if (Node.isShorthandPropertyAssignment(prop)) return prop.getNameNode()
153
+ if (Node.isMethodDeclaration(prop)) return prop
154
+ return prop
155
+ }
156
+
157
+ /** First value/declaration node a name resolves to (definition, not reference). */
158
+ export function firstValueDeclaration(node: Node): Node | undefined {
159
+ const idNode = Node.isIdentifier(node)
160
+ ? node
161
+ : node.getFirstDescendantByKind(SyntaxKind.Identifier)
162
+ if (!idNode || !Node.isIdentifier(idNode)) return undefined
163
+ const symbol = idNode.getSymbol()
164
+ if (!symbol) return undefined
165
+ const decls = symbol.getDeclarations()
166
+ return decls[0]
167
+ }
168
+
169
+ /** Resolve a relative module specifier to a concrete .ts file path on disk. */
170
+ export function resolveModuleFile(from: SourceFile, spec: string): string | undefined {
171
+ if (!spec.startsWith('.')) {
172
+ // Current SDK projects use package `imports` aliases such as
173
+ // `#actions/risk`. Resolve them from the authored file's directory through
174
+ // Bun so the overlay follows the same project-local map as runtime imports.
175
+ if (!spec.startsWith('#')) return undefined
176
+ try {
177
+ const resolved = Bun.resolveSync(spec, dirname(from.getFilePath()))
178
+ if (existsSync(resolved)) return resolved
179
+ } catch {
180
+ return undefined
181
+ }
182
+ return undefined
183
+ }
184
+ const baseDir = dirname(from.getFilePath())
185
+ const base = resolvePath(baseDir, spec)
186
+ const sourceBase = base.replace(/\.(?:[cm]?js|jsx)$/, '')
187
+ const candidates = [
188
+ base,
189
+ sourceBase.endsWith('.ts') ? sourceBase : `${sourceBase}.ts`,
190
+ sourceBase.endsWith('.tsx') ? sourceBase : `${sourceBase}.tsx`,
191
+ `${base}/index.ts`,
192
+ `${base}/index.tsx`,
193
+ ]
194
+ for (const c of candidates) if (existsSync(c)) return c
195
+ return undefined
196
+ }
197
+
198
+ /** Resolve a value to an object literal, following local/imported identifiers. */
199
+ export function resolveObjectLiteral(
200
+ node: Node,
201
+ seen = new Set<string>(),
202
+ ): import('ts-morph').ObjectLiteralExpression | undefined {
203
+ const value = unwrapExpression(node)
204
+ const key = `${value.getSourceFile().getFilePath()}:${value.getStart()}`
205
+ if (seen.has(key)) return undefined
206
+ seen.add(key)
207
+ if (Node.isObjectLiteralExpression(value)) return value
208
+ if (Node.isIdentifier(value)) {
209
+ const resolved = valueOfIdentifier(value)
210
+ if (resolved) return resolveObjectLiteral(resolved, seen)
211
+ }
212
+ return undefined
213
+ }
214
+
215
+ /** Value carried by an object-literal property, including shorthand/method syntax. */
216
+ export function objectPropertyValue(prop: Node): Node | undefined {
217
+ if (Node.isPropertyAssignment(prop)) return prop.getInitializer()
218
+ if (Node.isShorthandPropertyAssignment(prop)) return prop.getNameNode()
219
+ if (Node.isMethodDeclaration(prop)) return prop
220
+ return undefined
221
+ }
222
+
223
+ /** A string-literal property value, e.g. `as: 'page'` → 'page'. */
224
+ export function stringLiteralOfProp(obj: Node, name: string): string | undefined {
225
+ if (!Node.isObjectLiteralExpression(obj)) return undefined
226
+ const prop = obj.getProperty(name)
227
+ if (!prop || !Node.isPropertyAssignment(prop)) return undefined
228
+ const v = prop.getInitializer()
229
+ if (v && (Node.isStringLiteral(v) || Node.isNoSubstitutionTemplateLiteral(v)))
230
+ return v.getLiteralText()
231
+ return undefined
232
+ }
233
+
234
+ /** The key name of an object-literal property (assignment / shorthand / method). */
235
+ export function propertyKey(prop: Node): string | undefined {
236
+ if (
237
+ Node.isPropertyAssignment(prop) ||
238
+ Node.isShorthandPropertyAssignment(prop) ||
239
+ Node.isMethodDeclaration(prop)
240
+ ) {
241
+ const nameNode = prop.getNameNode()
242
+ if (Node.isStringLiteral(nameNode)) return nameNode.getLiteralText()
243
+ if (Node.isComputedPropertyName(nameNode)) return undefined // skip `[expr]: …`
244
+ return nameNode.getText()
245
+ }
246
+ // Spread (`...knobs`) — no single key.
247
+ return undefined
248
+ }
@@ -0,0 +1,330 @@
1
+ /**
2
+ * Source coordinates and leading documentation for authored schema members.
3
+ */
4
+ import { existsSync } from 'node:fs'
5
+ import { dirname } from 'node:path'
6
+ import { Node, SyntaxKind, type CallExpression, type SourceFile } from 'ts-morph'
7
+
8
+ import type { SchemaIR, SourceSpan } from '../../../shared/types'
9
+
10
+ import {
11
+ calleeName,
12
+ newProject,
13
+ objectPropertyValue,
14
+ propertyKey,
15
+ relToRoot,
16
+ resolveObjectLiteral,
17
+ stringLiteralOfProp,
18
+ unwrapExpression,
19
+ valueOfIdentifier,
20
+ } from './project'
21
+
22
+ /**
23
+ * Harvest the leading JSDoc / line-comment block immediately above `node`,
24
+ * stripped of comment markers, collapsed to a single trimmed string.
25
+ */
26
+ function leadingDoc(node: Node): string | undefined {
27
+ // Prefer real JSDoc nodes when present (ts-morph exposes them on many decls).
28
+ const anyNode = node as unknown as { getJsDocs?: () => Array<{ getText: () => string }> }
29
+ if (typeof anyNode.getJsDocs === 'function') {
30
+ const docs = anyNode.getJsDocs()
31
+ if (docs.length > 0) {
32
+ const text = docs.map((d) => d.getText()).join('\n')
33
+ const cleaned = cleanComment(text)
34
+ if (cleaned) return cleaned
35
+ }
36
+ }
37
+ // Fall back to raw leading comment ranges (covers `//` line comments too).
38
+ const ranges = node.getLeadingCommentRanges()
39
+ if (ranges.length === 0) return undefined
40
+ const raw = ranges.map((r) => r.getText()).join('\n')
41
+ const cleaned = cleanComment(raw)
42
+ return cleaned || undefined
43
+ }
44
+
45
+ /** Strip `/** *​/`, `//`, leading `*` gutters; collapse to a tidy single line. */
46
+ function cleanComment(raw: string): string {
47
+ const lines = raw
48
+ .replace(/\/\*\*?/g, '')
49
+ .replace(/\*\//g, '')
50
+ .split('\n')
51
+ .map((l) =>
52
+ l
53
+ .replace(/^\s*\*\s?/, '')
54
+ .replace(/^\s*\/\/\s?/, '')
55
+ .trim(),
56
+ )
57
+ .filter((l) => l.length > 0)
58
+ return lines.join(' ').replace(/\s+/g, ' ').trim()
59
+ }
60
+
61
+ const DECL_HELPERS: Record<string, 'node' | 'edge' | 'function'> = {
62
+ nodeClass: 'node',
63
+ edgeClass: 'edge',
64
+ fn: 'function',
65
+ }
66
+
67
+ /** Recognize current Class and Function declaration helpers. */
68
+ function declarationHelper(call: CallExpression): 'node' | 'edge' | 'function' | undefined {
69
+ const direct = calleeName(call)
70
+ if (direct && direct in DECL_HELPERS) return DECL_HELPERS[direct]
71
+ const expression = call.getExpression()
72
+ if (
73
+ Node.isPropertyAccessExpression(expression) &&
74
+ (expression.getName() === 'directed' || expression.getName() === 'undirected') &&
75
+ expression.getExpression().getText() === 'edgeClass'
76
+ ) {
77
+ return 'edge'
78
+ }
79
+ return undefined
80
+ }
81
+
82
+ /**
83
+ * A schema member's true NAME + section, resolved from the `defineSchema` map.
84
+ * Declaration helpers carry no name: the `defineSchema` key is authoritative.
85
+ */
86
+ interface MemberName {
87
+ schemaName: string
88
+ section: 'class' | 'function'
89
+ }
90
+
91
+ interface MemberNameMap {
92
+ /** Exact declaration initializer, robust to imported/local aliases. */
93
+ byValue: Map<string, MemberName>
94
+ /** Fallback when a symbol cannot be resolved. */
95
+ byIdentifier: Map<string, MemberName>
96
+ }
97
+
98
+ /** Stable source coordinate for the value behind a local/imported alias. */
99
+ function memberValueKey(node: Node, seen = new Set<string>()): string | undefined {
100
+ const value = unwrapExpression(node)
101
+ const key = `${value.getSourceFile().getFilePath()}:${value.getStart()}`
102
+ if (seen.has(key)) return undefined
103
+ seen.add(key)
104
+ if (Node.isIdentifier(value)) {
105
+ const resolved = valueOfIdentifier(value)
106
+ if (resolved) return memberValueKey(resolved, seen)
107
+ }
108
+ return key
109
+ }
110
+
111
+ /** Map each registered member VARIABLE (as referenced in `defineSchema`) to its
112
+ * schema name + section, from the domain's own schema files — never node_modules
113
+ * (a dependency's `defineSchema` is not this domain's). */
114
+ function buildMemberNameMap(files: SourceFile[]): MemberNameMap {
115
+ const map: MemberNameMap = {
116
+ byValue: new Map<string, MemberName>(),
117
+ byIdentifier: new Map<string, MemberName>(),
118
+ }
119
+ for (const sf of files) {
120
+ if (sf.getFilePath().includes('/node_modules/')) continue
121
+ for (const call of sf.getDescendantsOfKind(SyntaxKind.CallExpression)) {
122
+ if (calleeName(call) !== 'defineSchema') continue
123
+ const input = call.getArguments()[1]
124
+ const cfg = input ? resolveObjectLiteral(input) : undefined
125
+ if (!cfg) continue
126
+ collectSchemaSection(map, cfg, 'classes', 'class')
127
+ collectSchemaSection(map, cfg, 'functions', 'function')
128
+ }
129
+ }
130
+ return map
131
+ }
132
+
133
+ /** Record `variable → { schemaName, section }` for one `defineSchema` section,
134
+ * handling both `Key: alias` and shorthand `Key`. */
135
+ function collectSchemaSection(
136
+ map: MemberNameMap,
137
+ cfg: Node,
138
+ prop: 'classes' | 'functions',
139
+ section: 'class' | 'function',
140
+ ): void {
141
+ const obj = getObjectProp(cfg, prop)
142
+ if (!obj) return
143
+ for (const p of obj.getProperties()) {
144
+ const schemaName = propertyKey(p)
145
+ const memberValue = objectPropertyValue(p)
146
+ if (!schemaName || !memberValue) continue
147
+ const member = { schemaName, section } satisfies MemberName
148
+ const valueKey = memberValueKey(memberValue)
149
+ if (valueKey) map.byValue.set(valueKey, member)
150
+ const unwrapped = unwrapExpression(memberValue)
151
+ if (Node.isIdentifier(unwrapped)) map.byIdentifier.set(unwrapped.getText(), member)
152
+ }
153
+ }
154
+
155
+ /**
156
+ * The anchor namespace for a declared member. The Class section plus helper/IR
157
+ * kind distinguishes Node and Edge Classes.
158
+ */
159
+ function resolveMemberKind(
160
+ ir: SchemaIR | null,
161
+ name: string,
162
+ section: 'class' | 'function' | undefined,
163
+ helperKind: 'node' | 'edge' | 'function',
164
+ ): 'class' | 'edge' | 'function' {
165
+ if (section === 'function' || helperKind === 'function') return 'function'
166
+ const isEdge = helperKind === 'edge' || ir?.classes?.[name]?.type === 'edge'
167
+ if (section === 'class') return isEdge ? 'edge' : 'class'
168
+ return isEdge ? 'edge' : 'class'
169
+ }
170
+
171
+ export function buildSourceSpans(args: {
172
+ ir: SchemaIR | null
173
+ schemaDir: string
174
+ }): Record<string, SourceSpan> {
175
+ const { ir, schemaDir } = args
176
+ if (!schemaDir || !existsSync(schemaDir)) return {}
177
+
178
+ // The domain root is the parent of the schema dir (spans are relative to it).
179
+ const domainRoot = dirname(schemaDir.replace(/\/$/, ''))
180
+
181
+ const project = newProject()
182
+ let files: string[] = []
183
+ try {
184
+ const added = project.addSourceFilesAtPaths(`${schemaDir.replace(/\/$/, '')}/**/*.ts`)
185
+ files = added.map((f) => f.getFilePath())
186
+ } catch {
187
+ return {}
188
+ }
189
+
190
+ const spans: Record<string, SourceSpan> = {}
191
+
192
+ const sourceFiles = files.map((f) => project.getSourceFile(f)).filter((f): f is SourceFile => !!f)
193
+ // The Domain's `defineSchema` map is authoritative for each member's name.
194
+ const memberNames = buildMemberNameMap(sourceFiles)
195
+
196
+ for (const sf of sourceFiles) {
197
+ const fileRel = relToRoot(domainRoot, sf.getFilePath())
198
+
199
+ for (const v of sf.getVariableDeclarations()) {
200
+ if (!v.isExported()) continue
201
+ const init = v.getInitializer()
202
+ if (!init || !Node.isCallExpression(init)) continue
203
+ const helperKind = declarationHelper(init)
204
+ if (!helperKind) continue
205
+ const valueKey = memberValueKey(init)
206
+ const member =
207
+ (valueKey ? memberNames.byValue.get(valueKey) : undefined) ??
208
+ memberNames.byIdentifier.get(v.getName())
209
+ const name = member?.schemaName ?? v.getName()
210
+ const ns = resolveMemberKind(ir, name, member?.section, helperKind)
211
+
212
+ const stmt = v.getVariableStatement() ?? v
213
+ spans[`${ns}.${name}`] = makeSpan(domainRoot, fileRel, stmt, v)
214
+
215
+ // The single object-literal argument: nodeClass({ properties, methods })
216
+ // and current edgeClass.directed({ source, target, properties }).
217
+ const cfgArg = init.getArguments()[0]
218
+ if (ns !== 'function' && cfgArg && Node.isObjectLiteralExpression(cfgArg)) {
219
+ collectPropsAndMethods(spans, ns, name, cfgArg, domainRoot, fileRel)
220
+ }
221
+
222
+ // Edges: endpoints are the first two args; props live in the third.
223
+ if (ns === 'edge') {
224
+ collectEdge(spans, name, init, domainRoot, fileRel)
225
+ }
226
+ }
227
+ }
228
+
229
+ return spans
230
+ }
231
+
232
+ /** Build a SourceSpan, harvesting leading doc from the declaration `docNode`. */
233
+ function makeSpan(domainRoot: string, fileRel: string, spanNode: Node, docNode: Node): SourceSpan {
234
+ const span: SourceSpan = {
235
+ file: fileRel,
236
+ startLine: spanNode.getStartLineNumber(),
237
+ endLine: spanNode.getEndLineNumber(),
238
+ }
239
+ const doc = leadingDoc(docNode) ?? leadingDoc(spanNode)
240
+ if (doc) span.doc = doc
241
+ return span
242
+ }
243
+
244
+ /** Record `<ns>.<Name>.property.<p>` and `.method.<m>` from a config object. */
245
+ function collectPropsAndMethods(
246
+ spans: Record<string, SourceSpan>,
247
+ ns: string,
248
+ name: string,
249
+ cfg: Node,
250
+ domainRoot: string,
251
+ fileRel: string,
252
+ ): void {
253
+ if (!Node.isObjectLiteralExpression(cfg)) return
254
+ const propsObj = getObjectProp(cfg, 'properties') ?? getObjectProp(cfg, 'props')
255
+ if (propsObj) {
256
+ for (const p of propsObj.getProperties()) {
257
+ const pName = propertyKey(p)
258
+ if (!pName) continue
259
+ spans[`${ns}.${name}.property.${pName}`] = makeSpan(domainRoot, fileRel, p, p)
260
+ }
261
+ }
262
+ const methodsObj = getObjectProp(cfg, 'methods')
263
+ if (methodsObj) {
264
+ for (const m of methodsObj.getProperties()) {
265
+ const mName = propertyKey(m)
266
+ if (!mName) continue
267
+ spans[`${ns}.${name}.method.${mName}`] = makeSpan(domainRoot, fileRel, m, m)
268
+ }
269
+ }
270
+ }
271
+
272
+ /** Record edge endpoint and property spans from current directed/undirected forms. */
273
+ function collectEdge(
274
+ spans: Record<string, SourceSpan>,
275
+ name: string,
276
+ init: CallExpression,
277
+ domainRoot: string,
278
+ fileRel: string,
279
+ ): void {
280
+ const argsList = init.getArguments()
281
+ const expression = init.getExpression()
282
+ const currentObjectForm =
283
+ Node.isPropertyAccessExpression(expression) &&
284
+ (expression.getName() === 'directed' || expression.getName() === 'undirected') &&
285
+ argsList[0] &&
286
+ Node.isObjectLiteralExpression(argsList[0])
287
+
288
+ if (currentObjectForm) {
289
+ const config = argsList[0]
290
+ if (Node.isObjectLiteralExpression(config)) {
291
+ for (const endpointName of ['source', 'target'] as const) {
292
+ const ep = getObjectProp(config, endpointName)
293
+ if (!ep) continue
294
+ const role = stringLiteralOfProp(ep, 'as') ?? stringLiteralOfProp(ep, 'role')
295
+ if (role) spans[`edge.${name}.endpoint.${role}`] = makeSpan(domainRoot, fileRel, ep, ep)
296
+ }
297
+ const properties = getObjectProp(config, 'properties') ?? getObjectProp(config, 'props')
298
+ if (properties) {
299
+ for (const p of properties.getProperties()) {
300
+ const pName = propertyKey(p)
301
+ if (!pName) continue
302
+ spans[`edge.${name}.property.${pName}`] = makeSpan(domainRoot, fileRel, p, p)
303
+ }
304
+ }
305
+ }
306
+ return
307
+ }
308
+
309
+ for (let i = 0; i < Math.min(2, argsList.length); i++) {
310
+ const ep = argsList[i]
311
+ if (!Node.isObjectLiteralExpression(ep)) continue
312
+ const role = stringLiteralOfProp(ep, 'as')
313
+ if (!role) continue
314
+ spans[`edge.${name}.endpoint.${role}`] = makeSpan(domainRoot, fileRel, ep, ep)
315
+ }
316
+ }
317
+
318
+ /** The object-literal value of a named property, if it is itself an object. */
319
+ function getObjectProp(
320
+ obj: Node,
321
+ name: string,
322
+ ): import('ts-morph').ObjectLiteralExpression | undefined {
323
+ if (!Node.isObjectLiteralExpression(obj)) return undefined
324
+ const prop = obj.getProperty(name)
325
+ if (!prop) return undefined
326
+ let value: Node | undefined
327
+ if (Node.isPropertyAssignment(prop)) value = prop.getInitializer()
328
+ else if (Node.isShorthandPropertyAssignment(prop)) value = prop.getNameNode()
329
+ return value ? resolveObjectLiteral(value) : undefined
330
+ }
@@ -0,0 +1,46 @@
1
+ /** Pure structural helpers for JSON trust boundaries. */
2
+
3
+ export type JsonRecord = Record<string, unknown>
4
+ export type JsonDecoder<T> = (value: unknown) => T | undefined
5
+
6
+ export function asJsonRecord(value: unknown): JsonRecord | undefined {
7
+ return value !== null && typeof value === 'object' && !Array.isArray(value)
8
+ ? (value as JsonRecord)
9
+ : undefined
10
+ }
11
+
12
+ export function asJsonArray(value: unknown): unknown[] | undefined {
13
+ return Array.isArray(value) ? value : undefined
14
+ }
15
+
16
+ export function asString(value: unknown): string | undefined {
17
+ return typeof value === 'string' ? value : undefined
18
+ }
19
+
20
+ export function asBoolean(value: unknown): boolean | undefined {
21
+ return typeof value === 'boolean' ? value : undefined
22
+ }
23
+
24
+ export function asFiniteNumber(value: unknown): number | undefined {
25
+ return typeof value === 'number' && Number.isFinite(value) ? value : undefined
26
+ }
27
+
28
+ export function asStringArray(value: unknown): string[] | undefined {
29
+ return Array.isArray(value) && value.every((item) => typeof item === 'string') ? value : undefined
30
+ }
31
+
32
+ export function asStringRecord(value: unknown): Record<string, string> | undefined {
33
+ const record = asJsonRecord(value)
34
+ if (!record || Object.values(record).some((item) => typeof item !== 'string')) return undefined
35
+ return record as Record<string, string>
36
+ }
37
+
38
+ /** Parse JSON as untrusted data. `undefined` means syntax failure. */
39
+ export function parseJson(text: string): unknown | undefined {
40
+ try {
41
+ const value: unknown = JSON.parse(text)
42
+ return value
43
+ } catch {
44
+ return undefined
45
+ }
46
+ }
@@ -26,7 +26,11 @@ export async function bootDomain(handle: DomainHandle): Promise<BootedDomain> {
26
26
  if (!loadBaseline(handle.root))
27
27
  captureBaseline(
28
28
  handle.root,
29
- bundle?.ir ?? null,
29
+ {
30
+ ir: bundle?.ir ?? null,
31
+ root: bundle?.schemaMode === 'canonical-admitted' ? (bundle.schemaRoot ?? null) : null,
32
+ revision: bundle?.schemaRevision ?? null,
33
+ },
30
34
  hashAnatomyFiles(handle.root, handle.schemaDirName),
31
35
  )
32
36
  const stop = watchDomain(handle)
@@ -0,0 +1,26 @@
1
+ import { expect, test } from 'bun:test'
2
+
3
+ import { broadcast, sseResponse } from './sse'
4
+
5
+ test('SSE response preserves headers and emits the initial workspace frame', async () => {
6
+ const response = sseResponse(['issues', 'shell'])
7
+ expect(response.status).toBe(200)
8
+ expect(response.headers.get('content-type')).toBe('text/event-stream')
9
+ expect(response.headers.get('cache-control')).toBe('no-cache, no-transform')
10
+ expect(response.headers.get('connection')).toBe('keep-alive')
11
+
12
+ const reader = response.body!.getReader()
13
+ const first = await reader.read()
14
+ expect(new TextDecoder().decode(first.value)).toBe(
15
+ 'data: {"type":"hello","domains":["issues","shell"]}\n\n',
16
+ )
17
+
18
+ expect(broadcast({ type: 'workspace', domains: ['issues', 'billing'] })).toBe(1)
19
+ const update = await reader.read()
20
+ expect(new TextDecoder().decode(update.value)).toBe(
21
+ 'data: {"type":"workspace","domains":["issues","billing"]}\n\n',
22
+ )
23
+
24
+ await reader.cancel()
25
+ expect(broadcast({ type: 'workspace', domains: [] })).toBe(0)
26
+ })
@@ -41,7 +41,9 @@ export function sseResponse(domains: string[]): Response {
41
41
  })
42
42
  }
43
43
 
44
- export function broadcast(event: StudioEvent): void {
44
+ /** Broadcast an event and report how many clients were registered at dispatch start. */
45
+ export function broadcast(event: StudioEvent): number {
46
+ const recipients = clients.size
45
47
  const payload = encoder.encode(frame(event))
46
48
  for (const [id, c] of clients) {
47
49
  try {
@@ -50,6 +52,7 @@ export function broadcast(event: StudioEvent): void {
50
52
  clients.delete(id)
51
53
  }
52
54
  }
55
+ return recipients
53
56
  }
54
57
 
55
58
  function frame(event: StudioEvent): string {