@pylonsync/create-pylon 0.3.344 → 0.3.346

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 (295) hide show
  1. package/bin/create-pylon.js +35 -0
  2. package/package.json +1 -1
  3. package/templates/crm/AGENTS.md +116 -0
  4. package/templates/crm/CLAUDE.md +7 -0
  5. package/templates/crm/README.md +96 -0
  6. package/templates/crm/app/companies/companies-view.tsx +129 -0
  7. package/templates/crm/app/companies/page.tsx +17 -0
  8. package/templates/crm/app/contacts/contacts-view.tsx +139 -0
  9. package/templates/crm/app/contacts/page.tsx +17 -0
  10. package/templates/crm/app/deals/[id]/deal-view.tsx +189 -0
  11. package/templates/crm/app/deals/[id]/page.tsx +23 -0
  12. package/templates/crm/app/error.tsx +43 -0
  13. package/templates/crm/app/globals.css +201 -0
  14. package/templates/crm/app/layout.tsx +31 -0
  15. package/templates/crm/app/login/auth-form.tsx +122 -0
  16. package/templates/crm/app/login/page.tsx +38 -0
  17. package/templates/crm/app/not-found.tsx +29 -0
  18. package/templates/crm/app/page.tsx +38 -0
  19. package/templates/crm/app/pipeline-view.tsx +99 -0
  20. package/templates/crm/app/robots.ts +12 -0
  21. package/templates/crm/app/sitemap.ts +27 -0
  22. package/templates/crm/app/workspace.tsx +231 -0
  23. package/templates/crm/app.ts +171 -0
  24. package/templates/crm/bunfig +4 -0
  25. package/templates/crm/components/activity-timeline.tsx +133 -0
  26. package/templates/crm/components/avatar.tsx +40 -0
  27. package/templates/crm/components/board-skeleton.tsx +44 -0
  28. package/templates/crm/components/command-palette.tsx +162 -0
  29. package/templates/crm/components/data-table.tsx +90 -0
  30. package/templates/crm/components/deal-card.tsx +91 -0
  31. package/templates/crm/components/deal-dialog.tsx +169 -0
  32. package/templates/crm/components/empty-state.tsx +43 -0
  33. package/templates/crm/components/kbd.tsx +23 -0
  34. package/templates/crm/components/metrics-bar.tsx +46 -0
  35. package/templates/crm/components/page-header.tsx +36 -0
  36. package/templates/crm/components/pipeline-board.tsx +105 -0
  37. package/templates/crm/components/record-dialog.tsx +126 -0
  38. package/templates/crm/components/sidebar.tsx +112 -0
  39. package/templates/crm/components/stage-badge.tsx +33 -0
  40. package/templates/crm/components/ui/badge.tsx +37 -0
  41. package/templates/crm/components/ui/button.tsx +56 -0
  42. package/templates/crm/components/ui/card.tsx +90 -0
  43. package/templates/crm/components/ui/dialog.tsx +110 -0
  44. package/templates/crm/components/ui/input.tsx +30 -0
  45. package/templates/crm/components/ui/label.tsx +21 -0
  46. package/templates/crm/components/ui/select.tsx +39 -0
  47. package/templates/crm/components/ui/table.tsx +124 -0
  48. package/templates/crm/components/ui/textarea.tsx +24 -0
  49. package/templates/crm/components.json +20 -0
  50. package/templates/crm/functions/createDeal.ts +59 -0
  51. package/templates/crm/functions/logActivity.ts +49 -0
  52. package/templates/crm/functions/moveDeal.ts +53 -0
  53. package/templates/crm/functions/seedWorkspace.ts +63 -0
  54. package/templates/crm/gitignore +10 -0
  55. package/templates/crm/lib/pipeline.ts +221 -0
  56. package/templates/crm/lib/search.ts +78 -0
  57. package/templates/crm/lib/seed.ts +130 -0
  58. package/templates/crm/lib/utils.ts +10 -0
  59. package/templates/crm/package.json +39 -0
  60. package/templates/crm/tests/components.test.tsx +245 -0
  61. package/templates/crm/tests/pipeline.test.ts +219 -0
  62. package/templates/crm/tests/search.test.ts +83 -0
  63. package/templates/crm/tests/setup.ts +5 -0
  64. package/templates/crm/tsconfig.json +33 -0
  65. package/templates/helpdesk/AGENTS.md +116 -0
  66. package/templates/helpdesk/CLAUDE.md +7 -0
  67. package/templates/helpdesk/README.md +90 -0
  68. package/templates/helpdesk/app/customers/customers-view.tsx +140 -0
  69. package/templates/helpdesk/app/customers/page.tsx +17 -0
  70. package/templates/helpdesk/app/error.tsx +43 -0
  71. package/templates/helpdesk/app/globals.css +201 -0
  72. package/templates/helpdesk/app/inbox-view.tsx +147 -0
  73. package/templates/helpdesk/app/layout.tsx +31 -0
  74. package/templates/helpdesk/app/login/auth-form.tsx +122 -0
  75. package/templates/helpdesk/app/login/page.tsx +38 -0
  76. package/templates/helpdesk/app/not-found.tsx +29 -0
  77. package/templates/helpdesk/app/page.tsx +38 -0
  78. package/templates/helpdesk/app/robots.ts +12 -0
  79. package/templates/helpdesk/app/sitemap.ts +27 -0
  80. package/templates/helpdesk/app/tickets/[id]/page.tsx +23 -0
  81. package/templates/helpdesk/app/tickets/[id]/ticket-view.tsx +164 -0
  82. package/templates/helpdesk/app/workspace.tsx +210 -0
  83. package/templates/helpdesk/app.ts +142 -0
  84. package/templates/helpdesk/bunfig +4 -0
  85. package/templates/helpdesk/components/avatar.tsx +40 -0
  86. package/templates/helpdesk/components/command-palette.tsx +162 -0
  87. package/templates/helpdesk/components/data-table.tsx +90 -0
  88. package/templates/helpdesk/components/empty-state.tsx +43 -0
  89. package/templates/helpdesk/components/kbd.tsx +23 -0
  90. package/templates/helpdesk/components/new-ticket-dialog.tsx +147 -0
  91. package/templates/helpdesk/components/page-header.tsx +36 -0
  92. package/templates/helpdesk/components/priority-badge.tsx +61 -0
  93. package/templates/helpdesk/components/record-dialog.tsx +126 -0
  94. package/templates/helpdesk/components/sidebar.tsx +111 -0
  95. package/templates/helpdesk/components/sla-indicator.tsx +47 -0
  96. package/templates/helpdesk/components/thread.tsx +143 -0
  97. package/templates/helpdesk/components/ticket-list.tsx +78 -0
  98. package/templates/helpdesk/components/ui/badge.tsx +37 -0
  99. package/templates/helpdesk/components/ui/button.tsx +56 -0
  100. package/templates/helpdesk/components/ui/card.tsx +90 -0
  101. package/templates/helpdesk/components/ui/dialog.tsx +110 -0
  102. package/templates/helpdesk/components/ui/input.tsx +30 -0
  103. package/templates/helpdesk/components/ui/label.tsx +21 -0
  104. package/templates/helpdesk/components/ui/select.tsx +39 -0
  105. package/templates/helpdesk/components/ui/table.tsx +124 -0
  106. package/templates/helpdesk/components/ui/textarea.tsx +24 -0
  107. package/templates/helpdesk/components.json +20 -0
  108. package/templates/helpdesk/functions/createTicket.ts +62 -0
  109. package/templates/helpdesk/functions/replyToTicket.ts +55 -0
  110. package/templates/helpdesk/functions/seedWorkspace.ts +52 -0
  111. package/templates/helpdesk/functions/setTicketState.ts +58 -0
  112. package/templates/helpdesk/gitignore +10 -0
  113. package/templates/helpdesk/lib/format.ts +53 -0
  114. package/templates/helpdesk/lib/search.ts +78 -0
  115. package/templates/helpdesk/lib/seed.ts +185 -0
  116. package/templates/helpdesk/lib/tickets.ts +184 -0
  117. package/templates/helpdesk/lib/utils.ts +10 -0
  118. package/templates/helpdesk/package.json +39 -0
  119. package/templates/helpdesk/tests/components.test.tsx +202 -0
  120. package/templates/helpdesk/tests/search.test.ts +83 -0
  121. package/templates/helpdesk/tests/setup.ts +5 -0
  122. package/templates/helpdesk/tests/tickets.test.ts +215 -0
  123. package/templates/helpdesk/tsconfig.json +33 -0
  124. package/templates/inventory/AGENTS.md +116 -0
  125. package/templates/inventory/CLAUDE.md +7 -0
  126. package/templates/inventory/README.md +103 -0
  127. package/templates/inventory/app/error.tsx +43 -0
  128. package/templates/inventory/app/globals.css +201 -0
  129. package/templates/inventory/app/layout.tsx +31 -0
  130. package/templates/inventory/app/login/auth-form.tsx +122 -0
  131. package/templates/inventory/app/login/page.tsx +38 -0
  132. package/templates/inventory/app/movements/movements-view.tsx +103 -0
  133. package/templates/inventory/app/movements/page.tsx +17 -0
  134. package/templates/inventory/app/not-found.tsx +29 -0
  135. package/templates/inventory/app/page.tsx +34 -0
  136. package/templates/inventory/app/products/[id]/page.tsx +23 -0
  137. package/templates/inventory/app/products/[id]/product-view.tsx +178 -0
  138. package/templates/inventory/app/products-view.tsx +213 -0
  139. package/templates/inventory/app/robots.ts +12 -0
  140. package/templates/inventory/app/sitemap.ts +27 -0
  141. package/templates/inventory/app/workspace.tsx +172 -0
  142. package/templates/inventory/app.ts +154 -0
  143. package/templates/inventory/bunfig +4 -0
  144. package/templates/inventory/components/avatar.tsx +40 -0
  145. package/templates/inventory/components/command-palette.tsx +162 -0
  146. package/templates/inventory/components/data-table.tsx +90 -0
  147. package/templates/inventory/components/empty-state.tsx +43 -0
  148. package/templates/inventory/components/kbd.tsx +23 -0
  149. package/templates/inventory/components/movement-dialog.tsx +182 -0
  150. package/templates/inventory/components/page-header.tsx +36 -0
  151. package/templates/inventory/components/record-dialog.tsx +126 -0
  152. package/templates/inventory/components/sidebar.tsx +111 -0
  153. package/templates/inventory/components/stock-level.tsx +47 -0
  154. package/templates/inventory/components/summary-bar.tsx +56 -0
  155. package/templates/inventory/components/ui/badge.tsx +37 -0
  156. package/templates/inventory/components/ui/button.tsx +56 -0
  157. package/templates/inventory/components/ui/card.tsx +90 -0
  158. package/templates/inventory/components/ui/dialog.tsx +110 -0
  159. package/templates/inventory/components/ui/input.tsx +30 -0
  160. package/templates/inventory/components/ui/label.tsx +21 -0
  161. package/templates/inventory/components/ui/select.tsx +39 -0
  162. package/templates/inventory/components/ui/table.tsx +124 -0
  163. package/templates/inventory/components/ui/textarea.tsx +24 -0
  164. package/templates/inventory/components.json +20 -0
  165. package/templates/inventory/functions/recordMovement.ts +72 -0
  166. package/templates/inventory/functions/seedWorkspace.ts +40 -0
  167. package/templates/inventory/gitignore +10 -0
  168. package/templates/inventory/lib/format.ts +53 -0
  169. package/templates/inventory/lib/search.ts +78 -0
  170. package/templates/inventory/lib/seed.ts +102 -0
  171. package/templates/inventory/lib/stock.ts +207 -0
  172. package/templates/inventory/lib/utils.ts +10 -0
  173. package/templates/inventory/package.json +39 -0
  174. package/templates/inventory/tests/components.test.tsx +155 -0
  175. package/templates/inventory/tests/search.test.ts +83 -0
  176. package/templates/inventory/tests/setup.ts +5 -0
  177. package/templates/inventory/tests/stock.test.ts +255 -0
  178. package/templates/inventory/tsconfig.json +33 -0
  179. package/templates/invoices/AGENTS.md +116 -0
  180. package/templates/invoices/CLAUDE.md +7 -0
  181. package/templates/invoices/README.md +99 -0
  182. package/templates/invoices/app/clients/clients-view.tsx +130 -0
  183. package/templates/invoices/app/clients/page.tsx +17 -0
  184. package/templates/invoices/app/error.tsx +43 -0
  185. package/templates/invoices/app/globals.css +201 -0
  186. package/templates/invoices/app/invoices/[id]/invoice-view.tsx +253 -0
  187. package/templates/invoices/app/invoices/[id]/page.tsx +23 -0
  188. package/templates/invoices/app/invoices-view.tsx +183 -0
  189. package/templates/invoices/app/layout.tsx +31 -0
  190. package/templates/invoices/app/login/auth-form.tsx +122 -0
  191. package/templates/invoices/app/login/page.tsx +38 -0
  192. package/templates/invoices/app/not-found.tsx +29 -0
  193. package/templates/invoices/app/page.tsx +36 -0
  194. package/templates/invoices/app/robots.ts +12 -0
  195. package/templates/invoices/app/sitemap.ts +27 -0
  196. package/templates/invoices/app/workspace.tsx +174 -0
  197. package/templates/invoices/app.ts +169 -0
  198. package/templates/invoices/bunfig +4 -0
  199. package/templates/invoices/components/avatar.tsx +40 -0
  200. package/templates/invoices/components/command-palette.tsx +162 -0
  201. package/templates/invoices/components/data-table.tsx +90 -0
  202. package/templates/invoices/components/empty-state.tsx +43 -0
  203. package/templates/invoices/components/kbd.tsx +23 -0
  204. package/templates/invoices/components/line-items.tsx +172 -0
  205. package/templates/invoices/components/page-header.tsx +36 -0
  206. package/templates/invoices/components/payment-dialog.tsx +132 -0
  207. package/templates/invoices/components/record-dialog.tsx +126 -0
  208. package/templates/invoices/components/sidebar.tsx +111 -0
  209. package/templates/invoices/components/status-badge.tsx +35 -0
  210. package/templates/invoices/components/summary-bar.tsx +65 -0
  211. package/templates/invoices/components/totals-panel.tsx +70 -0
  212. package/templates/invoices/components/ui/badge.tsx +37 -0
  213. package/templates/invoices/components/ui/button.tsx +56 -0
  214. package/templates/invoices/components/ui/card.tsx +90 -0
  215. package/templates/invoices/components/ui/dialog.tsx +110 -0
  216. package/templates/invoices/components/ui/input.tsx +30 -0
  217. package/templates/invoices/components/ui/label.tsx +21 -0
  218. package/templates/invoices/components/ui/select.tsx +39 -0
  219. package/templates/invoices/components/ui/table.tsx +124 -0
  220. package/templates/invoices/components/ui/textarea.tsx +24 -0
  221. package/templates/invoices/components.json +20 -0
  222. package/templates/invoices/functions/createInvoice.ts +49 -0
  223. package/templates/invoices/functions/recordPayment.ts +72 -0
  224. package/templates/invoices/functions/seedWorkspace.ts +57 -0
  225. package/templates/invoices/functions/setInvoiceStatus.ts +35 -0
  226. package/templates/invoices/gitignore +10 -0
  227. package/templates/invoices/lib/billing.ts +259 -0
  228. package/templates/invoices/lib/format.ts +53 -0
  229. package/templates/invoices/lib/search.ts +78 -0
  230. package/templates/invoices/lib/seed.ts +190 -0
  231. package/templates/invoices/lib/utils.ts +10 -0
  232. package/templates/invoices/package.json +39 -0
  233. package/templates/invoices/tests/billing.test.ts +283 -0
  234. package/templates/invoices/tests/components.test.tsx +172 -0
  235. package/templates/invoices/tests/search.test.ts +83 -0
  236. package/templates/invoices/tests/setup.ts +5 -0
  237. package/templates/invoices/tsconfig.json +33 -0
  238. package/templates/projects/AGENTS.md +116 -0
  239. package/templates/projects/CLAUDE.md +7 -0
  240. package/templates/projects/README.md +96 -0
  241. package/templates/projects/app/clients/clients-view.tsx +126 -0
  242. package/templates/projects/app/clients/page.tsx +17 -0
  243. package/templates/projects/app/error.tsx +43 -0
  244. package/templates/projects/app/globals.css +201 -0
  245. package/templates/projects/app/layout.tsx +31 -0
  246. package/templates/projects/app/login/auth-form.tsx +122 -0
  247. package/templates/projects/app/login/page.tsx +38 -0
  248. package/templates/projects/app/not-found.tsx +29 -0
  249. package/templates/projects/app/page.tsx +30 -0
  250. package/templates/projects/app/projects/[id]/page.tsx +23 -0
  251. package/templates/projects/app/projects/[id]/project-view.tsx +179 -0
  252. package/templates/projects/app/projects-view.tsx +181 -0
  253. package/templates/projects/app/robots.ts +12 -0
  254. package/templates/projects/app/sitemap.ts +27 -0
  255. package/templates/projects/app/workspace.tsx +190 -0
  256. package/templates/projects/app.ts +186 -0
  257. package/templates/projects/bunfig +4 -0
  258. package/templates/projects/components/avatar.tsx +40 -0
  259. package/templates/projects/components/board-skeleton.tsx +37 -0
  260. package/templates/projects/components/budget-bar.tsx +61 -0
  261. package/templates/projects/components/command-palette.tsx +162 -0
  262. package/templates/projects/components/data-table.tsx +90 -0
  263. package/templates/projects/components/empty-state.tsx +43 -0
  264. package/templates/projects/components/kbd.tsx +23 -0
  265. package/templates/projects/components/page-header.tsx +36 -0
  266. package/templates/projects/components/record-dialog.tsx +126 -0
  267. package/templates/projects/components/sidebar.tsx +111 -0
  268. package/templates/projects/components/task-board.tsx +109 -0
  269. package/templates/projects/components/task-card.tsx +77 -0
  270. package/templates/projects/components/time-dialog.tsx +114 -0
  271. package/templates/projects/components/ui/badge.tsx +37 -0
  272. package/templates/projects/components/ui/button.tsx +56 -0
  273. package/templates/projects/components/ui/card.tsx +90 -0
  274. package/templates/projects/components/ui/dialog.tsx +110 -0
  275. package/templates/projects/components/ui/input.tsx +30 -0
  276. package/templates/projects/components/ui/label.tsx +21 -0
  277. package/templates/projects/components/ui/select.tsx +39 -0
  278. package/templates/projects/components/ui/table.tsx +124 -0
  279. package/templates/projects/components/ui/textarea.tsx +24 -0
  280. package/templates/projects/components.json +20 -0
  281. package/templates/projects/functions/logTime.ts +49 -0
  282. package/templates/projects/functions/moveTask.ts +40 -0
  283. package/templates/projects/functions/seedWorkspace.ts +59 -0
  284. package/templates/projects/gitignore +10 -0
  285. package/templates/projects/lib/format.ts +53 -0
  286. package/templates/projects/lib/search.ts +78 -0
  287. package/templates/projects/lib/seed.ts +140 -0
  288. package/templates/projects/lib/utils.ts +10 -0
  289. package/templates/projects/lib/work.ts +233 -0
  290. package/templates/projects/package.json +39 -0
  291. package/templates/projects/tests/components.test.tsx +200 -0
  292. package/templates/projects/tests/search.test.ts +83 -0
  293. package/templates/projects/tests/setup.ts +5 -0
  294. package/templates/projects/tests/work.test.ts +238 -0
  295. package/templates/projects/tsconfig.json +33 -0
