skybridge 0.0.0-dev.e378aa9 → 0.0.0-dev.e38366a

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 (377) hide show
  1. package/README.md +82 -107
  2. package/dist/cli/build-helpers.d.ts +11 -0
  3. package/dist/cli/build-helpers.js +102 -0
  4. package/dist/cli/build-helpers.js.map +1 -0
  5. package/dist/cli/build-helpers.test.d.ts +1 -0
  6. package/dist/cli/build-helpers.test.js +119 -0
  7. package/dist/cli/build-helpers.test.js.map +1 -0
  8. package/dist/cli/build-steps.d.ts +2 -0
  9. package/dist/cli/build-steps.js +73 -0
  10. package/dist/cli/build-steps.js.map +1 -0
  11. package/dist/cli/build-steps.test.d.ts +1 -0
  12. package/dist/cli/build-steps.test.js +52 -0
  13. package/dist/cli/build-steps.test.js.map +1 -0
  14. package/dist/cli/detect-port.d.ts +2 -2
  15. package/dist/cli/detect-port.js +9 -20
  16. package/dist/cli/detect-port.js.map +1 -1
  17. package/dist/cli/header.d.ts +1 -1
  18. package/dist/cli/header.js.map +1 -1
  19. package/dist/cli/resolve-views-dir.d.ts +1 -0
  20. package/dist/cli/resolve-views-dir.js +17 -0
  21. package/dist/cli/resolve-views-dir.js.map +1 -0
  22. package/dist/cli/run-command.js.map +1 -1
  23. package/dist/cli/run-plain.d.ts +18 -0
  24. package/dist/cli/run-plain.js +89 -0
  25. package/dist/cli/run-plain.js.map +1 -0
  26. package/dist/cli/telemetry.js.map +1 -1
  27. package/dist/cli/tunnel-control-server.js.map +1 -1
  28. package/dist/cli/tunnel-control-server.test.js.map +1 -1
  29. package/dist/cli/tunnel-handler.js.map +1 -1
  30. package/dist/cli/tunnel-handler.test.js.map +1 -1
  31. package/dist/cli/tunnel.js +2 -2
  32. package/dist/cli/tunnel.js.map +1 -1
  33. package/dist/cli/tunnel.test.js.map +1 -1
  34. package/dist/cli/types.js.map +1 -1
  35. package/dist/cli/use-execute-steps.js.map +1 -1
  36. package/dist/cli/use-messages.js.map +1 -1
  37. package/dist/cli/use-nodemon.d.ts +14 -0
  38. package/dist/cli/use-nodemon.js +72 -52
  39. package/dist/cli/use-nodemon.js.map +1 -1
  40. package/dist/cli/use-open-browser.d.ts +1 -0
  41. package/dist/cli/use-open-browser.js +44 -0
  42. package/dist/cli/use-open-browser.js.map +1 -0
  43. package/dist/cli/use-tunnel.js.map +1 -1
  44. package/dist/cli/use-typescript-check.d.ts +8 -2
  45. package/dist/cli/use-typescript-check.js +71 -68
  46. package/dist/cli/use-typescript-check.js.map +1 -1
  47. package/dist/commands/build.d.ts +0 -3
  48. package/dist/commands/build.js +2 -38
  49. package/dist/commands/build.js.map +1 -1
  50. package/dist/commands/create.d.ts +9 -0
  51. package/dist/commands/create.js +30 -0
  52. package/dist/commands/create.js.map +1 -0
  53. package/dist/commands/dev.d.ts +2 -0
  54. package/dist/commands/dev.js +55 -0
  55. package/dist/commands/dev.js.map +1 -1
  56. package/dist/commands/start.js +7 -1
  57. package/dist/commands/start.js.map +1 -1
  58. package/dist/commands/telemetry/disable.js.map +1 -1
  59. package/dist/commands/telemetry/enable.js.map +1 -1
  60. package/dist/commands/telemetry/status.js.map +1 -1
  61. package/dist/server/asset-base-url-transform-plugin.d.ts +1 -0
  62. package/dist/server/asset-base-url-transform-plugin.js +16 -1
  63. package/dist/server/asset-base-url-transform-plugin.js.map +1 -1
  64. package/dist/server/asset-base-url-transform-plugin.test.js +51 -1
  65. package/dist/server/asset-base-url-transform-plugin.test.js.map +1 -1
  66. package/dist/server/auth/discovery.d.ts +32 -0
  67. package/dist/server/auth/discovery.js +56 -0
  68. package/dist/server/auth/discovery.js.map +1 -0
  69. package/dist/server/auth/discovery.test.d.ts +1 -0
  70. package/dist/server/auth/discovery.test.js +93 -0
  71. package/dist/server/auth/discovery.test.js.map +1 -0
  72. package/dist/server/auth/index.d.ts +18 -0
  73. package/dist/server/auth/index.js +2 -0
  74. package/dist/server/auth/index.js.map +1 -0
  75. package/dist/server/auth/providers/auth0.d.ts +18 -0
  76. package/dist/server/auth/providers/auth0.js +31 -0
  77. package/dist/server/auth/providers/auth0.js.map +1 -0
  78. package/dist/server/auth/providers/auth0.test.d.ts +1 -0
  79. package/dist/server/auth/providers/auth0.test.js +48 -0
  80. package/dist/server/auth/providers/auth0.test.js.map +1 -0
  81. package/dist/server/auth/providers/clerk.d.ts +14 -0
  82. package/dist/server/auth/providers/clerk.js +16 -0
  83. package/dist/server/auth/providers/clerk.js.map +1 -0
  84. package/dist/server/auth/providers/clerk.test.d.ts +1 -0
  85. package/dist/server/auth/providers/clerk.test.js +28 -0
  86. package/dist/server/auth/providers/clerk.test.js.map +1 -0
  87. package/dist/server/auth/providers/custom.d.ts +31 -0
  88. package/dist/server/auth/providers/custom.js +49 -0
  89. package/dist/server/auth/providers/custom.js.map +1 -0
  90. package/dist/server/auth/providers/custom.test.d.ts +1 -0
  91. package/dist/server/auth/providers/custom.test.js +156 -0
  92. package/dist/server/auth/providers/custom.test.js.map +1 -0
  93. package/dist/server/auth/providers/descope.d.ts +15 -0
  94. package/dist/server/auth/providers/descope.js +36 -0
  95. package/dist/server/auth/providers/descope.js.map +1 -0
  96. package/dist/server/auth/providers/descope.test.d.ts +1 -0
  97. package/dist/server/auth/providers/descope.test.js +61 -0
  98. package/dist/server/auth/providers/descope.test.js.map +1 -0
  99. package/dist/server/auth/providers/shared.d.ts +2 -0
  100. package/dist/server/auth/providers/shared.js +6 -0
  101. package/dist/server/auth/providers/shared.js.map +1 -0
  102. package/dist/server/auth/providers/shared.test.d.ts +1 -0
  103. package/dist/server/auth/providers/shared.test.js +10 -0
  104. package/dist/server/auth/providers/shared.test.js.map +1 -0
  105. package/dist/server/auth/providers/stytch.d.ts +12 -0
  106. package/dist/server/auth/providers/stytch.js +13 -0
  107. package/dist/server/auth/providers/stytch.js.map +1 -0
  108. package/dist/server/auth/providers/workos.d.ts +11 -0
  109. package/dist/server/auth/providers/workos.js +12 -0
  110. package/dist/server/auth/providers/workos.js.map +1 -0
  111. package/dist/server/auth/security-schemes.d.ts +23 -0
  112. package/dist/server/auth/security-schemes.js +64 -0
  113. package/dist/server/auth/security-schemes.js.map +1 -0
  114. package/dist/server/auth/security-schemes.test.d.ts +1 -0
  115. package/dist/server/auth/security-schemes.test.js +99 -0
  116. package/dist/server/auth/security-schemes.test.js.map +1 -0
  117. package/dist/server/auth/setup.d.ts +6 -0
  118. package/dist/server/auth/setup.js +92 -0
  119. package/dist/server/auth/setup.js.map +1 -0
  120. package/dist/server/auth/setup.test.d.ts +1 -0
  121. package/dist/server/auth/setup.test.js +474 -0
  122. package/dist/server/auth/setup.test.js.map +1 -0
  123. package/dist/server/auth/verify.d.ts +12 -0
  124. package/dist/server/auth/verify.js +38 -0
  125. package/dist/server/auth/verify.js.map +1 -0
  126. package/dist/server/auth/verify.test.d.ts +1 -0
  127. package/dist/server/auth/verify.test.js +100 -0
  128. package/dist/server/auth/verify.test.js.map +1 -0
  129. package/dist/server/auth.d.ts +20 -0
  130. package/dist/server/auth.js +28 -0
  131. package/dist/server/auth.js.map +1 -0
  132. package/dist/server/build-manifest.test.d.ts +1 -0
  133. package/dist/server/build-manifest.test.js +27 -0
  134. package/dist/server/build-manifest.test.js.map +1 -0
  135. package/dist/server/content-helpers.d.ts +40 -0
  136. package/dist/server/content-helpers.js +33 -0
  137. package/dist/server/content-helpers.js.map +1 -1
  138. package/dist/server/content-helpers.test.js.map +1 -1
  139. package/dist/server/express.d.ts +1 -5
  140. package/dist/server/express.js +13 -7
  141. package/dist/server/express.js.map +1 -1
  142. package/dist/server/express.test.js +214 -71
  143. package/dist/server/express.test.js.map +1 -1
  144. package/dist/server/file-ref.d.ts +28 -0
  145. package/dist/server/file-ref.js +27 -0
  146. package/dist/server/file-ref.js.map +1 -0
  147. package/dist/server/host.d.ts +2 -0
  148. package/dist/server/host.js +11 -0
  149. package/dist/server/host.js.map +1 -0
  150. package/dist/server/host.test.d.ts +1 -0
  151. package/dist/server/host.test.js +13 -0
  152. package/dist/server/host.test.js.map +1 -0
  153. package/dist/server/index.d.ts +12 -2
  154. package/dist/server/index.js +10 -1
  155. package/dist/server/index.js.map +1 -1
  156. package/dist/server/inferUtilityTypes.js.map +1 -1
  157. package/dist/server/metric.js.map +1 -1
  158. package/dist/server/middleware.d.ts +16 -3
  159. package/dist/server/middleware.js.map +1 -1
  160. package/dist/server/middleware.test-d.js.map +1 -1
  161. package/dist/server/middleware.test.js.map +1 -1
  162. package/dist/server/requestOrigin.d.ts +7 -0
  163. package/dist/server/requestOrigin.js +25 -0
  164. package/dist/server/requestOrigin.js.map +1 -0
  165. package/dist/server/server.d.ts +292 -10
  166. package/dist/server/server.js +479 -184
  167. package/dist/server/server.js.map +1 -1
  168. package/dist/server/skills-integration.test.d.ts +1 -0
  169. package/dist/server/skills-integration.test.js +63 -0
  170. package/dist/server/skills-integration.test.js.map +1 -0
  171. package/dist/server/skills.d.ts +23 -0
  172. package/dist/server/skills.js +178 -0
  173. package/dist/server/skills.js.map +1 -0
  174. package/dist/server/skills.test.d.ts +1 -0
  175. package/dist/server/skills.test.js +210 -0
  176. package/dist/server/skills.test.js.map +1 -0
  177. package/dist/server/templateHelper.d.ts +0 -2
  178. package/dist/server/templateHelper.js +3 -22
  179. package/dist/server/templateHelper.js.map +1 -1
  180. package/dist/server/templates.generated.d.ts +4 -0
  181. package/dist/server/templates.generated.js +47 -0
  182. package/dist/server/templates.generated.js.map +1 -0
  183. package/dist/server/tunnel-proxy-router.js.map +1 -1
  184. package/dist/server/tunnel-proxy-router.test.js.map +1 -1
  185. package/dist/server/view-name.test-d.d.ts +1 -0
  186. package/dist/server/view-name.test-d.js +8 -0
  187. package/dist/server/view-name.test-d.js.map +1 -0
  188. package/dist/server/view-resource-resolution.test.d.ts +6 -0
  189. package/dist/server/view-resource-resolution.test.js +171 -0
  190. package/dist/server/view-resource-resolution.test.js.map +1 -0
  191. package/dist/server/viewsDevServer.js +4 -1
  192. package/dist/server/viewsDevServer.js.map +1 -1
  193. package/dist/test/utils.js.map +1 -1
  194. package/dist/test/view.test.js +109 -96
  195. package/dist/test/view.test.js.map +1 -1
  196. package/dist/version.js +1 -3
  197. package/dist/version.js.map +1 -1
  198. package/dist/web/bridges/adaptor.d.ts +51 -0
  199. package/dist/web/bridges/adaptor.js +330 -0
  200. package/dist/web/bridges/adaptor.js.map +1 -0
  201. package/dist/web/bridges/adaptor.test.d.ts +1 -0
  202. package/dist/web/bridges/adaptor.test.js +208 -0
  203. package/dist/web/bridges/adaptor.test.js.map +1 -0
  204. package/dist/web/bridges/apps-sdk/bridge.d.ts +6 -1
  205. package/dist/web/bridges/apps-sdk/bridge.js +15 -3
  206. package/dist/web/bridges/apps-sdk/bridge.js.map +1 -1
  207. package/dist/web/bridges/apps-sdk/index.d.ts +0 -1
  208. package/dist/web/bridges/apps-sdk/index.js +0 -1
  209. package/dist/web/bridges/apps-sdk/index.js.map +1 -1
  210. package/dist/web/bridges/apps-sdk/types.d.ts +8 -1
  211. package/dist/web/bridges/apps-sdk/types.js.map +1 -1
  212. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.d.ts +11 -0
  213. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js +11 -0
  214. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js.map +1 -1
  215. package/dist/web/bridges/get-adaptor.d.ts +7 -0
  216. package/dist/web/bridges/get-adaptor.js +9 -7
  217. package/dist/web/bridges/get-adaptor.js.map +1 -1
  218. package/dist/web/bridges/get-adaptor.test.d.ts +1 -0
  219. package/dist/web/bridges/get-adaptor.test.js +32 -0
  220. package/dist/web/bridges/get-adaptor.test.js.map +1 -0
  221. package/dist/web/bridges/index.js.map +1 -1
  222. package/dist/web/bridges/mcp-app/bridge.d.ts +15 -2
  223. package/dist/web/bridges/mcp-app/bridge.js +68 -4
  224. package/dist/web/bridges/mcp-app/bridge.js.map +1 -1
  225. package/dist/web/bridges/mcp-app/bridge.test.d.ts +1 -0
  226. package/dist/web/bridges/mcp-app/bridge.test.js +17 -0
  227. package/dist/web/bridges/mcp-app/bridge.test.js.map +1 -0
  228. package/dist/web/bridges/mcp-app/index.d.ts +0 -1
  229. package/dist/web/bridges/mcp-app/index.js +0 -1
  230. package/dist/web/bridges/mcp-app/index.js.map +1 -1
  231. package/dist/web/bridges/mcp-app/types.js.map +1 -1
  232. package/dist/web/bridges/mcp-app/use-mcp-app-context.d.ts +12 -0
  233. package/dist/web/bridges/mcp-app/use-mcp-app-context.js +12 -0
  234. package/dist/web/bridges/mcp-app/use-mcp-app-context.js.map +1 -1
  235. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js.map +1 -1
  236. package/dist/web/bridges/mcp-app/view-tools.test.d.ts +1 -0
  237. package/dist/web/bridges/mcp-app/view-tools.test.js +143 -0
  238. package/dist/web/bridges/mcp-app/view-tools.test.js.map +1 -0
  239. package/dist/web/bridges/types.d.ts +108 -3
  240. package/dist/web/bridges/types.js +14 -1
  241. package/dist/web/bridges/types.js.map +1 -1
  242. package/dist/web/bridges/types.test.d.ts +1 -0
  243. package/dist/web/bridges/types.test.js +19 -0
  244. package/dist/web/bridges/types.test.js.map +1 -0
  245. package/dist/web/bridges/use-host-context.d.ts +5 -0
  246. package/dist/web/bridges/use-host-context.js +5 -0
  247. package/dist/web/bridges/use-host-context.js.map +1 -1
  248. package/dist/web/components/modal-provider.d.ts +1 -1
  249. package/dist/web/components/modal-provider.js +4 -3
  250. package/dist/web/components/modal-provider.js.map +1 -1
  251. package/dist/web/create-store.d.ts +26 -0
  252. package/dist/web/create-store.js +26 -0
  253. package/dist/web/create-store.js.map +1 -1
  254. package/dist/web/create-store.test.js +8 -5
  255. package/dist/web/create-store.test.js.map +1 -1
  256. package/dist/web/data-llm.d.ts +34 -1
  257. package/dist/web/data-llm.js +28 -0
  258. package/dist/web/data-llm.js.map +1 -1
  259. package/dist/web/data-llm.test.js +17 -5
  260. package/dist/web/data-llm.test.js.map +1 -1
  261. package/dist/web/generate-helpers.d.ts +2 -0
  262. package/dist/web/generate-helpers.js +2 -0
  263. package/dist/web/generate-helpers.js.map +1 -1
  264. package/dist/web/generate-helpers.test-d.js +4 -2
  265. package/dist/web/generate-helpers.test-d.js.map +1 -1
  266. package/dist/web/generate-helpers.test.js.map +1 -1
  267. package/dist/web/helpers/state.js.map +1 -1
  268. package/dist/web/helpers/state.test.js.map +1 -1
  269. package/dist/web/hooks/index.d.ts +4 -0
  270. package/dist/web/hooks/index.js +4 -0
  271. package/dist/web/hooks/index.js.map +1 -1
  272. package/dist/web/hooks/test/utils.d.ts +6 -2
  273. package/dist/web/hooks/test/utils.js +13 -2
  274. package/dist/web/hooks/test/utils.js.map +1 -1
  275. package/dist/web/hooks/use-call-tool.d.ts +45 -0
  276. package/dist/web/hooks/use-call-tool.js +28 -0
  277. package/dist/web/hooks/use-call-tool.js.map +1 -1
  278. package/dist/web/hooks/use-call-tool.test-d.js.map +1 -1
  279. package/dist/web/hooks/use-call-tool.test.js +62 -27
  280. package/dist/web/hooks/use-call-tool.test.js.map +1 -1
  281. package/dist/web/hooks/use-display-mode.d.ts +20 -0
  282. package/dist/web/hooks/use-display-mode.js +20 -0
  283. package/dist/web/hooks/use-display-mode.js.map +1 -1
  284. package/dist/web/hooks/use-display-mode.test-d.js.map +1 -1
  285. package/dist/web/hooks/use-display-mode.test.js +56 -20
  286. package/dist/web/hooks/use-display-mode.test.js.map +1 -1
  287. package/dist/web/hooks/use-download.d.ts +5 -0
  288. package/dist/web/hooks/use-download.js +8 -0
  289. package/dist/web/hooks/use-download.js.map +1 -0
  290. package/dist/web/hooks/use-download.test.d.ts +1 -0
  291. package/dist/web/hooks/use-download.test.js +103 -0
  292. package/dist/web/hooks/use-download.test.js.map +1 -0
  293. package/dist/web/hooks/use-files.d.ts +32 -0
  294. package/dist/web/hooks/use-files.js +32 -0
  295. package/dist/web/hooks/use-files.js.map +1 -1
  296. package/dist/web/hooks/use-files.test.js +10 -2
  297. package/dist/web/hooks/use-files.test.js.map +1 -1
  298. package/dist/web/hooks/use-layout.d.ts +2 -0
  299. package/dist/web/hooks/use-layout.js +2 -0
  300. package/dist/web/hooks/use-layout.js.map +1 -1
  301. package/dist/web/hooks/use-layout.test.js +59 -26
  302. package/dist/web/hooks/use-layout.test.js.map +1 -1
  303. package/dist/web/hooks/use-open-external.d.ts +17 -0
  304. package/dist/web/hooks/use-open-external.js +16 -0
  305. package/dist/web/hooks/use-open-external.js.map +1 -1
  306. package/dist/web/hooks/use-open-external.test.js +13 -3
  307. package/dist/web/hooks/use-open-external.test.js.map +1 -1
  308. package/dist/web/hooks/use-register-view-tool.d.ts +38 -0
  309. package/dist/web/hooks/use-register-view-tool.js +50 -0
  310. package/dist/web/hooks/use-register-view-tool.js.map +1 -0
  311. package/dist/web/hooks/use-request-close.d.ts +16 -0
  312. package/dist/web/hooks/use-request-close.js +21 -0
  313. package/dist/web/hooks/use-request-close.js.map +1 -0
  314. package/dist/web/hooks/use-request-close.test.d.ts +1 -0
  315. package/dist/web/hooks/use-request-close.test.js +47 -0
  316. package/dist/web/hooks/use-request-close.test.js.map +1 -0
  317. package/dist/web/hooks/use-request-modal.d.ts +16 -1
  318. package/dist/web/hooks/use-request-modal.js +16 -1
  319. package/dist/web/hooks/use-request-modal.js.map +1 -1
  320. package/dist/web/hooks/use-request-modal.test.js +10 -0
  321. package/dist/web/hooks/use-request-modal.test.js.map +1 -1
  322. package/dist/web/hooks/use-request-size.d.ts +20 -0
  323. package/dist/web/hooks/use-request-size.js +24 -0
  324. package/dist/web/hooks/use-request-size.js.map +1 -0
  325. package/dist/web/hooks/use-request-size.test.d.ts +1 -0
  326. package/dist/web/hooks/use-request-size.test.js +47 -0
  327. package/dist/web/hooks/use-request-size.test.js.map +1 -0
  328. package/dist/web/hooks/use-send-follow-up-message.d.ts +19 -1
  329. package/dist/web/hooks/use-send-follow-up-message.js +19 -2
  330. package/dist/web/hooks/use-send-follow-up-message.js.map +1 -1
  331. package/dist/web/hooks/use-set-open-in-app-url.d.ts +17 -0
  332. package/dist/web/hooks/use-set-open-in-app-url.js +17 -0
  333. package/dist/web/hooks/use-set-open-in-app-url.js.map +1 -1
  334. package/dist/web/hooks/use-set-open-in-app-url.test.js +28 -8
  335. package/dist/web/hooks/use-set-open-in-app-url.test.js.map +1 -1
  336. package/dist/web/hooks/use-tool-info.d.ts +53 -2
  337. package/dist/web/hooks/use-tool-info.js +30 -7
  338. package/dist/web/hooks/use-tool-info.js.map +1 -1
  339. package/dist/web/hooks/use-tool-info.test-d.js +11 -29
  340. package/dist/web/hooks/use-tool-info.test-d.js.map +1 -1
  341. package/dist/web/hooks/use-tool-info.test.js +42 -32
  342. package/dist/web/hooks/use-tool-info.test.js.map +1 -1
  343. package/dist/web/hooks/use-user.d.ts +2 -0
  344. package/dist/web/hooks/use-user.js +2 -0
  345. package/dist/web/hooks/use-user.js.map +1 -1
  346. package/dist/web/hooks/use-user.test.js +81 -35
  347. package/dist/web/hooks/use-user.test.js.map +1 -1
  348. package/dist/web/hooks/use-view-state.d.ts +21 -0
  349. package/dist/web/hooks/use-view-state.js.map +1 -1
  350. package/dist/web/hooks/use-view-state.test.js +6 -2
  351. package/dist/web/hooks/use-view-state.test.js.map +1 -1
  352. package/dist/web/index.js.map +1 -1
  353. package/dist/web/mount-view.d.ts +19 -0
  354. package/dist/web/mount-view.js +19 -0
  355. package/dist/web/mount-view.js.map +1 -1
  356. package/dist/web/plugin/data-llm.test.js.map +1 -1
  357. package/dist/web/plugin/plugin.d.ts +28 -0
  358. package/dist/web/plugin/plugin.js +34 -9
  359. package/dist/web/plugin/plugin.js.map +1 -1
  360. package/dist/web/plugin/scan-views.js.map +1 -1
  361. package/dist/web/plugin/scan-views.test.js.map +1 -1
  362. package/dist/web/plugin/transform-data-llm.js.map +1 -1
  363. package/dist/web/plugin/transform-data-llm.test.js.map +1 -1
  364. package/dist/web/plugin/validate-view.js.map +1 -1
  365. package/dist/web/plugin/validate-view.test.js.map +1 -1
  366. package/dist/web/proxy.js.map +1 -1
  367. package/dist/web/types.d.ts +4 -0
  368. package/dist/web/types.js.map +1 -1
  369. package/package.json +33 -22
  370. package/dist/server/templates/development.hbs +0 -12
  371. package/dist/server/templates/production.hbs +0 -6
  372. package/dist/web/bridges/apps-sdk/adaptor.d.ts +0 -24
  373. package/dist/web/bridges/apps-sdk/adaptor.js +0 -93
  374. package/dist/web/bridges/apps-sdk/adaptor.js.map +0 -1
  375. package/dist/web/bridges/mcp-app/adaptor.d.ts +0 -48
  376. package/dist/web/bridges/mcp-app/adaptor.js +0 -268
  377. package/dist/web/bridges/mcp-app/adaptor.js.map +0 -1
