@tokenoftrust/storefront-runner 1.3.4-rc.4 → 1.4.1

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 (246) hide show
  1. package/apps/storefront/astro.config.mjs +15 -0
  2. package/apps/storefront/dev-plugins/dev-publish.mjs +55 -0
  3. package/apps/storefront/dev-plugins/tenant-hot-reload.mjs +86 -7
  4. package/apps/storefront/drizzle.config.apps.ts +13 -0
  5. package/apps/storefront/env.d.ts +10 -0
  6. package/apps/storefront/migrations/README.md +13 -7
  7. package/apps/storefront/migrations-apps/0000_fast_millenium_guard.sql +129 -0
  8. package/apps/storefront/migrations-apps/0001_woozy_lyja.sql +22 -0
  9. package/apps/storefront/migrations-apps/meta/0000_snapshot.json +843 -0
  10. package/apps/storefront/migrations-apps/meta/0001_snapshot.json +990 -0
  11. package/apps/storefront/migrations-apps/meta/_journal.json +20 -0
  12. package/apps/storefront/package.json +12 -1
  13. package/apps/storefront/perf/README.md +64 -0
  14. package/apps/storefront/perf/assert-budgets.ts +159 -0
  15. package/apps/storefront/playwright.config.ts +23 -0
  16. package/apps/storefront/public/js/dashboard-apps.js +173 -0
  17. package/apps/storefront/public/shared/commerce-marketing.css +221 -0
  18. package/apps/storefront/src/components/CollectionCard.astro +1 -0
  19. package/apps/storefront/src/components/ProductCard.astro +1 -0
  20. package/apps/storefront/src/components/admin/AdminPublishTab.astro +3562 -0
  21. package/apps/storefront/src/components/apps/AppWidgetFrame.astro +30 -0
  22. package/apps/storefront/src/components/chrome/NavDropdown.astro +6 -3
  23. package/apps/storefront/src/components/chrome/SiteFooter.astro +10 -0
  24. package/apps/storefront/src/components/chrome/SiteHeader.astro +10 -0
  25. package/apps/storefront/src/components/commerce/RatingStars.astro +3 -2
  26. package/apps/storefront/src/components/content/Callout.astro +75 -0
  27. package/apps/storefront/src/components/content/NeedsReviewCallout.astro +66 -0
  28. package/apps/storefront/src/components/content/ProseSections.astro +121 -0
  29. package/apps/storefront/src/components/content/ProseToc.astro +34 -0
  30. package/apps/storefront/src/components/content/RichText.astro +44 -0
  31. package/apps/storefront/src/components/content/TrustStrip.astro +46 -0
  32. package/apps/storefront/src/components/home/Hero.astro +14 -0
  33. package/apps/storefront/src/components/islands/CheckoutComplianceGate.tsx +295 -0
  34. package/apps/storefront/src/components/islands/ImageGallery.tsx +42 -21
  35. package/apps/storefront/src/components/islands/VariantSelector.tsx +62 -12
  36. package/apps/storefront/src/components/plp/FacetSidebar.astro +2 -2
  37. package/apps/storefront/src/components/subscription/ManageSubscriptionEntry.astro +1 -0
  38. package/apps/storefront/src/config/compliance/rulesets.ts +79 -0
  39. package/apps/storefront/src/config/storeName.ts +34 -0
  40. package/apps/storefront/src/layouts/Layout.astro +97 -23
  41. package/apps/storefront/src/lib/activity/alerts.ts +428 -0
  42. package/apps/storefront/src/lib/activity/changeActorAttribution.ts +85 -0
  43. package/apps/storefront/src/lib/activity/deployVersion.ts +127 -0
  44. package/apps/storefront/src/lib/activity/ingest.ts +188 -0
  45. package/apps/storefront/src/lib/activity/ingestAuth.ts +105 -0
  46. package/apps/storefront/src/lib/activity/killSwitch.ts +80 -0
  47. package/apps/storefront/src/lib/activity/query.ts +403 -0
  48. package/apps/storefront/src/lib/activity/recordActivity.ts +105 -0
  49. package/apps/storefront/src/lib/activity/store.ts +122 -0
  50. package/apps/storefront/src/lib/activity/uiActor.ts +150 -0
  51. package/apps/storefront/src/lib/activity/workerCommit.ts +70 -0
  52. package/apps/storefront/src/lib/analytics/budgets.json +69 -0
  53. package/apps/storefront/src/lib/analytics/lighthouseReport.ts +109 -0
  54. package/apps/storefront/src/lib/analytics/perfBudgets.ts +452 -0
  55. package/apps/storefront/src/lib/analytics/rumAlert.ts +179 -0
  56. package/apps/storefront/src/lib/analytics/webVitals.ts +269 -0
  57. package/apps/storefront/src/lib/apps/adminService.ts +106 -0
  58. package/apps/storefront/src/lib/apps/adminSession.ts +205 -0
  59. package/apps/storefront/src/lib/apps/apiAuth.ts +91 -0
  60. package/apps/storefront/src/lib/apps/apiRoute.ts +35 -0
  61. package/apps/storefront/src/lib/apps/catalogMapper.ts +39 -0
  62. package/apps/storefront/src/lib/apps/credentials.ts +153 -0
  63. package/apps/storefront/src/lib/apps/gatewayKeys.ts +156 -0
  64. package/apps/storefront/src/lib/apps/healthAggregate.ts +66 -0
  65. package/apps/storefront/src/lib/apps/orders/attributionService.ts +206 -0
  66. package/apps/storefront/src/lib/apps/orders/customerHash.ts +28 -0
  67. package/apps/storefront/src/lib/apps/orders/foxyOrderClient.ts +203 -0
  68. package/apps/storefront/src/lib/apps/orders/idempotency.ts +100 -0
  69. package/apps/storefront/src/lib/apps/orders/orderForwardReceiver.ts +117 -0
  70. package/apps/storefront/src/lib/apps/orders/orderMapper.ts +91 -0
  71. package/apps/storefront/src/lib/apps/orders/ordersStore.ts +181 -0
  72. package/apps/storefront/src/lib/apps/registryService.ts +579 -0
  73. package/apps/storefront/src/lib/apps/scopes.ts +79 -0
  74. package/apps/storefront/src/lib/apps/tokenIssuer.ts +121 -0
  75. package/apps/storefront/src/lib/apps/tokenVerifier.ts +148 -0
  76. package/apps/storefront/src/lib/apps/widgets/eligibility.ts +18 -0
  77. package/apps/storefront/src/lib/apps/widgets/frameProps.ts +52 -0
  78. package/apps/storefront/src/lib/apps/widgets/launchToken.ts +84 -0
  79. package/apps/storefront/src/lib/apps/widgets/placements.ts +57 -0
  80. package/apps/storefront/src/lib/apps/widgets/renderSlot.ts +111 -0
  81. package/apps/storefront/src/lib/auth/adminEntry.ts +119 -0
  82. package/apps/storefront/src/lib/auth/identityToken.ts +21 -2
  83. package/apps/storefront/src/lib/auth/loginGate.ts +102 -18
  84. package/apps/storefront/src/lib/auth/mcpClientAssertion.ts +219 -0
  85. package/apps/storefront/src/lib/auth/route.ts +60 -5
  86. package/apps/storefront/src/lib/auth/session.ts +8 -0
  87. package/apps/storefront/src/lib/auth/stepUpChallenge.ts +107 -0
  88. package/apps/storefront/src/lib/auth/totAccessClient.ts +208 -0
  89. package/apps/storefront/src/lib/blog/provider.ts +39 -0
  90. package/apps/storefront/src/lib/blog/types.ts +26 -0
  91. package/apps/storefront/src/lib/checkoutCommerce.ts +39 -1
  92. package/apps/storefront/src/lib/chrome/model.ts +11 -0
  93. package/apps/storefront/src/lib/compliance/enforcement.ts +95 -0
  94. package/apps/storefront/src/lib/content/callout.ts +78 -0
  95. package/apps/storefront/src/lib/content/index.ts +27 -0
  96. package/apps/storefront/src/lib/content/needsReview.ts +58 -0
  97. package/apps/storefront/src/lib/content/prose.ts +186 -0
  98. package/apps/storefront/src/lib/content/richtext.ts +76 -0
  99. package/apps/storefront/src/lib/content/trustStrip.ts +74 -0
  100. package/apps/storefront/src/lib/content-edit/client.ts +70 -14
  101. package/apps/storefront/src/lib/d1/catalog.ts +12 -0
  102. package/apps/storefront/src/lib/d1/schema-apps.ts +267 -0
  103. package/apps/storefront/src/lib/dev/apiBase.ts +8 -2
  104. package/apps/storefront/src/lib/dev/cliSignInCode.ts +65 -115
  105. package/apps/storefront/src/lib/dev/cockpitStore.ts +65 -0
  106. package/apps/storefront/src/lib/dev/previewStatus.ts +112 -0
  107. package/apps/storefront/src/lib/dev/rendezvousBroker.ts +241 -0
  108. package/apps/storefront/src/lib/dev/subjectReissue.ts +67 -0
  109. package/apps/storefront/src/lib/dev/vcBinding.ts +80 -0
  110. package/apps/storefront/src/lib/email/magicLinkInviteEmail.ts +10 -10
  111. package/apps/storefront/src/lib/env.ts +63 -0
  112. package/apps/storefront/src/lib/jsonld.ts +12 -17
  113. package/apps/storefront/src/lib/membership/eligibility.ts +37 -0
  114. package/apps/storefront/src/lib/monitoring/manifest.ts +302 -0
  115. package/apps/storefront/src/lib/privacy/emailHint.ts +13 -5
  116. package/apps/storefront/src/lib/publish/apex-readiness.ts +337 -0
  117. package/apps/storefront/src/lib/publish/dispatchHealth.ts +269 -0
  118. package/apps/storefront/src/lib/publish/domainState.ts +351 -0
  119. package/apps/storefront/src/lib/publish/shipWorkspace.ts +369 -0
  120. package/apps/storefront/src/lib/rawChrome.ts +34 -3
  121. package/apps/storefront/src/lib/storyblok/content-model.ts +34 -2
  122. package/apps/storefront/src/lib/storyblok/provider.ts +11 -4
  123. package/apps/storefront/src/lib/subscription/model.ts +114 -0
  124. package/apps/storefront/src/lib/tot/ToTClient.ts +3 -3
  125. package/apps/storefront/src/lib/tot/query.ts +32 -0
  126. package/apps/storefront/src/lib/webhooks/cloudflareQueueDispatcher.ts +82 -0
  127. package/apps/storefront/src/lib/webhooks/deliveryEngine.ts +245 -0
  128. package/apps/storefront/src/lib/webhooks/deliveryMapper.ts +34 -0
  129. package/apps/storefront/src/lib/webhooks/deliveryStore.ts +668 -0
  130. package/apps/storefront/src/lib/webhooks/dispatcher.ts +168 -0
  131. package/apps/storefront/src/lib/webhooks/emit.ts +167 -0
  132. package/apps/storefront/src/lib/webhooks/endpointGuard.ts +135 -0
  133. package/apps/storefront/src/lib/webhooks/events.ts +98 -0
  134. package/apps/storefront/src/lib/webhooks/getDispatcher.ts +49 -0
  135. package/apps/storefront/src/middleware/index.ts +45 -13
  136. package/apps/storefront/src/pages/404.astro +21 -9
  137. package/apps/storefront/src/pages/[...slug].astro +36 -2
  138. package/apps/storefront/src/pages/admin/ops-timeline.astro +420 -0
  139. package/apps/storefront/src/pages/admin.astro +183 -9
  140. package/apps/storefront/src/pages/api/activity.ts +137 -0
  141. package/apps/storefront/src/pages/api/admin/activity-alerts.ts +73 -0
  142. package/apps/storefront/src/pages/api/apps/admin/credentials/rotate.ts +86 -0
  143. package/apps/storefront/src/pages/api/apps/admin/health.ts +44 -0
  144. package/apps/storefront/src/pages/api/apps/admin/install.ts +125 -0
  145. package/apps/storefront/src/pages/api/apps/admin/list.ts +26 -0
  146. package/apps/storefront/src/pages/api/apps/admin/resume.ts +79 -0
  147. package/apps/storefront/src/pages/api/apps/admin/suspend.ts +80 -0
  148. package/apps/storefront/src/pages/api/apps/admin/uninstall.ts +98 -0
  149. package/apps/storefront/src/pages/api/apps/admin/update.ts +126 -0
  150. package/apps/storefront/src/pages/api/apps/admin/webhooks/deliveries/[deliveryId]/replay.ts +70 -0
  151. package/apps/storefront/src/pages/api/apps/admin/webhooks/deliveries.ts +51 -0
  152. package/apps/storefront/src/pages/api/apps/internal/order-forward.ts +183 -0
  153. package/apps/storefront/src/pages/api/apps/oauth/token.ts +87 -0
  154. package/apps/storefront/src/pages/api/apps/v1/attribution.ts +162 -0
  155. package/apps/storefront/src/pages/api/apps/v1/catalog/products/[handle].ts +39 -0
  156. package/apps/storefront/src/pages/api/apps/v1/catalog/products.ts +49 -0
  157. package/apps/storefront/src/pages/api/apps/v1/health.ts +32 -0
  158. package/apps/storefront/src/pages/api/apps/v1/inventory.ts +59 -0
  159. package/apps/storefront/src/pages/api/apps/v1/orders/[id].ts +48 -0
  160. package/apps/storefront/src/pages/api/apps/v1/orders.ts +73 -0
  161. package/apps/storefront/src/pages/api/apps/v1/reports.ts +21 -0
  162. package/apps/storefront/src/pages/api/apps/v1/webhooks/deliveries/[deliveryId]/replay.ts +74 -0
  163. package/apps/storefront/src/pages/api/apps/v1/webhooks/deliveries.ts +47 -0
  164. package/apps/storefront/src/pages/api/auth/magic-exchange.ts +48 -1
  165. package/apps/storefront/src/pages/api/auth/step-up-send.ts +57 -0
  166. package/apps/storefront/src/pages/api/auth/step-up-verify.ts +129 -0
  167. package/apps/storefront/src/pages/api/auth/verify.ts +23 -0
  168. package/apps/storefront/src/pages/api/cache-purge.ts +11 -0
  169. package/apps/storefront/src/pages/api/compliance/preflight.ts +206 -0
  170. package/apps/storefront/src/pages/api/dashboard/enter-vendor.ts +30 -0
  171. package/apps/storefront/src/pages/api/rum/vitals.ts +54 -0
  172. package/apps/storefront/src/pages/api/test/dev-session.ts +133 -0
  173. package/apps/storefront/src/pages/auth/login.astro +202 -45
  174. package/apps/storefront/src/pages/auth/magic.astro +75 -43
  175. package/apps/storefront/src/pages/blog/[slug].astro +107 -0
  176. package/apps/storefront/src/pages/blog/index.astro +98 -0
  177. package/apps/storefront/src/pages/capabilities.astro +8 -0
  178. package/apps/storefront/src/pages/cockpit.astro +470 -69
  179. package/apps/storefront/src/pages/collections/[handle].astro +8 -0
  180. package/apps/storefront/src/pages/collections/index.astro +10 -2
  181. package/apps/storefront/src/pages/dashboard/[appDomain]/apps/index.astro +119 -0
  182. package/apps/storefront/src/pages/dashboard/[appDomain]/index.astro +5 -0
  183. package/apps/storefront/src/pages/index.astro +57 -0
  184. package/apps/storefront/src/pages/llms.txt.ts +31 -10
  185. package/apps/storefront/src/pages/products/[handle].astro +100 -9
  186. package/apps/storefront/src/pages/sitemap.xml.ts +21 -4
  187. package/apps/storefront/src/pages/style-guide/[tenant]/[theme].astro +198 -0
  188. package/apps/storefront/src/pages/style-guide/[tenant]/chrome/[theme].astro +7 -0
  189. package/apps/storefront/src/pages/style-guide/[tenant]/guide/[theme].astro +7 -0
  190. package/apps/storefront/src/pages/style-guide/[tenant]/index.astro +7 -0
  191. package/apps/storefront/src/pages/style-guide/index.astro +10 -0
  192. package/apps/storefront/src/styles/fonts.css +54 -0
  193. package/apps/storefront/src/styles/global.css +22 -2
  194. package/apps/storefront/src/themes/schema.ts +3 -25
  195. package/apps/storefront/tsconfig.json +1 -1
  196. package/apps/storefront/vitest.config.ts +4 -1
  197. package/package.json +1 -1
  198. package/packages/public-runtime/src/activity/README.md +146 -0
  199. package/packages/public-runtime/src/activity/catalog.ts +501 -0
  200. package/packages/public-runtime/src/activity/event.ts +168 -0
  201. package/packages/public-runtime/src/activity/index.ts +16 -0
  202. package/packages/public-runtime/src/activity/redaction.ts +263 -0
  203. package/packages/public-runtime/src/candidate-index.ts +324 -0
  204. package/packages/public-runtime/src/checkout.ts +94 -2
  205. package/packages/public-runtime/src/compliance/evaluate.ts +265 -0
  206. package/packages/public-runtime/src/compliance/evidence-signals.ts +81 -0
  207. package/packages/public-runtime/src/compliance/index.ts +22 -0
  208. package/packages/public-runtime/src/compliance/pact-report.ts +94 -0
  209. package/packages/public-runtime/src/compliance/profile.ts +198 -0
  210. package/packages/public-runtime/src/compliance/ruleset.ts +117 -0
  211. package/packages/public-runtime/src/compliance/verification.ts +81 -0
  212. package/packages/public-runtime/src/csp.ts +27 -3
  213. package/packages/public-runtime/src/customization-reconcile.ts +35 -0
  214. package/packages/public-runtime/src/customization-runtime.ts +8 -0
  215. package/packages/public-runtime/src/customization-versioning.ts +17 -0
  216. package/packages/public-runtime/src/extension-contract.ts +2 -1
  217. package/packages/public-runtime/src/hash.ts +25 -0
  218. package/packages/public-runtime/src/index.ts +12 -0
  219. package/packages/public-runtime/src/membership.ts +353 -0
  220. package/packages/public-runtime/src/product.ts +24 -2
  221. package/packages/public-runtime/src/review-trust-proof.ts +194 -0
  222. package/packages/public-runtime/src/tenant-assets.ts +40 -5
  223. package/packages/public-runtime/src/tenant.ts +236 -0
  224. package/packages/public-runtime/src/widget-postmessage.ts +205 -0
  225. package/scripts/dev/publish.mjs +158 -0
  226. package/scripts/dev/transient-files.mjs +2 -1
  227. package/tenants/home/public/fonts/inter-latin-400-normal.woff2 +0 -0
  228. package/tenants/home/public/fonts/inter-latin-500-normal.woff2 +0 -0
  229. package/tenants/home/public/fonts/inter-latin-600-normal.woff2 +0 -0
  230. package/tenants/home/public/fonts/inter-latin-ext-400-normal.woff2 +0 -0
  231. package/tenants/home/public/fonts/inter-latin-ext-500-normal.woff2 +0 -0
  232. package/tenants/home/public/fonts/inter-latin-ext-600-normal.woff2 +0 -0
  233. package/tenants/home/public/fonts/jetbrains-mono-latin-400-normal.woff2 +0 -0
  234. package/tenants/home/public/fonts/jetbrains-mono-latin-500-normal.woff2 +0 -0
  235. package/tenants/home/public/fonts/jetbrains-mono-latin-ext-400-normal.woff2 +0 -0
  236. package/tenants/home/public/fonts/jetbrains-mono-latin-ext-500-normal.woff2 +0 -0
  237. package/tenants/home/public/fonts/plus-jakarta-sans-latin-500-normal.woff2 +0 -0
  238. package/tenants/home/public/fonts/plus-jakarta-sans-latin-600-normal.woff2 +0 -0
  239. package/tenants/home/public/fonts/plus-jakarta-sans-latin-700-normal.woff2 +0 -0
  240. package/tenants/home/public/fonts/plus-jakarta-sans-latin-800-normal.woff2 +0 -0
  241. package/tenants/home/public/fonts/plus-jakarta-sans-latin-ext-500-normal.woff2 +0 -0
  242. package/tenants/home/public/fonts/plus-jakarta-sans-latin-ext-600-normal.woff2 +0 -0
  243. package/tenants/home/public/fonts/plus-jakarta-sans-latin-ext-700-normal.woff2 +0 -0
  244. package/tenants/home/public/fonts/plus-jakarta-sans-latin-ext-800-normal.woff2 +0 -0
  245. package/tenants/home/public/pages/storefront.css +23 -0
  246. package/apps/storefront/src/lib/dev/hostedCockpit.ts +0 -169