@@ -0,0 +1,116 @@
1
+ # AGENTS.md: working in a Pylon project
2
+
3
+ Pylon serves the API, auth, sync, WebSocket, SSE, and native React 19 SSR from one Rust process on one port. Treat this app as production infrastructure: it supports real auth, SQLite or Postgres, row-level policies, jobs, search, and one-command deploys. Declare entities, policies, and server functions in TypeScript; the binary handles the runtime. Read the full API reference at https://docs.pylonsync.com/llms-full.txt before guessing an API name.
4
+
5
+ ## Directory conventions
6
+
7
+ **Unified SSR app:**
8
+ - `app.ts`: data model + manifest (`entity()` + `field.*`, queries/actions/policies, `routes: await discoverAppRoutes()`). Ends with `console.log(JSON.stringify(manifest))`.
9
+ - `app/`: file-based SSR routes. `app/page.tsx` → `/`, `app/about/page.tsx` → `/about`, `app/blog/[slug]/page.tsx` → `/blog/:slug`. `app/layout.tsx` is the shell; `app/error.tsx` / `app/not-found.tsx` are boundaries.
10
+ - `app/globals.css`: Tailwind v4 entrypoint (auto-compiled and injected).
11
+ - `functions/`: server functions, one per file, `default`-exported.
12
+ - `.pylon/`: local dev state (SQLite, jobs, sessions, uploads). Created by `pylon dev`. Do not commit.
13
+
14
+ **Monorepo app:** backend is `apps/api/` (entry `apps/api/schema.ts`, handlers in `apps/api/functions/`); frontend in `apps/web/`. `pylon.manifest.json` / `pylon.client.ts` are generated; do not hand-edit.
15
+
16
+ ## The core authoring loop
17
+
18
+ 1. **Define an entity:** `entity("Thing", { name: field.string(), done: field.boolean().default(false) })`. Modifiers: `.optional()`, `.unique()`, `.readonly()` (settable on insert, rejected on client update; use for `authorId`/`orgId`), `.serverOnly()` (never in HTTP responses), `.encrypted()` (AEAD at rest, needs `PYLON_ENCRYPTION_KEY`), `.crdt("text")` (collaborative).
19
+ 2. **Write a policy:** `policy({ entity: "Thing", allowRead, allowInsert, allowUpdate, allowDelete })` with CEL-like expressions over `auth.*` / `data.*` (e.g. `"auth.userId == data.authorId"`). Omitted actions deny by default. `pylon lint` flags wide-open development policies such as `allow*: "true"`; tighten them before shipping.
20
+ 3. **Author a function** in `functions/<name>.ts`: `query` (read-only), `mutation` (transactional read+write), or `action` (external I/O, no direct `ctx.db`). Import `{ query, mutation, action, v }` from `@pylonsync/functions`. `auth` defaults to `"user"` (secure-by-default); set `"public"` explicitly for unauthenticated access. Use `ctx.db.*`, `ctx.auth.userId`, `ctx.error(code, msg)`.
21
+ 4. **Read it on the client:** `db.useQuery("Thing")` (live, re-renders on any write) or `db.useQueryOne("Thing", id)`. Call functions with `db.fn(name, args)` / `callFn`. On SSR pages, read via `use(serverData.list("Thing"))` inside `<Suspense>`.
22
+
23
+ ## Key gotchas
24
+
25
+ - **Policies deny by default; server functions BYPASS them.** Direct client CRUD (`/api/entities/*`) and sync are policy-checked. Functions run with full DB access; enforce trust with `ctx.auth` checks inside the handler, not policies.
26
+ - **Type page props from the SDK, don't hand-roll them.** `import type { PageProps, Metadata } from "@pylonsync/react"`. Every page/layout gets `{ url, params, searchParams, auth, response, serverData }`; `PageProps<{ slug: string }>` types a `[slug]` route's params. Request headers/cookies are intentionally NOT on `PageProps`; they're server-only and stripped from hydration, so reading them in the render would mismatch.
27
+ - **Anonymous output caching is opt-in and conditional.** `export const revalidate = 60` makes a page CDN-cacheable (`public, s-maxage=60`) only when the render is auth-independent: it must not read `props.auth`, set a cookie, or run with strict per-caller policies (`PYLON_STRICT_FN_POLICIES`). `export const dynamic = "force-static"` caches until the next deploy; `"force-dynamic"` never caches. When any condition fails, the page is `no-cache`. Eligible renders also use the origin disk cache at `.pylon/.cache/ssr`: a cookie-less GET without a query string is served from disk for the TTL and rerendered when stale. The cache is namespaced per deploy, cleared by each build, disabled in `pylon dev`, and invalidated by the `revalidate` TTL or the next deploy.
28
+ - **No-JS forms use `route.ts` and `<Form>`.** Add `app/.../route.ts` exporting `export const POST: RouteHandler = async ({ form, db, response, auth }) => { await db.insert("X", {...}); response.redirect("/x?ok=1"); }` (303 POST-redirect-GET by default). Render `<Form action="/x">` from `@pylonsync/react` with plain `<input name=...>`. It uses native POST → handler → redirect without JavaScript and no-reload enhancement with JavaScript. The handler's `db` is read+write under the mutation trust model, so gate it on `auth`. CSRF protection is automatic through the Origin gate and SameSite=Lax. Multipart uploads are not supported yet; use URL-encoded forms and `/api/files`.
29
+ - **`loading.tsx` streams a skeleton while the page's data resolves.** Drop `app/.../loading.tsx` (default export, page props) and the nearest one becomes a route-level Suspense fallback: Pylon flushes the shell + skeleton immediately, then reveals the real page when its top-level `use(serverData…)` resolves (no blank page). It only shows when the PAGE suspends; a page that wraps its own `<Suspense>` around a child (like `/dashboard` in this template) handles that itself. The skeleton is SERVER-ONLY: don't read `serverData` in it. A page with no `loading.tsx` is buffered (unchanged).
30
+ - **`export const streaming = true` streams a page's inner `<Suspense>` boundaries.** Without it or a `loading.tsx`, the page is buffered until all suspended children resolve. With it, the shell and fallbacks flush immediately, then each boundary streams its content. Streaming commits the HTTP head before suspended subtrees finish, so the page is never CDN- or disk-cacheable; do not combine it with `export const revalidate`. Calls to `response.setStatus`, `setCookie`, `redirect`, or `notFound` only take effect during the synchronous shell render. A call from a suspended subtree is dropped and logged. An error from a deep `<Suspense>` child resolves through the nearest `error.tsx` at HTTP 200 rather than 5xx. Type the config with `import type { RouteSegmentConfig } from "@pylonsync/react"`.
31
+ - **`error.tsx` / `not-found.tsx` boundaries are HYDRATED (interactive).** `app/.../error.tsx` catches a throw below it (HTTP 500) and receives `{ error: { message, digest }, reset }` (`import type { ErrorBoundaryProps }`); `reset()` re-attempts the route; the stack NEVER reaches the client (dev overlay + logs only). `app/.../not-found.tsx` renders at 404 (also for `response.notFound()`) and gets the page props (`NotFoundProps`), no `reset`. Both run useState/onClick/hooks.
32
+ - **Client navigation hooks live in @pylonsync/react.** `useRouter()` → `{ push, replace, back, forward, refresh, prefetch }`; `useSearchParams()` → reactive `URLSearchParams`; `usePathname()` → reactive pathname. The hooks are CLIENT-reactive; during SSR they return defaults (empty params / "/"); for server-side URL values read the `url` / `searchParams` page props.
33
+ - **Dynamic + catch-all routes follow Next conventions.** `app/blog/[slug]/page.tsx` → `params.slug`. `app/docs/[...path]/page.tsx` is a catch-all (matches `/docs/a/b/c`; `params.path === "a/b/c"`; `.split("/")` for segments). `app/shop/[[...filters]]/page.tsx` is an optional catch-all (also matches the bare `/shop`, with `params.filters === ""`). A catch-all must be the last segment; static beats dynamic beats catch-all on overlap.
34
+ - **`serverData` (SSR) is READ-ONLY.** No write methods; the runtime rejects write frames (`SSR_WRITE_FORBIDDEN`). Mutations belong in actions/functions, never in a page render.
35
+ - **`response.*` / `response.redirect()` / `response.notFound()` must fire in the synchronous shell render**, before any `await` / `<Suspense>`. The HTTP head commits when the shell is ready; status/headers/cookies set from a suspended subtree are lost, and `redirect`/`notFound` thrown below a Suspense boundary are swallowed.
36
+ - **`ctx.llm` and `ctx.connections` are on mutation + action only, NOT query** (reactive purity). `action` has no direct `ctx.db`; use `ctx.runQuery` / `ctx.runMutation`.
37
+ - **It's `db.useQueryOne`, not `useOne`.** Validators and field types have aliases: `v.bool`/`v.boolean`, `v.float`/`v.number`.
38
+ - **Use the supported file and scheduling APIs.** Files go through `<FileUpload>` and `/api/files/*`; there is no `ctx.files`. One-shot work uses `ctx.scheduler.runAfter`, `runAt`, or `cancel`; there is no `defineWorkflow` or `defineJob`. Recurring work uses `cron("0 * * * *", "fnName")` in `buildManifest({ crons: [...] })`, imported from `@pylonsync/sdk`. Make the target function `internal: true`. It runs with anonymous auth, but its own `ctx.db.*` calls are server-side and bypass policies. Use `ctx.auth.elevate({ admin: true, reason: "..." })`, with a mandatory reason, only when chaining another internal function through `ctx.scheduler`.
39
+
40
+ ## Testing
41
+
42
+ `pylon test` discovers every `*.test.ts` / `*.test.tsx` file under `tests/` (or `functions/`) and runs it with **Bun's test runner** (`import { test, expect } from "bun:test"`). Run the suite with `pylon test` (or `npm test`); filter with `pylon test <substring>`. This template ships `bunfig.toml` + `tests/setup.ts` (registers happy-dom) so component tests render out of the box, plus starter tests under `tests/`; replace them with your own.
43
+
44
+ **Tier 1: pure logic (start here).** Keep access and plan gating, pricing, credit math, validation, and formatting in pure functions under `lib/`, and test them exhaustively. These tests need no server and run instantly. Keep `query`, `mutation`, and `action` handlers as thin wrappers so their decision logic remains testable without a running app.
45
+
46
+ ```ts
47
+ import { expect, test } from "bun:test";
48
+ import { productBySlug } from "../lib/site.config";
49
+
50
+ test("unknown slug → undefined", () => {
51
+ expect(productBySlug("nope")).toBeUndefined();
52
+ });
53
+ ```
54
+
55
+ **Tier 2: React components.** `@testing-library/react` and happy-dom are already wired through `tests/setup.ts`. Render and assert. The template uses the classic JSX transform, so add `import React from "react"` in `.tsx` tests. For a component that reads Pylon data hooks, mock the boundary, then dynamically import the component so the mock is in place first:
56
+
57
+ ```tsx
58
+ import { test, expect, mock } from "bun:test";
59
+ import React from "react";
60
+ import { render, screen } from "@testing-library/react";
61
+
62
+ mock.module("@pylonsync/react", () => ({
63
+ db: { useQuery: () => ({ data: [{ id: "1", name: "Acme" }], loading: false }) },
64
+ }));
65
+ const { OrgList } = await import("../app/orgs/org-list"); // your component
66
+
67
+ test("renders orgs from the query", () => {
68
+ render(<OrgList />);
69
+ expect(screen.getByText("Acme")).toBeDefined();
70
+ });
71
+ ```
72
+
73
+ **Tier 3: functions over HTTP.** Use this tier when pure logic tests cannot cover the behavior. A handler's policies, `ctx.db` calls, and auth run in the app. Start `pylon dev` in another terminal and call the API. `resetDb()` from `@pylonsync/functions` clears the in-memory database between cases; it does nothing when the server is down and refuses to run in production.
74
+
75
+ ```ts
76
+ import { afterEach, expect, test } from "bun:test";
77
+ import { resetDb } from "@pylonsync/functions";
78
+
79
+ const BASE = "http://localhost:4321";
80
+ afterEach(() => resetDb(BASE)); // or installTestIsolation(BASE) once at top-of-file
81
+
82
+ test("createThing then read it back", async () => {
83
+ const t = await fetch(`${BASE}/api/fn/createThing`, {
84
+ method: "POST",
85
+ headers: { "Content-Type": "application/json" },
86
+ body: JSON.stringify({ name: "hello" }),
87
+ }).then((r) => r.json());
88
+ const rows = await fetch(`${BASE}/api/entities/Thing`).then((r) => r.json());
89
+ expect(rows.some((r: { id: string }) => r.id === t.id)).toBe(true);
90
+ });
91
+ ```
92
+
93
+ `pylon test:security` is a separate adversarial probe; it hits a running app and reports auth/policy holes (run `pylon dev`, then `pylon test:security`).
94
+
95
+ ## Use the CLI
96
+
97
+ | Need | Command |
98
+ |---|---|
99
+ | Run the app (SSR + API, hot reload, one port `:4321`) | `pylon dev` (or `npm run dev`) |
100
+ | Regenerate manifest + typed client | `pylon codegen` (Swift client: `pylon codegen client --target swift`) |
101
+ | Validate / diff / push schema | `pylon schema check` \| `diff` \| `push` |
102
+ | Migrations | `pylon migrate create <name>` \| `plan` \| `apply` |
103
+ | Lint policies (PYL001–PYL004) | `pylon lint --strict` |
104
+ | Tests | `pylon test` |
105
+ | Adversarial security probe | `pylon test:security` |
106
+ | Inspect cloud request logs (agent-safe) | `pylon logs --json --limit 50` |
107
+ | Inspect data / entities | `pylon data entities` \| `pylon data list <Entity>` |
108
+ | Call a function | `pylon fn <name> key=value` |
109
+ | Health snapshot | `pylon status` |
110
+ | Build for prod | `pylon build` |
111
+ | Deploy (Pylon Cloud by default) | `pylon deploy` |
112
+ | Look up an error code | `pylon explain <CODE>` |
113
+
114
+ `--json` works on every command for machine-readable output. Prefer one-shot/agent-safe flags (`pylon logs --limit N`, not a blocking `--follow`).
115
+
116
+ For full signatures, env vars, the complete CLI, and SSR/client/server-primitive details: **https://docs.pylonsync.com/llms-full.txt**.
@@ -0,0 +1,7 @@
1
+ # CLAUDE.md
2
+
3
+ Agent guidance for this Pylon project lives in **AGENTS.md**, the cross-editor
4
+ standard read by Claude Code, Cursor, Codex, and other agents. The import below
5
+ makes it available to Claude Code:
6
+
7
+ @AGENTS.md
@@ -0,0 +1,90 @@
1
+ # __APP_NAME__
2
+
3
+ A support inbox for a small team — tickets triaged by priority and SLA, with
4
+ shared threads and internal notes. One [Pylon](https://pylonsync.com) app: SSR
5
+ frontend, API, auth, and realtime sync from one process on one port.
6
+
7
+ ## Develop
8
+
9
+ ```bash
10
+ __RUN_DEV__
11
+ ```
12
+
13
+ Open http://localhost:4321 and create an account. The first sign-in seeds a
14
+ realistic queue — including one urgent ticket already past its first-response
15
+ window, so the breach state is visible rather than theoretical. Delete
16
+ `functions/seedWorkspace.ts` and `lib/seed.ts` once real tickets arrive.
17
+
18
+ ## What's interesting here
19
+
20
+ **The queue answers "what next".** Rows are ordered by `queueOrder` in
21
+ `lib/tickets.ts` — breached first, then priority, then **oldest** first. Sorting
22
+ newest-first is how a ticket sits at the bottom of a busy queue for a week; this
23
+ ordering is pure and unit-tested.
24
+
25
+ **The SLA is computed, not stored.** Each priority carries a first-response
26
+ window; `slaState` compares it against `firstRespondedAt`. A ticket answered
27
+ late still counts as met — the question is "did we reply", and re-flagging
28
+ answered work only adds noise.
29
+
30
+ **It's live.** Assignment and replies reach every agent's screen through the
31
+ same write → sync → re-render path your own actions take, so two people don't
32
+ start the same reply.
33
+
34
+ **Internal notes are a first-class mode.** Sending one to the customer by
35
+ mistake is the expensive error here, so the composer changes colour and label,
36
+ the note stays marked in the thread, and — deliberately — an internal note does
37
+ **not** stop the SLA clock. A team that could clear its SLA by talking to itself
38
+ would have an SLA worth nothing.
39
+
40
+ ## Layout
41
+
42
+ ```
43
+ app.ts entities + policies
44
+ app/
45
+ page.tsx "/" — the queue
46
+ inbox-view.tsx queue container (filters, new ticket)
47
+ workspace.tsx app shell — the ONLY place that touches `db`
48
+ tickets/[id]/ ticket detail + thread
49
+ customers/ customer list
50
+ login/ email/password auth
51
+ components/ presentational — props in, callbacks out
52
+ ui/ shadcn primitives
53
+ lib/tickets.ts statuses, priority, SLA, queue order — pure
54
+ lib/format.ts time + initials — pure
55
+ functions/ server functions
56
+ tests/ pure logic + component tests
57
+ ```
58
+
59
+ The data boundary lives in exactly one module (`app/workspace.tsx`). Everything
60
+ under `components/` takes data as props and reports changes through callbacks,
61
+ which is why the component tests render them with fixtures and mock nothing.
62
+
63
+ ## Access
64
+
65
+ Every entity is readable and writable by any **signed-in** user, and by nobody
66
+ else — a shared queue is the point of a team helpdesk.
67
+
68
+ There is **no customer portal** here, and no policy allows an anonymous read.
69
+ Adding one means a separate, narrower policy scoped to the customer's own
70
+ tickets, not loosening these. Customers' email addresses live in `Customer`.
71
+
72
+ ## Grow it
73
+
74
+ - **Change an SLA:** `PRIORITIES` in `lib/tickets.ts`. The queue order, the
75
+ indicator, and the counts all read from it.
76
+ - **Add a status:** `STATUSES` in the same file; the filter and the detail-page
77
+ picker follow automatically.
78
+ - **Take email in:** a `route.ts` webhook that creates a `Ticket` plus a
79
+ `Message` with `fromCustomer: true` — see `functions/createTicket.ts` for the
80
+ shape.
81
+
82
+ ## Deploy
83
+
84
+ ```bash
85
+ pylon lint --strict
86
+ pylon test
87
+ pylon deploy
88
+ ```
89
+
90
+ Docs: https://docs.pylonsync.com
@@ -0,0 +1,140 @@
1
+ "use client";
2
+
3
+ import React, { useState } from "react";
4
+ import { db, useRouter } from "@pylonsync/react";
5
+ import { Plus, Users } from "lucide-react";
6
+ import { Button } from "@/components/ui/button";
7
+ import { PageHeader } from "@/components/page-header";
8
+ import { DataTable, type ColumnDef } from "@/components/data-table";
9
+ import { EmptyState } from "@/components/empty-state";
10
+ import { RecordDialog } from "@/components/record-dialog";
11
+ import { Avatar } from "@/components/avatar";
12
+ import { relativeTime } from "@/lib/format";
13
+ import { isOpen } from "@/lib/tickets";
14
+ import { Workspace, type CustomerRow } from "../workspace";
15
+
16
+ export function CustomersView({ email }: { email: string }) {
17
+ const router = useRouter();
18
+ const [open, setOpen] = useState(false);
19
+
20
+ return (
21
+ <Workspace email={email} pathname="/customers">
22
+ {(data) => {
23
+ // Ticket counts per customer, derived rather than stored — one less
24
+ // thing to keep in sync when a ticket is opened or solved.
25
+ const openCount = (customerId: string) =>
26
+ data.tickets.filter((t) => t.customerId === customerId && isOpen(t)).length;
27
+ const totalCount = (customerId: string) =>
28
+ data.tickets.filter((t) => t.customerId === customerId).length;
29
+
30
+ const columns: ColumnDef<CustomerRow>[] = [
31
+ {
32
+ key: "name",
33
+ header: "Customer",
34
+ cell: (row) => (
35
+ <span className="flex items-center gap-2">
36
+ <Avatar name={row.name} size="sm" />
37
+ <span className="truncate font-medium">{row.name}</span>
38
+ </span>
39
+ ),
40
+ },
41
+ {
42
+ key: "company",
43
+ header: "Company",
44
+ cell: (row) => (
45
+ <span className="text-muted-foreground">{row.company ?? "—"}</span>
46
+ ),
47
+ },
48
+ {
49
+ key: "email",
50
+ header: "Email",
51
+ cell: (row) => (
52
+ <a
53
+ href={`mailto:${row.email}`}
54
+ onClick={(event) => event.stopPropagation()}
55
+ className="text-muted-foreground underline-offset-2 hover:text-foreground hover:underline"
56
+ >
57
+ {row.email}
58
+ </a>
59
+ ),
60
+ },
61
+ {
62
+ key: "open",
63
+ header: "Open",
64
+ numeric: true,
65
+ cell: (row) => openCount(row.id),
66
+ },
67
+ {
68
+ key: "total",
69
+ header: "Total",
70
+ numeric: true,
71
+ cell: (row) => totalCount(row.id),
72
+ },
73
+ {
74
+ key: "created",
75
+ header: "Added",
76
+ cell: (row) => (
77
+ <span className="text-muted-foreground">
78
+ {relativeTime(row.createdAt)}
79
+ </span>
80
+ ),
81
+ },
82
+ ];
83
+
84
+ const rows = [...data.customers].sort((a, b) => a.name.localeCompare(b.name));
85
+
86
+ return (
87
+ <>
88
+ <PageHeader title="Customers" count={rows.length}>
89
+ <Button size="sm" onClick={() => setOpen(true)}>
90
+ <Plus />
91
+ New customer
92
+ </Button>
93
+ </PageHeader>
94
+
95
+ <DataTable
96
+ rows={rows}
97
+ columns={columns}
98
+ empty={
99
+ <EmptyState
100
+ icon={<Users />}
101
+ title="No customers yet"
102
+ description="The people who write in. Add one so a ticket can be attributed to a real account."
103
+ action={
104
+ <Button size="sm" onClick={() => setOpen(true)}>
105
+ <Plus />
106
+ New customer
107
+ </Button>
108
+ }
109
+ />
110
+ }
111
+ />
112
+
113
+ <RecordDialog
114
+ open={open}
115
+ title="New customer"
116
+ submitLabel="Create customer"
117
+ onOpenChange={setOpen}
118
+ fields={[
119
+ { name: "name", label: "Name", required: true, placeholder: "Dana Whitfield" },
120
+ {
121
+ name: "email",
122
+ label: "Email",
123
+ type: "email",
124
+ required: true,
125
+ placeholder: "dana@northwind.co",
126
+ },
127
+ { name: "company", label: "Company", placeholder: "Northwind Logistics" },
128
+ ]}
129
+ onCreate={async (values) => {
130
+ // A plain policy-checked insert — nothing to validate beyond
131
+ // the field types, and nothing to stamp the policy doesn't gate.
132
+ await db.insert("Customer", values);
133
+ }}
134
+ />
135
+ </>
136
+ );
137
+ }}
138
+ </Workspace>
139
+ );
140
+ }
@@ -0,0 +1,17 @@
1
+ import React, { use } from "react";
2
+ import type { Metadata, PageProps } from "@pylonsync/react";
3
+ import { CustomersView } from "./customers-view";
4
+
5
+ export const metadata: Metadata = {
6
+ title: "Customers",
7
+ robots: "noindex",
8
+ };
9
+
10
+ export default function CustomersPage({ auth, response, serverData }: PageProps) {
11
+ if (!auth.user_id || auth.user_id.startsWith("guest_")) {
12
+ response.redirect("/login");
13
+ return null;
14
+ }
15
+ const me = use(serverData.get<{ email?: string }>("User", auth.user_id));
16
+ return <CustomersView email={me?.email ?? ""} />;
17
+ }
@@ -0,0 +1,43 @@
1
+ import React from "react";
2
+ import { type ErrorBoundaryProps } from "@pylonsync/react";
3
+ import { Button } from "@/components/ui/button";
4
+
5
+ // `app/error.tsx` → the error boundary for this segment. It catches a throw
6
+ // in any page/layout below it and renders at HTTP 500. It's HYDRATED, so
7
+ // this is a real interactive client component: `reset()` re-attempts the
8
+ // route, and useState/onClick work. The thrown error reaches the client as
9
+ // `{ message, digest }` only — the stack stays in the dev overlay
10
+ // (PYLON_DEV_MODE) and the server logs, never in the page.
11
+ export default function Error({ error, reset }: ErrorBoundaryProps) {
12
+ const [tries, setTries] = React.useState(0);
13
+ return (
14
+ <div className="space-y-6">
15
+ <section>
16
+ <h1 className="text-2xl font-semibold tracking-tight">
17
+ Something went wrong
18
+ </h1>
19
+ <p className="mt-2 text-muted-foreground">{error.message}</p>
20
+ {error.digest ? (
21
+ <p className="mt-1 text-xs text-muted-foreground/70">
22
+ Reference: <code>{error.digest}</code>
23
+ </p>
24
+ ) : null}
25
+ </section>
26
+ <div className="flex items-center gap-3">
27
+ <Button
28
+ onClick={() => {
29
+ setTries((n) => n + 1);
30
+ reset();
31
+ }}
32
+ >
33
+ Try again
34
+ </Button>
35
+ {tries > 0 ? (
36
+ <span className="text-sm text-muted-foreground">
37
+ Retried {tries} {tries === 1 ? "time" : "times"}
38
+ </span>
39
+ ) : null}
40
+ </div>
41
+ </div>
42
+ );
43
+ }
@@ -0,0 +1,201 @@
1
+ @import "tailwindcss";
2
+ @import "tw-animate-css";
3
+
4
+ @source "../app/**/*.{tsx,ts,jsx,js}";
5
+ @source "../components/**/*.{tsx,ts,jsx,js}";
6
+
7
+ @custom-variant dark (&:where(.dark, .dark *));
8
+
9
+ /* ---------------------------------------------------------------------------
10
+ Design tokens.
11
+
12
+ Tuned for a dense internal tool rather than a marketing page: a near-neutral
13
+ surface ramp, hairline borders instead of shadows, and one accent used
14
+ sparingly so status colour still means something. Dark is the primary theme —
15
+ `app/layout.tsx` sets `class="dark"` — and light is a real, tested
16
+ alternative, not an afterthought.
17
+
18
+ These are the same variable names shadcn/ui generates against, so
19
+ `npx shadcn@latest add <component>` drops in already themed.
20
+ --------------------------------------------------------------------------- */
21
+ :root {
22
+ --radius: 0.5rem;
23
+
24
+ --background: oklch(1 0 0);
25
+ --foreground: oklch(0.21 0.006 285.9);
26
+ --card: oklch(1 0 0);
27
+ --card-foreground: var(--foreground);
28
+ --popover: oklch(1 0 0);
29
+ --popover-foreground: var(--foreground);
30
+
31
+ --primary: oklch(0.55 0.204 274.5);
32
+ --primary-foreground: oklch(1 0 0);
33
+ --secondary: oklch(0.968 0.002 286.4);
34
+ --secondary-foreground: oklch(0.27 0.006 286);
35
+ --muted: oklch(0.972 0.002 286.4);
36
+ --muted-foreground: oklch(0.53 0.013 286);
37
+ --accent: oklch(0.96 0.003 286.4);
38
+ --accent-foreground: oklch(0.27 0.006 286);
39
+ --destructive: oklch(0.58 0.216 27.3);
40
+
41
+ --border: oklch(0.918 0.004 286.3);
42
+ --input: oklch(0.918 0.004 286.3);
43
+ --ring: oklch(0.55 0.204 274.5);
44
+
45
+ /* Surfaces above the page: sidebar, popovers, hover rows. */
46
+ --surface-1: oklch(0.985 0.001 286.4);
47
+ --surface-2: oklch(0.968 0.002 286.4);
48
+
49
+ /* Pipeline + status. Muted on purpose — a board of saturated chips is
50
+ unreadable, and the eye should land on the one that's actually urgent. */
51
+ --stage-lead: oklch(0.62 0.03 264);
52
+ --stage-qualified: oklch(0.6 0.13 240);
53
+ --stage-proposal: oklch(0.68 0.15 78);
54
+ --stage-won: oklch(0.6 0.15 155);
55
+ --stage-lost: oklch(0.6 0.11 25);
56
+ }
57
+
58
+ .dark {
59
+ --background: oklch(0.165 0.004 285.9);
60
+ --foreground: oklch(0.93 0.002 286.3);
61
+ --card: oklch(0.196 0.005 285.9);
62
+ --card-foreground: var(--foreground);
63
+ --popover: oklch(0.216 0.006 285.9);
64
+ --popover-foreground: var(--foreground);
65
+
66
+ --primary: oklch(0.62 0.19 274.5);
67
+ --primary-foreground: oklch(1 0 0);
68
+ --secondary: oklch(0.25 0.006 286);
69
+ --secondary-foreground: oklch(0.93 0.002 286.3);
70
+ --muted: oklch(0.25 0.006 286);
71
+ --muted-foreground: oklch(0.65 0.012 286);
72
+ --accent: oklch(0.26 0.006 286);
73
+ --accent-foreground: oklch(0.93 0.002 286.3);
74
+ --destructive: oklch(0.65 0.19 25);
75
+
76
+ --border: oklch(1 0 0 / 9%);
77
+ --input: oklch(1 0 0 / 12%);
78
+ --ring: oklch(0.62 0.19 274.5);
79
+
80
+ --surface-1: oklch(0.186 0.004 285.9);
81
+ --surface-2: oklch(0.216 0.006 285.9);
82
+
83
+ --stage-lead: oklch(0.68 0.03 264);
84
+ --stage-qualified: oklch(0.68 0.13 240);
85
+ --stage-proposal: oklch(0.75 0.14 78);
86
+ --stage-won: oklch(0.7 0.15 155);
87
+ --stage-lost: oklch(0.68 0.14 25);
88
+ }
89
+
90
+ @theme inline {
91
+ --radius-sm: calc(var(--radius) - 3px);
92
+ --radius-md: calc(var(--radius) - 1px);
93
+ --radius-lg: var(--radius);
94
+ --radius-xl: calc(var(--radius) + 4px);
95
+
96
+ --color-background: var(--background);
97
+ --color-foreground: var(--foreground);
98
+ --color-card: var(--card);
99
+ --color-card-foreground: var(--card-foreground);
100
+ --color-popover: var(--popover);
101
+ --color-popover-foreground: var(--popover-foreground);
102
+ --color-primary: var(--primary);
103
+ --color-primary-foreground: var(--primary-foreground);
104
+ --color-secondary: var(--secondary);
105
+ --color-secondary-foreground: var(--secondary-foreground);
106
+ --color-muted: var(--muted);
107
+ --color-muted-foreground: var(--muted-foreground);
108
+ --color-accent: var(--accent);
109
+ --color-accent-foreground: var(--accent-foreground);
110
+ --color-destructive: var(--destructive);
111
+ --color-border: var(--border);
112
+ --color-input: var(--input);
113
+ --color-ring: var(--ring);
114
+
115
+ --color-surface-1: var(--surface-1);
116
+ --color-surface-2: var(--surface-2);
117
+
118
+ --color-stage-lead: var(--stage-lead);
119
+ --color-stage-qualified: var(--stage-qualified);
120
+ --color-stage-proposal: var(--stage-proposal);
121
+ --color-stage-won: var(--stage-won);
122
+ --color-stage-lost: var(--stage-lost);
123
+ }
124
+
125
+ @layer base {
126
+ *,
127
+ ::after,
128
+ ::before,
129
+ ::backdrop,
130
+ ::file-selector-button {
131
+ border-color: var(--color-border, currentColor);
132
+ outline-color: var(--color-ring);
133
+ }
134
+
135
+ html {
136
+ /* An internal tool is a fixed shell with scrolling panes, not a scrolling
137
+ document — this keeps the sidebar and header from drifting. */
138
+ height: 100%;
139
+ -webkit-tap-highlight-color: transparent;
140
+ }
141
+
142
+ body {
143
+ height: 100%;
144
+ background-color: var(--color-background);
145
+ color: var(--color-foreground);
146
+ /* 13px is the density these screens are designed at; the slight negative
147
+ tracking is what keeps Inter from looking loose at that size. */
148
+ font-size: 13px;
149
+ line-height: 1.5;
150
+ letter-spacing: -0.006em;
151
+ -webkit-font-smoothing: antialiased;
152
+ text-rendering: optimizeLegibility;
153
+ }
154
+
155
+ button {
156
+ cursor: pointer;
157
+ }
158
+
159
+ /* Numbers that sit in columns must not jitter as they change. */
160
+ .tabular,
161
+ table {
162
+ font-variant-numeric: tabular-nums;
163
+ }
164
+
165
+ /* Thin, self-effacing scrollbars — the board has several at once. */
166
+ * {
167
+ scrollbar-width: thin;
168
+ scrollbar-color: color-mix(in oklab, var(--color-foreground) 18%, transparent)
169
+ transparent;
170
+ }
171
+ ::-webkit-scrollbar {
172
+ width: 10px;
173
+ height: 10px;
174
+ }
175
+ ::-webkit-scrollbar-thumb {
176
+ background-color: color-mix(in oklab, var(--color-foreground) 16%, transparent);
177
+ border: 3px solid transparent;
178
+ background-clip: content-box;
179
+ border-radius: 999px;
180
+ }
181
+ ::-webkit-scrollbar-thumb:hover {
182
+ background-color: color-mix(in oklab, var(--color-foreground) 28%, transparent);
183
+ }
184
+ ::-webkit-scrollbar-corner {
185
+ background: transparent;
186
+ }
187
+
188
+ /* Only show focus rings for keyboard users; a mouse click shouldn't ring. */
189
+ :focus-visible {
190
+ outline: 2px solid var(--color-ring);
191
+ outline-offset: 1px;
192
+ }
193
+ }
194
+
195
+ @layer components {
196
+ /* A hairline that reads at 1px on any DPR without the doubling you get from
197
+ a plain border on retina. */
198
+ .hairline {
199
+ box-shadow: inset 0 -1px 0 0 var(--color-border);
200
+ }
201
+ }