package/README.md CHANGED
@@ -1,6 +1,11 @@
1
+ # Skybridge - the MCP Apps framework
2
+
1
3
  <p align="center">
2
- <a href="https://skybridge.tech">
3
- <img alt="Skybridge" src="docs/images/skybridge-readme-banner-new.png" width="100%" />
4
+ <a href="https://docs.skybridge.tech">
5
+ <picture>
6
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/skybridge-readme-banner-dark.png" />
7
+ <img alt="Skybridge, the full-stack React framework for MCP apps and MCP servers" src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/skybridge-readme-banner-light.png" width="100%" />
8
+ </picture>
4
9
  </a>
5
10
  </p>
6
11
 
@@ -11,168 +16,138 @@
11
16
  <p align="center">
12
17
  <a href="https://docs.skybridge.tech">Documentation</a> ·
13
18
  <a href="https://docs.skybridge.tech/quickstart/create-new-app">Quickstart</a> ·
14
- <a href="https://github.com/alpic-ai/skybridge/tree/main/examples">Examples</a> ·
15
- <a href="https://docs.skybridge.tech/showcase">Showcase</a>
19
+ <a href="https://github.com/alpic-ai/skybridge/tree/main/examples">Examples</a>
16
20
  </p>
17
21
 
18
22
  <p align="center">
