create-ailk 0.1.1 → 0.3.0

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 (284) hide show
  1. package/component-catalog.md +210 -52
  2. package/dist/cli.js +0 -0
  3. package/dist/lib/apply-module-patches.d.ts +47 -0
  4. package/dist/lib/apply-module-patches.js +370 -0
  5. package/dist/lib/extract-module-bundle.d.ts +12 -3
  6. package/dist/lib/extract-module-bundle.js +236 -24
  7. package/dist/lib/fetch-module.d.ts +3 -38
  8. package/dist/lib/fetch-module.js +26 -8
  9. package/dist/lib/module-license-gate.d.ts +2 -0
  10. package/dist/lib/module-license-gate.js +1 -0
  11. package/dist/lib/paid-paths.d.ts +16 -0
  12. package/dist/lib/paid-paths.js +90 -0
  13. package/dist/module-architecture.d.ts +139 -23
  14. package/dist/module-architecture.js +668 -25
  15. package/dist/parse-args.d.ts +2 -2
  16. package/dist/parse-args.js +3 -1
  17. package/dist/programmatic.d.ts +2 -1
  18. package/dist/programmatic.js +15 -4
  19. package/dist/surfaces.d.ts +12 -36
  20. package/dist/surfaces.js +35 -5
  21. package/dist/sync-routes.js +31 -1
  22. package/package.json +14 -15
  23. package/templates/.claude/agents/web.md +2 -3
  24. package/templates/.claude/rules/architecture.md +5 -5
  25. package/templates/.claude/skills/README.md +2 -1
  26. package/templates/.env.example +21 -9
  27. package/templates/CONVENTIONS.md +6 -7
  28. package/templates/apps/api/.env.example +9 -0
  29. package/templates/apps/api/CLAUDE.md +35 -4
  30. package/templates/apps/api/package.json +0 -1
  31. package/templates/apps/api/src/__tests__/cors.test.ts +195 -0
  32. package/templates/apps/api/src/__tests__/module-exclusion.test.ts +60 -2
  33. package/templates/apps/api/src/__tests__/vercel-handler.test.ts +159 -0
  34. package/templates/apps/api/src/config/__tests__/modules.test.ts +76 -0
  35. package/templates/apps/api/src/config/index.ts +19 -0
  36. package/templates/apps/api/src/config/modules.ts +12 -14
  37. package/templates/apps/api/src/lib/__mocks__/prisma.ts +13 -0
  38. package/templates/apps/api/src/lib/__tests__/slice-load.test.ts +89 -0
  39. package/templates/apps/api/src/lib/slice-load.ts +90 -0
  40. package/templates/apps/api/src/openapi/__tests__/openapi.test.ts +52 -32
  41. package/templates/apps/api/src/openapi/__tests__/spec-identity.test.ts +182 -0
  42. package/templates/apps/api/src/openapi/__tests__/surface-drift.test.ts +293 -0
  43. package/templates/apps/api/src/openapi/index.ts +9 -3
  44. package/templates/apps/api/src/openapi/spec.ts +505 -65
  45. package/templates/apps/api/src/openapi/surface-drift.ts +195 -0
  46. package/templates/apps/api/src/routes/content/__tests__/create.test.ts +14 -0
  47. package/templates/apps/api/src/routes/content/__tests__/delete.test.ts +14 -0
  48. package/templates/apps/api/src/routes/content/__tests__/update.test.ts +14 -0
  49. package/templates/apps/api/src/routes/content/index.ts +38 -11
  50. package/templates/apps/api/src/routes/project-listings/__tests__/configured-application.test.ts +28 -0
  51. package/templates/apps/api/src/routes/project-listings/__tests__/drafts.test.ts +144 -0
  52. package/templates/apps/api/src/routes/project-listings/__tests__/founder-identity.test.ts +796 -0
  53. package/templates/apps/api/src/routes/project-listings/__tests__/me.test.ts +478 -0
  54. package/templates/apps/api/src/routes/project-listings/__tests__/public.test.ts +38 -0
  55. package/templates/apps/api/src/routes/project-listings/__tests__/resume-email.test.ts +814 -0
  56. package/templates/apps/api/src/routes/project-listings/__tests__/site-answers.test.ts +717 -0
  57. package/templates/apps/api/src/routes/project-listings/__tests__/site-key.test.ts +35 -0
  58. package/templates/apps/api/src/routes/project-listings/__tests__/structured-address.test.ts +484 -0
  59. package/templates/apps/api/src/routes/project-listings/index.ts +52 -10
  60. package/templates/apps/api/src/routes/project-listings/me.ts +86 -0
  61. package/templates/apps/api/src/routes/project-listings/patch-draft.ts +5 -0
  62. package/templates/apps/api/src/routes/project-listings/public.ts +5 -0
  63. package/templates/apps/api/src/routes/project-listings/respond.ts +11 -0
  64. package/templates/apps/api/src/routes/project-listings/resume-token.ts +5 -0
  65. package/templates/apps/api/src/routes/project-listings/start.ts +38 -0
  66. package/templates/apps/api/src/routes/project-listings/submit.ts +5 -0
  67. package/templates/apps/api/src/routes/project-listings/verify-email.ts +150 -0
  68. package/templates/apps/api/src/server.ts +471 -133
  69. package/templates/apps/api/src/services/__tests__/consent-migration.test.ts +65 -0
  70. package/templates/apps/api/src/services/__tests__/consent.test.ts +282 -0
  71. package/templates/apps/api/src/services/consent.ts +236 -0
  72. package/templates/apps/api/src/services/deliverable-fulfillment.ts +10 -0
  73. package/templates/apps/api/src/services/listing-config.ts +58 -0
  74. package/templates/apps/api/src/services/project-listing-resume-email.ts +326 -0
  75. package/templates/apps/api/src/services/project-listings.ts +602 -29
  76. package/templates/apps/api/src/vercel-handler.ts +60 -26
  77. package/templates/apps/mcp/.env.example +8 -0
  78. package/templates/apps/mcp/CLAUDE.md +2 -2
  79. package/templates/apps/mcp/__tests__/catalog-drift.test.ts +21 -0
  80. package/templates/apps/mcp/__tests__/config/modules.test.ts +78 -0
  81. package/templates/apps/mcp/__tests__/module-exclusion.test.ts +1 -1
  82. package/templates/apps/mcp/src/config/modules.ts +14 -13
  83. package/templates/apps/mcp/src/server.ts +8 -4
  84. package/templates/apps/mcp/src/tools/index.ts +7 -22
  85. package/templates/apps/web/.env.example +15 -0
  86. package/templates/apps/web/app/[locale]/(authed)/{waitlist/__tests__ → __tests__}/gate.test.tsx +4 -4
  87. package/templates/apps/web/app/[locale]/flows/[slug]/FlowStepperClient.tsx +2 -1
  88. package/templates/apps/web/app/[locale]/flows/[slug]/__tests__/FlowStepperClient.permalink.test.tsx +2 -1
  89. package/templates/apps/web/app/[locale]/flows/[slug]/__tests__/FlowStepperClient.test.tsx +2 -1
  90. package/templates/apps/web/app/[locale]/flows/[slug]/__tests__/flow.actions.test.ts +1 -0
  91. package/templates/apps/web/app/[locale]/flows/[slug]/__tests__/two-route-tool.test.tsx +1 -0
  92. package/templates/apps/web/app/[locale]/flows/[slug]/flow.actions.ts +2 -1
  93. package/templates/apps/web/app/[locale]/flows/[slug]/page.tsx +1 -0
  94. package/templates/apps/web/app/[locale]/flows/[slug]/start/page.tsx +1 -0
  95. package/templates/apps/web/app/[locale]/layout.tsx +13 -1
  96. package/templates/apps/web/app/llms.txt/route.ts +12 -9
  97. package/templates/apps/web/jest.config.cjs +20 -13
  98. package/templates/apps/web/lib/__tests__/site-theme.test.ts +112 -0
  99. package/templates/apps/web/lib/site-brand.tsx +4 -1
  100. package/templates/apps/web/lib/site-theme.ts +74 -0
  101. package/templates/apps/web/next.config.mjs +1 -3
  102. package/templates/apps/web/package.json +1 -6
  103. package/templates/apps/web/public/android-chrome-192x192.png +0 -0
  104. package/templates/apps/web/public/android-chrome-512x512.png +0 -0
  105. package/templates/apps/web/public/apple-touch-icon.png +0 -0
  106. package/templates/apps/web/public/favicon-16x16.png +0 -0
  107. package/templates/apps/web/public/favicon-32x32.png +0 -0
  108. package/templates/apps/web/public/favicon.ico +0 -0
  109. package/templates/apps/web/public/favicon.svg +6 -3
  110. package/templates/apps/web/public/lockup-horizontal.svg +4 -0
  111. package/templates/apps/web/public/logomark.svg +4 -0
  112. package/templates/apps/web/public/site.webmanifest +2 -2
  113. package/templates/apps/web/public/wordmark.svg +4 -0
  114. package/templates/content/_site.mdx +12 -0
  115. package/templates/database/CHANGELOG.md +94 -0
  116. package/templates/database/inbox/schema.prisma +165 -0
  117. package/templates/database/migrations/20260911140000_listing_structured_address/migration.sql +32 -0
  118. package/templates/database/migrations/20260911180000_consent_grants/migration.sql +71 -0
  119. package/templates/database/migrations/20260911200000_listing_site_answers/migration.sql +30 -0
  120. package/templates/database/migrations/20260912120000_listing_owner_link/migration.sql +49 -0
  121. package/templates/database/migrations/20260914120000_listing_founder_identity/migration.sql +123 -0
  122. package/templates/database/package.json +1 -1
  123. package/templates/database/scripts/db-generate-locked.sh +0 -0
  124. package/templates/package.json +1 -1
  125. package/templates/.claude/skills/scaffold-commerce/SKILL.md +0 -807
  126. package/templates/.claude/skills/scaffold-commerce/references/lookup-keys-template.md +0 -71
  127. package/templates/.claude/skills/scaffold-commerce/references/marketplace-brand-pages.md +0 -83
  128. package/templates/.claude/skills/scaffold-commerce/templates/checkout-route.template.ts +0 -370
  129. package/templates/.claude/skills/scaffold-commerce/templates/invoice-route.template.ts +0 -376
  130. package/templates/.claude/skills/scaffold-commerce/templates/marketplace-cta-route.tsx.tmpl +0 -72
  131. package/templates/.claude/skills/scaffold-commerce/templates/payment-link-route.template.ts +0 -471
  132. package/templates/.claude/skills/scaffold-commerce/templates/portal-route.template.ts +0 -365
  133. package/templates/.claude/skills/scaffold-commerce/templates/stripe-config.template.ts +0 -60
  134. package/templates/.claude/skills/scaffold-commerce/templates/subscription-route.template.ts +0 -446
  135. package/templates/apps/api/src/__tests__/server.test.ts +0 -253
  136. package/templates/apps/api/src/bin/deliverable-resend.ts +0 -144
  137. package/templates/apps/api/src/bin/deliverable-upload.ts +0 -114
  138. package/templates/apps/api/src/bin/followup-sweep.ts +0 -44
  139. package/templates/apps/api/src/bin/listing-csv-sweep.ts +0 -46
  140. package/templates/apps/api/src/bin/seed-presets.ts +0 -58
  141. package/templates/apps/api/src/bin/seed-waitlist-experiments.ts +0 -104
  142. package/templates/apps/api/src/bin/session-retention-sweep.ts +0 -46
  143. package/templates/apps/api/src/lib/__tests__/stripe.test.ts +0 -74
  144. package/templates/apps/api/src/lib/stripe.ts +0 -52
  145. package/templates/apps/api/src/lib/tenant-db.ts +0 -225
  146. package/templates/apps/api/src/lib/ws-token.ts +0 -91
  147. package/templates/apps/api/src/middleware/tenant.ts +0 -99
  148. package/templates/apps/api/src/routes/billing/__tests__/portal.test.ts +0 -450
  149. package/templates/apps/api/src/routes/billing/__tests__/read.test.ts +0 -262
  150. package/templates/apps/api/src/routes/billing/__tests__/usage.test.ts +0 -436
  151. package/templates/apps/api/src/routes/billing/index.ts +0 -36
  152. package/templates/apps/api/src/routes/billing/portal.ts +0 -182
  153. package/templates/apps/api/src/routes/billing/read.ts +0 -75
  154. package/templates/apps/api/src/routes/billing/usage.ts +0 -153
  155. package/templates/apps/api/src/routes/checkout/__tests__/sessions.test.ts +0 -687
  156. package/templates/apps/api/src/routes/checkout/index.ts +0 -13
  157. package/templates/apps/api/src/routes/checkout/sessions.ts +0 -197
  158. package/templates/apps/api/src/routes/deliverables/__tests__/index.test.ts +0 -393
  159. package/templates/apps/api/src/routes/deliverables/index.ts +0 -200
  160. package/templates/apps/api/src/routes/flow-checkouts/__tests__/index.test.ts +0 -443
  161. package/templates/apps/api/src/routes/flow-checkouts/index.ts +0 -82
  162. package/templates/apps/api/src/routes/flows/README.md +0 -147
  163. package/templates/apps/api/src/routes/flows/__tests__/index.test.ts +0 -752
  164. package/templates/apps/api/src/routes/flows/__tests__/recommender.test.ts +0 -671
  165. package/templates/apps/api/src/routes/flows/index.ts +0 -202
  166. package/templates/apps/api/src/routes/flows/recommender.ts +0 -443
  167. package/templates/apps/api/src/routes/project-listings/__tests__/copy-edit.test.ts +0 -815
  168. package/templates/apps/api/src/routes/project-listings/__tests__/tenant-isolation.test.ts +0 -566
  169. package/templates/apps/api/src/routes/project-listings/get.ts +0 -70
  170. package/templates/apps/api/src/routes/project-listings/list.ts +0 -47
  171. package/templates/apps/api/src/routes/project-listings/patch.ts +0 -136
  172. package/templates/apps/api/src/routes/schedule/__tests__/index.test.ts +0 -490
  173. package/templates/apps/api/src/routes/schedule/index.ts +0 -249
  174. package/templates/apps/api/src/routes/slack/__tests__/actions.test.ts +0 -385
  175. package/templates/apps/api/src/routes/slack/actions.ts +0 -177
  176. package/templates/apps/api/src/routes/slack/index.ts +0 -38
  177. package/templates/apps/api/src/routes/waitlist-experiments/__tests__/tenant-isolation.test.ts +0 -577
  178. package/templates/apps/api/src/routes/waitlist-experiments/comparison.ts +0 -78
  179. package/templates/apps/api/src/routes/waitlist-experiments/index.ts +0 -41
  180. package/templates/apps/api/src/routes/waitlist-experiments/list.ts +0 -64
  181. package/templates/apps/api/src/routes/waitlist-experiments/respond.ts +0 -42
  182. package/templates/apps/api/src/routes/waitlist-experiments/signup.ts +0 -84
  183. package/templates/apps/api/src/routes/waitlist-experiments/signups.ts +0 -119
  184. package/templates/apps/api/src/routes/waitlist-signups/__tests__/index.test.ts +0 -238
  185. package/templates/apps/api/src/routes/waitlist-signups/index.ts +0 -101
  186. package/templates/apps/api/src/routes/webhooks/README.md +0 -80
  187. package/templates/apps/api/src/routes/webhooks/__tests__/stripe-flow-checkout.test.ts +0 -315
  188. package/templates/apps/api/src/routes/webhooks/__tests__/stripe-idempotency.test.ts +0 -247
  189. package/templates/apps/api/src/routes/webhooks/__tests__/stripe-org-billing.test.ts +0 -270
  190. package/templates/apps/api/src/routes/webhooks/__tests__/stripe-rate-limit.test.ts +0 -198
  191. package/templates/apps/api/src/routes/webhooks/__tests__/stripe.test.ts +0 -633
  192. package/templates/apps/api/src/routes/webhooks/index.ts +0 -41
  193. package/templates/apps/api/src/routes/webhooks/stripe.ts +0 -481
  194. package/templates/apps/api/src/routes/workspaces/__tests__/config-tenant-isolation.test.ts +0 -356
  195. package/templates/apps/api/src/routes/workspaces/__tests__/tenant-isolation.test.ts +0 -671
  196. package/templates/apps/api/src/routes/workspaces/config.ts +0 -125
  197. package/templates/apps/api/src/routes/workspaces/index.ts +0 -194
  198. package/templates/apps/api/src/routes/workspaces/sessions.ts +0 -218
  199. package/templates/apps/api/src/services/__tests__/flow-aggregate.test.ts +0 -425
  200. package/templates/apps/api/src/services/__tests__/flow-engine.test.ts +0 -2840
  201. package/templates/apps/api/src/services/__tests__/lead-promotion.test.ts +0 -393
  202. package/templates/apps/api/src/services/__tests__/listing-csv-sweep.test.ts +0 -560
  203. package/templates/apps/api/src/services/__tests__/playbook-compile.test.ts +0 -406
  204. package/templates/apps/api/src/services/__tests__/playbook-render.test.ts +0 -290
  205. package/templates/apps/api/src/services/__tests__/project-listing-decision.test.ts +0 -736
  206. package/templates/apps/api/src/services/__tests__/project-listing-flow.test.ts +0 -475
  207. package/templates/apps/api/src/services/__tests__/project-listing-issue.test.ts +0 -340
  208. package/templates/apps/api/src/services/__tests__/recommender-capture.test.ts +0 -983
  209. package/templates/apps/api/src/services/__tests__/tenant-context-cascade.test.ts +0 -71
  210. package/templates/apps/api/src/services/__tests__/tenant-context.test.ts +0 -379
  211. package/templates/apps/api/src/services/__tests__/usage-metering.test.ts +0 -768
  212. package/templates/apps/api/src/services/__tests__/waitlist-dashboard.test.ts +0 -1314
  213. package/templates/apps/api/src/services/__tests__/waitlist-experiments.test.ts +0 -341
  214. package/templates/apps/api/src/services/__tests__/waitlist-followup.test.ts +0 -567
  215. package/templates/apps/api/src/services/__tests__/waitlist-scoring.test.ts +0 -474
  216. package/templates/apps/api/src/services/__tests__/waitlist-signups.test.ts +0 -354
  217. package/templates/apps/api/src/services/flow-aggregate.ts +0 -232
  218. package/templates/apps/api/src/services/flow-checkouts.ts +0 -123
  219. package/templates/apps/api/src/services/flow-engine.ts +0 -1278
  220. package/templates/apps/api/src/services/lead-promotion.ts +0 -176
  221. package/templates/apps/api/src/services/listing-csv-sweep.ts +0 -455
  222. package/templates/apps/api/src/services/playbook-compile.ts +0 -398
  223. package/templates/apps/api/src/services/playbook-render.ts +0 -263
  224. package/templates/apps/api/src/services/project-listing-decision.ts +0 -490
  225. package/templates/apps/api/src/services/project-listing-flow.ts +0 -426
  226. package/templates/apps/api/src/services/project-listing-issue.ts +0 -251
  227. package/templates/apps/api/src/services/recommender-capture.ts +0 -835
  228. package/templates/apps/api/src/services/scheduling/cal-provider.ts +0 -392
  229. package/templates/apps/api/src/services/scheduling/index.ts +0 -63
  230. package/templates/apps/api/src/services/scheduling/types.ts +0 -88
  231. package/templates/apps/api/src/services/tenant-context.ts +0 -451
  232. package/templates/apps/api/src/services/usage-metering.ts +0 -699
  233. package/templates/apps/api/src/services/waitlist-dashboard.ts +0 -947
  234. package/templates/apps/api/src/services/waitlist-experiments.ts +0 -213
  235. package/templates/apps/api/src/services/waitlist-followup.ts +0 -486
  236. package/templates/apps/api/src/services/waitlist-scoring.ts +0 -166
  237. package/templates/apps/api/src/services/waitlist-signups.ts +0 -165
  238. package/templates/apps/mcp/__tests__/schedule_tools.test.ts +0 -242
  239. package/templates/apps/mcp/src/tools/create_booking.ts +0 -58
  240. package/templates/apps/mcp/src/tools/get_event_meta.ts +0 -55
  241. package/templates/apps/mcp/src/tools/get_flow.ts +0 -61
  242. package/templates/apps/mcp/src/tools/list_availability.ts +0 -67
  243. package/templates/apps/mcp/src/tools/submit_flow_step.ts +0 -83
  244. package/templates/apps/web/app/[locale]/(authed)/waitlist/[experimentId]/page.tsx +0 -309
  245. package/templates/apps/web/app/[locale]/(authed)/waitlist/[experimentId]/signups/[leadId]/page.tsx +0 -149
  246. package/templates/apps/web/app/[locale]/(authed)/waitlist/__tests__/comparison.test.tsx +0 -273
  247. package/templates/apps/web/app/[locale]/(authed)/waitlist/__tests__/list.test.tsx +0 -171
  248. package/templates/apps/web/app/[locale]/(authed)/waitlist/__tests__/signup.test.tsx +0 -179
  249. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/ExperimentsTable.tsx +0 -116
  250. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/OfferFunnelTable.tsx +0 -66
  251. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/RollupTicker.tsx +0 -61
  252. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/ScoreTrace.tsx +0 -114
  253. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/SignupsTable.tsx +0 -139
  254. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/WaitlistComparisonTabs.tsx +0 -85
  255. package/templates/apps/web/app/[locale]/(authed)/waitlist/components/status-badges.tsx +0 -67
  256. package/templates/apps/web/app/[locale]/(authed)/waitlist/page.tsx +0 -179
  257. package/templates/apps/web/app/[locale]/blog/[[...slug]]/page.tsx +0 -178
  258. package/templates/apps/web/app/[locale]/dev/purchase/__tests__/actions.test.ts +0 -160
  259. package/templates/apps/web/app/[locale]/dev/purchase/error.tsx +0 -25
  260. package/templates/apps/web/app/[locale]/dev/purchase/page.tsx +0 -117
  261. package/templates/apps/web/app/[locale]/dev/purchase/purchase.actions.ts +0 -58
  262. package/templates/apps/web/app/[locale]/docs/[[...slug]]/page.tsx +0 -119
  263. package/templates/apps/web/app/[locale]/flows/[slug]/__tests__/checkout.actions.test.ts +0 -287
  264. package/templates/apps/web/app/[locale]/flows/[slug]/checkout.actions.ts +0 -254
  265. package/templates/apps/web/app/[locale]/flows/[slug]/results/[payload]/ResultsClient.tsx +0 -532
  266. package/templates/apps/web/app/[locale]/flows/[slug]/results/[payload]/ResultsEmailStep.tsx +0 -121
  267. package/templates/apps/web/app/[locale]/flows/[slug]/results/[payload]/__tests__/ResultsClient.checkout.test.tsx +0 -457
  268. package/templates/apps/web/app/[locale]/flows/[slug]/results/[payload]/__tests__/page.test.tsx +0 -396
  269. package/templates/apps/web/app/[locale]/flows/[slug]/results/[payload]/page.tsx +0 -114
  270. package/templates/apps/web/app/[locale]/projects/apply/ListingApplicationClient.tsx +0 -110
  271. package/templates/apps/web/app/[locale]/projects/apply/__tests__/ListingApplicationClient.test.tsx +0 -96
  272. package/templates/apps/web/app/[locale]/schedule/__tests__/page.test.tsx +0 -117
  273. package/templates/apps/web/app/[locale]/schedule/confirmed/__tests__/page.test.tsx +0 -96
  274. package/templates/apps/web/app/[locale]/schedule/confirmed/page.tsx +0 -92
  275. package/templates/apps/web/app/[locale]/schedule/page.tsx +0 -82
  276. package/templates/apps/web/content/en/blog/README.txt +0 -25
  277. package/templates/apps/web/content/en/docs/index.mdx +0 -28
  278. package/templates/apps/web/lib/__mocks__/source-server.js +0 -31
  279. package/templates/apps/web/lib/blog-list-data.ts +0 -95
  280. package/templates/apps/web/lib/blog-post-data.ts +0 -79
  281. package/templates/apps/web/lib/source.ts +0 -34
  282. package/templates/apps/web/public/logomark-dark.svg +0 -4
  283. package/templates/apps/web/public/logomark-light.svg +0 -4
  284. package/templates/apps/web/source.config.ts +0 -78