@@ -0,0 +1,112 @@
1
+ /**
2
+ * Read whether a tenant appDomain's store is SET UP — its forge repo is provisioned —
3
+ * from the credential-free MCP preview-status seam (tot-mcp
4
+ * GET /internal/preview-status; legacy alias /internal/dev-access/preview-status). The
5
+ * seam answers `{ tenant, app, repo, provisioned, previewReleased }`.
6
+ *
7
+ * This is the cockpit's own small reader — self-contained, mirroring `cliSignInCode.ts`
8
+ * (same MCP-origin + service-secret seam) rather than importing another cluster's copy,
9
+ * so the two stay decoupled (the same reason `cliSignInCode` duplicates its transport).
10
+ * It gates the CLI sign-in-code mint + the /cockpit setup fastpath so a developer whose
11
+ * store isn't provisioned yet gets an honest "not set up" state instead of a
12
+ * `tot login --code … && tot start` command that would die at checkout on
13
+ * "Repo <owner>-main is not provisioned" (James's 2026-07-19 first-run failure).
14
+ *
15
+ * - MCP host ← the ORIGIN of MCP_APP_BINDING_URL (one source, so this read hits the
16
+ * SAME MCP tier the sign-in-code mint does).
17
+ * - auth ← header x-mcp-service-secret: MCP_SERVICE_SHARED_SECRET.
18
+ *
19
+ * Fail-closed but non-blocking by design: an UNCONFIGURED seam (no URL/secret) →
20
+ * { configured:false } so callers keep today's behavior (no regression); any non-2xx /
21
+ * transport / parse fault → { configured:true, ok:false } so a caller can distinguish
22
+ * "definitely not provisioned" (ok + provisioned:false) from "couldn't tell". Never throws.
23
+ */
24
+ import { readEnv } from "@/lib/env";
25
+
26
+ export interface HttpGetTransport {
27
+ get(
28
+ url: string,
29
+ headers: Record<string, string>,
30
+ ): Promise<{ status: number; json(): Promise<unknown> }>;
31
+ }
32
+
33
+ export class FetchGetTransport implements HttpGetTransport {
34
+ async get(url: string, headers: Record<string, string>) {
35
+ const res = await fetch(url, { method: "GET", headers });
36
+ return { status: res.status, json: () => res.json() };
37
+ }
38
+ }
39
+
40
+ export interface TenantPreviewStatus {
41
+ /** False when the seam isn't wired on this deploy (no URL/secret) — gate inactive. */
42
+ configured: boolean;
43
+ /** True only when we got a definitive answer back from the MCP. */
44
+ ok: boolean;
45
+ /** The forge repo is provisioned for this owner (checkout/`tot start` can succeed). */
46
+ provisioned?: boolean;
47
+ /** A released preview exists. TODAY equals `provisioned`; Track B.3 tightens it. */
48
+ previewReleased?: boolean;
49
+ status?: number;
50
+ reason?: string;
51
+ }
52
+
53
+ export async function readTenantPreviewStatus(
54
+ tenant: string | null,
55
+ deps: { transport?: HttpGetTransport } = {},
56
+ ): Promise<TenantPreviewStatus> {
57
+ const bindingUrl = await readEnv("MCP_APP_BINDING_URL");
58
+ const secret = await readEnv("MCP_SERVICE_SHARED_SECRET");
59
+ if (!bindingUrl || !secret || !tenant) return { configured: false, ok: false };
60
+
61
+ let endpoint: string;
62
+ try {
63
+ // Mounted OUTSIDE /api on the MCP (its /api surface is session-guarded); use the
64
+ // ORIGIN of MCP_APP_BINDING_URL, same as the cli-signin-code mint. Canonical path
65
+ // (namespace-neutral) — the MCP still serves the /internal/dev-access alias too.
66
+ endpoint = `${new URL(bindingUrl).origin}/internal/preview-status`;
67
+ } catch {
68
+ return { configured: false, ok: false, reason: "bad-mcp-url" };
69
+ }
70
+
71
+ const transport = deps.transport ?? new FetchGetTransport();
72
+ const full = `${endpoint}?tenant=${encodeURIComponent(tenant.toLowerCase())}`;
73
+ let res: { status: number; json(): Promise<unknown> };
74
+ try {
75
+ res = await transport.get(full, { "x-mcp-service-secret": secret });
76
+ } catch (cause) {
77
+ return {
78
+ configured: true,
79
+ ok: false,
80
+ reason: "mcp request failed: " + (cause instanceof Error ? cause.message : String(cause)),
81
+ };
82
+ }
83
+ if (res.status < 200 || res.status >= 300) {
84
+ return { configured: true, ok: false, status: res.status, reason: `status ${res.status}` };
85
+ }
86
+ let payload: unknown;
87
+ try {
88
+ payload = await res.json();
89
+ } catch {
90
+ return { configured: true, ok: false, status: res.status, reason: "unparseable mcp response" };
91
+ }
92
+ const p = (payload ?? {}) as Record<string, unknown>;
93
+ return {
94
+ configured: true,
95
+ ok: true,
96
+ status: res.status,
97
+ provisioned: p.provisioned === true,
98
+ previewReleased: p.previewReleased === true,
99
+ };
100
+ }
101
+
102
+ /**
103
+ * The gate signal shared by /cockpit + the CLI sign-in-code mint: TRUE only when the
104
+ * seam gave a DEFINITIVE "this store's repo is NOT provisioned" — the exact case where
105
+ * `tot clone` / `tot start` would die locally on "Repo … is not provisioned". An
106
+ * unconfigured seam or one that couldn't answer returns FALSE — callers then keep today's
107
+ * behavior and lean on the CLI's own clean "not set up yet" error as the backstop, rather
108
+ * than blocking a possibly-fine developer on a transient MCP blip.
109
+ */
110
+ export function isStoreNotSetUp(status: TenantPreviewStatus): boolean {
111
+ return status.configured && status.ok && status.provisioned === false;
112
+ }
@@ -0,0 +1,241 @@
1
+ /**
2
+ * The storefront (cockpit) half of the browserless CLI sign-in RENDEZVOUS — the
3
+ * server-to-server calls into the MCP's device-rendezvous endpoints, authenticated
4
+ * by the storefront's SIGNED CLIENT ASSERTION (private_key_jwt, RFC 7523), NOT the
5
+ * retired `x-mcp-service-secret`. The developer's cockpit (already authenticated as
6
+ * that developer) drives these; the MCP verifies the assertion against the
7
+ * storefront's published JWKS and admits only a client registered to broker CLI
8
+ * sign-in.
9
+ *
10
+ * createRendezvous → POST /oauth/device/rendezvous (start; returns the
11
+ * NON-SECRET rendezvous_code rendered into `tot login --code`)
12
+ * rendezvousStatus → POST /oauth/device/rendezvous/status (poll for a terminal
13
+ * attaching → { state, fingerprint })
14
+ * approveRendezvous → POST /oauth/device/rendezvous/approve (the human confirmed
15
+ * the fingerprint; carries the dev's fresh subject_token proof)
16
+ * denyRendezvous → POST /oauth/device/rendezvous/deny
17
+ *
18
+ * All four endpoints verify the SAME assertion audience — `<mcpBase>/oauth/device/rendezvous`
19
+ * (the MCP derives the expected audience from that fixed path, not the sub-path), so
20
+ * one minted assertion shape covers every call. SERVER-SIDE ONLY.
21
+ */
22
+ import { readEnv } from "@/lib/env";
23
+ import { mintMcpClientAssertion, McpClientAssertionError } from "@/lib/auth/mcpClientAssertion";
24
+
25
+ const JWT_BEARER_ASSERTION_TYPE = "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
26
+ /** The path whose audience the MCP binds EVERY rendezvous assertion to. */
27
+ const RENDEZVOUS_AUDIENCE_PATH = "/oauth/device/rendezvous";
28
+
29
+ /** Injectable transport so the broker calls unit-test with no network. */
30
+ export interface HttpTransport {
31
+ post(
32
+ url: string,
33
+ headers: Record<string, string>,
34
+ body: unknown,
35
+ ): Promise<{ status: number; json(): Promise<unknown> }>;
36
+ }
37
+
38
+ // Bound every rendezvous call to the MCP. The MCP runs on AppRunner (scale-to-zero),
39
+ // so the FIRST call after idle hits a cold instance that can take many seconds to
40
+ // answer. Without a bound the storefront Worker's subrequest hangs and the browser's
41
+ // POST to /api/dev/cli-signin-code eventually dies at the transport layer — the cockpit
42
+ // shows the opaque catch-branch "Couldn't reach the sign-in service" and the button is
43
+ // simply dead. Aborting at a fixed deadline turns that silent hang into a fast, RETRYABLE
44
+ // 502 ("having a moment — try again"); the retry lands on a now-warm MCP and succeeds.
45
+ const RENDEZVOUS_FETCH_TIMEOUT_MS = 12_000;
46
+
47
+ export class FetchHttpTransport implements HttpTransport {
48
+ async post(url: string, headers: Record<string, string>, body: unknown) {
49
+ const res = await fetch(url, {
50
+ method: "POST",
51
+ headers: { "Content-Type": "application/json", ...headers },
52
+ body: JSON.stringify(body),
53
+ // A timeout/abort rejects the fetch → callRendezvous's catch → a 502 the cockpit
54
+ // renders as a retryable error, instead of a hung request the browser gives up on.
55
+ signal: AbortSignal.timeout(RENDEZVOUS_FETCH_TIMEOUT_MS),
56
+ });
57
+ return { status: res.status, json: () => res.json() };
58
+ }
59
+ }
60
+
61
+ export interface RendezvousDeps {
62
+ transport?: HttpTransport;
63
+ /** Override the assertion minter in tests (defaults to the real private-key signer). */
64
+ mintAssertion?: (audience: string) => Promise<string>;
65
+ }
66
+
67
+ /** A resolved MCP target: the origin to POST to + the assertion audience. */
68
+ interface McpTarget {
69
+ origin: string;
70
+ audience: string;
71
+ }
72
+
73
+ /**
74
+ * Resolve the MCP origin from `MCP_BASE_URL` (its ORIGIN). MCP_BASE_URL is the MCP
75
+ * this storefront authenticates to with its private_key_jwt client assertion (kid
76
+ * storefront-mcp-client-1) — the SAME credential + tier the confidential broker
77
+ * client (canBrokerCliSignin) is registered under (e.g. mcp.qa for preview). NOT
78
+ * MCP_APP_BINDING_URL, which the retired shared-secret shim used and which may point
79
+ * at a different MCP tier. Returns null when unset/malformed (route maps that to 503).
80
+ */
81
+ export async function resolveMcpTarget(): Promise<McpTarget | null> {
82
+ const baseUrl = await readEnv("MCP_BASE_URL");
83
+ if (!baseUrl) return null;
84
+ try {
85
+ const origin = new URL(baseUrl).origin;
86
+ return { origin, audience: `${origin}${RENDEZVOUS_AUDIENCE_PATH}` };
87
+ } catch {
88
+ return null;
89
+ }
90
+ }
91
+
92
+ async function callRendezvous(
93
+ target: McpTarget,
94
+ path: string,
95
+ extra: Record<string, unknown>,
96
+ deps: RendezvousDeps,
97
+ ): Promise<{ status: number; body: Record<string, unknown> }> {
98
+ const mint = deps.mintAssertion ?? ((aud: string) => mintMcpClientAssertion(aud));
99
+ const clientAssertion = await mint(target.audience);
100
+ const transport = deps.transport ?? new FetchHttpTransport();
101
+ const res = await transport.post(
102
+ `${target.origin}${path}`,
103
+ {},
104
+ {
105
+ client_assertion: clientAssertion,
106
+ client_assertion_type: JWT_BEARER_ASSERTION_TYPE,
107
+ ...extra,
108
+ },
109
+ );
110
+ let body: Record<string, unknown> = {};
111
+ try {
112
+ body = (await res.json()) as Record<string, unknown>;
113
+ } catch {
114
+ body = {};
115
+ }
116
+ return { status: res.status, body };
117
+ }
118
+
119
+ export type RendezvousCreateResult =
120
+ | { ok: true; rendezvousCode: string; expiresIn: number | null }
121
+ | { ok: false; status: 502 | 503; reason: string };
122
+
123
+ /**
124
+ * Start a rendezvous for the signed-in developer's OWN email (+ their vendor tenant).
125
+ * Fail-closed mapping mirrors the retired mint: an unconfigured seam or a 401/403
126
+ * (assertion rejected / client not entitled to broker) is a 503 ("not wired up on
127
+ * this environment"); any other fault is a 502.
128
+ */
129
+ export async function createRendezvous(
130
+ email: string,
131
+ tenant: string | null,
132
+ deps: RendezvousDeps = {},
133
+ ): Promise<RendezvousCreateResult> {
134
+ const target = await resolveMcpTarget();
135
+ if (!target) return { ok: false, status: 503, reason: "not-configured" };
136
+ let res: { status: number; body: Record<string, unknown> };
137
+ try {
138
+ res = await callRendezvous(
139
+ target,
140
+ RENDEZVOUS_AUDIENCE_PATH,
141
+ { email: email.toLowerCase(), ...(tenant ? { tenant: tenant.toLowerCase() } : {}) },
142
+ deps,
143
+ );
144
+ } catch (cause) {
145
+ if (cause instanceof McpClientAssertionError) return { ok: false, status: 503, reason: "assertion-unconfigured" };
146
+ return { ok: false, status: 502, reason: "mcp request failed: " + (cause instanceof Error ? cause.message : String(cause)) };
147
+ }
148
+ if (res.status < 200 || res.status >= 300) {
149
+ // 401 invalid_client / 403 unauthorized_client|not_entitled = "not wired up /
150
+ // not entitled on this environment" → 503; a fault is 502.
151
+ const notConfigured = res.status === 401 || res.status === 403;
152
+ return { ok: false, status: notConfigured ? 503 : 502, reason: `rendezvous create returned ${res.status}` };
153
+ }
154
+ const rendezvousCode = typeof res.body.rendezvous_code === "string" ? res.body.rendezvous_code : "";
155
+ if (!rendezvousCode) return { ok: false, status: 502, reason: "rendezvous create returned no code" };
156
+ return {
157
+ ok: true,
158
+ rendezvousCode,
159
+ expiresIn: typeof res.body.expires_in === "number" ? res.body.expires_in : null,
160
+ };
161
+ }
162
+
163
+ export type RendezvousState = "pending" | "attached" | "approved" | "denied" | "expired";
164
+ export type RendezvousStatusResult =
165
+ | { ok: true; state: RendezvousState; fingerprint: string | null }
166
+ | { ok: false; status: 502 | 503; reason: string };
167
+
168
+ /** Poll for a terminal attaching. `fingerprint` is present once state is `attached`. */
169
+ export async function rendezvousStatus(
170
+ rendezvousCode: string,
171
+ deps: RendezvousDeps = {},
172
+ ): Promise<RendezvousStatusResult> {
173
+ const target = await resolveMcpTarget();
174
+ if (!target) return { ok: false, status: 503, reason: "not-configured" };
175
+ let res: { status: number; body: Record<string, unknown> };
176
+ try {
177
+ res = await callRendezvous(target, `${RENDEZVOUS_AUDIENCE_PATH}/status`, { rendezvous_code: rendezvousCode }, deps);
178
+ } catch (cause) {
179
+ if (cause instanceof McpClientAssertionError) return { ok: false, status: 503, reason: "assertion-unconfigured" };
180
+ return { ok: false, status: 502, reason: "mcp request failed" };
181
+ }
182
+ if (res.status < 200 || res.status >= 300) {
183
+ const notConfigured = res.status === 401 || res.status === 403;
184
+ return { ok: false, status: notConfigured ? 503 : 502, reason: `rendezvous status returned ${res.status}` };
185
+ }
186
+ const state = String(res.body.state ?? "expired") as RendezvousState;
187
+ return { ok: true, state, fingerprint: typeof res.body.fingerprint === "string" ? res.body.fingerprint : null };
188
+ }
189
+
190
+ export type RendezvousDecisionResult =
191
+ | { ok: true }
192
+ | { ok: false; status: 403 | 409 | 502 | 503; reason: string };
193
+
194
+ /**
195
+ * Approve the attached terminal. Carries the developer's fresh `subject_token`
196
+ * (Part A / Finding 3) so the MCP can bind the approval to the dev's own identity —
197
+ * a 403 `approver_mismatch` means the proof didn't match the rendezvous developer;
198
+ * a 409 `not_approvable` means the fingerprint didn't match a waiting terminal.
199
+ */
200
+ export async function approveRendezvous(
201
+ rendezvousCode: string,
202
+ fingerprint: string,
203
+ subjectToken: string,
204
+ deps: RendezvousDeps = {},
205
+ ): Promise<RendezvousDecisionResult> {
206
+ const target = await resolveMcpTarget();
207
+ if (!target) return { ok: false, status: 503, reason: "not-configured" };
208
+ let res: { status: number; body: Record<string, unknown> };
209
+ try {
210
+ res = await callRendezvous(
211
+ target,
212
+ `${RENDEZVOUS_AUDIENCE_PATH}/approve`,
213
+ { rendezvous_code: rendezvousCode, fingerprint, subject_token: subjectToken },
214
+ deps,
215
+ );
216
+ } catch (cause) {
217
+ if (cause instanceof McpClientAssertionError) return { ok: false, status: 503, reason: "assertion-unconfigured" };
218
+ return { ok: false, status: 502, reason: "mcp request failed" };
219
+ }
220
+ if (res.status >= 200 && res.status < 300) return { ok: true };
221
+ if (res.status === 403) return { ok: false, status: 403, reason: String(res.body.error ?? "approver_mismatch") };
222
+ if (res.status === 409) return { ok: false, status: 409, reason: String(res.body.error ?? "not_approvable") };
223
+ const notConfigured = res.status === 401;
224
+ return { ok: false, status: notConfigured ? 503 : 502, reason: `rendezvous approve returned ${res.status}` };
225
+ }
226
+
227
+ /** Reject the attached terminal (the human said "not me"). */
228
+ export async function denyRendezvous(
229
+ rendezvousCode: string,
230
+ deps: RendezvousDeps = {},
231
+ ): Promise<RendezvousDecisionResult> {
232
+ const target = await resolveMcpTarget();
233
+ if (!target) return { ok: false, status: 503, reason: "not-configured" };
234
+ try {
235
+ const res = await callRendezvous(target, `${RENDEZVOUS_AUDIENCE_PATH}/deny`, { rendezvous_code: rendezvousCode }, deps);
236
+ if (res.status >= 200 && res.status < 300) return { ok: true };
237
+ return { ok: false, status: res.status === 401 ? 503 : 502, reason: `rendezvous deny returned ${res.status}` };
238
+ } catch {
239
+ return { ok: false, status: 502, reason: "mcp request failed" };
240
+ }
241
+ }
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Re-issue a FRESH tot20-signed id_token for an already-signed-in developer — the
3
+ * `subject_token` proof the cockpit sends when APPROVING a browserless CLI sign-in
4
+ * rendezvous (Part A / Finding 3).
5
+ *
6
+ * WHY re-issue: the storefront verifies tot20's id_token OFFLINE at sign-in and then
7
+ * DISCARDS it (only derived claims live in the KV session), and it's short-lived —
8
+ * long expired by the time the developer approves. So at approve time we MINT a fresh
9
+ * single-use sign-in token for the session's VERIFIED email and exchange it for a
10
+ * freshly-signed id_token.
11
+ *
12
+ * WHY it closes Finding 3: the mint + exchange authenticate with the storefront's tot20
13
+ * CORE machine credential (TOT_API_KEY/TOT_SECRET_KEY) — a DIFFERENT secret from the MCP
14
+ * broker key. A compromised broker key alone cannot produce this proof.
15
+ *
16
+ * WHY mint, NOT developerInvites: tot20's access-code `/mint` is NOT operator-grant-gated
17
+ * per tenant, whereas developerInvites is (it 403s `notGranted` for a non-staff developer
18
+ * re-attesting themselves on a tenant the storefront doesn't operate). `/mint` binds the
19
+ * token to (email, aud = the storefront's OWN appDomain) — which equals the storefront's
20
+ * MCP client_id, exactly what the MCP binds the subject_token audience to. This is the
21
+ * same non-gated mint the MCP itself uses to power rendezvous creation.
22
+ */
23
+ import { getAccessClient } from "@/lib/auth/route";
24
+ import type { TotAccessClient } from "@/lib/auth/totAccessClient";
25
+
26
+ /** Short — the proof is minted and used immediately at approve time. */
27
+ const SUBJECT_TOKEN_TTL_SECONDS = 120;
28
+
29
+ export type SubjectReissueResult =
30
+ | { ok: true; idToken: string }
31
+ | { ok: false; reason: string };
32
+
33
+ export interface SubjectReissueDeps {
34
+ accessClient?: TotAccessClient | null;
35
+ }
36
+
37
+ /**
38
+ * Produce a fresh subject id_token for `email`. Fail-closed: any gap (unconfigured seam,
39
+ * mint refused, exchange failed / step-up required) returns a typed `{ ok:false, reason }`
40
+ * and NEVER throws — the caller maps that to a refusal to approve. The id_token is returned
41
+ * only to the server; it is never logged.
42
+ */
43
+ export async function reissueSubjectToken(
44
+ email: string,
45
+ deps: SubjectReissueDeps = {},
46
+ ): Promise<SubjectReissueResult> {
47
+ if (!email) return { ok: false, reason: "missing-identity" };
48
+
49
+ const accessClient =
50
+ deps.accessClient !== undefined ? deps.accessClient : await getAccessClient();
51
+ if (!accessClient) return { ok: false, reason: "access-client-unconfigured" };
52
+
53
+ // Mint a fresh single-use sign-in token for the developer's OWN email (bound to the
54
+ // storefront's appDomain as audience — not grant-gated per tenant).
55
+ const minted = await accessClient.mintSignInToken(email, SUBJECT_TOKEN_TTL_SECONDS);
56
+ if (!minted.ok || !minted.token) {
57
+ return { ok: false, reason: minted.ok ? "no-signin-token" : `mint-${minted.reason}` };
58
+ }
59
+
60
+ // Exchange (single-use; tot20 burns it) → a signed federated id_token whose aud is the
61
+ // storefront appDomain and whose email is this developer.
62
+ const exchanged = await accessClient.exchangeSignInToken(minted.token);
63
+ if (!exchanged.ok || !exchanged.id_token) {
64
+ return { ok: false, reason: exchanged.ok ? "no-id-token" : `exchange-${exchanged.reason}` };
65
+ }
66
+ return { ok: true, idToken: exchanged.id_token };
67
+ }
@@ -0,0 +1,80 @@
1
+ /**
2
+ * Cockpit safety-net for the 08-18 vc-app-binding gap (§5): ensure the signed-in
3
+ * developer is bound to storefront's version-control app so their `tot start`
4
+ * checkout (`tenant_checkout`) and the repo tools stop 403-ing "No version-control
5
+ * app is bound to your session."
6
+ *
7
+ * WHY a net at all: the ROOT fix binds every entitled human at the authority seams
8
+ * the MCP owns — grant issuance, rendezvous `/approve`, native OAuth token issuance
9
+ * — plus a one-shot backfill. Those cover the terminal path. This net covers the
10
+ * BROWSER-FIRST developer who reached /cockpit via the storefront's own tot20
11
+ * sign-in (a `tot_session` cookie) WITHOUT ever crossing an MCP binding seam, so
12
+ * they'd otherwise land at cockpit with a `tot start` command that 403s.
13
+ *
14
+ * HOW (mirrors cli-signin-approve): there is NO per-human MCP session server-side —
15
+ * the cockpit reaches the MCP only as the APP (private_key_jwt). So we re-issue a
16
+ * FRESH tot20-signed id_token for the VERIFIED session email (via the storefront's
17
+ * core credential — {@link reissueSubjectToken}, the same proof `/approve` sends)
18
+ * and pass it as the `subject_token` the MCP binds the enrollment to. The app can't
19
+ * assert an arbitrary subject; the MCP verifies the proof + the subject's LIVE
20
+ * entitlement and authors the binding under its own forge authority (ADR-0001).
21
+ *
22
+ * ALWAYS FAIL-OPEN: any gap (proof re-issue failed, MCP cold/unreachable, the
23
+ * endpoint not yet deployed) returns a typed `{ ok:false }` and NEVER throws — the
24
+ * cockpit must render regardless, and the authority-seam binding + backfill are the
25
+ * real guarantees. This is strictly a best-effort accelerator.
26
+ */
27
+ import { createForgeClient } from "@/lib/forge";
28
+ import { reissueSubjectToken } from "@/lib/dev/subjectReissue";
29
+
30
+ export type EnsureCockpitBindingResult =
31
+ | { ok: true; bound: boolean; created: boolean }
32
+ | { ok: false; reason: string };
33
+
34
+ export interface EnsureCockpitBindingDeps {
35
+ /** Override the subject-proof minter (tests). */
36
+ reissue?: typeof reissueSubjectToken;
37
+ /** Override the forge-client factory (tests) — returns something with ensureVcAppBinding. */
38
+ makeForgeClient?: () => Promise<{
39
+ ensureVcAppBinding(opts: {
40
+ subjectToken?: string;
41
+ }): Promise<{ bound: boolean; created: boolean }>;
42
+ }>;
43
+ }
44
+
45
+ /**
46
+ * Ensure the developer identified by their VERIFIED session `email` is bound to the
47
+ * storefront VC app. Best-effort + fail-closed-to-typed-error: never throws.
48
+ */
49
+ export async function ensureCockpitVcBinding(
50
+ email: string,
51
+ deps: EnsureCockpitBindingDeps = {},
52
+ ): Promise<EnsureCockpitBindingResult> {
53
+ if (!email) return { ok: false, reason: "missing-identity" };
54
+
55
+ const reissue = deps.reissue ?? reissueSubjectToken;
56
+ let subjectToken: string;
57
+ try {
58
+ const proof = await reissue(email);
59
+ if (!proof.ok) return { ok: false, reason: `reissue-${proof.reason}` };
60
+ subjectToken = proof.idToken;
61
+ } catch {
62
+ // A re-issue fault must not surface as a cockpit 500.
63
+ return { ok: false, reason: "reissue-threw" };
64
+ }
65
+
66
+ try {
67
+ const client = deps.makeForgeClient
68
+ ? await deps.makeForgeClient()
69
+ : await createForgeClient();
70
+ const res = await client.ensureVcAppBinding({ subjectToken });
71
+ return { ok: true, bound: res.bound, created: res.created };
72
+ } catch (cause) {
73
+ // Fail-open: the ensure endpoint may not be deployed yet, or the MCP may be
74
+ // cold/unreachable. The proof itself is never logged; the reason is a terse code.
75
+ return {
76
+ ok: false,
77
+ reason: "mcp-" + (cause instanceof Error ? cause.name : "error"),
78
+ };
79
+ }
80
+ }
@@ -40,20 +40,20 @@ export function renderMagicLinkInviteEmail(input: MagicLinkInviteEmailInput): {
40
40
  const html = `<!doctype html>
41
41
  <html lang="en">
42
42
  <head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /></head>
43
- <body style="margin:0;padding:0;background:#f5f4f0;">
44
- <div style="max-width:520px;margin:0 auto;padding:32px 20px;font:16px/1.6 -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;color:#1c1c1c;">
45
- <div style="font:600 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.12em;text-transform:uppercase;color:#0f7b6c;margin:0 0 24px;">
43
+ <body style="margin:0;padding:0;background:#f7f9fc;">
44
+ <div style="max-width:520px;margin:0 auto;padding:32px 20px;font:16px/1.6 -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;color:#33415b;">
45
+ <div style="font:600 12px/1 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.12em;text-transform:uppercase;color:#0b7a6d;margin:0 0 24px;">
46
46
  Token of Trust&#169; &middot; ${esc(store)}
47
47
  </div>
48
- <h1 style="font-size:22px;line-height:1.3;letter-spacing:-.01em;margin:0 0 12px;color:#0b1f3a;">You've been invited</h1>
49
- <p style="margin:0 0 8px;color:#3a3a3a;">You've been given developer access to <strong>${esc(store)}</strong>. Click below to sign in — no password needed.</p>
50
- ${note ? `<div style="margin:16px 0;padding:12px 14px;background:#eef4ff;border:1px solid #c3d4f5;border-radius:8px;color:#234;font-size:14px;"><strong>Note from your inviter:</strong><br>${note}</div>` : ""}
48
+ <h1 style="font-size:22px;line-height:1.3;letter-spacing:-.02em;margin:0 0 12px;color:#0a2540;">You've been invited</h1>
49
+ <p style="margin:0 0 8px;color:#33415b;">You've been given developer access to <strong>${esc(store)}</strong>. Click below to sign in — no password needed.</p>
50
+ ${note ? `<div style="margin:16px 0;padding:12px 14px;background:#e7f6f4;border:1px solid #b8e6df;border-radius:10px;color:#0a2540;font-size:14px;"><strong>Note from your inviter:</strong><br>${note}</div>` : ""}
51
51
  <div style="margin:28px 0;">
52
- <a href="${url}" style="display:inline-block;background:#0f7b6c;color:#ffffff;text-decoration:none;font-weight:600;font-size:16px;padding:14px 28px;border-radius:9px;">Sign in to ${esc(store)}</a>
52
+ <a href="${url}" style="display:inline-block;background:#0b7a6d;color:#ffffff;text-decoration:none;font-weight:600;font-size:16px;padding:14px 28px;border-radius:999px;">Sign in to ${esc(store)}</a>
53
53
  </div>
54
- <p style="margin:0 0 4px;font-size:13px;color:#6a6a6a;">Or paste this link into your browser:</p>
55
- <p style="margin:0 0 24px;font-size:13px;word-break:break-all;"><a href="${url}" style="color:#0f7b6c;">${url}</a></p>
56
- <p style="margin:0;font-size:12px;color:#9a9a9a;border-top:1px solid #e6e4de;padding-top:16px;">This is a single-use sign-in link. If you didn't expect this invitation, you can ignore this email.</p>
54
+ <p style="margin:0 0 4px;font-size:13px;color:#55637a;">Or paste this link into your browser:</p>
55
+ <p style="margin:0 0 24px;font-size:13px;word-break:break-all;"><a href="${url}" style="color:#0b7a6d;">${url}</a></p>
56
+ <p style="margin:0;font-size:12px;color:#8593a8;border-top:1px solid #e3e8ef;padding-top:16px;">This is a single-use sign-in link. If you didn't expect this invitation, you can ignore this email.</p>
57
57
  </div>
58
58
  </body>
59
59
  </html>`;
@@ -40,6 +40,44 @@ export async function readEnv(key: string): Promise<string | undefined> {
40
40
  return fromBuild(key);
41
41
  }
42
42
 
43
+ /** The slice of the Workers ExecutionContext runAfterResponse needs — the
44
+ * @astrojs/cloudflare adapter exposes it to routes as `locals.cfContext`. */
45
+ export interface CfExecutionContextLike {
46
+ waitUntil(promise: Promise<unknown>): void;
47
+ }
48
+
49
+ /**
50
+ * Run `work` PAST the response — the request's `ExecutionContext.waitUntil`
51
+ * when the caller passes it, else a detached floating promise (dev/Node). For
52
+ * webhook RECEIVERS that must ACK fast: the upstream forwarder (tot-mcp
53
+ * gitea-webhook proxy) aborts its forward at 15s and Gitea bounds its delivery
54
+ * wait too, while a real reconcile takes tens of seconds — running it inside
55
+ * the request meant every healthy reconcile was killed mid-flight and recorded
56
+ * as `forward_failed` (a layer of Trello 13075, behind the auth fix).
57
+ *
58
+ * CALLERS MUST PASS `locals.cfContext` (the @astrojs/cloudflare adapter's
59
+ * per-request ExecutionContext, `createLocals: { cfContext: ctx }`): in the
60
+ * Workers runtime a merely-floating promise is CANCELLED the moment the
61
+ * response returns — an earlier revision here imported `waitUntil` from
62
+ * `cloudflare:workers` (not exported by this adapter/runtime version), silently
63
+ * degraded to the floating promise, and the async reconcile died unobserved
64
+ * right after its 202. The floating-promise branch is a DEV-ONLY fallback.
65
+ * Errors are the caller's to handle inside `work` (this never throws).
66
+ */
67
+ export function runAfterResponse(
68
+ work: Promise<unknown>,
69
+ cfContext?: CfExecutionContextLike | null,
70
+ ): void {
71
+ const swallowed = work.catch(() => {});
72
+ if (cfContext && typeof cfContext.waitUntil === "function") {
73
+ cfContext.waitUntil(swallowed);
74
+ return;
75
+ }
76
+ // dev/Node only — in the Workers runtime this promise would be cancelled at
77
+ // response end, which is exactly the bug the parameter above exists to avoid.
78
+ void swallowed;
79
+ }
80
+
43
81
  /** KV binding for the newsletter stub / tenant cache, if present in the runtime. */
44
82
  export async function readKv(binding: string): Promise<KVNamespace | undefined> {
45
83
  const w = await getWorkerEnv();
@@ -58,3 +96,28 @@ export async function readR2(binding: string): Promise<R2Bucket | undefined> {
58
96
  const w = await getWorkerEnv();
59
97
  return (w?.[binding] as R2Bucket | undefined) ?? undefined;
60
98
  }
99
+
100
+ /**
101
+ * Cloudflare Analytics Engine dataset binding (e.g. ACTIVITY_ANALYTICS), if
102
+ * present. Untyped (`unknown`) deliberately — the caller casts to its own
103
+ * minimal `writeDataPoint` shape (see `activity/store.ts`'s
104
+ * `AnalyticsEngineLike`) rather than this module taking a types dep. Absent in
105
+ * dev/Node and until the binding is provisioned; callers treat undefined as
106
+ * "analytics sink unavailable, skip it" (never an error).
107
+ */
108
+ export async function readAnalytics(binding: string): Promise<unknown | undefined> {
109
+ const w = await getWorkerEnv();
110
+ return w?.[binding] ?? undefined;
111
+ }
112
+
113
+ /**
114
+ * Cloudflare Queue producer binding (e.g. WEBHOOK_DELIVERY_QUEUE), if present.
115
+ * Untyped (`unknown`) deliberately — callers cast to their own minimal
116
+ * queue-shape interface (see `webhooks/cloudflareQueueDispatcher.ts`'s
117
+ * `CloudflareQueueSender`) rather than this module taking a types dep on a
118
+ * specific binding's shape.
119
+ */
120
+ export async function readQueue(binding: string): Promise<unknown | undefined> {
121
+ const w = await getWorkerEnv();
122
+ return w?.[binding] ?? undefined;
123
+ }
@@ -9,8 +9,13 @@ export function organizationLd(tenant: TenantConfig, base: string) {
9
9
  // Logo sourced from the migrated brand assets (og image / logo), so the
10
10
  // Organization schema reflects the real merchant brand, not a generic favicon.
11
11
  const brand = tenant.theme_tokens?.brand;
12
- const logo =
13
- brand?.ogImage ?? brand?.logoLight ?? new URL("/favicon.svg", base + "/").toString();
12
+ // Absolutize the logo: schema.org wants an absolute URL, and tenant brand
13
+ // assets are stored as site-relative paths (e.g. /tenants/<id>/brand/og.svg).
14
+ // new URL() leaves an already-absolute value untouched.
15
+ const logo = new URL(
16
+ brand?.ogImage ?? brand?.logoLight ?? "/favicon.svg",
17
+ base + "/",
18
+ ).toString();
14
19
  return {
15
20
  "@context": "https://schema.org",
16
21
  "@type": "Organization",
@@ -97,10 +102,11 @@ export function productLd(
97
102
  url,
98
103
  }));
99
104
 
100
- const ratingMf = p.metafields.find(
101
- (m) => m.namespace === "reviews" && m.key === "rating",
102
- );
103
-
105
+ // NO aggregateRating/review here — those are emitted ONLY from real sourced
106
+ // numbers by reviewLd(), which callers merge over this Product graph. Emitting
107
+ // a rating from a bare `reviews.rating` metafield (with a placeholder count)
108
+ // fabricates rich-result markup for stores with no real reviews (e.g. PVC),
109
+ // which violates the review-markup policy (docs/architecture/review-markup-policy.md).
104
110
  return {
105
111
  "@context": "https://schema.org",
106
112
  "@type": "Product",
@@ -121,17 +127,6 @@ export function productLd(
121
127
  : "https://schema.org/OutOfStock",
122
128
  offers,
123
129
  },
124
- ...(ratingMf
125
- ? {
126
- aggregateRating: {
127
- "@type": "AggregateRating",
128
- ratingValue: ratingMf.value,
129
- bestRating: "5",
130
- // ASSUMPTION: review count placeholder; real capture is Phase 2.
131
- ratingCount: 24,
132
- },
133
- }
134
- : {}),
135
130
  };
136
131
  }
137
132