19
- <img alt="Skybridge app preview" src="docs/images/skybridge-readme-preview.png" width="520" />
23
+ <a href="https://www.npmjs.com/package/skybridge"><picture><source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/npm/v/skybridge?color=77F5EE&amp;labelColor=161B22&amp;style=for-the-badge"><img alt="npm version" src="https://img.shields.io/npm/v/skybridge?color=E3FAF7&amp;labelColor=F6F8FA&amp;style=for-the-badge"></picture></a>
24
+ <a href="https://www.npmjs.com/package/skybridge"><picture><source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/npm/dm/skybridge?color=D7FFC8&amp;labelColor=161B22&amp;style=for-the-badge"><img alt="npm downloads" src="https://img.shields.io/npm/dm/skybridge?color=E8FBD9&amp;labelColor=F6F8FA&amp;style=for-the-badge"></picture></a>
25
+ <a href="https://discord.com/invite/gNAazGueab"><picture><source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/badge/Discord-community-77F5EE?style=for-the-badge&amp;logo=discord&amp;logoColor=77F5EE&amp;labelColor=161B22"><img alt="Discord community" src="https://img.shields.io/badge/Discord-community-E3FAF7?style=for-the-badge&amp;logo=discord&amp;logoColor=5865F2&amp;labelColor=F6F8FA"></picture></a>
26
+ <a href="https://github.com/alpic-ai/skybridge/blob/main/LICENSE"><picture><source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/github/license/alpic-ai/skybridge?color=D7FFC8&amp;labelColor=161B22&amp;style=for-the-badge"><img alt="License: MIT" src="https://img.shields.io/github/license/alpic-ai/skybridge?color=E8FBD9&amp;labelColor=F6F8FA&amp;style=for-the-badge"></picture></a>
20
27
  </p>
21
28
 