@@ -1,61 +0,0 @@
1
- /**
2
- * get_flow — serve a validated flow config (#3956 D7).
3
- *
4
- * Validates input via Zod, forwards to GET /v1/flows/:slug via
5
- * @working-theory/api-client, and shapes the response into the MCP output
6
- * schema. No business logic — orchestration lives in apps/api (flow-engine.ts).
7
- *
8
- * Both routes are agent-callable (a chat agent can serve and walk a flow) —
9
- * the input/output schemas are the SAME `@working-theory/validation` schemas
10
- * the HTTP route itself validates against (D7 — no simplified MCP-only
11
- * shape, unlike capture_lead's decoupled input). The `getFlowOutputSchema`
12
- * export covers the success shape; the error branch below is composed
13
- * locally (mcp-tool-catalog.ts can only import from `@working-theory/validation`,
14
- * not from this file, so the catalog's outputShape stays the plain success
15
- * schema — the same best-effort-documentation shape `read_content`'s
16
- * `.nullable()` output already carries for its own not-found branch).
17
- */
18
-
19
- import { apiClient } from "@working-theory/api-client";
20
- import {
21
- flowSlugSchema,
22
- getFlowOutputSchema,
23
- type FlowConfig,
24
- } from "@working-theory/validation";
25
- import { z } from "zod";
26
-
27
- export const getFlowInputSchema = z.object({
28
- slug: flowSlugSchema,
29
- });
30
-
31
- export { getFlowOutputSchema };
32
-
33
- export type GetFlowInput = z.infer<typeof getFlowInputSchema>;
34
-
35
- export type AilkGetFlowOutput =
36
- | { ok: true; data: FlowConfig }
37
- | {
38
- ok: false;
39
- error:
40
- | { kind: "invalid_input"; issues: unknown[] }
41
- | { kind: "api_error"; status: number };
42
- };
43
-
44
- export async function ailkGetFlow(
45
- input: GetFlowInput,
46
- ): Promise<AilkGetFlowOutput> {
47
- const parsed = getFlowInputSchema.safeParse(input);
48
- if (!parsed.success) {
49
- return {
50
- ok: false,
51
- error: { kind: "invalid_input", issues: parsed.error.issues },
52
- };
53
- }
54
-
55
- const res = await apiClient.flows.get(parsed.data.slug);
56
- if (!res.ok) {
57
- return { ok: false, error: { kind: "api_error", status: res.status } };
58
- }
59
-
60
- return { ok: true, data: res.body };
61
- }
@@ -1,67 +0,0 @@
1
- // oss: false
2
- /**
3
- * list_availability — read open booking slots for an event (#4416).
4
- *
5
- * The MCP twin of `GET /v1/schedule/availability` (API↔MCP parity, root
6
- * CLAUDE.md). Validates input via Zod, forwards through
7
- * `@working-theory/api-client`, and shapes the response into the MCP output
8
- * schema. No business logic and no credential: the scheduling key lives in
9
- * apps/api, so an agent gets the same answer a browser does without ever
10
- * being near it.
11
- *
12
- * MCP-only — there is no web Server Action twin. The `booker` section is a
13
- * client island that calls the HTTP route directly (the ContactForm /
14
- * StepFlow pattern), so this tool exists to give agents the same read, not to
15
- * back a web form. Listed in `MCP_ONLY_TOOLS` in apps/mcp/__tests__/parity.test.ts.
16
- *
17
- * Input: { calLink, from, to, timeZone? }
18
- * Output: { ok: true, data: { event, slots } } | { ok: false, error: { kind } }
19
- * Session/scope: none — anonymous, identity-blind (apps/mcp/CLAUDE.md).
20
- */
21
-
22
- import { apiClient } from "@working-theory/api-client";
23
- import {
24
- listAvailabilityInputSchema,
25
- listAvailabilityOutputSchema,
26
- type ListAvailabilityInput,
27
- type ListAvailabilityOutput,
28
- type SchedulingErrorKind,
29
- } from "@working-theory/validation";
30
-
31
- export { listAvailabilityInputSchema, listAvailabilityOutputSchema };
32
- export type { ListAvailabilityInput, ListAvailabilityOutput };
33
-
34
- /**
35
- * Map the route's HTTP status back to the shared error vocabulary, so an
36
- * agent reads the SAME `kind` the route emitted rather than a bare number.
37
- * Parity is on the code, not just the endpoint (apps/api/CLAUDE.md).
38
- */
39
- export function schedulingKindFromStatus(status: number): SchedulingErrorKind {
40
- if (status === 400) return "invalid_input";
41
- if (status === 404) return "event_not_found";
42
- if (status === 409) return "slot_unavailable";
43
- if (status === 503) return "not_configured";
44
- return "provider_error";
45
- }
46
-
47
- export async function ailkListAvailability(
48
- input: ListAvailabilityInput,
49
- ): Promise<ListAvailabilityOutput> {
50
- const parsed = listAvailabilityInputSchema.safeParse(input);
51
- if (!parsed.success) {
52
- return {
53
- ok: false,
54
- error: {
55
- kind: "invalid_input",
56
- message: parsed.error.issues[0]?.message ?? "Invalid input.",
57
- },
58
- };
59
- }
60
-
61
- const res = await apiClient.schedule.availability(parsed.data);
62
- if (!res.ok) {
63
- return { ok: false, error: { kind: schedulingKindFromStatus(res.status) } };
64
- }
65
-
66
- return listAvailabilityOutputSchema.parse({ ok: true, data: res.body });
67
- }
@@ -1,83 +0,0 @@
1
- /**
2
- * submit_flow_step — submit one step's answers (#3956 D7).
3
- *
4
- * Validates input via Zod, forwards to POST /v1/flows/:slug/steps via
5
- * @working-theory/api-client, and shapes the response into the MCP output
6
- * schema. No business logic — orchestration lives in apps/api (flow-engine.ts).
7
- *
8
- * The input shape composes `submitFlowStepInputSchema.shape` (D1's exact
9
- * field validators — sessionId/stepKey/values/locale) with the `slug` the
10
- * flat MCP input needs in place of the route's URL path segment. Same D7
11
- * "reuse the route's own schemas" contract as get_flow — the catalog's
12
- * outputShape stays the plain success schema for the same layering reason
13
- * documented there.
14
- */
15
-
16
- import { apiClient } from "@working-theory/api-client";
17
- import {
18
- flowSlugSchema,
19
- submitFlowStepInputSchema,
20
- submitFlowStepOutputSchema,
21
- type AeoScoreResult,
22
- } from "@working-theory/validation";
23
- import { z } from "zod";
24
-
25
- export const submitFlowStepInputSchemaForTool = z
26
- .object({
27
- slug: flowSlugSchema,
28
- ...submitFlowStepInputSchema.shape,
29
- })
30
- .strict();
31
-
32
- export { submitFlowStepOutputSchema };
33
-
34
- export type SubmitFlowStepInput = z.infer<
35
- typeof submitFlowStepInputSchemaForTool
36
- >;
37
-
38
- export type AilkSubmitFlowStepOutput =
39
- | {
40
- ok: true;
41
- data: {
42
- sessionId: string;
43
- landed: string;
44
- nextStepKey: string | null;
45
- completed: boolean;
46
- leadId?: string;
47
- /** Server-derived segment (#3959 D6) — present from the segmentation-step response onward. */
48
- segment?: string;
49
- /** D9 (#4663) — present on the aeo_score step's own response AND on the completion response when the flow declares one. */
50
- aeoScore?: AeoScoreResult;
51
- };
52
- }
53
- | {
54
- ok: false;
55
- error:
56
- | { kind: "invalid_input"; issues: unknown[] }
57
- | { kind: "api_error"; status: number };
58
- };
59
-
60
- export async function ailkSubmitFlowStep(
61
- input: SubmitFlowStepInput,
62
- ): Promise<AilkSubmitFlowStepOutput> {
63
- const parsed = submitFlowStepInputSchemaForTool.safeParse(input);
64
- if (!parsed.success) {
65
- return {
66
- ok: false,
67
- error: { kind: "invalid_input", issues: parsed.error.issues },
68
- };
69
- }
70
-
71
- const { slug, sessionId, stepKey, values, locale } = parsed.data;
72
- const res = await apiClient.flows.submitStep(slug, {
73
- ...(sessionId !== undefined && { sessionId }),
74
- stepKey,
75
- values,
76
- ...(locale !== undefined && { locale }),
77
- });
78
- if (!res.ok) {
79
- return { ok: false, error: { kind: "api_error", status: res.status } };
80
- }
81
-
82
- return { ok: true, data: res.body };
83
- }
@@ -1,309 +0,0 @@
1
- /**
2
- * /[locale]/waitlist/[experimentId] — the operator dashboard's comparison
3
- * view + paginated signups (#4665 D10, AC2/AC4).
4
- *
5
- * RSC: reads `GET /v1/waitlist-experiments/:experimentId` (comparison) and
6
- * `GET …/signups` (paginated) through `@working-theory/api-client`'s
7
- * `waitlistExperiments` namespace, forwarding the caller's cookie session.
8
- * A 404 calls `notFound()`; a 401/403 renders `ForbiddenState`.
9
- */
10
-
11
- import { waitlistExperiments } from "@working-theory/api-client";
12
- import {
13
- DescriptionList,
14
- DetailHeader,
15
- MetricComparisonTable,
16
- } from "@working-theory/ui/blocks";
17
- import { Container } from "@working-theory/ui/primitives";
18
- import type {
19
- WaitlistExperimentComparison,
20
- WaitlistMetricRow,
21
- } from "@working-theory/validation";
22
- import { resolveLocalizedString } from "@working-theory/validation";
23
- import type { Metadata } from "next";
24
- import { notFound } from "next/navigation";
25
- import { getTranslations } from "next-intl/server";
26
- import { isValidElement } from "react";
27
- import type { ReactElement } from "react";
28
-
29
- import { ApiError, forwardedCookieInit, unwrapApiResult } from "../../../../../lib/server-api";
30
- import { ForbiddenState } from "../components/ForbiddenState";
31
- import { SignupsTable } from "../components/SignupsTable";
32
- import { ExperimentModeBadge, ExperimentStatusBadge } from "../components/status-badges";
33
- import type { WaitlistTab } from "../components/WaitlistComparisonTabs";
34
- import { WaitlistComparisonTabs } from "../components/WaitlistComparisonTabs";
35
- import { formatCount, formatDateTime, formatRate, targetingMaturityLevel } from "../format";
36
-
37
- const DEFAULT_LOCALE = "en";
38
-
39
- interface Props {
40
- params: Promise<{ locale: string; experimentId: string }>;
41
- searchParams: Promise<{ waitlist?: string; cursor?: string }>;
42
- }
43
-
44
- export async function generateMetadata({ params }: Props): Promise<Metadata> {
45
- const { locale, experimentId } = await params;
46
- const t = await getTranslations({ locale, namespace: "waitlistDashboard.comparison" });
47
-
48
- try {
49
- const comparison = await unwrapApiResult(
50
- waitlistExperiments.comparison(experimentId, await forwardedCookieInit()),
51
- );
52
- return { title: comparison.experiment.key };
53
- } catch (err) {
54
- // A genuine 404 gets the "not found" title; any other failure (a
55
- // network error, a 401/403, a 500) gets a neutral fallback rather than
56
- // misreporting a real backend error as "this doesn't exist" (#4665
57
- // code-review finding).
58
- if (err instanceof ApiError && err.status === 404) {
59
- return { title: t("notFoundHeadline") };
60
- }
61
- return { title: t("genericTitle") };
62
- }
63
- }
64
-
65
- function metricCell(
66
- row: WaitlistMetricRow,
67
- kind: "raw" | "qualified" | "rate" | { tier: string },
68
- locale: string,
69
- unavailable: string,
70
- ): { display: string; value: number | null } {
71
- if (kind === "raw") return { display: formatCount(row.raw, locale), value: row.raw };
72
- if (kind === "qualified") {
73
- return row.qualified === null
74
- ? { display: unavailable, value: null }
75
- : { display: formatCount(row.qualified, locale), value: row.qualified };
76
- }
77
- if (kind === "rate") {
78
- return { display: formatRate(row.qualificationRate, locale), value: row.qualificationRate };
79
- }
80
- const found = row.byTier.find((t) => t.tier === kind.tier);
81
- const count = found?.count ?? 0;
82
- return { display: formatCount(count, locale), value: count };
83
- }
84
-
85
- export default async function WaitlistComparisonPage({
86
- params,
87
- searchParams,
88
- }: Props): Promise<ReactElement> {
89
- const { locale, experimentId } = await params;
90
- const { waitlist: waitlistFilter, cursor } = await searchParams;
91
- const t = await getTranslations({ locale, namespace: "waitlistDashboard" });
92
- const unavailable = t("common.unavailable");
93
-
94
- const init = await forwardedCookieInit();
95
-
96
- // Shared error mapping for every read on this page — the comparison AND the
97
- // signups reads must both degrade the same way (404 -> notFound(), 401/403
98
- // -> ForbiddenState) rather than only the first read being guarded (#4665
99
- // code-review finding: an unguarded second fetch throws straight to the
100
- // route's generic error boundary instead of matching the first read's
101
- // handling).
102
- async function readOrRespond<T>(
103
- result: Promise<T>,
104
- ): Promise<T | ReactElement> {
105
- try {
106
- return await result;
107
- } catch (err) {
108
- if (err instanceof ApiError) {
109
- if (err.status === 404) notFound();
110
- if (err.status === 401 || err.status === 403) {
111
- return (
112
- <ForbiddenState
113
- headline={t("common.forbiddenHeadline")}
114
- description={t("common.forbiddenDescription")}
115
- />
116
- );
117
- }
118
- }
119
- throw err;
120
- }
121
- }
122
-
123
- const comparisonOrResponse = await readOrRespond(
124
- unwrapApiResult(waitlistExperiments.comparison(experimentId, init)),
125
- );
126
- if (isValidElement(comparisonOrResponse)) return comparisonOrResponse;
127
- const comparison: WaitlistExperimentComparison = comparisonOrResponse;
128
-
129
- const signupsOrResponse = await readOrRespond(
130
- unwrapApiResult(
131
- waitlistExperiments.signups(
132
- experimentId,
133
- {
134
- ...(waitlistFilter ? { waitlist: waitlistFilter } : {}),
135
- ...(cursor ? { cursor } : {}),
136
- },
137
- init,
138
- ),
139
- ),
140
- );
141
- if (isValidElement(signupsOrResponse)) return signupsOrResponse;
142
- const signupsResult = signupsOrResponse;
143
-
144
- // ── Top comparison table (columns = waitlists + total) ────────────────────
145
- const columns = [
146
- ...comparison.waitlists.map((w) => ({ key: w.key, label: w.key })),
147
- { key: "total", label: t("comparison.columnTotal") },
148
- ];
149
- const allMetricRows = [...comparison.waitlists, comparison.total];
150
- const tierKeys = Array.from(
151
- new Set(allMetricRows.flatMap((row) => row.byTier.map((tier) => tier.tier))),
152
- );
153
-
154
- const cellsFor = (kind: "raw" | "qualified" | "rate" | { tier: string }) => {
155
- const cells: Record<string, { display: string; value: number | null }> = {};
156
- for (const w of comparison.waitlists) cells[w.key] = metricCell(w, kind, locale, unavailable);
157
- cells.total = metricCell(comparison.total, kind, locale, unavailable);
158
- return cells;
159
- };
160
-
161
- const topRows = [
162
- { key: "raw", label: t("comparison.rowRaw"), cells: cellsFor("raw") },
163
- { key: "qualified", label: t("comparison.rowQualified"), cells: cellsFor("qualified") },
164
- { key: "rate", label: t("comparison.rowRate"), cells: cellsFor("rate") },
165
- // AC-5 — the Level distribution: for targeting-maturity, each row's
166
- // label is its Level ("Level N" / the Gate label), never the raw
167
- // `level_N` tier string; every other experiment renders exactly as
168
- // before (targetingMaturityLevel returns null — D5, byte-unchanged floor).
169
- ...tierKeys.map((tier) => {
170
- const level = targetingMaturityLevel(tier, comparison.experiment.key);
171
- const label =
172
- level === null
173
- ? `${t("comparison.tierRowPrefix")}: ${tier}`
174
- : level === 0
175
- ? t("level.gate")
176
- : t("level.label", { n: level });
177
- return { key: `tier-${tier}`, label, cells: cellsFor({ tier }) };
178
- }),
179
- ];
180
-
181
- // ── Per-waitlist tabs (by-source table + per-question distributions) ──────
182
- const tabs: WaitlistTab[] = comparison.waitlists.map((row) => ({
183
- key: row.key,
184
- label: row.key,
185
- bySourceCaption: t("comparison.bySourceCaption"),
186
- bySourceRowHeaderLabel: t("comparison.bySourceColumnSource"),
187
- bySourceColumns: [
188
- { key: "raw", label: t("comparison.bySourceColumnRaw") },
189
- { key: "qualified", label: t("comparison.bySourceColumnQualified") },
190
- { key: "rate", label: t("comparison.bySourceColumnRate") },
191
- ],
192
- bySourceRows: row.bySource.map((source) => ({
193
- key: source.source,
194
- label: source.source,
195
- cells: {
196
- raw: { display: formatCount(source.raw, locale), value: source.raw },
197
- qualified:
198
- source.qualified === null
199
- ? { display: unavailable, value: null }
200
- : { display: formatCount(source.qualified, locale), value: source.qualified },
201
- rate: { display: formatRate(source.qualificationRate, locale), value: source.qualificationRate },
202
- },
203
- })),
204
- distributions: row.distributions.map((distribution) => {
205
- const question = comparison.questions.find((q) => q.id === distribution.questionId);
206
- const prompt = question
207
- ? resolveLocalizedString(question.prompt, locale, DEFAULT_LOCALE)
208
- : distribution.questionId;
209
- return {
210
- questionId: distribution.questionId,
211
- title: prompt,
212
- answered: distribution.answered,
213
- answeredLabel: t("comparison.distributionAnswered", { count: distribution.answered }),
214
- emptyLabel: t("comparison.distributionNoAnswers"),
215
- items: distribution.options.map((option) => {
216
- const declared = question?.options?.find((o) => o.value === option.value);
217
- const label = declared
218
- ? resolveLocalizedString(declared.label, locale, DEFAULT_LOCALE)
219
- : option.value;
220
- return {
221
- label,
222
- count: option.count,
223
- share: option.share,
224
- display: formatRate(option.share, locale),
225
- };
226
- }),
227
- };
228
- }),
229
- }));
230
-
231
- const signupRows = signupsResult.items.map((signup) => {
232
- const level = targetingMaturityLevel(signup.tier, comparison.experiment.key);
233
- const tierDisplay =
234
- level === null ? signup.tier : level === 0 ? t("level.gate") : t("level.label", { n: level });
235
- return {
236
- signup,
237
- created: formatDateTime(signup.createdAt, locale),
238
- score: signup.score === null ? null : formatCount(signup.score, locale),
239
- tierDisplay,
240
- };
241
- });
242
-
243
- return (
244
- <main className="min-h-screen bg-surface text-fg" data-testid="waitlist-comparison-page">
245
- <DetailHeader
246
- breadcrumb={[
247
- { label: t("comparison.breadcrumbExperiments"), href: `/${locale}/waitlist` },
248
- { label: comparison.experiment.key },
249
- ]}
250
- title={comparison.experiment.key}
251
- typeBadge={
252
- <div className="flex gap-2">
253
- <ExperimentModeBadge
254
- mode={comparison.experiment.mode}
255
- label={t(`mode.${comparison.experiment.mode}`)}
256
- />
257
- <ExperimentStatusBadge
258
- status={comparison.experiment.status}
259
- label={t(`status.${comparison.experiment.status}`)}
260
- />
261
- </div>
262
- }
263
- />
264
- <Container className="flex flex-col gap-8 py-section">
265
- <DescriptionList
266
- items={[
267
- { label: t("comparison.site"), value: comparison.experiment.siteId },
268
- {
269
- label: t("comparison.created"),
270
- value: formatDateTime(comparison.experiment.createdAt, locale),
271
- },
272
- {
273
- label: t("comparison.waitlistsCount"),
274
- value: String(comparison.experiment.waitlists.length),
275
- },
276
- ]}
277
- />
278
-
279
- <MetricComparisonTable
280
- caption={t("comparison.tableCaption")}
281
- columns={columns}
282
- rows={topRows}
283
- emphasisColumnKey="total"
284
- />
285
-
286
- <WaitlistComparisonTabs tabs={tabs} />
287
-
288
- <SignupsTable
289
- locale={locale}
290
- experimentId={experimentId}
291
- {...(waitlistFilter ? { waitlist: waitlistFilter } : {})}
292
- rows={signupRows}
293
- nextCursor={signupsResult.nextCursor}
294
- labels={{
295
- caption: t("comparison.signupsCaption"),
296
- columnEmail: t("comparison.signupsColumnEmail"),
297
- columnWaitlist: t("comparison.signupsColumnWaitlist"),
298
- columnSource: t("comparison.signupsColumnSource"),
299
- columnCreated: t("comparison.signupsColumnCreated"),
300
- columnTier: t("comparison.signupsColumnTier"),
301
- columnScore: t("comparison.signupsColumnScore"),
302
- unavailable,
303
- next: t("comparison.signupsNext"),
304
- }}
305
- />
306
- </Container>
307
- </main>
308
- );
309
- }
@@ -1,149 +0,0 @@
1
- /**
2
- * /[locale]/waitlist/[experimentId]/signups/[leadId] — the operator
3
- * dashboard's signup drill-down view (#4665 D10, AC3).
4
- *
5
- * RSC: reads `GET …/signups/:leadId` through
6
- * `@working-theory/api-client`'s `waitlistExperiments.signup`, forwarding
7
- * the caller's cookie session. A 404 calls `notFound()`; a 401/403 renders
8
- * `ForbiddenState`.
9
- */
10
-
11
- import { waitlistExperiments } from "@working-theory/api-client";
12
- import { DescriptionList, DetailHeader } from "@working-theory/ui/blocks";
13
- import { Container } from "@working-theory/ui/primitives";
14
- import { resolveLocalizedString } from "@working-theory/validation";
15
- import type { Metadata } from "next";
16
- import { notFound } from "next/navigation";
17
- import { getTranslations } from "next-intl/server";
18
- import type { ReactElement } from "react";
19
-
20
- import { ApiError, forwardedCookieInit, unwrapApiResult } from "../../../../../../../lib/server-api";
21
- import { ForbiddenState } from "../../../components/ForbiddenState";
22
- import { ScoreTrace } from "../../../components/ScoreTrace";
23
- import { decidingDefsFor, formatCount, formatDateTime } from "../../../format";
24
-
25
- const DEFAULT_LOCALE = "en";
26
-
27
- interface Props {
28
- params: Promise<{ locale: string; experimentId: string; leadId: string }>;
29
- }
30
-
31
- export async function generateMetadata({ params }: Props): Promise<Metadata> {
32
- const { locale, experimentId, leadId } = await params;
33
- const t = await getTranslations({ locale, namespace: "waitlistDashboard.signup" });
34
-
35
- try {
36
- const signup = await unwrapApiResult(
37
- waitlistExperiments.signup(experimentId, leadId, await forwardedCookieInit()),
38
- );
39
- return { title: signup.email };
40
- } catch (err) {
41
- // A genuine 404 gets the "not found" title; any other failure gets a
42
- // neutral fallback rather than misreporting a real backend error as
43
- // "this doesn't exist" (#4665 code-review finding).
44
- if (err instanceof ApiError && err.status === 404) {
45
- return { title: t("notFoundHeadline") };
46
- }
47
- return { title: t("genericTitle") };
48
- }
49
- }
50
-
51
- export default async function WaitlistSignupPage({ params }: Props): Promise<ReactElement> {
52
- const { locale, experimentId, leadId } = await params;
53
- const t = await getTranslations({ locale, namespace: "waitlistDashboard" });
54
-
55
- let signup;
56
- try {
57
- signup = await unwrapApiResult(
58
- waitlistExperiments.signup(experimentId, leadId, await forwardedCookieInit()),
59
- );
60
- } catch (err) {
61
- if (err instanceof ApiError) {
62
- if (err.status === 404) notFound();
63
- if (err.status === 401 || err.status === 403) {
64
- return (
65
- <ForbiddenState
66
- headline={t("common.forbiddenHeadline")}
67
- description={t("common.forbiddenDescription")}
68
- />
69
- );
70
- }
71
- }
72
- throw err;
73
- }
74
-
75
- return (
76
- <main className="min-h-screen bg-surface text-fg" data-testid="waitlist-signup-page">
77
- <DetailHeader
78
- breadcrumb={[
79
- { label: t("comparison.breadcrumbExperiments"), href: `/${locale}/waitlist` },
80
- {
81
- label: t("signup.breadcrumbComparison"),
82
- href: `/${locale}/waitlist/${experimentId}`,
83
- },
84
- { label: signup.email },
85
- ]}
86
- title={signup.email}
87
- />
88
- <Container className="flex flex-col gap-8 py-section">
89
- <DescriptionList
90
- items={[
91
- { label: t("signup.email"), value: signup.email },
92
- { label: t("signup.waitlist"), value: signup.waitlistKey },
93
- { label: t("signup.source"), value: signup.source },
94
- { label: t("signup.captured"), value: formatDateTime(signup.createdAt, locale) },
95
- ]}
96
- />
97
-
98
- <div>
99
- <p className="mb-2 text-body-sm font-semibold text-(--color-fg)">
100
- {t("signup.answersTitle")}
101
- </p>
102
- <DescriptionList
103
- items={signup.answers.map((answer) => ({
104
- label: resolveLocalizedString(answer.prompt, locale, DEFAULT_LOCALE),
105
- value:
106
- answer.value === null
107
- ? t("common.unavailable")
108
- : Array.isArray(answer.value)
109
- ? answer.value.join(", ")
110
- : answer.value,
111
- }))}
112
- />
113
- </div>
114
-
115
- <ScoreTrace
116
- score={signup.score}
117
- {...(signup.score !== null
118
- ? {
119
- scoreDisplay: formatCount(signup.score.score, locale),
120
- categoryScores: Object.entries(signup.score.categoryScores).map(
121
- ([category, value]) => ({
122
- label: category,
123
- display: formatCount(value, locale),
124
- }),
125
- ),
126
- // AC-5 — targeting-maturity only (decidingDefsFor scopes
127
- // internally); [] for every other experiment renders no
128
- // section, byte-unchanged from before this unit.
129
- decidingDefs: decidingDefsFor(
130
- signup.score.tier,
131
- signup.score.ruleTrace,
132
- signup.experimentKey,
133
- ),
134
- }
135
- : {})}
136
- labels={{
137
- tier: t("signup.tier"),
138
- score: t("signup.score"),
139
- categoryScoresTitle: t("signup.categoryScoresTitle"),
140
- decidingDefsTitle: t("signup.decidingDefsTitle"),
141
- ruleTraceTitle: t("signup.ruleTraceTitle"),
142
- notScoredHeadline: t("signup.notScoredHeadline"),
143
- notScoredDescription: t("signup.notScoredDescription"),
144
- }}
145
- />
146
- </Container>
147
- </main>
148
- );
149
- }