22
- <p align="center">
23
- <a href="https://www.npmjs.com/package/skybridge">
24
- <picture>
25
- <source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/npm/v/skybridge?color=77F5EE&amp;labelColor=161B22&amp;style=for-the-badge">
26
- <img alt="npm version" src="https://img.shields.io/npm/v/skybridge?color=E3FAF7&amp;labelColor=F6F8FA&amp;style=for-the-badge">
27
- </picture>
28
- </a>
29
- <a href="https://www.npmjs.com/package/skybridge">
30
- <picture>
31
- <source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/npm/dm/skybridge?color=D7FFC8&amp;labelColor=161B22&amp;style=for-the-badge">
32
- <img alt="npm downloads" src="https://img.shields.io/npm/dm/skybridge?color=E8FBD9&amp;labelColor=F6F8FA&amp;style=for-the-badge">
33
- </picture>
34
- </a>
35
- <a href="https://discord.com/invite/gNAazGueab">
36
- <picture>
37
- <source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/badge/Discord-community-77F5EE?style=for-the-badge&amp;logo=discord&amp;logoColor=77F5EE&amp;labelColor=161B22">
38
- <img alt="Discord community" src="https://img.shields.io/badge/Discord-community-E3FAF7?style=for-the-badge&amp;logo=discord&amp;logoColor=5865F2&amp;labelColor=F6F8FA">
39
- </picture>
40
- </a>
41
- <a href="https://github.com/alpic-ai/skybridge/blob/main/LICENSE">
42
- <picture>
43
- <source media="(prefers-color-scheme: dark)" srcset="https://img.shields.io/github/license/alpic-ai/skybridge?color=D7FFC8&amp;labelColor=161B22&amp;style=for-the-badge">
44
- <img alt="License: MIT" src="https://img.shields.io/github/license/alpic-ai/skybridge?color=E8FBD9&amp;labelColor=F6F8FA&amp;style=for-the-badge">
45
- </picture>
46
- </a>
47
- </p>
29
+ ## About Skybridge
48
30
 
49
- ## Why Skybridge?
31
+ Skybridge helps developers build type-safe MCP apps for Claude, ChatGPT and other UI-enabled MCP clients, with a complete set of tooling designed for both humans and agents.
50
32
 
51
- MCP Apps is an extension of the [Model Context Protocol](https://modelcontextprotocol.io/docs/getting-started/intro) adding **rich, interactive UI views** to MCP servers. Building conversational Apps requires new UX design concepts, developer tooling and abstractions to build apps that make interactions between the user, the UI and the model seamless.
33
+ Why? MCP apps extend the [Model Context Protocol](https://modelcontextprotocol.io/docs/getting-started/intro) with **rich, interactive UI views** rendered from MCP servers. Conversational apps need seamless interaction between the user, the UI, and the model. This means new UX patterns, developer tooling, and abstractions.
34
+ Plus, the raw SDKs are low-level: no hooks, type safety, HMR, etc.
52
35
 
53
- Skybridge is the answer to all the problems we ran into while building hundreds of production MCP Apps. Features include:
36
+ That's why we built *Skybridge*.
54
37
 
55
- - **Delightful dev environment**: It provides a dev server with a local emulator, Hot Module Reload, and a permanent tunnel to connect your local app to Claude and ChatGPT.
56
- - **Write once, run everywhere**: Skybridge abstracts implementation differences between MCP Clients, so your app runs seamlessly in Claude, ChatGPT, VSCode, and any other compatible MCP Apps client.
57
- - **Agent-ready**: Powerful Skills, CLI, and programmatic DevTools APIs: it provides everything your coding agent needs to build MCP Apps end-to-end.
58
- - **Type-safe end-to-end**: tRPC-style inference from MCP server tool definition to React view for type-safety end-to-end from server to frontend.
38
+ Features include:
39
+
40
+ - **Delightful dev environment**: Skybridge provides a dev server with a local emulator, hot module reload, and a permanent tunnel to connect your local app to Claude and ChatGPT.
41
+ - **Write once, run everywhere**: the framework abstracts implementation differences between MCP clients, so your app runs seamlessly in Claude, ChatGPT, VSCode, and any other MCP apps compatible client.
42
+ - **Agent-ready**: powerful skills, CLI, and programmatic dev tool APIs, everything your coding agent needs to build MCP apps end-to-end.
43
+ - **Type-safe end-to-end**: tRPC-style inference from MCP server tool definition to React view for type safety from server to frontend.
59
44
  - **React-first**: Intuitive React Query-style hooks, with advanced state management.
60
- - **Examples library**: Get started quickly with production-ready app examples for e-commerce, travel, SaaS, and others.
45
+ - **Example library**: get started quickly with ChatGPT- and Claude-ready app examples for ecommerce, travel, SaaS, and more.
61
46
 
62
- These companies chose Skybridge to deploy their apps on ChatGPT and Claude stores:
47
+ They chose to build their MCP apps with Skybridge:
63
48
 
64
49
  <p align="center">
65
- <a href="https://www.datadoghq.com">
66
- <picture>
67
- <source media="(prefers-color-scheme: dark)" srcset="docs/images/user-logos/datadog-dark.svg">
68
- <img src="docs/images/user-logos/datadog-light.svg" alt="Datadog" height="24">
69
- </picture>
70
- </a>
50
+ <a href="https://www.datadoghq.com"><picture><source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/datadog-dark.svg"><img src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/datadog-light.svg" alt="Datadog" height="24"></picture></a>
71
51
  &nbsp;&nbsp;
72
- <a href="https://bitmovin.com">
73
- <picture>
74
- <source media="(prefers-color-scheme: dark)" srcset="docs/images/user-logos/bitmovin-dark.svg">
75
- <img src="docs/images/user-logos/bitmovin-light.svg" alt="Bitmovin" height="22">
76
- </picture>
77
- </a>
52
+ <a href="https://bitmovin.com"><picture><source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/bitmovin-dark.svg"><img src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/bitmovin-light.svg" alt="Bitmovin" height="22"></picture></a>
78
53
  &nbsp;&nbsp;
79
- <a href="https://www.evaneos.com">
80
- <picture>
81
- <source media="(prefers-color-scheme: dark)" srcset="docs/images/user-logos/evaneos-dark.svg">
82
- <img src="docs/images/user-logos/evaneos-light.svg" alt="Evaneos" height="18">
83
- </picture>
84
- </a>
54
+ <a href="https://www.evaneos.com"><picture><source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/evaneos-dark.svg"><img src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/evaneos-light.svg" alt="Evaneos" height="18"></picture></a>
85
55
  &nbsp;&nbsp;
86
- <a href="https://www.touchstream.media">
87
- <picture>
88
- <source media="(prefers-color-scheme: dark)" srcset="docs/images/user-logos/touchstream-dark.svg">
89
- <img src="docs/images/user-logos/touchstream-light.svg" alt="Touchstream" height="24">
90
- </picture>
91
- </a>
56
+ <a href="https://www.touchstream.media"><picture><source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/touchstream-dark.svg"><img src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/touchstream-light.svg" alt="Touchstream" height="24"></picture></a>
92
57
  &nbsp;&nbsp;
93
- <a href="https://www.cottages.com">
94
- <picture>
95
- <source media="(prefers-color-scheme: dark)" srcset="docs/images/user-logos/cottages-dark.svg">
96
- <img src="docs/images/user-logos/cottages-light.svg" alt="Cottages.com" height="24">
97
- </picture>
98
- </a>
58
+ <a href="https://www.cottages.com"><picture><source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/cottages-dark.svg"><img src="https://raw.githubusercontent.com/alpic-ai/skybridge/main/docs/images/user-logos/cottages-light.svg" alt="Cottages.com" height="24"></picture></a>
99
59
  </p>
100
60
 
101
61
  ## Get started
102
62
 
103
63
  **For agents**
104
64
 
105
- Install our [Skill](https://docs.skybridge.tech/devtools/skills) for MCP Apps and ChatGPT Apps:
65
+ Install our [skill](https://docs.skybridge.tech/devtools/skills) for building MCP apps and ChatGPT apps:
106
66
  ```bash
107
67
  npx skills add alpic-ai/skybridge -s skybridge
108
68
  ```
109
- Once installed, if you ask your agent "_what skills do you have?_", it should mention the skybridge skill. Then, you can ask it to:
69
+ Once installed, ask your agent "What skills do you have?" to confirm, then try:
110
70
 
111
- - _Create a new MCP App_
112
- - _Migrate my MCP Server to Skybridge framework_
113
- - _Add a new view to my MCP App_
71
+ - _Create a new MCP app_
72
+ - _Migrate my MCP server to the Skybridge framework_
73
+ - _Add a new view to my MCP app_
114
74
 
115
75
  **For humans**
116
76
 
117
77
  Bootstrap a new project with:
118
78
  ```bash
119
- npm create skybridge my-app
79
+ npm create skybridge@latest my-app
120
80
  ```
121
- For full install instructions, read the [**Quickstart section**](https://docs.skybridge.tech/quickstart/create-new-app) of our documentation.
81
+ For full install instructions, read our [**Quickstart guide**](https://docs.skybridge.tech/quickstart/create-new-app).
122
82
 
123
83
  ## Documentation
124
84
 
125
85
  The [Skybridge documentation](https://docs.skybridge.tech) covers the full lifecycle of building MCP Apps:
126
86
 
127
87
  - [Fundamentals](https://docs.skybridge.tech/fundamentals): understand MCP Apps, ChatGPT Apps, and how Skybridge bridges both runtimes.
128
- - [Core concepts](https://docs.skybridge.tech/concepts): learn data flow, LLM context sync, type safety, and fast local iteration.
88
+ - [Core concepts](https://docs.skybridge.tech/concepts): learn about server <> model <> UI data flows, LLM context sync, type safety, and instant local iteration with our devtools.
129
89
  - [Guides](https://docs.skybridge.tech/guides/fetching-data): build real app behavior with tools, views, state, and model communication.
130
- - [API Reference](https://docs.skybridge.tech/api-reference): browse server APIs, React hooks, CLI commands, and runtime compatibility.
90
+ - [API Reference](https://docs.skybridge.tech/api-reference): browse our MCP server APIs, React hooks, CLI commands, and runtime compatibility.
131
91
 
132
92
  ## Deploy
133
93
 
134
- Deploy Skybridge apps instantly on [Alpic](https://alpic.ai) to get scalable hosting, MCP Analytics, permanent tunnel, MCP auditing and app stores submission help, or self-host on any Node.js-compatible platform.
94
+ Deploy Skybridge apps instantly on [Alpic](https://alpic.ai) for scalable hosting, MCP-specific analytics, permanent tunneling, app store compliance auditing and submission help. You can also self-host on any Node.js-compatible platform.
135
95
 
136
- Read the [deployment guide](https://docs.skybridge.tech/quickstart/deploy) for the full production path.
96
+ See our [deployment guide](https://docs.skybridge.tech/quickstart/deploy) for the full production path.
97
+
98
+ ## Community & Contributing
99
+
100
+ We'd love your help improving Skybridge. Here are a few ways to get involved:
101
+
102
+ - **Bugs**: If you run into a bug or unexpected behavior, open a [GitHub Issue](https://github.com/alpic-ai/skybridge/issues) with a clear reproduction.
103
+ - **Questions and ideas**: Need help building with Skybridge or have ideas to improve the framework, docs, examples, or developer experience? [Open an issue](https://github.com/alpic-ai/skybridge/issues) or share them on our [Discord](https://discord.com/invite/gNAazGueab).
104
+ - **Pull requests**: For code or documentation changes, read the [Contributing Guide](https://github.com/alpic-ai/skybridge/blob/main/CONTRIBUTING.md) before opening a PR.
105
+
106
+ Skybridge is released under the [MIT License](https://github.com/alpic-ai/skybridge/blob/main/LICENSE).
107
+
108
+ ### Contributors
109
+
110
+ Built and maintained with ❤️ by [Harijoe](https://github.com/harijoe), [Fred Barthelet](https://github.com/fredericbarthelet), and the [Alpic](https://alpic.ai) team.
111
+
112
+ <a href="https://github.com/alpic-ai/skybridge/graphs/contributors">
113
+ <img src="https://contrib.rocks/image?repo=alpic-ai/skybridge" alt="Skybridge contributors">
114
+ </a>
137
115
 
138
116
  ## Example templates
139
117
 
140
118
  Explore all our example templates in the [Examples](https://docs.skybridge.tech/examples) section of the documentation.
141
119
 
120
+ ### Basic
121
+
122
+ | Preview | App | Description | Demo | Code |
123
+ | --- | --- | --- | --- | --- |
124
+ | <img src="docs/images/showcase-example.png" alt="Everything" width="160" /> | Everything | Comprehensive playground app showcasing all Skybridge hooks and features. | [Try Demo](https://everything.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/everything) |
125
+
126
+ ### Use cases
127
+
142
128
  | Preview | App | Description | Demo | Code |
143
129
  | --- | --- | --- | --- | --- |
144
130
  | <img src="docs/images/showcase-capitals.png" alt="Capitals Explorer" width="160" /> | Capitals Explorer | Interactive world map with geolocation, country information, and dynamic capital exploration. | [Try Demo](https://capitals.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/capitals) |
145
131
  | <img src="docs/images/showcase-flight-booking.png" alt="Flight Booking" width="160" /> | Flight Booking | Flight search carousel with route details, pricing comparison, and external booking. | [Try Demo](https://flight-booking.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/flight-booking) |
146
132
  | <img src="docs/images/showcase-ecommerce.png" alt="Ecommerce Carousel" width="160" /> | Ecommerce Carousel | Product carousel with persistent cart, localization, theme switching, and modal dialogs. | [Try Demo](https://ecommerce.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/ecom-carousel) |
147
- | <img src="docs/images/showcase-example.png" alt="Everything" width="160" /> | Everything | Comprehensive playground showcasing all Skybridge hooks and features. | [Try Demo](https://everything.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/everything) |
148
- | <img src="docs/images/showcase-investigation-game.png" alt="Investigation Game" width="160" /> | Investigation Game | Multi-screen mystery game with fullscreen mode and dynamic story progression. | [Try Demo](https://investigation-game.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/investigation-game) |
149
- | <img src="docs/images/showcase-productivity.png" alt="Productivity" width="160" /> | Productivity | Data visualization dashboard demonstrating Skybridge capabilities for MCP Apps. | [Try Demo](https://productivity.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/productivity) |
133
+ | <img src="docs/images/showcase-investigation-game.png" alt="Investigation Game" width="160" /> | Investigation Game | Multi-screen mystery game with fullscreen mode, dynamic story progression and context asynchronicity demonstration | [Try Demo](https://investigation-game.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/investigation-game) |
134
+ | <img src="docs/images/showcase-productivity.png" alt="Productivity" width="160" /> | Productivity | Interactive analytics dashboard with charts, theme adaptation, localization, fullscreen mode, and bidirectional tool calls. | [Try Demo](https://productivity.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/productivity) |
150
135
  | <img src="docs/images/showcase-times-up.png" alt="Time's Up" width="160" /> | Time's Up | Word-guessing party game where the user gives hints and the AI tries to guess. | [Try Demo](https://times-up.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/times-up) |
151
- | <img src="docs/images/showcase-manifest-ui.png" alt="Manifest UI" width="160" /> | Manifest UI | Agentic component library example for rich AI-powered experiences. | [Try Demo](https://manifest-ui.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/manifest-ui) |
152
- | <img src="docs/images/showcase-generative-ui.png" alt="Generative UI" width="160" /> | Generative UI | LLM-generated dynamic UIs with json-render and 36 pre-built shadcn/ui components. | [Try Demo](https://generative-ui.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/generative-ui) |
153
- | <img src="docs/images/showcase-magic-8-ball.png" alt="Magic 8-Ball" width="160" /> | Magic 8-Ball | Default starter app for the core Skybridge loop: input, server logic, and view rendering. | [Try Demo](https://magic-8-ball.skybridge.tech/try) | [View code](https://github.com/alpic-ai/apps-sdk-template) |
154
- | <img src="docs/images/showcase-clerk.png" alt="Auth Clerk" width="160" /> | Auth — Clerk | Full OAuth authentication with Clerk and personalized coffee shop search. | — | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-clerk) |
155
- | <img src="docs/images/showcase-workos.png" alt="Auth WorkOS AuthKit" width="160" /> | Auth — WorkOS AuthKit | Full OAuth authentication with WorkOS AuthKit and personalized coffee shop search. | — | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-workos) |
156
- | <img src="docs/images/showcase-stytch.png" alt="Auth Stytch" width="160" /> | Auth — Stytch | Full OAuth authentication with Stytch and personalized coffee shop search. | — | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-stytch) |
157
- | <img src="docs/images/showcase-auth0.png" alt="Auth Auth0" width="160" /> | Auth — Auth0 | Full OAuth authentication with Auth0 and personalized coffee shop search. | — | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-auth0) |
158
136
  | <img src="docs/images/showcase-lumo.png" alt="Lumo Interactive AI Tutor" width="160" /> | Lumo — Interactive AI Tutor | Adaptive tutor with Mermaid diagrams, mind maps, quizzes, and fill-in-the-blank exercises. | [Try Demo](https://lumo-mcp-app-39519fdd.alpic.live/try) | [View code](https://github.com/connorads/lumo-mcp-app) |
159
137
 
160
- ## Community & Contributing
161
-
162
- We invite you to contribute and help improve Skybridge.
163
-
164
- Here are a few ways you can get involved:
165
-
166
- - **Reporting bugs**: If you run into a bug or unexpected behavior, please open an issue in [GitHub Issues](https://github.com/alpic-ai/skybridge/issues) with a clear reproduction.
167
- - **Questions and Suggestions**: Need help building with Skybridge or have ideas to improve the framework, docs, examples, or developer experience? [Open an issue](https://github.com/alpic-ai/skybridge/issues) or share them on our [Discord](https://discord.com/invite/gNAazGueab).
168
- - **Pull requests**: For code or documentation changes, please read the [Contributing Guide](https://github.com/alpic-ai/skybridge/blob/main/CONTRIBUTING.md) before opening a PR.
169
-
170
- Skybridge is released under the [MIT License](https://github.com/alpic-ai/skybridge/blob/main/LICENSE).
138
+ ### Auth
171
139
 
172
- ### Contributors
140
+ | Preview | Provider | Description | Code |
141
+ | --- | --- | --- | --- |
142
+ | <img src="docs/images/descope.webp" alt="Auth Descope" width="160" /> | Descope | Full OAuth authentication with Descope and personalized coffee shop search. | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-descope) |
143
+ | <img src="docs/images/showcase-clerk.png" alt="Auth Clerk" width="160" /> | Clerk | Full OAuth authentication with Clerk and personalized coffee shop search. | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-clerk) |
144
+ | <img src="docs/images/showcase-workos.png" alt="Auth WorkOS AuthKit" width="160" /> | WorkOS AuthKit | Full OAuth authentication with WorkOS AuthKit and personalized coffee shop search. | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-workos) |
145
+ | <img src="docs/images/showcase-stytch.png" alt="Auth Stytch" width="160" /> | Stytch | Full OAuth authentication with Stytch and personalized coffee shop search. | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-stytch) |
146
+ | <img src="docs/images/showcase-auth0.png" alt="Auth Auth0" width="160" /> | Auth0 | Full OAuth authentication with Auth0 and personalized coffee shop search. | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/auth-auth0) |
173
147
 
174
- Built and maintained by [Harijoe](https://github.com/harijoe), [Fred Barthelet](https://github.com/fredericbarthelet), and the [Alpic](https://alpic.ai) team.
148
+ ### UI and component libraries
175
149
 
176
- <a href="https://github.com/alpic-ai/skybridge/graphs/contributors">
177
- <img src="https://contrib.rocks/image?repo=alpic-ai/skybridge" alt="Skybridge contributors">
178
- </a>
150
+ | Preview | App | Description | Demo | Code |
151
+ | --- | --- | --- | --- | --- |
152
+ | <img src="docs/images/showcase-manifest-ui.png" alt="Manifest UI" width="160" /> | Manifest UI | Agentic component library example for rich AI-powered experiences. | [Try Demo](https://manifest-ui.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/manifest-ui) |
153
+ | <img src="docs/images/showcase-generative-ui.png" alt="Generative UI" width="160" /> | Generative UI | LLM-generated dynamic UIs with json-render and 36 pre-built shadcn/ui components. | [Try Demo](https://generative-ui.skybridge.tech/try) | [View code](https://github.com/alpic-ai/skybridge/tree/main/examples/generative-ui) |
@@ -0,0 +1,11 @@
1
+ export declare const ENTRY_WRAPPER_CONTENT = "import { __setBuildManifest, __setSkillsManifest } from \"skybridge/server\";\nimport manifest from \"./vite-manifest.js\";\nimport skills from \"./skills.js\";\n\n__setBuildManifest(manifest);\n__setSkillsManifest(skills);\n\nconst userMod = await import(\"./server.js\");\nexport default userMod.default;\n";
2
+ export declare function emitEntryWrapper(distDir: string): void;
3
+ export declare function emitSkillsModule(skillsDir: string, outPath: string): void;
4
+ export declare function emitManifestModule(manifestPath: string, outPath: string): void;
5
+ /** Emit an empty Vite manifest for view-less (headless) servers. */
6
+ export declare function emitEmptyManifestModule(outPath: string): void;
7
+ export declare function ensureAssetsDir(assetsDir: string): void;
8
+ export declare const VERCEL_FUNCTION_NAME = "mcp";
9
+ export declare const VERCEL_CONFIG: unknown;
10
+ export declare const VERCEL_VC_CONFIG: unknown;
11
+ export declare function emitVercelBuildOutput(root: string): Promise<void>;
@@ -0,0 +1,102 @@
1
+ import { cpSync, existsSync, mkdirSync, readFileSync, rmSync, writeFileSync, } from "node:fs";
2
+ import path from "node:path";
3
+ import { discoverSkills } from "../server/skills.js";
4
+ // Primes the manifest and skills snapshot in skybridge's module scope, then
5
+ // dynamically imports `./server.js` so user code runs *after* the side channels
6
+ // are set. The dynamic import is load-bearing: a static
7
+ // `export { default } from ...` is hoisted with the rest of the static graph
8
+ // and would evaluate `server.js` before the primers run. Both `skills.js` and
9
+ // the manifest are imported (not read from disk) so they ride the bundle on
10
+ // filesystem-less targets like Cloudflare Workers.
11
+ export const ENTRY_WRAPPER_CONTENT = `import { __setBuildManifest, __setSkillsManifest } from "skybridge/server";
12
+ import manifest from "./vite-manifest.js";
13
+ import skills from "./skills.js";
14
+
15
+ __setBuildManifest(manifest);
16
+ __setSkillsManifest(skills);
17
+
18
+ const userMod = await import("./server.js");
19
+ export default userMod.default;
20
+ `;
21
+ export function emitEntryWrapper(distDir) {
22
+ writeFileSync(path.join(distDir, "__entry.js"), ENTRY_WRAPPER_CONTENT);
23
+ }
24
+ export function emitSkillsModule(skillsDir, outPath) {
25
+ const skills = discoverSkills(skillsDir);
26
+ writeFileSync(outPath, `export default ${JSON.stringify(skills)};\n`);
27
+ }
28
+ export function emitManifestModule(manifestPath, outPath) {
29
+ const manifest = readFileSync(manifestPath, "utf-8");
30
+ writeFileSync(outPath, `export default ${manifest};\n`);
31
+ }
32
+ /** Emit an empty Vite manifest for view-less (headless) servers. */
33
+ export function emitEmptyManifestModule(outPath) {
34
+ writeFileSync(outPath, "export default {};\n");
35
+ }
36
+ export function ensureAssetsDir(assetsDir) {
37
+ mkdirSync(assetsDir, { recursive: true });
38
+ }
39
+ export const VERCEL_FUNCTION_NAME = "mcp";
40
+ export const VERCEL_CONFIG = {
41
+ version: 3,
42
+ routes: [
43
+ {
44
+ src: "/assets/(.*)",
45
+ headers: { "Access-Control-Allow-Origin": "*" },
46
+ continue: true,
47
+ },
48
+ { handle: "filesystem" },
49
+ { src: "/(.*)", dest: `/${VERCEL_FUNCTION_NAME}` },
50
+ ],
51
+ };
52
+ export const VERCEL_VC_CONFIG = {
53
+ runtime: "nodejs22.x",
54
+ handler: "index.js",
55
+ launcherType: "Nodejs",
56
+ shouldAddHelpers: true,
57
+ };
58
+ // Emit a Build Output API tree under `.vercel/output/`. Bundling the server
59
+ // with esbuild produces a self-contained function bundle, so we don't ship
60
+ // `node_modules` and don't touch tracked paths like `api/` or `public/`.
61
+ //
62
+ // Entry is `dist/__entry.js` — the wrapper that primes the Vite manifest via
63
+ // `__setBuildManifest` before importing user code. Bundling `dist/server.js`
64
+ // directly would skip that priming and 500 on view resource reads when the
65
+ // function falls back to `readFileSync('dist/assets/.vite/manifest.json')`
66
+ // (Vercel functions don't ship `dist/`).
67
+ export async function emitVercelBuildOutput(root) {
68
+ const outputDir = path.join(root, ".vercel", "output");
69
+ const funcDir = path.join(outputDir, "functions", `${VERCEL_FUNCTION_NAME}.func`);
70
+ const staticAssetsDir = path.join(outputDir, "static", "assets");
71
+ rmSync(outputDir, { recursive: true, force: true });
72
+ mkdirSync(funcDir, { recursive: true });
73
+ const { build } = await import("esbuild");
74
+ await build({
75
+ entryPoints: [path.join(root, "dist", "__entry.js")],
76
+ bundle: true,
77
+ platform: "node",
78
+ target: "node22",
79
+ format: "esm",
80
+ outfile: path.join(funcDir, "index.js"),
81
+ // Lets esbuild DCE dev-only branches that pull in vite/devtools.
82
+ define: { "process.env.NODE_ENV": '"production"' },
83
+ // Dev-only deps reachable from re-exports; safe to leave unresolved since
84
+ // the code paths that touch them are eliminated by the NODE_ENV define.
85
+ external: ["vite", "@skybridge/devtools"],
86
+ banner: {
87
+ // ESM bundles miss CJS interop globals that some deps reach for.
88
+ js: "import{createRequire}from'node:module';const require=createRequire(import.meta.url);",
89
+ },
90
+ });
91
+ writeFileSync(path.join(funcDir, ".vc-config.json"), `${JSON.stringify(VERCEL_VC_CONFIG, null, 2)}\n`);
92
+ writeFileSync(path.join(funcDir, "package.json"), `${JSON.stringify({ type: "module" }, null, 2)}\n`);
93
+ const assetsSrc = path.join(root, "dist", "assets");
94
+ if (existsSync(assetsSrc)) {
95
+ cpSync(assetsSrc, staticAssetsDir, { recursive: true });
96
+ }
97
+ else {
98
+ mkdirSync(staticAssetsDir, { recursive: true });
99
+ }
100
+ writeFileSync(path.join(outputDir, "config.json"), `${JSON.stringify(VERCEL_CONFIG, null, 2)}\n`);
101
+ }
102
+ //# sourceMappingURL=build-helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build-helpers.js","sourceRoot":"","sources":["../../src/cli/build-helpers.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n cpSync,\n existsSync,\n mkdirSync,\n readFileSync,\n rmSync,\n writeFileSync,\n} from \"node:fs\";\nimport path from \"node:path\";\nimport { discoverSkills } from \"../server/skills.js\";\n\n// Primes the manifest and skills snapshot in skybridge's module scope, then\n// dynamically imports `./server.js` so user code runs *after* the side channels\n// are set. The dynamic import is load-bearing: a static\n// `export { default } from ...` is hoisted with the rest of the static graph\n// and would evaluate `server.js` before the primers run. Both `skills.js` and\n// the manifest are imported (not read from disk) so they ride the bundle on\n// filesystem-less targets like Cloudflare Workers.\nexport const ENTRY_WRAPPER_CONTENT = `import { __setBuildManifest, __setSkillsManifest } from \"skybridge/server\";\nimport manifest from \"./vite-manifest.js\";\nimport skills from \"./skills.js\";\n\n__setBuildManifest(manifest);\n__setSkillsManifest(skills);\n\nconst userMod = await import(\"./server.js\");\nexport default userMod.default;\n`;\n\nexport function emitEntryWrapper(distDir: string): void {\n writeFileSync(path.join(distDir, \"__entry.js\"), ENTRY_WRAPPER_CONTENT);\n}\n\nexport function emitSkillsModule(skillsDir: string, outPath: string): void {\n const skills = discoverSkills(skillsDir);\n writeFileSync(outPath, `export default ${JSON.stringify(skills)};\\n`);\n}\n\nexport function emitManifestModule(\n manifestPath: string,\n outPath: string,\n): void {\n const manifest = readFileSync(manifestPath, \"utf-8\");\n writeFileSync(outPath, `export default ${manifest};\\n`);\n}\n\n/** Emit an empty Vite manifest for view-less (headless) servers. */\nexport function emitEmptyManifestModule(outPath: string): void {\n writeFileSync(outPath, \"export default {};\\n\");\n}\n\nexport function ensureAssetsDir(assetsDir: string): void {\n mkdirSync(assetsDir, { recursive: true });\n}\n\nexport const VERCEL_FUNCTION_NAME = \"mcp\";\n\nexport const VERCEL_CONFIG: unknown = {\n version: 3,\n routes: [\n {\n src: \"/assets/(.*)\",\n headers: { \"Access-Control-Allow-Origin\": \"*\" },\n continue: true,\n },\n { handle: \"filesystem\" },\n { src: \"/(.*)\", dest: `/${VERCEL_FUNCTION_NAME}` },\n ],\n};\n\nexport const VERCEL_VC_CONFIG: unknown = {\n runtime: \"nodejs22.x\",\n handler: \"index.js\",\n launcherType: \"Nodejs\",\n shouldAddHelpers: true,\n};\n\n// Emit a Build Output API tree under `.vercel/output/`. Bundling the server\n// with esbuild produces a self-contained function bundle, so we don't ship\n// `node_modules` and don't touch tracked paths like `api/` or `public/`.\n//\n// Entry is `dist/__entry.js` — the wrapper that primes the Vite manifest via\n// `__setBuildManifest` before importing user code. Bundling `dist/server.js`\n// directly would skip that priming and 500 on view resource reads when the\n// function falls back to `readFileSync('dist/assets/.vite/manifest.json')`\n// (Vercel functions don't ship `dist/`).\nexport async function emitVercelBuildOutput(root: string): Promise<void> {\n const outputDir = path.join(root, \".vercel\", \"output\");\n const funcDir = path.join(\n outputDir,\n \"functions\",\n `${VERCEL_FUNCTION_NAME}.func`,\n );\n const staticAssetsDir = path.join(outputDir, \"static\", \"assets\");\n\n rmSync(outputDir, { recursive: true, force: true });\n mkdirSync(funcDir, { recursive: true });\n\n const { build } = await import(\"esbuild\");\n await build({\n entryPoints: [path.join(root, \"dist\", \"__entry.js\")],\n bundle: true,\n platform: \"node\",\n target: \"node22\",\n format: \"esm\",\n outfile: path.join(funcDir, \"index.js\"),\n // Lets esbuild DCE dev-only branches that pull in vite/devtools.\n define: { \"process.env.NODE_ENV\": '\"production\"' },\n // Dev-only deps reachable from re-exports; safe to leave unresolved since\n // the code paths that touch them are eliminated by the NODE_ENV define.\n external: [\"vite\", \"@skybridge/devtools\"],\n banner: {\n // ESM bundles miss CJS interop globals that some deps reach for.\n js: \"import{createRequire}from'node:module';const require=createRequire(import.meta.url);\",\n },\n });\n\n writeFileSync(\n path.join(funcDir, \".vc-config.json\"),\n `${JSON.stringify(VERCEL_VC_CONFIG, null, 2)}\\n`,\n );\n writeFileSync(\n path.join(funcDir, \"package.json\"),\n `${JSON.stringify({ type: \"module\" }, null, 2)}\\n`,\n );\n\n const assetsSrc = path.join(root, \"dist\", \"assets\");\n if (existsSync(assetsSrc)) {\n cpSync(assetsSrc, staticAssetsDir, { recursive: true });\n } else {\n mkdirSync(staticAssetsDir, { recursive: true });\n }\n\n writeFileSync(\n path.join(outputDir, \"config.json\"),\n `${JSON.stringify(VERCEL_CONFIG, null, 2)}\\n`,\n );\n}\n"]}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,119 @@
1
+ // @vitest-environment node
2
+ // esbuild's invariant check on TextEncoder/Uint8Array trips jsdom's polyfill.
3
+ import { existsSync, mkdirSync, mkdtempSync, readFileSync, writeFileSync, } from "node:fs";
4
+ import { tmpdir } from "node:os";
5
+ import path from "node:path";
6
+ import { describe, expect, it } from "vitest";
7
+ import { ENTRY_WRAPPER_CONTENT, emitEmptyManifestModule, emitEntryWrapper, emitManifestModule, emitSkillsModule, emitVercelBuildOutput, ensureAssetsDir, VERCEL_CONFIG, VERCEL_VC_CONFIG, } from "./build-helpers.js";
8
+ function mkTmp(prefix = "skybridge-build-helpers-") {
9
+ return mkdtempSync(path.join(tmpdir(), prefix));
10
+ }
11
+ describe("emitEntryWrapper", () => {
12
+ it("writes dist/__entry.js that primes the manifest before importing user code", () => {
13
+ const dir = mkTmp();
14
+ emitEntryWrapper(dir);
15
+ const out = readFileSync(path.join(dir, "__entry.js"), "utf-8");
16
+ expect(out).toBe(ENTRY_WRAPPER_CONTENT);
17
+ expect(out).toContain('import { __setBuildManifest, __setSkillsManifest } from "skybridge/server"');
18
+ expect(out).toContain('import manifest from "./vite-manifest.js"');
19
+ expect(out).toContain('import skills from "./skills.js"');
20
+ expect(out).toContain("__setBuildManifest(manifest)");
21
+ expect(out).toContain("__setSkillsManifest(skills)");
22
+ // Dynamic import is load-bearing: `server.js` must evaluate after the
23
+ // setters run, so a static re-export wouldn't work.
24
+ expect(out).toContain('await import("./server.js")');
25
+ expect(out).toContain("export default userMod.default");
26
+ });
27
+ });
28
+ describe("emitSkillsModule", () => {
29
+ it("inlines discovered skills as an ESM default export", () => {
30
+ const dir = mkTmp();
31
+ const skillsDir = path.join(dir, "src", "skills");
32
+ mkdirSync(path.join(skillsDir, "refunds"), { recursive: true });
33
+ writeFileSync(path.join(skillsDir, "refunds", "SKILL.md"), "---\nname: refunds\ndescription: Process refunds\n---\nBody");
34
+ const outPath = path.join(dir, "skills.js");
35
+ emitSkillsModule(skillsDir, outPath);
36
+ const out = readFileSync(outPath, "utf-8");
37
+ const literal = out
38
+ .slice("export default ".length)
39
+ .trim()
40
+ .replace(/;$/, "");
41
+ const skills = JSON.parse(literal);
42
+ expect(skills).toHaveLength(1);
43
+ expect(skills[0]).toMatchObject({
44
+ name: "refunds",
45
+ frontmatter: { name: "refunds", description: "Process refunds" },
46
+ });
47
+ expect(skills[0].digest).toMatch(/^sha256:[a-f0-9]{64}$/);
48
+ });
49
+ it("emits an empty array when the skills directory is absent", () => {
50
+ const dir = mkTmp();
51
+ const outPath = path.join(dir, "skills.js");
52
+ emitSkillsModule(path.join(dir, "nope"), outPath);
53
+ expect(readFileSync(outPath, "utf-8")).toBe("export default [];\n");
54
+ });
55
+ });
56
+ describe("emitManifestModule", () => {
57
+ it("inlines the JSON manifest as an ESM default export", () => {
58
+ const dir = mkTmp();
59
+ const inPath = path.join(dir, "manifest.json");
60
+ const outPath = path.join(dir, "vite-manifest.js");
61
+ const manifest = { "src/views/foo.tsx": { file: "assets/foo-abc.js" } };
62
+ writeFileSync(inPath, JSON.stringify(manifest));
63
+ emitManifestModule(inPath, outPath);
64
+ const out = readFileSync(outPath, "utf-8");
65
+ expect(out.startsWith("export default ")).toBe(true);
66
+ const literal = out
67
+ .slice("export default ".length)
68
+ .trim()
69
+ .replace(/;$/, "");
70
+ expect(JSON.parse(literal)).toEqual(manifest);
71
+ });
72
+ });
73
+ describe("emitEmptyManifestModule", () => {
74
+ it("writes an empty object default export", () => {
75
+ const dir = mkTmp();
76
+ const outPath = path.join(dir, "vite-manifest.js");
77
+ emitEmptyManifestModule(outPath);
78
+ expect(readFileSync(outPath, "utf-8")).toBe("export default {};\n");
79
+ });
80
+ });
81
+ describe("ensureAssetsDir", () => {
82
+ it("creates the assets directory when missing", () => {
83
+ const dir = mkTmp();
84
+ const assetsDir = path.join(dir, "dist", "assets");
85
+ ensureAssetsDir(assetsDir);
86
+ expect(existsSync(assetsDir)).toBe(true);
87
+ });
88
+ });
89
+ describe("emitVercelBuildOutput", () => {
90
+ it("emits a Build Output API tree with bundled function and static assets", async () => {
91
+ const root = mkTmp();
92
+ mkdirSync(path.join(root, "dist", "assets"), { recursive: true });
93
+ writeFileSync(path.join(root, "dist", "server.js"), "export default function handler(_req, res) { res.end('ok'); }\n");
94
+ // Minimal `dist/__entry.js` (the real wrapper imports `skybridge/server`,
95
+ // which isn't resolvable in this test's tmp dir — the function-bundling
96
+ // contract we care about here is just "bundle whatever `__entry.js`
97
+ // imports into a single function file").
98
+ writeFileSync(path.join(root, "dist", "__entry.js"), "const userMod = await import('./server.js');\nexport default userMod.default;\n");
99
+ writeFileSync(path.join(root, "dist", "assets", "view-abc.js"), "/* bundled view */\n");
100
+ await emitVercelBuildOutput(root);
101
+ const outputDir = path.join(root, ".vercel", "output");
102
+ const funcDir = path.join(outputDir, "functions", "mcp.func");
103
+ expect(existsSync(path.join(funcDir, "index.js"))).toBe(true);
104
+ expect(JSON.parse(readFileSync(path.join(funcDir, ".vc-config.json"), "utf-8"))).toEqual(VERCEL_VC_CONFIG);
105
+ expect(JSON.parse(readFileSync(path.join(funcDir, "package.json"), "utf-8"))).toEqual({ type: "module" });
106
+ expect(JSON.parse(readFileSync(path.join(outputDir, "config.json"), "utf-8"))).toEqual(VERCEL_CONFIG);
107
+ expect(readFileSync(path.join(outputDir, "static", "assets", "view-abc.js"), "utf-8")).toContain("bundled view");
108
+ });
109
+ it("emits static assets directory when dist/assets is missing", async () => {
110
+ const root = mkTmp();
111
+ mkdirSync(path.join(root, "dist"), { recursive: true });
112
+ writeFileSync(path.join(root, "dist", "__entry.js"), "const userMod = await import('./server.js');\nexport default userMod.default;\n");
113
+ writeFileSync(path.join(root, "dist", "server.js"), "export default function handler(_req, res) { res.end('ok'); }\n");
114
+ await emitVercelBuildOutput(root);
115
+ expect(existsSync(path.join(root, ".vercel", "output", "static", "assets"))).toBe(true);
116
+ expect(existsSync(path.join(root, ".vercel", "output", "functions", "mcp.func", "index.js"))).toBe(true);
117
+ });
118
+ });
119
+ //# sourceMappingURL=build-helpers.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build-helpers.test.js","sourceRoot":"","sources":["../../src/cli/build-helpers.test.ts"],"names":[],"mappings":"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","sourcesContent":["// @vitest-environment node\n// esbuild's invariant check on TextEncoder/Uint8Array trips jsdom's polyfill.\nimport {\n existsSync,\n mkdirSync,\n mkdtempSync,\n readFileSync,\n writeFileSync,\n} from \"node:fs\";\nimport { tmpdir } from \"node:os\";\nimport path from \"node:path\";\nimport { describe, expect, it } from \"vitest\";\nimport {\n ENTRY_WRAPPER_CONTENT,\n emitEmptyManifestModule,\n emitEntryWrapper,\n emitManifestModule,\n emitSkillsModule,\n emitVercelBuildOutput,\n ensureAssetsDir,\n VERCEL_CONFIG,\n VERCEL_VC_CONFIG,\n} from \"./build-helpers.js\";\n\nfunction mkTmp(prefix = \"skybridge-build-helpers-\") {\n return mkdtempSync(path.join(tmpdir(), prefix));\n}\n\ndescribe(\"emitEntryWrapper\", () => {\n it(\"writes dist/__entry.js that primes the manifest before importing user code\", () => {\n const dir = mkTmp();\n emitEntryWrapper(dir);\n const out = readFileSync(path.join(dir, \"__entry.js\"), \"utf-8\");\n expect(out).toBe(ENTRY_WRAPPER_CONTENT);\n expect(out).toContain(\n 'import { __setBuildManifest, __setSkillsManifest } from \"skybridge/server\"',\n );\n expect(out).toContain('import manifest from \"./vite-manifest.js\"');\n expect(out).toContain('import skills from \"./skills.js\"');\n expect(out).toContain(\"__setBuildManifest(manifest)\");\n expect(out).toContain(\"__setSkillsManifest(skills)\");\n // Dynamic import is load-bearing: `server.js` must evaluate after the\n // setters run, so a static re-export wouldn't work.\n expect(out).toContain('await import(\"./server.js\")');\n expect(out).toContain(\"export default userMod.default\");\n });\n});\n\ndescribe(\"emitSkillsModule\", () => {\n it(\"inlines discovered skills as an ESM default export\", () => {\n const dir = mkTmp();\n const skillsDir = path.join(dir, \"src\", \"skills\");\n mkdirSync(path.join(skillsDir, \"refunds\"), { recursive: true });\n writeFileSync(\n path.join(skillsDir, \"refunds\", \"SKILL.md\"),\n \"---\\nname: refunds\\ndescription: Process refunds\\n---\\nBody\",\n );\n const outPath = path.join(dir, \"skills.js\");\n emitSkillsModule(skillsDir, outPath);\n const out = readFileSync(outPath, \"utf-8\");\n const literal = out\n .slice(\"export default \".length)\n .trim()\n .replace(/;$/, \"\");\n const skills = JSON.parse(literal);\n expect(skills).toHaveLength(1);\n expect(skills[0]).toMatchObject({\n name: \"refunds\",\n frontmatter: { name: \"refunds\", description: \"Process refunds\" },\n });\n expect(skills[0].digest).toMatch(/^sha256:[a-f0-9]{64}$/);\n });\n\n it(\"emits an empty array when the skills directory is absent\", () => {\n const dir = mkTmp();\n const outPath = path.join(dir, \"skills.js\");\n emitSkillsModule(path.join(dir, \"nope\"), outPath);\n expect(readFileSync(outPath, \"utf-8\")).toBe(\"export default [];\\n\");\n });\n});\n\ndescribe(\"emitManifestModule\", () => {\n it(\"inlines the JSON manifest as an ESM default export\", () => {\n const dir = mkTmp();\n const inPath = path.join(dir, \"manifest.json\");\n const outPath = path.join(dir, \"vite-manifest.js\");\n const manifest = { \"src/views/foo.tsx\": { file: \"assets/foo-abc.js\" } };\n writeFileSync(inPath, JSON.stringify(manifest));\n emitManifestModule(inPath, outPath);\n const out = readFileSync(outPath, \"utf-8\");\n expect(out.startsWith(\"export default \")).toBe(true);\n const literal = out\n .slice(\"export default \".length)\n .trim()\n .replace(/;$/, \"\");\n expect(JSON.parse(literal)).toEqual(manifest);\n });\n});\n\ndescribe(\"emitEmptyManifestModule\", () => {\n it(\"writes an empty object default export\", () => {\n const dir = mkTmp();\n const outPath = path.join(dir, \"vite-manifest.js\");\n emitEmptyManifestModule(outPath);\n expect(readFileSync(outPath, \"utf-8\")).toBe(\"export default {};\\n\");\n });\n});\n\ndescribe(\"ensureAssetsDir\", () => {\n it(\"creates the assets directory when missing\", () => {\n const dir = mkTmp();\n const assetsDir = path.join(dir, \"dist\", \"assets\");\n ensureAssetsDir(assetsDir);\n expect(existsSync(assetsDir)).toBe(true);\n });\n});\n\ndescribe(\"emitVercelBuildOutput\", () => {\n it(\"emits a Build Output API tree with bundled function and static assets\", async () => {\n const root = mkTmp();\n mkdirSync(path.join(root, \"dist\", \"assets\"), { recursive: true });\n writeFileSync(\n path.join(root, \"dist\", \"server.js\"),\n \"export default function handler(_req, res) { res.end('ok'); }\\n\",\n );\n // Minimal `dist/__entry.js` (the real wrapper imports `skybridge/server`,\n // which isn't resolvable in this test's tmp dir — the function-bundling\n // contract we care about here is just \"bundle whatever `__entry.js`\n // imports into a single function file\").\n writeFileSync(\n path.join(root, \"dist\", \"__entry.js\"),\n \"const userMod = await import('./server.js');\\nexport default userMod.default;\\n\",\n );\n writeFileSync(\n path.join(root, \"dist\", \"assets\", \"view-abc.js\"),\n \"/* bundled view */\\n\",\n );\n\n await emitVercelBuildOutput(root);\n\n const outputDir = path.join(root, \".vercel\", \"output\");\n const funcDir = path.join(outputDir, \"functions\", \"mcp.func\");\n\n expect(existsSync(path.join(funcDir, \"index.js\"))).toBe(true);\n expect(\n JSON.parse(readFileSync(path.join(funcDir, \".vc-config.json\"), \"utf-8\")),\n ).toEqual(VERCEL_VC_CONFIG);\n expect(\n JSON.parse(readFileSync(path.join(funcDir, \"package.json\"), \"utf-8\")),\n ).toEqual({ type: \"module\" });\n expect(\n JSON.parse(readFileSync(path.join(outputDir, \"config.json\"), \"utf-8\")),\n ).toEqual(VERCEL_CONFIG);\n expect(\n readFileSync(\n path.join(outputDir, \"static\", \"assets\", \"view-abc.js\"),\n \"utf-8\",\n ),\n ).toContain(\"bundled view\");\n });\n\n it(\"emits static assets directory when dist/assets is missing\", async () => {\n const root = mkTmp();\n mkdirSync(path.join(root, \"dist\"), { recursive: true });\n writeFileSync(\n path.join(root, \"dist\", \"__entry.js\"),\n \"const userMod = await import('./server.js');\\nexport default userMod.default;\\n\",\n );\n writeFileSync(\n path.join(root, \"dist\", \"server.js\"),\n \"export default function handler(_req, res) { res.end('ok'); }\\n\",\n );\n\n await emitVercelBuildOutput(root);\n\n expect(\n existsSync(path.join(root, \".vercel\", \"output\", \"static\", \"assets\")),\n ).toBe(true);\n expect(\n existsSync(\n path.join(\n root,\n \".vercel\",\n \"output\",\n \"functions\",\n \"mcp.func\",\n \"index.js\",\n ),\n ),\n ).toBe(true);\n });\n});\n"]}
@@ -0,0 +1,2 @@
1
+ import type { CommandStep } from "./use-execute-steps.js";
2
+ export declare function getCommandSteps(root?: string): Promise<CommandStep[]>;