fastscript 1.0.0 → 3.0.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 (119) hide show
  1. package/CHANGELOG.md +38 -7
  2. package/LICENSE +33 -21
  3. package/README.md +605 -73
  4. package/node_modules/@fastscript/core-private/BOUNDARY.json +15 -0
  5. package/node_modules/@fastscript/core-private/README.md +5 -0
  6. package/node_modules/@fastscript/core-private/package.json +34 -0
  7. package/node_modules/@fastscript/core-private/src/asset-optimizer.mjs +67 -0
  8. package/node_modules/@fastscript/core-private/src/audit-log.mjs +50 -0
  9. package/node_modules/@fastscript/core-private/src/auth-flows.mjs +29 -0
  10. package/node_modules/@fastscript/core-private/src/auth.mjs +115 -0
  11. package/node_modules/@fastscript/core-private/src/bench.mjs +45 -0
  12. package/node_modules/@fastscript/core-private/src/build.mjs +670 -0
  13. package/node_modules/@fastscript/core-private/src/cache.mjs +248 -0
  14. package/node_modules/@fastscript/core-private/src/check.mjs +22 -0
  15. package/node_modules/@fastscript/core-private/src/cli.mjs +95 -0
  16. package/node_modules/@fastscript/core-private/src/compat.mjs +128 -0
  17. package/node_modules/@fastscript/core-private/src/create.mjs +278 -0
  18. package/node_modules/@fastscript/core-private/src/csp.mjs +26 -0
  19. package/node_modules/@fastscript/core-private/src/db-cli.mjs +185 -0
  20. package/node_modules/@fastscript/core-private/src/db-postgres-collection.mjs +110 -0
  21. package/node_modules/@fastscript/core-private/src/db-postgres.mjs +40 -0
  22. package/node_modules/@fastscript/core-private/src/db.mjs +103 -0
  23. package/node_modules/@fastscript/core-private/src/deploy.mjs +662 -0
  24. package/node_modules/@fastscript/core-private/src/dev.mjs +5 -0
  25. package/node_modules/@fastscript/core-private/src/docs-search.mjs +35 -0
  26. package/node_modules/@fastscript/core-private/src/env.mjs +118 -0
  27. package/node_modules/@fastscript/core-private/src/export.mjs +83 -0
  28. package/node_modules/@fastscript/core-private/src/fs-diagnostics.mjs +70 -0
  29. package/node_modules/@fastscript/core-private/src/fs-error-codes.mjs +141 -0
  30. package/node_modules/@fastscript/core-private/src/fs-formatter.mjs +66 -0
  31. package/node_modules/@fastscript/core-private/src/fs-linter.mjs +274 -0
  32. package/node_modules/@fastscript/core-private/src/fs-normalize.mjs +121 -0
  33. package/node_modules/@fastscript/core-private/src/fs-parser.mjs +1120 -0
  34. package/node_modules/@fastscript/core-private/src/generated/docs-search-index.mjs +3182 -0
  35. package/node_modules/@fastscript/core-private/src/i18n.mjs +25 -0
  36. package/node_modules/@fastscript/core-private/src/interop.mjs +16 -0
  37. package/node_modules/@fastscript/core-private/src/jobs.mjs +378 -0
  38. package/node_modules/@fastscript/core-private/src/logger.mjs +27 -0
  39. package/node_modules/@fastscript/core-private/src/metrics.mjs +45 -0
  40. package/node_modules/@fastscript/core-private/src/middleware.mjs +14 -0
  41. package/node_modules/@fastscript/core-private/src/migrate.mjs +81 -0
  42. package/node_modules/@fastscript/core-private/src/migration-wizard.mjs +16 -0
  43. package/node_modules/@fastscript/core-private/src/module-loader.mjs +46 -0
  44. package/node_modules/@fastscript/core-private/src/oauth-providers.mjs +103 -0
  45. package/node_modules/@fastscript/core-private/src/observability.mjs +21 -0
  46. package/node_modules/@fastscript/core-private/src/plugins.mjs +194 -0
  47. package/node_modules/@fastscript/core-private/src/retention.mjs +57 -0
  48. package/node_modules/@fastscript/core-private/src/routes.mjs +178 -0
  49. package/node_modules/@fastscript/core-private/src/scheduler.mjs +104 -0
  50. package/node_modules/@fastscript/core-private/src/security.mjs +233 -0
  51. package/node_modules/@fastscript/core-private/src/server-runtime.mjs +849 -0
  52. package/node_modules/@fastscript/core-private/src/serverless-handler.mjs +20 -0
  53. package/node_modules/@fastscript/core-private/src/session-policy.mjs +38 -0
  54. package/node_modules/@fastscript/core-private/src/start.mjs +10 -0
  55. package/node_modules/@fastscript/core-private/src/storage.mjs +155 -0
  56. package/node_modules/@fastscript/core-private/src/style-primitives.mjs +538 -0
  57. package/node_modules/@fastscript/core-private/src/style-system.mjs +461 -0
  58. package/node_modules/@fastscript/core-private/src/tenant.mjs +55 -0
  59. package/node_modules/@fastscript/core-private/src/typecheck.mjs +1466 -0
  60. package/node_modules/@fastscript/core-private/src/validate.mjs +22 -0
  61. package/node_modules/@fastscript/core-private/src/validation.mjs +88 -0
  62. package/node_modules/@fastscript/core-private/src/webhook.mjs +81 -0
  63. package/node_modules/@fastscript/core-private/src/worker.mjs +24 -0
  64. package/package.json +108 -14
  65. package/src/asset-optimizer.mjs +67 -0
  66. package/src/audit-log.mjs +50 -0
  67. package/src/auth.mjs +1 -115
  68. package/src/bench.mjs +20 -7
  69. package/src/benchmark-discipline.mjs +39 -0
  70. package/src/build.mjs +1 -234
  71. package/src/cache.mjs +210 -20
  72. package/src/cli.mjs +65 -6
  73. package/src/compat.mjs +8 -10
  74. package/src/conversion-manifest.mjs +101 -0
  75. package/src/create.mjs +71 -17
  76. package/src/csp.mjs +26 -0
  77. package/src/db-cli.mjs +152 -8
  78. package/src/db-postgres-collection.mjs +110 -0
  79. package/src/deploy.mjs +1 -65
  80. package/src/diagnostics.mjs +100 -0
  81. package/src/docs-search.mjs +35 -0
  82. package/src/env.mjs +34 -5
  83. package/src/fs-diagnostics.mjs +70 -0
  84. package/src/fs-error-codes.mjs +126 -0
  85. package/src/fs-formatter.mjs +66 -0
  86. package/src/fs-linter.mjs +274 -0
  87. package/src/fs-normalize.mjs +52 -239
  88. package/src/fs-parser.mjs +1 -0
  89. package/src/generated/docs-search-index.mjs +3591 -0
  90. package/src/i18n.mjs +25 -0
  91. package/src/jobs.mjs +283 -32
  92. package/src/metrics.mjs +45 -0
  93. package/src/migrate-rollback.mjs +144 -0
  94. package/src/migrate.mjs +1275 -47
  95. package/src/migration-wizard.mjs +42 -0
  96. package/src/module-loader.mjs +22 -11
  97. package/src/oauth-providers.mjs +103 -0
  98. package/src/permissions-cli.mjs +112 -0
  99. package/src/plugins.mjs +194 -0
  100. package/src/profile.mjs +95 -0
  101. package/src/regression-guard.mjs +245 -0
  102. package/src/retention.mjs +57 -0
  103. package/src/routes.mjs +178 -0
  104. package/src/runtime-permissions.mjs +299 -0
  105. package/src/scheduler.mjs +104 -0
  106. package/src/security.mjs +197 -19
  107. package/src/server-runtime.mjs +1 -339
  108. package/src/serverless-handler.mjs +20 -0
  109. package/src/session-policy.mjs +38 -0
  110. package/src/storage.mjs +1 -56
  111. package/src/style-system.mjs +461 -0
  112. package/src/tenant.mjs +55 -0
  113. package/src/trace.mjs +95 -0
  114. package/src/typecheck.mjs +1 -0
  115. package/src/validate.mjs +13 -1
  116. package/src/validation.mjs +14 -5
  117. package/src/webhook.mjs +1 -71
  118. package/src/worker.mjs +23 -4
  119. package/src/language-spec.mjs +0 -58
@@ -0,0 +1,3591 @@
1
+ export const DOC_SEARCH_INDEX = [
2
+ {
3
+ "id": "ai_context_pack_v1",
4
+ "title": "AI_CONTEXT_PACK_V1",
5
+ "path": "/docs/ai_context_pack_v1",
6
+ "summary": "- `.fs` is a universal JS/TS container for the FastScript runtime.",
7
+ "terms": {
8
+ "0": 1,
9
+ "13": 1,
10
+ "50": 1,
11
+ "900": 1,
12
+ "ai": 2,
13
+ "context": 2,
14
+ "pack": 2,
15
+ "v1": 3,
16
+ "fs": 4,
17
+ "is": 4,
18
+ "a": 2,
19
+ "universal": 2,
20
+ "js": 3,
21
+ "ts": 3,
22
+ "container": 2,
23
+ "for": 3,
24
+ "the": 2,
25
+ "fastscript": 5,
26
+ "runtime": 3,
27
+ "core": 2,
28
+ "contracts": 1,
29
+ "write": 1,
30
+ "normal": 1,
31
+ "jsx": 1,
32
+ "or": 2,
33
+ "tsx": 1,
34
+ "directly": 1,
35
+ "in": 9,
36
+ "specific": 1,
37
+ "syntax": 1,
38
+ "optional": 3,
39
+ "sugar": 1,
40
+ "route": 2,
41
+ "pages": 2,
42
+ "live": 4,
43
+ "app": 8,
44
+ "api": 2,
45
+ "routes": 1,
46
+ "middleware": 2,
47
+ "global": 1,
48
+ "load": 1,
49
+ "ctx": 6,
50
+ "and": 5,
51
+ "http": 1,
52
+ "methods": 1,
53
+ "get": 1,
54
+ "post": 1,
55
+ "put": 1,
56
+ "patch": 1,
57
+ "delete": 1,
58
+ "validation": 2,
59
+ "use": 2,
60
+ "input": 2,
61
+ "validatebody": 1,
62
+ "schema": 2,
63
+ "validatequery": 1,
64
+ "schemas": 1,
65
+ "export": 2,
66
+ "modules": 1,
67
+ "to": 1,
68
+ "auto": 1,
69
+ "enforce": 1,
70
+ "request": 1,
71
+ "shape": 1,
72
+ "ssr": 1,
73
+ "hydration": 1,
74
+ "function": 1,
75
+ "hydrate": 1,
76
+ "root": 1,
77
+ "queue": 2,
78
+ "available": 3,
79
+ "via": 4,
80
+ "db": 2,
81
+ "auth": 2,
82
+ "plugin": 1,
83
+ "hooks": 1,
84
+ "are": 5,
85
+ "supported": 1,
86
+ "plugins": 2,
87
+ "security": 1,
88
+ "defaults": 1,
89
+ "include": 1,
90
+ "headers": 1,
91
+ "rate": 1,
92
+ "limit": 1,
93
+ "csrf": 1,
94
+ "can": 1,
95
+ "be": 1,
96
+ "tuned": 1,
97
+ "by": 3,
98
+ "env": 1,
99
+ "styling": 3,
100
+ "guardrails": 1,
101
+ "permanent": 1,
102
+ "direction": 2,
103
+ "defined": 1,
104
+ "spec": 2,
105
+ "md": 2,
106
+ "tokens": 2,
107
+ "design": 2,
108
+ "json": 2,
109
+ "allowed": 2,
110
+ "non": 1,
111
+ "utility": 2,
112
+ "classes": 2,
113
+ "class": 1,
114
+ "allowlist": 1,
115
+ "u": 1,
116
+ "generated": 2,
117
+ "styles": 2,
118
+ "css": 2,
119
+ "raw": 1,
120
+ "hex": 1,
121
+ "values": 1,
122
+ "blocked": 1,
123
+ "style": 2,
124
+ "blocks": 1,
125
+ "finite": 1,
126
+ "token": 1,
127
+ "only": 5,
128
+ "spacing": 1,
129
+ "props": 1,
130
+ "padding": 1,
131
+ "margin": 1,
132
+ "gap": 1,
133
+ "top": 1,
134
+ "right": 1,
135
+ "bottom": 1,
136
+ "left": 1,
137
+ "accept": 3,
138
+ "colors": 2,
139
+ "bg": 1,
140
+ "text": 1,
141
+ "border": 1,
142
+ "color": 1,
143
+ "shade": 1,
144
+ "with": 1,
145
+ "primary": 1,
146
+ "secondary": 1,
147
+ "accent": 1,
148
+ "neutral": 1,
149
+ "success": 1,
150
+ "warning": 1,
151
+ "error": 1,
152
+ "shades": 1,
153
+ "approved": 1,
154
+ "steps": 1,
155
+ "size": 1,
156
+ "weight": 1,
157
+ "display": 1,
158
+ "align": 1,
159
+ "justify": 1,
160
+ "framework": 1,
161
+ "enums": 1,
162
+ "responsive": 1,
163
+ "breakpoints": 1,
164
+ "sm": 1,
165
+ "lg": 1,
166
+ "xl": 1,
167
+ "quality": 1,
168
+ "gates": 1,
169
+ "npm": 5,
170
+ "run": 5,
171
+ "validate": 1,
172
+ "test": 1,
173
+ "smoke": 2,
174
+ "dev": 1,
175
+ "start": 1,
176
+ "qa": 1,
177
+ "all": 1
178
+ }
179
+ },
180
+ {
181
+ "id": "api_reference",
182
+ "title": "API Reference",
183
+ "path": "/docs/api_reference",
184
+ "summary": "Auto-generated from `src/*.mjs`.",
185
+ "terms": {
186
+ "1": 1,
187
+ "api": 3,
188
+ "reference": 2,
189
+ "auto": 2,
190
+ "generated": 2,
191
+ "from": 2,
192
+ "src": 2,
193
+ "mjs": 55,
194
+ "asset": 1,
195
+ "optimizer": 1,
196
+ "optimizefontassets": 1,
197
+ "optimizeimageassets": 1,
198
+ "audit": 1,
199
+ "log": 1,
200
+ "createauditlog": 1,
201
+ "auth": 2,
202
+ "flows": 1,
203
+ "buildoauthauthorizeurl": 1,
204
+ "createoauthstate": 1,
205
+ "hashpassword": 1,
206
+ "verifypassword": 1,
207
+ "createsessionmanager": 1,
208
+ "parsecookies": 1,
209
+ "requireuser": 1,
210
+ "serializecookie": 1,
211
+ "bench": 1,
212
+ "runbench": 1,
213
+ "build": 1,
214
+ "runbuild": 1,
215
+ "cache": 1,
216
+ "createfilecache": 1,
217
+ "creatememorycache": 1,
218
+ "createrediscache": 1,
219
+ "check": 1,
220
+ "runcheck": 1,
221
+ "compat": 1,
222
+ "getn": 1,
223
+ "run": 1,
224
+ "runcompat": 1,
225
+ "value": 1,
226
+ "create": 1,
227
+ "delete": 1,
228
+ "get": 1,
229
+ "post": 1,
230
+ "createapp": 1,
231
+ "hydrate": 1,
232
+ "middleware": 2,
233
+ "schemas": 1,
234
+ "seed": 1,
235
+ "up": 1,
236
+ "csp": 1,
237
+ "generatecsppolicy": 1,
238
+ "db": 4,
239
+ "cli": 1,
240
+ "rundbmigrate": 1,
241
+ "rundbrollback": 1,
242
+ "rundbseed": 1,
243
+ "postgres": 2,
244
+ "collection": 1,
245
+ "createpostgrescollectiondatabase": 1,
246
+ "createpostgresadapter": 1,
247
+ "createfiledatabase": 1,
248
+ "deploy": 1,
249
+ "rundeploy": 1,
250
+ "dev": 1,
251
+ "rundev": 1,
252
+ "docs": 1,
253
+ "search": 1,
254
+ "loaddocsindex": 1,
255
+ "rankdocs": 1,
256
+ "env": 1,
257
+ "appendenvifmissing": 1,
258
+ "ensureenvexample": 1,
259
+ "listconfigprofiles": 1,
260
+ "loadenv": 1,
261
+ "validateappenv": 1,
262
+ "validateenv": 1,
263
+ "export": 1,
264
+ "runexport": 1,
265
+ "fs": 7,
266
+ "diagnostics": 1,
267
+ "analyzefastscript": 1,
268
+ "assertfastscript": 1,
269
+ "formatdiagnosticsreport": 1,
270
+ "error": 2,
271
+ "codes": 2,
272
+ "resolveerrormeta": 1,
273
+ "formatter": 1,
274
+ "formatfastscriptsource": 1,
275
+ "runformat": 1,
276
+ "linter": 1,
277
+ "runlint": 1,
278
+ "normalize": 1,
279
+ "normalizefastscript": 1,
280
+ "normalizefastscriptwithmetadata": 1,
281
+ "striptypescripthints": 1,
282
+ "parser": 1,
283
+ "fastscript": 1,
284
+ "ast": 1,
285
+ "version": 2,
286
+ "buildinlinesourcemapcomment": 1,
287
+ "compilefastscript": 1,
288
+ "formatdiagnostic": 1,
289
+ "parsefastscript": 1,
290
+ "tokenizefastscript": 1,
291
+ "i18n": 1,
292
+ "geti18nconfig": 1,
293
+ "resolvelocalefrompath": 1,
294
+ "withlocalepath": 1,
295
+ "interop": 1,
296
+ "importany": 1,
297
+ "interopcall": 1,
298
+ "resolveexport": 1,
299
+ "jobs": 1,
300
+ "createdistributedjobqueue": 1,
301
+ "createjobqueue": 1,
302
+ "createredisjobqueue": 1,
303
+ "loadjobhandlers": 1,
304
+ "loadschedules": 1,
305
+ "replaydeadletter": 1,
306
+ "runworker": 1,
307
+ "logger": 1,
308
+ "createlogger": 1,
309
+ "metrics": 1,
310
+ "createmetricsstore": 1,
311
+ "composemiddleware": 1,
312
+ "migrate": 1,
313
+ "runmigrate": 1,
314
+ "migration": 1,
315
+ "wizard": 1,
316
+ "runmigrationwizard": 1,
317
+ "module": 1,
318
+ "loader": 1,
319
+ "importsourcemodule": 1,
320
+ "oauth": 1,
321
+ "providers": 1,
322
+ "createoauthadapter": 1,
323
+ "getauthprovider": 1,
324
+ "listauthproviders": 1,
325
+ "observability": 1,
326
+ "createotelexporter": 1,
327
+ "createtracer": 1,
328
+ "plugins": 1,
329
+ "plugin": 1,
330
+ "createpluginruntime": 1,
331
+ "retention": 1,
332
+ "applyjsonarrayretention": 1,
333
+ "runretentionsweep": 1,
334
+ "sweepfileages": 1,
335
+ "routes": 1,
336
+ "compareroutepriority": 1,
337
+ "inferroutelayouts": 1,
338
+ "inferroutemeta": 1,
339
+ "inferrouteparamtypes": 1,
340
+ "islayoutfile": 1,
341
+ "isnotfoundfile": 1,
342
+ "sortroutesbypriority": 1,
343
+ "scheduler": 1,
344
+ "nextcronrun": 1,
345
+ "normalizescheduleentry": 1,
346
+ "parsecronexpression": 1,
347
+ "security": 1,
348
+ "abuseguard": 1,
349
+ "createfilewindowstore": 1,
350
+ "creatememorywindowstore": 1,
351
+ "createrediswindowstore": 1,
352
+ "createwindowstore": 1,
353
+ "csrf": 1,
354
+ "ratelimit": 1,
355
+ "requestquota": 1,
356
+ "securityheaders": 1,
357
+ "server": 1,
358
+ "runtime": 1,
359
+ "runserver": 1,
360
+ "session": 1,
361
+ "policy": 1,
362
+ "resolvesessionpolicy": 1,
363
+ "start": 1,
364
+ "runstart": 1,
365
+ "storage": 1,
366
+ "createlocalstorage": 1,
367
+ "creates3compatiblestorage": 1,
368
+ "style": 1,
369
+ "system": 1,
370
+ "ensuredesignsystem": 1,
371
+ "validateappstyles": 1,
372
+ "tenant": 1,
373
+ "resolvetenantid": 1,
374
+ "scopecachebytenant": 1,
375
+ "scopedbbytenant": 1,
376
+ "typecheck": 1,
377
+ "runtypecheck": 1,
378
+ "validate": 1,
379
+ "runvalidate": 1,
380
+ "validation": 1,
381
+ "readbody": 1,
382
+ "readjsonbody": 1,
383
+ "validateshape": 1,
384
+ "webhook": 1,
385
+ "isreplay": 1,
386
+ "readrawbody": 1,
387
+ "signpayload": 1,
388
+ "verifysignature": 1,
389
+ "verifywebhookrequest": 1,
390
+ "worker": 1,
391
+ "runworkercommand": 1
392
+ }
393
+ },
394
+ {
395
+ "id": "architecture_overview",
396
+ "title": "FastScript Architecture Overview",
397
+ "path": "/docs/architecture_overview",
398
+ "summary": "1. Tokenize `.fs` input with trivia-preserving CST tokens.",
399
+ "terms": {
400
+ "1": 5,
401
+ "2": 4,
402
+ "3": 4,
403
+ "4": 4,
404
+ "5": 4,
405
+ "fastscript": 4,
406
+ "architecture": 2,
407
+ "overview": 2,
408
+ "tokenize": 2,
409
+ "fs": 5,
410
+ "input": 2,
411
+ "with": 6,
412
+ "trivia": 2,
413
+ "preserving": 2,
414
+ "cst": 3,
415
+ "tokens": 2,
416
+ "language": 2,
417
+ "pipeline": 4,
418
+ "apply": 2,
419
+ "declaration": 1,
420
+ "rewrites": 1,
421
+ "state": 1,
422
+ "fn": 1,
423
+ "to": 3,
424
+ "canonical": 1,
425
+ "javascript": 2,
426
+ "parse": 1,
427
+ "rewritten": 1,
428
+ "source": 3,
429
+ "full": 1,
430
+ "ecmascript": 1,
431
+ "module": 1,
432
+ "grammar": 1,
433
+ "remap": 1,
434
+ "ast": 2,
435
+ "spans": 1,
436
+ "original": 1,
437
+ "offsets": 1,
438
+ "emit": 4,
439
+ "deterministic": 1,
440
+ "diagnostics": 4,
441
+ "and": 6,
442
+ "chained": 1,
443
+ "maps": 1,
444
+ "static": 1,
445
+ "analysis": 1,
446
+ "parser": 1,
447
+ "fs100x": 1,
448
+ "are": 1,
449
+ "collected": 1,
450
+ "first": 1,
451
+ "linter": 1,
452
+ "runs": 1,
453
+ "aware": 1,
454
+ "rules": 1,
455
+ "safe": 1,
456
+ "autofix": 1,
457
+ "support": 1,
458
+ "type": 1,
459
+ "checker": 1,
460
+ "builds": 1,
461
+ "lexical": 1,
462
+ "scopes": 1,
463
+ "symbol": 1,
464
+ "tables": 1,
465
+ "inference": 1,
466
+ "semantic": 1,
467
+ "checks": 2,
468
+ "fs410x": 1,
469
+ "route": 2,
470
+ "compatibility": 1,
471
+ "fs400x": 1,
472
+ "build": 1,
473
+ "validate": 2,
474
+ "app": 3,
475
+ "structure": 1,
476
+ "style": 1,
477
+ "constraints": 1,
478
+ "normalize": 1,
479
+ "inline": 1,
480
+ "map": 1,
481
+ "chaining": 1,
482
+ "bundle": 1,
483
+ "routes": 1,
484
+ "api": 3,
485
+ "middleware": 4,
486
+ "esbuild": 1,
487
+ "generate": 1,
488
+ "dist": 1,
489
+ "manifest": 1,
490
+ "json": 2,
491
+ "runtime": 2,
492
+ "router": 1,
493
+ "html": 2,
494
+ "shell": 1,
495
+ "load": 1,
496
+ "env": 2,
497
+ "schema": 1,
498
+ "initialize": 1,
499
+ "auth": 1,
500
+ "db": 1,
501
+ "queue": 1,
502
+ "cache": 1,
503
+ "storage": 1,
504
+ "services": 1,
505
+ "chain": 1,
506
+ "core": 1,
507
+ "security": 1,
508
+ "plugin": 1,
509
+ "resolve": 1,
510
+ "page": 1,
511
+ "execute": 1,
512
+ "handler": 1,
513
+ "return": 1,
514
+ "ssr": 1,
515
+ "or": 1,
516
+ "response": 1,
517
+ "conformance": 5,
518
+ "regression": 2,
519
+ "fixtures": 2,
520
+ "spec": 2,
521
+ "snapshot": 1,
522
+ "baseline": 1,
523
+ "snapshots": 1,
524
+ "harness": 1,
525
+ "npm": 1,
526
+ "run": 1,
527
+ "test": 1
528
+ }
529
+ },
530
+ {
531
+ "id": "compatibility_migration_packs",
532
+ "title": "Compatibility Layer And Migration Packs",
533
+ "path": "/docs/compatibility_migration_packs",
534
+ "summary": "FastScript ships migration packs for common adoption paths:",
535
+ "terms": {
536
+ "1": 2,
537
+ "2": 2,
538
+ "3": 2,
539
+ "4": 1,
540
+ "5": 1,
541
+ "compatibility": 5,
542
+ "layer": 2,
543
+ "and": 5,
544
+ "migration": 6,
545
+ "packs": 7,
546
+ "fastscript": 8,
547
+ "ships": 2,
548
+ "for": 5,
549
+ "common": 2,
550
+ "adoption": 2,
551
+ "paths": 2,
552
+ "js": 3,
553
+ "to": 6,
554
+ "fs": 5,
555
+ "basic": 1,
556
+ "javascript": 1,
557
+ "page": 1,
558
+ "starter": 2,
559
+ "ts": 3,
560
+ "typed": 1,
561
+ "typescript": 1,
562
+ "conversion": 9,
563
+ "next": 1,
564
+ "core": 1,
565
+ "routing": 1,
566
+ "layout": 1,
567
+ "checklist": 1,
568
+ "strict": 1,
569
+ "is": 3,
570
+ "first": 2,
571
+ "rename": 2,
572
+ "only": 2,
573
+ "by": 1,
574
+ "default": 1,
575
+ "eligible": 1,
576
+ "jsx": 2,
577
+ "tsx": 2,
578
+ "files": 2,
579
+ "rewrite": 1,
580
+ "import": 2,
581
+ "specifiers": 1,
582
+ "that": 1,
583
+ "point": 1,
584
+ "renamed": 1,
585
+ "emit": 1,
586
+ "manifest": 5,
587
+ "diff": 3,
588
+ "preview": 4,
589
+ "validation": 1,
590
+ "report": 2,
591
+ "fidelity": 4,
592
+ "fail": 3,
593
+ "when": 2,
594
+ "protected": 1,
595
+ "scopes": 1,
596
+ "would": 1,
597
+ "be": 1,
598
+ "mutated": 1,
599
+ "idempotency": 1,
600
+ "resolution": 1,
601
+ "checks": 1,
602
+ "do": 1,
603
+ "not": 1,
604
+ "pass": 1,
605
+ "after": 1,
606
+ "teams": 1,
607
+ "can": 1,
608
+ "keep": 1,
609
+ "authoring": 1,
610
+ "ordinary": 1,
611
+ "directly": 1,
612
+ "inside": 1,
613
+ "the": 2,
614
+ "extension": 1,
615
+ "runtime": 1,
616
+ "container": 1,
617
+ "specific": 1,
618
+ "forms": 1,
619
+ "such": 1,
620
+ "as": 1,
621
+ "fn": 1,
622
+ "state": 1,
623
+ "remain": 1,
624
+ "optional": 2,
625
+ "sugar": 1,
626
+ "use": 3,
627
+ "npm": 6,
628
+ "run": 8,
629
+ "wizard": 1,
630
+ "migrate": 4,
631
+ "path": 4,
632
+ "driven": 1,
633
+ "planning": 1,
634
+ "dry": 2,
635
+ "trust": 1,
636
+ "previews": 1,
637
+ "convert": 1,
638
+ "an": 1,
639
+ "alias": 1,
640
+ "level": 1,
641
+ "full": 2,
642
+ "on": 1,
643
+ "unproven": 1,
644
+ "proof": 1,
645
+ "mode": 1,
646
+ "config": 1,
647
+ "json": 4,
648
+ "see": 1,
649
+ "example": 1,
650
+ "rollback": 3,
651
+ "workflow": 1,
652
+ "inspect": 2,
653
+ "latest": 4,
654
+ "from": 1
655
+ }
656
+ },
657
+ {
658
+ "id": "compiler_error_codes",
659
+ "title": "FastScript Compiler Error Codes",
660
+ "path": "/docs/compiler_error_codes",
661
+ "summary": "- `FS1001`: Invalid reactive declaration (`~name = expression` expected).",
662
+ "terms": {
663
+ "fastscript": 2,
664
+ "compiler": 4,
665
+ "error": 5,
666
+ "codes": 2,
667
+ "fs1001": 2,
668
+ "invalid": 6,
669
+ "reactive": 2,
670
+ "declaration": 5,
671
+ "name": 4,
672
+ "expression": 3,
673
+ "expected": 4,
674
+ "parse": 2,
675
+ "fs1002": 1,
676
+ "state": 2,
677
+ "fs1003": 1,
678
+ "function": 2,
679
+ "fn": 1,
680
+ "fs1004": 1,
681
+ "reserved": 1,
682
+ "legacy": 1,
683
+ "compatibility": 1,
684
+ "code": 1,
685
+ "for": 2,
686
+ "runtime": 2,
687
+ "frontend": 1,
688
+ "type": 4,
689
+ "surface": 1,
690
+ "conflicts": 1,
691
+ "current": 1,
692
+ "js": 1,
693
+ "ts": 1,
694
+ "compatible": 1,
695
+ "fs": 1,
696
+ "parsing": 1,
697
+ "should": 1,
698
+ "not": 3,
699
+ "emit": 1,
700
+ "this": 1,
701
+ "ordinary": 1,
702
+ "interface": 1,
703
+ "enum": 1,
704
+ "usage": 1,
705
+ "fs1005": 1,
706
+ "fs1006": 1,
707
+ "identifier": 1,
708
+ "fs1007": 1,
709
+ "todo": 2,
710
+ "token": 3,
711
+ "warning": 3,
712
+ "fs1010": 1,
713
+ "unterminated": 1,
714
+ "fs1101": 1,
715
+ "unsupported": 1,
716
+ "directive": 1,
717
+ "lint": 1,
718
+ "fs3001": 1,
719
+ "blocking": 1,
720
+ "fs3002": 1,
721
+ "var": 1,
722
+ "fs3003": 1,
723
+ "inline": 1,
724
+ "script": 1,
725
+ "fs3004": 1,
726
+ "binding": 2,
727
+ "can": 1,
728
+ "be": 1,
729
+ "const": 1,
730
+ "typecheck": 1,
731
+ "semantics": 1,
732
+ "fs4001": 1,
733
+ "duplicate": 1,
734
+ "route": 2,
735
+ "mapping": 1,
736
+ "fs4002": 1,
737
+ "param": 1,
738
+ "referenced": 1,
739
+ "fs4101": 1,
740
+ "unknown": 1,
741
+ "symbol": 2,
742
+ "fs4102": 1,
743
+ "assignment": 1,
744
+ "update": 1,
745
+ "to": 1,
746
+ "immutable": 1,
747
+ "fs4103": 1,
748
+ "mismatch": 3,
749
+ "fs4104": 1,
750
+ "argument": 1,
751
+ "count": 1,
752
+ "fs4105": 1,
753
+ "return": 1,
754
+ "fs4106": 1,
755
+ "non": 1,
756
+ "callable": 1,
757
+ "value": 1,
758
+ "invoked": 1,
759
+ "fs4107": 1,
760
+ "operator": 1,
761
+ "operand": 1,
762
+ "types": 1,
763
+ "fs4201": 1,
764
+ "used": 1,
765
+ "outside": 1,
766
+ "available": 1,
767
+ "context": 1,
768
+ "modes": 1,
769
+ "strict": 1,
770
+ "warnings": 2,
771
+ "and": 1,
772
+ "errors": 2,
773
+ "are": 1,
774
+ "reported": 1,
775
+ "fail": 2,
776
+ "compilation": 1,
777
+ "lenient": 1,
778
+ "recovers": 1,
779
+ "where": 1,
780
+ "possible": 1,
781
+ "do": 1,
782
+ "build": 1
783
+ }
784
+ },
785
+ {
786
+ "id": "contributing",
787
+ "title": "Contributing to FastScript",
788
+ "path": "/docs/contributing",
789
+ "summary": "1. `npm install`",
790
+ "terms": {
791
+ "1": 2,
792
+ "2": 1,
793
+ "3": 1,
794
+ "contributing": 2,
795
+ "to": 2,
796
+ "fastscript": 2,
797
+ "npm": 4,
798
+ "install": 3,
799
+ "local": 1,
800
+ "setup": 1,
801
+ "run": 2,
802
+ "hooks": 1,
803
+ "qa": 3,
804
+ "gate": 2,
805
+ "definition": 1,
806
+ "of": 1,
807
+ "done": 1,
808
+ "feature": 1,
809
+ "includes": 1,
810
+ "tests": 1,
811
+ "docs": 3,
812
+ "updated": 2,
813
+ "for": 3,
814
+ "public": 1,
815
+ "behavior": 2,
816
+ "changes": 3,
817
+ "passes": 1,
818
+ "locally": 1,
819
+ "all": 1,
820
+ "release": 1,
821
+ "candidates": 1,
822
+ "stable": 2,
823
+ "cuts": 1,
824
+ "no": 1,
825
+ "unchecked": 1,
826
+ "security": 1,
827
+ "regressions": 1,
828
+ "language": 3,
829
+ "update": 1,
830
+ "spec": 3,
831
+ "v1": 1,
832
+ "md": 2,
833
+ "and": 3,
834
+ "conformance": 1,
835
+ "snapshots": 1,
836
+ "review": 1,
837
+ "checklist": 1,
838
+ "is": 1,
839
+ "backwards": 1,
840
+ "compatible": 1,
841
+ "or": 1,
842
+ "clearly": 1,
843
+ "documented": 1,
844
+ "as": 1,
845
+ "breaking": 1,
846
+ "are": 5,
847
+ "parser": 1,
848
+ "linter": 1,
849
+ "typecheck": 1,
850
+ "diagnostics": 1,
851
+ "deterministic": 1,
852
+ "with": 2,
853
+ "codes": 1,
854
+ "source": 1,
855
+ "maps": 1,
856
+ "still": 1,
857
+ "correct": 1,
858
+ "transformed": 1,
859
+ "fs": 1,
860
+ "code": 1,
861
+ "formatter": 1,
862
+ "results": 1,
863
+ "idempotent": 1,
864
+ "failure": 1,
865
+ "paths": 1,
866
+ "tested": 1,
867
+ "migration": 1,
868
+ "notes": 1,
869
+ "rfc": 2,
870
+ "requirement": 1,
871
+ "follow": 1,
872
+ "governance": 1,
873
+ "versioning": 1,
874
+ "policy": 1,
875
+ "major": 1,
876
+ "non": 1,
877
+ "trivial": 1,
878
+ "must": 1,
879
+ "ship": 1,
880
+ "an": 1,
881
+ "in": 1,
882
+ "rfcs": 1
883
+ }
884
+ },
885
+ {
886
+ "id": "deploy_guide",
887
+ "title": "FastScript Deploy Guide",
888
+ "path": "/docs/deploy_guide",
889
+ "summary": "- `node/pm2`: stable",
890
+ "terms": {
891
+ "1": 3,
892
+ "2": 3,
893
+ "3": 3,
894
+ "4": 1,
895
+ "fastscript": 4,
896
+ "deploy": 6,
897
+ "guide": 2,
898
+ "node": 5,
899
+ "pm2": 4,
900
+ "stable": 5,
901
+ "support": 1,
902
+ "levels": 1,
903
+ "vercel": 5,
904
+ "catch": 2,
905
+ "all": 3,
906
+ "ssr": 4,
907
+ "api": 5,
908
+ "adapter": 2,
909
+ "cloudflare": 3,
910
+ "worker": 3,
911
+ "path": 1,
912
+ "npm": 5,
913
+ "run": 5,
914
+ "qa": 1,
915
+ "build": 2,
916
+ "start": 1,
917
+ "ecosystem": 1,
918
+ "config": 1,
919
+ "cjs": 1,
920
+ "required": 2,
921
+ "env": 2,
922
+ "production": 2,
923
+ "port": 1,
924
+ "session": 1,
925
+ "secret": 1,
926
+ "in": 2,
927
+ "commit": 2,
928
+ "generated": 2,
929
+ "json": 2,
930
+ "mjs": 1,
931
+ "import": 1,
932
+ "project": 1,
933
+ "notes": 2,
934
+ "uses": 1,
935
+ "one": 1,
936
+ "serverless": 1,
937
+ "handler": 1,
938
+ "for": 2,
939
+ "has": 1,
940
+ "immutable": 1,
941
+ "cache": 1,
942
+ "headers": 1,
943
+ "hashed": 1,
944
+ "assets": 1,
945
+ "wrangler": 2,
946
+ "toml": 1,
947
+ "and": 2,
948
+ "dist": 2,
949
+ "js": 1,
950
+ "handles": 1,
951
+ "routes": 2,
952
+ "middleware": 1,
953
+ "static": 1,
954
+ "asset": 1,
955
+ "pass": 1,
956
+ "through": 1,
957
+ "requires": 1,
958
+ "current": 1,
959
+ "artifacts": 1,
960
+ "manifest": 1
961
+ }
962
+ },
963
+ {
964
+ "id": "ecosystem_adoption_loop",
965
+ "title": "Ecosystem Adoption Loop",
966
+ "path": "/docs/ecosystem_adoption_loop",
967
+ "summary": "1. Ship production-ready examples (`examples/startup-mvp`, `examples/fullstack`).",
968
+ "terms": {
969
+ "1": 2,
970
+ "2": 1,
971
+ "3": 1,
972
+ "4": 1,
973
+ "5": 1,
974
+ "ecosystem": 2,
975
+ "adoption": 2,
976
+ "loop": 2,
977
+ "ship": 2,
978
+ "production": 2,
979
+ "ready": 2,
980
+ "examples": 6,
981
+ "startup": 2,
982
+ "mvp": 2,
983
+ "fullstack": 2,
984
+ "publish": 1,
985
+ "plugin": 1,
986
+ "metadata": 1,
987
+ "via": 1,
988
+ "agents": 1,
989
+ "plugins": 1,
990
+ "marketplace": 1,
991
+ "json": 1,
992
+ "run": 1,
993
+ "migration": 1,
994
+ "packs": 1,
995
+ "and": 2,
996
+ "case": 1,
997
+ "studies": 1,
998
+ "for": 1,
999
+ "onboarding": 1,
1000
+ "track": 1,
1001
+ "kpi": 1,
1002
+ "outcomes": 1,
1003
+ "weekly": 1,
1004
+ "feed": 1,
1005
+ "improvements": 1,
1006
+ "into": 1,
1007
+ "docs": 1,
1008
+ "templates": 1,
1009
+ "maintain": 1,
1010
+ "community": 1,
1011
+ "support": 1,
1012
+ "playbook": 1,
1013
+ "issues": 1,
1014
+ "discussions": 1,
1015
+ "office": 1,
1016
+ "hours": 1
1017
+ }
1018
+ },
1019
+ {
1020
+ "id": "edge_runtime_parity",
1021
+ "title": "Edge Runtime Parity Matrix",
1022
+ "path": "/docs/edge_runtime_parity",
1023
+ "summary": "| Capability | Node Runtime | Vercel Adapter | Cloudflare Adapter |",
1024
+ "terms": {
1025
+ "edge": 2,
1026
+ "runtime": 4,
1027
+ "parity": 2,
1028
+ "matrix": 2,
1029
+ "capability": 2,
1030
+ "node": 2,
1031
+ "vercel": 2,
1032
+ "adapter": 4,
1033
+ "cloudflare": 2,
1034
+ "ssr": 1,
1035
+ "routes": 2,
1036
+ "yes": 19,
1037
+ "api": 1,
1038
+ "middleware": 1,
1039
+ "cache": 1,
1040
+ "tags": 1,
1041
+ "invalidation": 1,
1042
+ "storage": 1,
1043
+ "signed": 1,
1044
+ "urls": 1,
1045
+ "queue": 1,
1046
+ "worker": 3,
1047
+ "partial": 2,
1048
+ "external": 2,
1049
+ "pwa": 1,
1050
+ "assets": 1
1051
+ }
1052
+ },
1053
+ {
1054
+ "id": "governance_versioning_policy",
1055
+ "title": "GOVERNANCE_VERSIONING_POLICY",
1056
+ "path": "/docs/governance_versioning_policy",
1057
+ "summary": "This policy governs FastScript language/runtime changes beginning with Language v1.",
1058
+ "terms": {
1059
+ "1": 2,
1060
+ "2": 2,
1061
+ "3": 2,
1062
+ "4": 2,
1063
+ "5": 1,
1064
+ "6": 1,
1065
+ "7": 1,
1066
+ "8": 1,
1067
+ "governance": 2,
1068
+ "versioning": 3,
1069
+ "policy": 5,
1070
+ "this": 2,
1071
+ "governs": 2,
1072
+ "fastscript": 4,
1073
+ "language": 7,
1074
+ "runtime": 6,
1075
+ "changes": 7,
1076
+ "beginning": 2,
1077
+ "with": 3,
1078
+ "v1": 4,
1079
+ "and": 5,
1080
+ "scope": 1,
1081
+ "semantic": 1,
1082
+ "rules": 1,
1083
+ "major": 3,
1084
+ "any": 3,
1085
+ "breaking": 3,
1086
+ "change": 6,
1087
+ "to": 2,
1088
+ "syntax": 4,
1089
+ "behavior": 2,
1090
+ "cli": 2,
1091
+ "contracts": 3,
1092
+ "diagnostics": 1,
1093
+ "codes": 1,
1094
+ "or": 3,
1095
+ "generated": 1,
1096
+ "output": 1,
1097
+ "minor": 4,
1098
+ "backward": 2,
1099
+ "compatible": 3,
1100
+ "feature": 1,
1101
+ "additions": 1,
1102
+ "patch": 2,
1103
+ "bug": 1,
1104
+ "correctness": 1,
1105
+ "fixes": 1,
1106
+ "definition": 1,
1107
+ "a": 2,
1108
+ "is": 3,
1109
+ "if": 1,
1110
+ "of": 1,
1111
+ "the": 1,
1112
+ "following": 1,
1113
+ "occurs": 2,
1114
+ "valid": 2,
1115
+ "source": 2,
1116
+ "fails": 1,
1117
+ "parse": 1,
1118
+ "typecheck": 1,
1119
+ "lint": 1,
1120
+ "without": 2,
1121
+ "opt": 1,
1122
+ "in": 4,
1123
+ "flags": 1,
1124
+ "for": 3,
1125
+ "previously": 1,
1126
+ "programs": 1,
1127
+ "stable": 4,
1128
+ "diagnostic": 2,
1129
+ "code": 2,
1130
+ "removed": 2,
1131
+ "semantics": 1,
1132
+ "materially": 1,
1133
+ "aliasing": 1,
1134
+ "ast": 1,
1135
+ "cst": 1,
1136
+ "map": 1,
1137
+ "schema": 1,
1138
+ "incompatibly": 1,
1139
+ "command": 1,
1140
+ "flag": 2,
1141
+ "are": 2,
1142
+ "renamed": 1,
1143
+ "rfc": 2,
1144
+ "workflow": 1,
1145
+ "required": 2,
1146
+ "non": 1,
1147
+ "trivial": 1,
1148
+ "open": 1,
1149
+ "spec": 3,
1150
+ "rfcs": 2,
1151
+ "using": 1,
1152
+ "0000": 1,
1153
+ "template": 1,
1154
+ "md": 2,
1155
+ "include": 3,
1156
+ "motivation": 1,
1157
+ "exact": 2,
1158
+ "grammar": 2,
1159
+ "deltas": 1,
1160
+ "migration": 3,
1161
+ "rollback": 2,
1162
+ "keep": 1,
1163
+ "review": 1,
1164
+ "window": 1,
1165
+ "owners": 1,
1166
+ "land": 1,
1167
+ "behind": 1,
1168
+ "risky": 1,
1169
+ "promote": 1,
1170
+ "after": 2,
1171
+ "conformance": 1,
1172
+ "qa": 3,
1173
+ "gates": 3,
1174
+ "pass": 1,
1175
+ "deprecation": 2,
1176
+ "minimum": 1,
1177
+ "period": 1,
1178
+ "one": 1,
1179
+ "release": 4,
1180
+ "cycle": 1,
1181
+ "deprecations": 1,
1182
+ "must": 2,
1183
+ "warning": 1,
1184
+ "guidance": 1,
1185
+ "changelog": 1,
1186
+ "entry": 1,
1187
+ "removal": 1,
1188
+ "only": 1,
1189
+ "next": 1,
1190
+ "stability": 1,
1191
+ "commitments": 1,
1192
+ "state": 1,
1193
+ "fn": 1,
1194
+ "js": 1,
1195
+ "module": 1,
1196
+ "existing": 1,
1197
+ "forms": 1,
1198
+ "never": 1,
1199
+ "repurposed": 1,
1200
+ "releases": 1,
1201
+ "merge": 2,
1202
+ "npm": 3,
1203
+ "run": 3,
1204
+ "gate": 2,
1205
+ "all": 1,
1206
+ "checklist": 2,
1207
+ "completion": 1,
1208
+ "security": 1,
1209
+ "audit": 1,
1210
+ "evidence": 1,
1211
+ "publication": 1,
1212
+ "notes": 1,
1213
+ "requirement": 1,
1214
+ "user": 1,
1215
+ "visible": 1,
1216
+ "behavioral": 1,
1217
+ "before": 1,
1218
+ "examples": 1,
1219
+ "risk": 1,
1220
+ "classification": 1,
1221
+ "fallback": 1,
1222
+ "strategy": 1,
1223
+ "version": 1,
1224
+ "where": 1,
1225
+ "lands": 1
1226
+ }
1227
+ },
1228
+ {
1229
+ "id": "incident_playbook",
1230
+ "title": "Incident Playbook",
1231
+ "path": "/docs/incident_playbook",
1232
+ "summary": "This document has been moved to the protected FastScript private-core workspace.",
1233
+ "terms": {
1234
+ "incident": 3,
1235
+ "playbook": 2,
1236
+ "this": 2,
1237
+ "document": 2,
1238
+ "has": 2,
1239
+ "been": 2,
1240
+ "moved": 2,
1241
+ "to": 2,
1242
+ "the": 3,
1243
+ "protected": 2,
1244
+ "fastscript": 4,
1245
+ "private": 2,
1246
+ "core": 2,
1247
+ "workspace": 2,
1248
+ "reason": 1,
1249
+ "it": 1,
1250
+ "contains": 1,
1251
+ "operational": 1,
1252
+ "response": 1,
1253
+ "details": 1,
1254
+ "that": 1,
1255
+ "should": 1,
1256
+ "not": 1,
1257
+ "live": 1,
1258
+ "in": 1,
1259
+ "public": 1,
1260
+ "facing": 1,
1261
+ "repository": 1,
1262
+ "for": 1,
1263
+ "authorized": 1,
1264
+ "access": 1,
1265
+ "contact": 1,
1266
+ "security": 1,
1267
+ "dev": 2,
1268
+ "legal": 1
1269
+ }
1270
+ },
1271
+ {
1272
+ "id": "interop_matrix",
1273
+ "title": "FastScript Interop Matrix",
1274
+ "path": "/docs/interop_matrix",
1275
+ "summary": "- Generated: 2026-04-14T07:04:23.711Z",
1276
+ "terms": {
1277
+ "0": 1,
1278
+ "13": 2,
1279
+ "23": 2,
1280
+ "163": 1,
1281
+ "174": 1,
1282
+ "209": 1,
1283
+ "226": 1,
1284
+ "340": 1,
1285
+ "365": 1,
1286
+ "386": 1,
1287
+ "528": 1,
1288
+ "618": 1,
1289
+ "1809": 1,
1290
+ "2026": 2,
1291
+ "9438": 1,
1292
+ "31834": 1,
1293
+ "200464": 1,
1294
+ "fastscript": 17,
1295
+ "interop": 4,
1296
+ "matrix": 3,
1297
+ "generated": 2,
1298
+ "04": 4,
1299
+ "14t07": 2,
1300
+ "711z": 2,
1301
+ "profile": 1,
1302
+ "test": 1,
1303
+ "total": 1,
1304
+ "pass": 14,
1305
+ "fail": 1,
1306
+ "includes": 1,
1307
+ "framework": 7,
1308
+ "api": 3,
1309
+ "compatibility": 1,
1310
+ "shims": 1,
1311
+ "for": 1,
1312
+ "react": 5,
1313
+ "next": 4,
1314
+ "link": 3,
1315
+ "vue": 4,
1316
+ "svelte": 4,
1317
+ "store": 3,
1318
+ "preact": 4,
1319
+ "and": 3,
1320
+ "solid": 4,
1321
+ "js": 6,
1322
+ "scoped": 3,
1323
+ "subpath": 3,
1324
+ "dual": 5,
1325
+ "mode": 5,
1326
+ "package": 8,
1327
+ "checks": 3,
1328
+ "runtime": 2,
1329
+ "edge": 2,
1330
+ "lib": 2,
1331
+ "real": 7,
1332
+ "npm": 12,
1333
+ "using": 1,
1334
+ "installed": 1,
1335
+ "dependencies": 4,
1336
+ "acorn": 6,
1337
+ "walk": 3,
1338
+ "astring": 3,
1339
+ "node": 14,
1340
+ "built": 2,
1341
+ "in": 1,
1342
+ "commonjs": 2,
1343
+ "case": 1,
1344
+ "target": 1,
1345
+ "kind": 1,
1346
+ "platform": 1,
1347
+ "status": 1,
1348
+ "bundle": 1,
1349
+ "bytes": 1,
1350
+ "notes": 1,
1351
+ "core": 4,
1352
+ "fs": 10,
1353
+ "browser": 6,
1354
+ "module": 10,
1355
+ "imports": 10,
1356
+ "dom": 1,
1357
+ "client": 1,
1358
+ "shape": 1,
1359
+ "createapp": 1,
1360
+ "h": 2,
1361
+ "writable": 1,
1362
+ "render": 1,
1363
+ "signals": 1,
1364
+ "export": 2,
1365
+ "through": 1,
1366
+ "esm": 1,
1367
+ "condition": 1,
1368
+ "cjs": 1,
1369
+ "left": 1,
1370
+ "pad": 1,
1371
+ "builtins": 1,
1372
+ "crypto": 1,
1373
+ "path": 1,
1374
+ "ins": 1,
1375
+ "from": 3,
1376
+ "failures": 1,
1377
+ "none": 1
1378
+ }
1379
+ },
1380
+ {
1381
+ "id": "interop_rules",
1382
+ "title": "FastScript Interop Rules",
1383
+ "path": "/docs/interop_rules",
1384
+ "summary": "1. Prefer ESM imports.",
1385
+ "terms": {
1386
+ "0": 1,
1387
+ "1": 5,
1388
+ "2": 3,
1389
+ "3": 3,
1390
+ "4": 2,
1391
+ "5": 2,
1392
+ "6": 1,
1393
+ "fastscript": 3,
1394
+ "interop": 5,
1395
+ "rules": 2,
1396
+ "prefer": 2,
1397
+ "esm": 2,
1398
+ "imports": 2,
1399
+ "module": 2,
1400
+ "cjs": 2,
1401
+ "is": 2,
1402
+ "supported": 2,
1403
+ "via": 1,
1404
+ "esbuild": 1,
1405
+ "bundling": 1,
1406
+ "fs": 10,
1407
+ "can": 1,
1408
+ "import": 1,
1409
+ "js": 3,
1410
+ "mjs": 1,
1411
+ "json": 1,
1412
+ "importany": 1,
1413
+ "handles": 1,
1414
+ "default": 3,
1415
+ "only": 1,
1416
+ "modules": 1,
1417
+ "use": 1,
1418
+ "resolveexport": 1,
1419
+ "mod": 1,
1420
+ "named": 1,
1421
+ "for": 2,
1422
+ "unknown": 1,
1423
+ "shapes": 1,
1424
+ "runtime": 3,
1425
+ "context": 4,
1426
+ "v2": 2,
1427
+ "models": 1,
1428
+ "availability": 1,
1429
+ "by": 1,
1430
+ "file": 1,
1431
+ "app": 4,
1432
+ "pages": 1,
1433
+ "universal": 6,
1434
+ "browser": 2,
1435
+ "server": 4,
1436
+ "api": 2,
1437
+ "client": 2,
1438
+ "edge": 3,
1439
+ "mismatch": 1,
1440
+ "diagnostics": 1,
1441
+ "fs4201": 3,
1442
+ "symbol": 1,
1443
+ "not": 1,
1444
+ "available": 1,
1445
+ "in": 1,
1446
+ "current": 1,
1447
+ "examples": 1,
1448
+ "window": 1,
1449
+ "inside": 3,
1450
+ "process": 1,
1451
+ "self": 1,
1452
+ "allowed": 1,
1453
+ "migration": 2,
1454
+ "policy": 1,
1455
+ "mixed": 1,
1456
+ "projects": 1,
1457
+ "remain": 1,
1458
+ "during": 1,
1459
+ "proof": 1,
1460
+ "apps": 1,
1461
+ "the": 1,
1462
+ "target": 1,
1463
+ "zero": 1,
1464
+ "authored": 1,
1465
+ "under": 1,
1466
+ "while": 1,
1467
+ "generated": 1,
1468
+ "output": 1,
1469
+ "remains": 1,
1470
+ "javascript": 1
1471
+ }
1472
+ },
1473
+ {
1474
+ "id": "known_limitations",
1475
+ "title": "FastScript Known Limitations",
1476
+ "path": "/docs/known_limitations",
1477
+ "summary": "- Runtime database in core server path is file-backed by default.",
1478
+ "terms": {
1479
+ "fastscript": 2,
1480
+ "known": 2,
1481
+ "limitations": 2,
1482
+ "runtime": 2,
1483
+ "database": 2,
1484
+ "in": 3,
1485
+ "core": 2,
1486
+ "server": 2,
1487
+ "path": 2,
1488
+ "is": 4,
1489
+ "file": 2,
1490
+ "backed": 2,
1491
+ "by": 2,
1492
+ "default": 2,
1493
+ "css": 3,
1494
+ "validation": 1,
1495
+ "enforces": 1,
1496
+ "token": 1,
1497
+ "discipline": 1,
1498
+ "for": 2,
1499
+ "app": 1,
1500
+ "styles": 1,
1501
+ "and": 1,
1502
+ "class": 1,
1503
+ "usage": 1,
1504
+ "route": 1,
1505
+ "files": 1,
1506
+ "it": 2,
1507
+ "not": 2,
1508
+ "a": 1,
1509
+ "full": 2,
1510
+ "parser": 1,
1511
+ "lsp": 1,
1512
+ "still": 1,
1513
+ "does": 1,
1514
+ "perform": 1,
1515
+ "project": 1,
1516
+ "wide": 1,
1517
+ "type": 2,
1518
+ "analysis": 1,
1519
+ "document": 1,
1520
+ "centric": 1,
1521
+ "inference": 1,
1522
+ "remains": 1,
1523
+ "conservative": 1,
1524
+ "highly": 1,
1525
+ "dynamic": 1,
1526
+ "metaprogramming": 1,
1527
+ "patterns": 1
1528
+ }
1529
+ },
1530
+ {
1531
+ "id": "language_v1_migration",
1532
+ "title": "FastScript Language v1 Migration Notes",
1533
+ "path": "/docs/language_v1_migration",
1534
+ "summary": "1. Teams upgrading from pre-v1 parser/formatter/typecheck behavior.",
1535
+ "terms": {
1536
+ "0": 1,
1537
+ "1": 7,
1538
+ "2": 6,
1539
+ "3": 4,
1540
+ "4": 4,
1541
+ "5": 2,
1542
+ "6": 2,
1543
+ "fastscript": 3,
1544
+ "language": 2,
1545
+ "v1": 5,
1546
+ "migration": 5,
1547
+ "notes": 3,
1548
+ "teams": 2,
1549
+ "upgrading": 2,
1550
+ "from": 3,
1551
+ "pre": 2,
1552
+ "parser": 3,
1553
+ "formatter": 3,
1554
+ "typecheck": 4,
1555
+ "behavior": 3,
1556
+ "who": 1,
1557
+ "should": 2,
1558
+ "read": 1,
1559
+ "this": 1,
1560
+ "plugin": 1,
1561
+ "tool": 1,
1562
+ "authors": 1,
1563
+ "consuming": 1,
1564
+ "diagnostics": 2,
1565
+ "or": 1,
1566
+ "generated": 2,
1567
+ "output": 2,
1568
+ "key": 1,
1569
+ "changes": 2,
1570
+ "fs": 10,
1571
+ "parsing": 1,
1572
+ "uses": 1,
1573
+ "full": 1,
1574
+ "ecmascript": 1,
1575
+ "module": 1,
1576
+ "grammar": 1,
1577
+ "with": 3,
1578
+ "declaration": 1,
1579
+ "rewrites": 1,
1580
+ "is": 5,
1581
+ "ast": 2,
1582
+ "based": 1,
1583
+ "and": 8,
1584
+ "canonicalizes": 1,
1585
+ "to": 3,
1586
+ "valid": 2,
1587
+ "javascript": 1,
1588
+ "structure": 1,
1589
+ "linter": 1,
1590
+ "cst": 1,
1591
+ "aware": 1,
1592
+ "supports": 1,
1593
+ "safe": 1,
1594
+ "autofix": 1,
1595
+ "fix": 2,
1596
+ "type": 2,
1597
+ "checker": 1,
1598
+ "performs": 1,
1599
+ "semantic": 2,
1600
+ "analysis": 1,
1601
+ "not": 1,
1602
+ "only": 1,
1603
+ "route": 1,
1604
+ "shape": 1,
1605
+ "checks": 2,
1606
+ "include": 1,
1607
+ "stable": 1,
1608
+ "codes": 1,
1609
+ "richer": 1,
1610
+ "spans": 1,
1611
+ "related": 1,
1612
+ "context": 2,
1613
+ "metadata": 1,
1614
+ "source": 2,
1615
+ "map": 1,
1616
+ "chaining": 1,
1617
+ "emitted": 1,
1618
+ "normalization": 2,
1619
+ "into": 1,
1620
+ "esbuild": 1,
1621
+ "potentially": 1,
1622
+ "visible": 1,
1623
+ "fn": 1,
1624
+ "state": 1,
1625
+ "normalize": 1,
1626
+ "function": 1,
1627
+ "let": 1,
1628
+ "in": 2,
1629
+ "code": 1,
1630
+ "interface": 1,
1631
+ "enum": 1,
1632
+ "other": 1,
1633
+ "standard": 1,
1634
+ "ts": 2,
1635
+ "syntax": 2,
1636
+ "now": 2,
1637
+ "flow": 1,
1638
+ "through": 1,
1639
+ "the": 2,
1640
+ "js": 3,
1641
+ "compatibility": 3,
1642
+ "frontend": 1,
1643
+ "erase": 1,
1644
+ "during": 1,
1645
+ "instead": 1,
1646
+ "of": 1,
1647
+ "being": 1,
1648
+ "rejected": 1,
1649
+ "errors": 1,
1650
+ "fs410x": 1,
1651
+ "fs4201": 2,
1652
+ "can": 2,
1653
+ "fail": 2,
1654
+ "mode": 1,
1655
+ "format": 2,
1656
+ "check": 1,
1657
+ "report": 1,
1658
+ "more": 1,
1659
+ "files": 1,
1660
+ "due": 1,
1661
+ "canonical": 1,
1662
+ "formatting": 1,
1663
+ "v2": 13,
1664
+ "addendum": 1,
1665
+ "contract": 1,
1666
+ "work": 1,
1667
+ "align": 1,
1668
+ "formal": 1,
1669
+ "spec": 1,
1670
+ "execution": 1,
1671
+ "tracker": 1,
1672
+ "runtime": 5,
1673
+ "are": 2,
1674
+ "formalized": 1,
1675
+ "file": 1,
1676
+ "scope": 1,
1677
+ "rules": 1,
1678
+ "app": 4,
1679
+ "pages": 1,
1680
+ "universal": 5,
1681
+ "browser": 2,
1682
+ "server": 4,
1683
+ "api": 1,
1684
+ "client": 1,
1685
+ "edge": 2,
1686
+ "ambient": 2,
1687
+ "stdlib": 3,
1688
+ "coverage": 1,
1689
+ "tracked": 1,
1690
+ "by": 2,
1691
+ "probes": 2,
1692
+ "npm": 13,
1693
+ "run": 14,
1694
+ "test": 9,
1695
+ "methods": 1,
1696
+ "matrix": 1,
1697
+ "dom": 3,
1698
+ "inference": 3,
1699
+ "confidence": 1,
1700
+ "gates": 1,
1701
+ "globals": 1,
1702
+ "patterns": 2,
1703
+ "corpus": 1,
1704
+ "zero": 2,
1705
+ "authored": 1,
1706
+ "proof": 1,
1707
+ "gate": 1,
1708
+ "for": 2,
1709
+ "recommended": 1,
1710
+ "rollout": 1,
1711
+ "sequence": 1,
1712
+ "conformance": 1,
1713
+ "lint": 1,
1714
+ "validate": 1,
1715
+ "specific": 1,
1716
+ "tests": 1,
1717
+ "listed": 1,
1718
+ "above": 1,
1719
+ "backward": 1,
1720
+ "modules": 1,
1721
+ "preserved": 1,
1722
+ "breaking": 1,
1723
+ "governed": 1,
1724
+ "docs": 1,
1725
+ "governance": 1,
1726
+ "versioning": 1,
1727
+ "policy": 1,
1728
+ "md": 1
1729
+ }
1730
+ },
1731
+ {
1732
+ "id": "lts_policy",
1733
+ "title": "LTS_POLICY",
1734
+ "path": "/docs/lts_policy",
1735
+ "summary": "- `current`: newest stable feature line",
1736
+ "terms": {
1737
+ "0": 2,
1738
+ "1": 3,
1739
+ "2": 1,
1740
+ "3": 2,
1741
+ "4": 1,
1742
+ "18": 1,
1743
+ "90": 1,
1744
+ "lts": 10,
1745
+ "policy": 3,
1746
+ "current": 4,
1747
+ "newest": 2,
1748
+ "stable": 2,
1749
+ "feature": 3,
1750
+ "line": 8,
1751
+ "fastscript": 1,
1752
+ "versioning": 2,
1753
+ "tracks": 1,
1754
+ "long": 1,
1755
+ "term": 1,
1756
+ "supported": 2,
1757
+ "after": 1,
1758
+ "stabilization": 1,
1759
+ "commitments": 1,
1760
+ "security": 1,
1761
+ "fixes": 1,
1762
+ "and": 2,
1763
+ "critical": 1,
1764
+ "reliability": 1,
1765
+ "patches": 1,
1766
+ "only": 1,
1767
+ "no": 2,
1768
+ "breaking": 1,
1769
+ "syntax": 1,
1770
+ "runtime": 2,
1771
+ "changes": 1,
1772
+ "inside": 1,
1773
+ "an": 1,
1774
+ "major": 1,
1775
+ "backports": 1,
1776
+ "must": 2,
1777
+ "include": 3,
1778
+ "test": 1,
1779
+ "evidence": 1,
1780
+ "migration": 2,
1781
+ "notes": 2,
1782
+ "support": 1,
1783
+ "windows": 1,
1784
+ "active": 1,
1785
+ "development": 1,
1786
+ "months": 2,
1787
+ "from": 1,
1788
+ "designation": 1,
1789
+ "overlap": 1,
1790
+ "window": 1,
1791
+ "when": 1,
1792
+ "next": 2,
1793
+ "is": 1,
1794
+ "introduced": 1,
1795
+ "backport": 2,
1796
+ "rules": 1,
1797
+ "patch": 2,
1798
+ "already": 1,
1799
+ "pass": 1,
1800
+ "on": 1,
1801
+ "schema": 1,
1802
+ "contract": 1,
1803
+ "break": 1,
1804
+ "in": 3,
1805
+ "explicit": 1,
1806
+ "changelog": 1,
1807
+ "annotation": 1,
1808
+ "rollback": 1,
1809
+ "procedure": 1,
1810
+ "release": 3,
1811
+ "end": 1,
1812
+ "of": 1,
1813
+ "life": 1,
1814
+ "eol": 2,
1815
+ "notice": 1,
1816
+ "published": 1,
1817
+ "at": 1,
1818
+ "least": 1,
1819
+ "days": 1,
1820
+ "advance": 1,
1821
+ "final": 1,
1822
+ "includes": 1,
1823
+ "checklist": 1,
1824
+ "to": 1,
1825
+ "governance": 2,
1826
+ "links": 1,
1827
+ "semver": 1,
1828
+ "rfc": 1,
1829
+ "docs": 3,
1830
+ "md": 3,
1831
+ "mechanics": 1,
1832
+ "process": 1,
1833
+ "readiness": 2,
1834
+ "matrix": 1,
1835
+ "v1": 1,
1836
+ "forever": 1
1837
+ }
1838
+ },
1839
+ {
1840
+ "id": "migration_case_studies",
1841
+ "title": "Migration Case Studies",
1842
+ "path": "/docs/migration_case_studies",
1843
+ "summary": "- Time to migrate: 2.5 hours",
1844
+ "terms": {
1845
+ "1": 1,
1846
+ "2": 2,
1847
+ "3": 1,
1848
+ "5": 3,
1849
+ "9": 1,
1850
+ "18": 1,
1851
+ "22": 1,
1852
+ "27": 1,
1853
+ "31": 1,
1854
+ "migration": 2,
1855
+ "case": 2,
1856
+ "studies": 2,
1857
+ "time": 5,
1858
+ "to": 4,
1859
+ "migrate": 4,
1860
+ "hours": 2,
1861
+ "startup": 1,
1862
+ "mvp": 1,
1863
+ "js": 1,
1864
+ "fs": 2,
1865
+ "build": 1,
1866
+ "size": 1,
1867
+ "reduction": 4,
1868
+ "p95": 1,
1869
+ "ssr": 2,
1870
+ "latency": 1,
1871
+ "fullstack": 1,
1872
+ "commerce": 1,
1873
+ "ts": 1,
1874
+ "days": 2,
1875
+ "bug": 1,
1876
+ "escape": 1,
1877
+ "deploy": 1,
1878
+ "success": 1,
1879
+ "rate": 1,
1880
+ "increase": 1,
1881
+ "legacy": 1,
1882
+ "node": 1,
1883
+ "mean": 1,
1884
+ "incident": 1,
1885
+ "recovery": 1,
1886
+ "queue": 1,
1887
+ "dead": 1,
1888
+ "letter": 1,
1889
+ "growth": 1,
1890
+ "reduced": 1,
1891
+ "by": 1,
1892
+ "introducing": 1,
1893
+ "replay": 1,
1894
+ "flow": 1,
1895
+ "tooling": 1
1896
+ }
1897
+ },
1898
+ {
1899
+ "id": "npm_publish_status",
1900
+ "title": "npm Publish Status",
1901
+ "path": "/docs/npm_publish_status",
1902
+ "summary": "FastScript `v3.0.0` is the launch target in the public repo:",
1903
+ "terms": {
1904
+ "0": 7,
1905
+ "3": 1,
1906
+ "14": 1,
1907
+ "2026": 1,
1908
+ "npm": 18,
1909
+ "publish": 5,
1910
+ "status": 2,
1911
+ "fastscript": 5,
1912
+ "v3": 6,
1913
+ "is": 5,
1914
+ "the": 20,
1915
+ "launch": 3,
1916
+ "target": 2,
1917
+ "in": 4,
1918
+ "public": 11,
1919
+ "repo": 5,
1920
+ "current": 1,
1921
+ "state": 1,
1922
+ "website": 1,
1923
+ "docs": 1,
1924
+ "changelog": 1,
1925
+ "support": 1,
1926
+ "matrix": 1,
1927
+ "match": 1,
1928
+ "line": 1,
1929
+ "run": 6,
1930
+ "build": 1,
1931
+ "passes": 2,
1932
+ "validate": 1,
1933
+ "pack": 4,
1934
+ "check": 3,
1935
+ "validates": 2,
1936
+ "generated": 4,
1937
+ "bundle": 2,
1938
+ "release": 8,
1939
+ "prepared": 1,
1940
+ "from": 2,
1941
+ "surface": 1,
1942
+ "not": 3,
1943
+ "root": 2,
1944
+ "packaging": 3,
1945
+ "model": 5,
1946
+ "now": 1,
1947
+ "uses": 2,
1948
+ "a": 3,
1949
+ "self": 1,
1950
+ "contained": 1,
1951
+ "source": 1,
1952
+ "development": 1,
1953
+ "still": 1,
1954
+ "private": 5,
1955
+ "split": 1,
1956
+ "that": 1,
1957
+ "bundles": 1,
1958
+ "core": 1,
1959
+ "inside": 1,
1960
+ "published": 1,
1961
+ "tarball": 1,
1962
+ "users": 1,
1963
+ "do": 1,
1964
+ "need": 1,
1965
+ "access": 1,
1966
+ "to": 2,
1967
+ "second": 1,
1968
+ "registry": 1,
1969
+ "package": 5,
1970
+ "instead": 1,
1971
+ "of": 1,
1972
+ "packing": 1,
1973
+ "directly": 1,
1974
+ "why": 1,
1975
+ "this": 1,
1976
+ "replaced": 1,
1977
+ "old": 1,
1978
+ "plan": 1,
1979
+ "an": 1,
1980
+ "attempted": 1,
1981
+ "path": 1,
1982
+ "was": 2,
1983
+ "tested": 1,
1984
+ "on": 1,
1985
+ "04": 1,
1986
+ "with": 3,
1987
+ "scoped": 1,
1988
+ "and": 1,
1989
+ "failed": 1,
1990
+ "e402": 1,
1991
+ "payment": 1,
1992
+ "required": 1,
1993
+ "response": 1,
1994
+ "you": 1,
1995
+ "must": 1,
1996
+ "sign": 1,
1997
+ "up": 1,
1998
+ "for": 1,
1999
+ "packages": 1,
2000
+ "because": 1,
2001
+ "distribution": 1,
2002
+ "product": 1,
2003
+ "moat": 2,
2004
+ "changed": 1,
2005
+ "so": 1,
2006
+ "installation": 1,
2007
+ "stays": 1,
2008
+ "easy": 1,
2009
+ "while": 1,
2010
+ "business": 1,
2011
+ "remains": 1,
2012
+ "wider": 1,
2013
+ "ai": 1,
2014
+ "platform": 1,
2015
+ "layer": 1,
2016
+ "checklist": 1,
2017
+ "bump": 1,
2018
+ "json": 1,
2019
+ "prepare": 1,
2020
+ "matching": 1,
2021
+ "github": 1,
2022
+ "tag": 1,
2023
+ "same": 1,
2024
+ "proof": 1,
2025
+ "summary": 1
2026
+ }
2027
+ },
2028
+ {
2029
+ "id": "observability",
2030
+ "title": "Observability",
2031
+ "path": "/docs/observability",
2032
+ "summary": "This document has been moved to the protected FastScript private-core workspace.",
2033
+ "terms": {
2034
+ "observability": 2,
2035
+ "this": 2,
2036
+ "document": 2,
2037
+ "has": 2,
2038
+ "been": 2,
2039
+ "moved": 2,
2040
+ "to": 2,
2041
+ "the": 2,
2042
+ "protected": 2,
2043
+ "fastscript": 4,
2044
+ "private": 2,
2045
+ "core": 2,
2046
+ "workspace": 2,
2047
+ "reason": 1,
2048
+ "it": 1,
2049
+ "contains": 1,
2050
+ "internal": 1,
2051
+ "monitoring": 1,
2052
+ "service": 1,
2053
+ "health": 1,
2054
+ "and": 1,
2055
+ "operational": 1,
2056
+ "implementation": 1,
2057
+ "details": 1,
2058
+ "for": 1,
2059
+ "authorized": 1,
2060
+ "access": 1,
2061
+ "contact": 1,
2062
+ "security": 1,
2063
+ "dev": 2,
2064
+ "legal": 1
2065
+ }
2066
+ },
2067
+ {
2068
+ "id": "plugin_api_contract",
2069
+ "title": "FastScript Plugin API Contract",
2070
+ "path": "/docs/plugin_api_contract",
2071
+ "summary": "- API version: `1`",
2072
+ "terms": {
2073
+ "1": 4,
2074
+ "2500": 1,
2075
+ "fastscript": 6,
2076
+ "plugin": 7,
2077
+ "api": 10,
2078
+ "contract": 3,
2079
+ "version": 4,
2080
+ "runtime": 2,
2081
+ "loads": 1,
2082
+ "configs": 1,
2083
+ "from": 1,
2084
+ "first": 1,
2085
+ "class": 1,
2086
+ "plugins": 8,
2087
+ "fs": 2,
2088
+ "js": 4,
2089
+ "mjs": 2,
2090
+ "cjs": 2,
2091
+ "app": 5,
2092
+ "hook": 4,
2093
+ "surface": 1,
2094
+ "middleware": 6,
2095
+ "ctx": 15,
2096
+ "next": 5,
2097
+ "onbuildstart": 3,
2098
+ "onbuildend": 3,
2099
+ "onrequeststart": 3,
2100
+ "onrequestend": 3,
2101
+ "shape": 1,
2102
+ "export": 2,
2103
+ "default": 3,
2104
+ "name": 2,
2105
+ "my": 1,
2106
+ "apiversion": 2,
2107
+ "setup": 1,
2108
+ "hooks": 6,
2109
+ "async": 10,
2110
+ "direct": 2,
2111
+ "shorthand": 1,
2112
+ "guarantees": 1,
2113
+ "failures": 1,
2114
+ "are": 1,
2115
+ "isolated": 1,
2116
+ "and": 2,
2117
+ "logged": 1,
2118
+ "execution": 1,
2119
+ "uses": 1,
2120
+ "timeout": 2,
2121
+ "protection": 1,
2122
+ "ms": 1,
2123
+ "mismatch": 1,
2124
+ "is": 2,
2125
+ "rejected": 1,
2126
+ "with": 1,
2127
+ "warning": 1,
2128
+ "inserted": 1,
2129
+ "after": 1,
2130
+ "core": 1,
2131
+ "security": 1,
2132
+ "before": 1,
2133
+ "stability": 1,
2134
+ "breaking": 1,
2135
+ "changes": 1,
2136
+ "require": 1,
2137
+ "major": 1,
2138
+ "bump": 1
2139
+ }
2140
+ },
2141
+ {
2142
+ "id": "private_core_split",
2143
+ "title": "FastScript Private Core Split",
2144
+ "path": "/docs/private_core_split",
2145
+ "summary": "This repository is the public-facing FastScript surface.",
2146
+ "terms": {
2147
+ "fastscript": 6,
2148
+ "private": 10,
2149
+ "core": 6,
2150
+ "split": 2,
2151
+ "this": 4,
2152
+ "repository": 2,
2153
+ "is": 2,
2154
+ "the": 12,
2155
+ "public": 7,
2156
+ "facing": 2,
2157
+ "surface": 3,
2158
+ "protected": 2,
2159
+ "source": 1,
2160
+ "of": 1,
2161
+ "truth": 1,
2162
+ "for": 3,
2163
+ "sensitive": 1,
2164
+ "compiler": 1,
2165
+ "runtime": 3,
2166
+ "platform": 1,
2167
+ "code": 1,
2168
+ "now": 2,
2169
+ "lives": 2,
2170
+ "in": 2,
2171
+ "https": 1,
2172
+ "github": 1,
2173
+ "com": 1,
2174
+ "lordolami": 1,
2175
+ "repo": 6,
2176
+ "role": 2,
2177
+ "remains": 1,
2178
+ "home": 1,
2179
+ "website": 1,
2180
+ "and": 5,
2181
+ "docs": 1,
2182
+ "experience": 1,
2183
+ "examples": 1,
2184
+ "templates": 1,
2185
+ "language": 1,
2186
+ "spec": 1,
2187
+ "migration": 1,
2188
+ "guidance": 1,
2189
+ "benchmark": 1,
2190
+ "summaries": 1,
2191
+ "safe": 1,
2192
+ "developer": 1,
2193
+ "onboarding": 1,
2194
+ "thin": 1,
2195
+ "bridge": 2,
2196
+ "modules": 2,
2197
+ "integration": 1,
2198
+ "owns": 1,
2199
+ "build": 2,
2200
+ "pipeline": 1,
2201
+ "internals": 3,
2202
+ "deploy": 2,
2203
+ "adapters": 1,
2204
+ "parser": 2,
2205
+ "typechecker": 1,
2206
+ "auth": 2,
2207
+ "storage": 2,
2208
+ "webhook": 2,
2209
+ "operational": 1,
2210
+ "security": 1,
2211
+ "incident": 1,
2212
+ "documents": 1,
2213
+ "current": 1,
2214
+ "extraction": 1,
2215
+ "model": 1,
2216
+ "following": 1,
2217
+ "files": 1,
2218
+ "are": 1,
2219
+ "that": 1,
2220
+ "re": 1,
2221
+ "export": 1,
2222
+ "from": 1,
2223
+ "package": 2,
2224
+ "src": 8,
2225
+ "mjs": 8,
2226
+ "server": 1,
2227
+ "fs": 1,
2228
+ "typecheck": 1,
2229
+ "depends": 1,
2230
+ "on": 1,
2231
+ "means": 1,
2232
+ "stays": 1,
2233
+ "stable": 1,
2234
+ "while": 1,
2235
+ "implementation": 1
2236
+ }
2237
+ },
2238
+ {
2239
+ "id": "proof_pack",
2240
+ "title": "FastScript Proof Pack",
2241
+ "path": "/docs/proof_pack",
2242
+ "summary": "- Generated: 2026-04-15T15:31:34.963Z",
2243
+ "terms": {
2244
+ "0": 3,
2245
+ "1": 1,
2246
+ "2": 1,
2247
+ "4": 1,
2248
+ "5": 2,
2249
+ "8": 1,
2250
+ "13": 4,
2251
+ "16": 1,
2252
+ "23": 1,
2253
+ "31": 2,
2254
+ "34": 2,
2255
+ "163": 1,
2256
+ "174": 1,
2257
+ "209": 1,
2258
+ "226": 1,
2259
+ "340": 1,
2260
+ "365": 1,
2261
+ "386": 1,
2262
+ "528": 1,
2263
+ "618": 1,
2264
+ "702": 1,
2265
+ "1809": 1,
2266
+ "2026": 3,
2267
+ "9438": 1,
2268
+ "31834": 1,
2269
+ "200464": 1,
2270
+ "fastscript": 24,
2271
+ "proof": 7,
2272
+ "pack": 2,
2273
+ "generated": 3,
2274
+ "04": 4,
2275
+ "15t15": 2,
2276
+ "963z": 2,
2277
+ "summary": 1,
2278
+ "routes": 3,
2279
+ "n": 3,
2280
+ "a": 4,
2281
+ "js": 17,
2282
+ "gzip": 4,
2283
+ "bytes": 3,
2284
+ "css": 4,
2285
+ "budget": 4,
2286
+ "30kb": 2,
2287
+ "pass": 23,
2288
+ "10kb": 2,
2289
+ "interop": 9,
2290
+ "cases": 5,
2291
+ "fail": 2,
2292
+ "ts": 7,
2293
+ "syntax": 4,
2294
+ "fs": 16,
2295
+ "parity": 5,
2296
+ "parser": 1,
2297
+ "frontend": 1,
2298
+ "runtime": 4,
2299
+ "platform": 2,
2300
+ "build": 2,
2301
+ "corpus": 1,
2302
+ "launch": 1,
2303
+ "line": 1,
2304
+ "v3": 1,
2305
+ "product": 2,
2306
+ "contract": 2,
2307
+ "is": 2,
2308
+ "universal": 1,
2309
+ "container": 1,
2310
+ "and": 4,
2311
+ "valid": 2,
2312
+ "failures": 3,
2313
+ "in": 3,
2314
+ "are": 2,
2315
+ "treated": 2,
2316
+ "as": 2,
2317
+ "compatibility": 4,
2318
+ "bugs": 2,
2319
+ "release": 1,
2320
+ "posture": 1,
2321
+ "source": 1,
2322
+ "available": 1,
2323
+ "public": 1,
2324
+ "repo": 1,
2325
+ "proprietary": 1,
2326
+ "core": 5,
2327
+ "no": 1,
2328
+ "ai": 1,
2329
+ "training": 1,
2330
+ "use": 1,
2331
+ "without": 1,
2332
+ "permission": 1,
2333
+ "benchmark": 2,
2334
+ "report": 2,
2335
+ "time": 1,
2336
+ "98ms": 1,
2337
+ "api": 4,
2338
+ "first": 2,
2339
+ "load": 2,
2340
+ "71kb": 1,
2341
+ "00kb": 1,
2342
+ "budgets": 1,
2343
+ "matrix": 6,
2344
+ "see": 1,
2345
+ "full": 1,
2346
+ "docs": 1,
2347
+ "md": 1,
2348
+ "failed": 1,
2349
+ "none": 2,
2350
+ "artifact": 2,
2351
+ "proofs": 2,
2352
+ "json": 2,
2353
+ "the": 1,
2354
+ "target": 2,
2355
+ "14t07": 1,
2356
+ "711z": 1,
2357
+ "profile": 1,
2358
+ "test": 1,
2359
+ "total": 1,
2360
+ "includes": 1,
2361
+ "framework": 7,
2362
+ "shims": 1,
2363
+ "for": 1,
2364
+ "react": 5,
2365
+ "next": 4,
2366
+ "link": 3,
2367
+ "vue": 4,
2368
+ "svelte": 4,
2369
+ "store": 3,
2370
+ "preact": 4,
2371
+ "solid": 4,
2372
+ "scoped": 3,
2373
+ "subpath": 3,
2374
+ "dual": 5,
2375
+ "mode": 5,
2376
+ "package": 8,
2377
+ "checks": 3,
2378
+ "edge": 2,
2379
+ "lib": 2,
2380
+ "real": 7,
2381
+ "npm": 12,
2382
+ "using": 1,
2383
+ "installed": 1,
2384
+ "dependencies": 4,
2385
+ "acorn": 6,
2386
+ "walk": 3,
2387
+ "astring": 3,
2388
+ "node": 14,
2389
+ "built": 2,
2390
+ "commonjs": 2,
2391
+ "case": 1,
2392
+ "kind": 1,
2393
+ "status": 1,
2394
+ "bundle": 1,
2395
+ "notes": 1,
2396
+ "browser": 6,
2397
+ "module": 10,
2398
+ "imports": 10,
2399
+ "dom": 1,
2400
+ "client": 1,
2401
+ "shape": 1,
2402
+ "createapp": 1,
2403
+ "h": 2,
2404
+ "writable": 1,
2405
+ "render": 1,
2406
+ "signals": 1,
2407
+ "export": 2,
2408
+ "through": 1,
2409
+ "esm": 1,
2410
+ "condition": 1,
2411
+ "cjs": 1,
2412
+ "left": 1,
2413
+ "pad": 1,
2414
+ "builtins": 1,
2415
+ "crypto": 1,
2416
+ "path": 1,
2417
+ "ins": 1,
2418
+ "from": 3
2419
+ }
2420
+ },
2421
+ {
2422
+ "id": "reference_apps",
2423
+ "title": "REFERENCE_APPS",
2424
+ "path": "/docs/reference_apps",
2425
+ "summary": "These are first-party production-reference applications used to validate 1.0 behavior.",
2426
+ "terms": {
2427
+ "0": 2,
2428
+ "1": 3,
2429
+ "2": 1,
2430
+ "3": 1,
2431
+ "reference": 4,
2432
+ "apps": 2,
2433
+ "these": 2,
2434
+ "are": 2,
2435
+ "first": 2,
2436
+ "party": 2,
2437
+ "production": 2,
2438
+ "applications": 2,
2439
+ "used": 2,
2440
+ "to": 2,
2441
+ "validate": 2,
2442
+ "behavior": 2,
2443
+ "fastscript": 1,
2444
+ "language": 1,
2445
+ "website": 1,
2446
+ "app": 2,
2447
+ "pages": 1,
2448
+ "exercises": 3,
2449
+ "routing": 1,
2450
+ "docs": 1,
2451
+ "search": 1,
2452
+ "api": 2,
2453
+ "blog": 1,
2454
+ "dynamic": 1,
2455
+ "route": 1,
2456
+ "ssr": 1,
2457
+ "hydration": 1,
2458
+ "deploy": 3,
2459
+ "adapters": 2,
2460
+ "fullstack": 2,
2461
+ "template": 2,
2462
+ "npm": 6,
2463
+ "run": 6,
2464
+ "create": 2,
2465
+ "auth": 1,
2466
+ "middleware": 1,
2467
+ "routes": 1,
2468
+ "db": 1,
2469
+ "storage": 1,
2470
+ "helpers": 1,
2471
+ "queue": 1,
2472
+ "webhook": 1,
2473
+ "primitives": 1,
2474
+ "startup": 2,
2475
+ "mvp": 2,
2476
+ "bootstrap": 1,
2477
+ "migration": 1,
2478
+ "path": 1,
2479
+ "workflow": 1,
2480
+ "and": 1,
2481
+ "quality": 1,
2482
+ "gate": 1,
2483
+ "pipeline": 1,
2484
+ "validation": 1,
2485
+ "evidence": 1,
2486
+ "smoke": 2,
2487
+ "dev": 1,
2488
+ "start": 1,
2489
+ "test": 2,
2490
+ "runtime": 1,
2491
+ "contract": 1
2492
+ }
2493
+ },
2494
+ {
2495
+ "id": "release_process",
2496
+ "title": "RELEASE_PROCESS",
2497
+ "path": "/docs/release_process",
2498
+ "summary": "1. `npm run hooks:install`",
2499
+ "terms": {
2500
+ "1": 4,
2501
+ "2": 2,
2502
+ "3": 2,
2503
+ "4": 1,
2504
+ "5": 1,
2505
+ "release": 6,
2506
+ "process": 2,
2507
+ "npm": 21,
2508
+ "run": 22,
2509
+ "hooks": 2,
2510
+ "install": 2,
2511
+ "fastscript": 1,
2512
+ "fast": 1,
2513
+ "path": 2,
2514
+ "every": 1,
2515
+ "pr": 1,
2516
+ "push": 3,
2517
+ "qa": 5,
2518
+ "gate": 5,
2519
+ "merge": 2,
2520
+ "pre": 1,
2521
+ "hook": 2,
2522
+ "policy": 6,
2523
+ "runs": 1,
2524
+ "temporary": 1,
2525
+ "bypass": 1,
2526
+ "only": 1,
2527
+ "for": 1,
2528
+ "emergency": 1,
2529
+ "hotfix": 1,
2530
+ "skip": 1,
2531
+ "git": 1,
2532
+ "full": 1,
2533
+ "rc": 1,
2534
+ "stable": 3,
2535
+ "all": 3,
2536
+ "sbom": 1,
2537
+ "generate": 1,
2538
+ "pack": 1,
2539
+ "check": 1,
2540
+ "patch": 1,
2541
+ "minor": 1,
2542
+ "major": 1,
2543
+ "re": 1,
2544
+ "required": 1,
2545
+ "language": 1,
2546
+ "v1": 2,
2547
+ "gates": 1,
2548
+ "test": 8,
2549
+ "fs": 1,
2550
+ "diag": 1,
2551
+ "sourcemap": 1,
2552
+ "fidelity": 1,
2553
+ "typecheck": 1,
2554
+ "conformance": 1,
2555
+ "determinism": 1,
2556
+ "parser": 1,
2557
+ "fuzz": 1,
2558
+ "runtime": 1,
2559
+ "contract": 1,
2560
+ "security": 3,
2561
+ "baseline": 1,
2562
+ "definition": 1,
2563
+ "items": 1,
2564
+ "in": 2,
2565
+ "spec": 1,
2566
+ "checklist": 1,
2567
+ "md": 6,
2568
+ "are": 1,
2569
+ "checked": 1,
2570
+ "docs": 4,
2571
+ "forever": 1,
2572
+ "readiness": 1,
2573
+ "is": 1,
2574
+ "current": 1,
2575
+ "no": 1,
2576
+ "open": 1,
2577
+ "blocker": 1,
2578
+ "defects": 1,
2579
+ "smoke": 1,
2580
+ "start": 1,
2581
+ "passes": 1,
2582
+ "production": 1,
2583
+ "like": 1,
2584
+ "mode": 1,
2585
+ "governance": 2,
2586
+ "semver": 1,
2587
+ "deprecation": 1,
2588
+ "rfc": 1,
2589
+ "versioning": 1,
2590
+ "lts": 2,
2591
+ "support": 1,
2592
+ "threat": 2,
2593
+ "model": 1,
2594
+ "execution": 1,
2595
+ "helpers": 1,
2596
+ "rollback": 1,
2597
+ "drill": 1,
2598
+ "soak": 1,
2599
+ "window": 1,
2600
+ "deploy": 1,
2601
+ "zero": 1,
2602
+ "downtime": 1
2603
+ }
2604
+ },
2605
+ {
2606
+ "id": "release_scope_v1",
2607
+ "title": "FastScript v1 Scope Freeze",
2608
+ "path": "/docs/release_scope_v1",
2609
+ "summary": "- Formal FastScript Language v1 specification and compatibility contract",
2610
+ "terms": {
2611
+ "1": 1,
2612
+ "2": 1,
2613
+ "9": 1,
2614
+ "14": 1,
2615
+ "2026": 1,
2616
+ "fastscript": 4,
2617
+ "v1": 10,
2618
+ "scope": 4,
2619
+ "freeze": 3,
2620
+ "formal": 2,
2621
+ "language": 3,
2622
+ "specification": 2,
2623
+ "and": 6,
2624
+ "compatibility": 2,
2625
+ "contract": 3,
2626
+ "included": 2,
2627
+ "in": 2,
2628
+ "full": 1,
2629
+ "parser": 1,
2630
+ "cst": 2,
2631
+ "diagnostics": 2,
2632
+ "pipeline": 1,
2633
+ "with": 3,
2634
+ "source": 1,
2635
+ "map": 1,
2636
+ "coverage": 1,
2637
+ "semantic": 1,
2638
+ "type": 2,
2639
+ "checker": 1,
2640
+ "symbol": 1,
2641
+ "inference": 1,
2642
+ "baseline": 1,
2643
+ "ast": 1,
2644
+ "safe": 1,
2645
+ "formatter": 1,
2646
+ "linter": 1,
2647
+ "idempotence": 1,
2648
+ "autofix": 1,
2649
+ "guarantees": 1,
2650
+ "conformance": 1,
2651
+ "fixtures": 1,
2652
+ "snapshot": 1,
2653
+ "regression": 1,
2654
+ "harness": 1,
2655
+ "node": 1,
2656
+ "runtime": 1,
2657
+ "dev": 1,
2658
+ "build": 1,
2659
+ "start": 1,
2660
+ "fs": 1,
2661
+ "js": 1,
2662
+ "app": 1,
2663
+ "routing": 1,
2664
+ "api": 1,
2665
+ "handling": 1,
2666
+ "auth": 1,
2667
+ "session": 1,
2668
+ "file": 1,
2669
+ "db": 1,
2670
+ "jobs": 1,
2671
+ "storage": 1,
2672
+ "core": 2,
2673
+ "plugin": 1,
2674
+ "hooks": 2,
2675
+ "local": 1,
2676
+ "no": 1,
2677
+ "billing": 1,
2678
+ "quality": 1,
2679
+ "gate": 1,
2680
+ "qa": 1,
2681
+ "all": 2,
2682
+ "design": 1,
2683
+ "token": 1,
2684
+ "constraints": 1,
2685
+ "style": 1,
2686
+ "validation": 1,
2687
+ "website": 1,
2688
+ "routes": 1,
2689
+ "docs": 1,
2690
+ "learn": 1,
2691
+ "examples": 1,
2692
+ "benchmarks": 1,
2693
+ "showcase": 1,
2694
+ "changelog": 1,
2695
+ "deferred": 1,
2696
+ "beyond": 2,
2697
+ "production": 1,
2698
+ "grade": 1,
2699
+ "managed": 1,
2700
+ "adapters": 1,
2701
+ "for": 2,
2702
+ "edge": 1,
2703
+ "serverless": 1,
2704
+ "providers": 1,
2705
+ "advanced": 1,
2706
+ "lsp": 1,
2707
+ "intelligence": 1,
2708
+ "starter": 1,
2709
+ "enterprise": 1,
2710
+ "only": 2,
2711
+ "requirements": 1,
2712
+ "from": 1,
2713
+ "long": 1,
2714
+ "range": 1,
2715
+ "roadmap": 2,
2716
+ "status": 1,
2717
+ "locked": 1,
2718
+ "on": 1,
2719
+ "04": 1,
2720
+ "during": 1,
2721
+ "stable": 2,
2722
+ "release": 1,
2723
+ "v0": 1,
2724
+ "the": 1,
2725
+ "items": 1,
2726
+ "are": 1,
2727
+ "eligible": 1,
2728
+ "patch": 1,
2729
+ "changes": 1,
2730
+ "non": 1,
2731
+ "work": 1,
2732
+ "is": 2,
2733
+ "frozen": 1,
2734
+ "until": 1,
2735
+ "planning": 1,
2736
+ "master": 1,
2737
+ "todo": 1,
2738
+ "item": 1,
2739
+ "completed": 1
2740
+ }
2741
+ },
2742
+ {
2743
+ "id": "release_signoff_template",
2744
+ "title": "FastScript Release Sign-off Template",
2745
+ "path": "/docs/release_signoff_template",
2746
+ "summary": "- Version:",
2747
+ "terms": {
2748
+ "fastscript": 2,
2749
+ "release": 3,
2750
+ "sign": 3,
2751
+ "off": 3,
2752
+ "template": 2,
2753
+ "version": 2,
2754
+ "date": 1,
2755
+ "scope": 2,
2756
+ "docs": 4,
2757
+ "v1": 1,
2758
+ "md": 1,
2759
+ "engineering": 2,
2760
+ "qa": 1,
2761
+ "all": 1,
2762
+ "passed": 3,
2763
+ "pack": 1,
2764
+ "check": 1,
2765
+ "no": 1,
2766
+ "open": 1,
2767
+ "blocker": 1,
2768
+ "defects": 1,
2769
+ "security": 3,
2770
+ "session": 1,
2771
+ "config": 1,
2772
+ "checks": 2,
2773
+ "verified": 1,
2774
+ "smoke": 1,
2775
+ "public": 1,
2776
+ "updated": 2,
2777
+ "known": 1,
2778
+ "limitations": 1,
2779
+ "operations": 2,
2780
+ "rollback": 1,
2781
+ "steps": 1,
2782
+ "validated": 1,
2783
+ "incident": 1,
2784
+ "playbook": 1,
2785
+ "reviewed": 1
2786
+ }
2787
+ },
2788
+ {
2789
+ "id": "repo_boundary_strategy",
2790
+ "title": "FastScript Repo Boundary Strategy",
2791
+ "path": "/docs/repo_boundary_strategy",
2792
+ "summary": "FastScript is source-available for review and evaluation, but the long-term platform strategy requires a clear boundary between material that can be shared publicly and material that should remain protected.",
2793
+ "terms": {
2794
+ "1": 1,
2795
+ "2": 1,
2796
+ "3": 1,
2797
+ "4": 1,
2798
+ "fastscript": 5,
2799
+ "repo": 3,
2800
+ "boundary": 4,
2801
+ "strategy": 4,
2802
+ "is": 2,
2803
+ "source": 3,
2804
+ "available": 3,
2805
+ "for": 3,
2806
+ "review": 2,
2807
+ "and": 10,
2808
+ "evaluation": 2,
2809
+ "but": 2,
2810
+ "the": 5,
2811
+ "long": 2,
2812
+ "term": 2,
2813
+ "platform": 5,
2814
+ "requires": 2,
2815
+ "a": 4,
2816
+ "clear": 2,
2817
+ "between": 2,
2818
+ "material": 8,
2819
+ "that": 5,
2820
+ "can": 2,
2821
+ "be": 2,
2822
+ "shared": 2,
2823
+ "publicly": 2,
2824
+ "should": 2,
2825
+ "remain": 2,
2826
+ "protected": 4,
2827
+ "public": 7,
2828
+ "safe": 1,
2829
+ "documentation": 1,
2830
+ "intended": 1,
2831
+ "developers": 1,
2832
+ "examples": 2,
2833
+ "templates": 1,
2834
+ "release": 1,
2835
+ "notes": 1,
2836
+ "benchmark": 1,
2837
+ "reports": 1,
2838
+ "migration": 1,
2839
+ "guides": 1,
2840
+ "non": 1,
2841
+ "sensitive": 2,
2842
+ "website": 1,
2843
+ "copy": 1,
2844
+ "compiler": 1,
2845
+ "runtime": 1,
2846
+ "internals": 1,
2847
+ "create": 2,
2848
+ "durable": 1,
2849
+ "advantage": 1,
2850
+ "ai": 2,
2851
+ "generation": 1,
2852
+ "workflows": 1,
2853
+ "prompts": 1,
2854
+ "evals": 1,
2855
+ "training": 1,
2856
+ "assets": 2,
2857
+ "commercial": 2,
2858
+ "deployment": 1,
2859
+ "logic": 1,
2860
+ "enterprise": 1,
2861
+ "only": 2,
2862
+ "features": 1,
2863
+ "private": 2,
2864
+ "integrations": 1,
2865
+ "internal": 2,
2866
+ "ops": 2,
2867
+ "keys": 1,
2868
+ "rollout": 1,
2869
+ "procedures": 1,
2870
+ "support": 1,
2871
+ "paths": 1,
2872
+ "operational": 1,
2873
+ "model": 1,
2874
+ "keep": 2,
2875
+ "canonical": 1,
2876
+ "product": 1,
2877
+ "by": 1,
2878
+ "license": 1,
2879
+ "v1": 1,
2880
+ "export": 1,
2881
+ "approved": 2,
2882
+ "into": 1,
2883
+ "separate": 1,
2884
+ "docs": 2,
2885
+ "bundle": 4,
2886
+ "when": 1,
2887
+ "needed": 1,
2888
+ "do": 1,
2889
+ "not": 1,
2890
+ "publish": 1,
2891
+ "code": 1,
2892
+ "or": 1,
2893
+ "in": 2,
2894
+ "mirrors": 1,
2895
+ "branding": 1,
2896
+ "trademarks": 1,
2897
+ "rights": 1,
2898
+ "reserved": 1,
2899
+ "tooling": 1,
2900
+ "use": 1,
2901
+ "npm": 1,
2902
+ "run": 1,
2903
+ "to": 1,
2904
+ "reviewable": 1,
2905
+ "from": 1,
2906
+ "allowlist": 1,
2907
+ "scripts": 1,
2908
+ "prepare": 1,
2909
+ "mjs": 1
2910
+ }
2911
+ },
2912
+ {
2913
+ "id": "rollout_guide",
2914
+ "title": "Rollout Guide",
2915
+ "path": "/docs/rollout_guide",
2916
+ "summary": "This document has been moved to the protected FastScript private-core workspace.",
2917
+ "terms": {
2918
+ "rollout": 3,
2919
+ "guide": 2,
2920
+ "this": 2,
2921
+ "document": 2,
2922
+ "has": 2,
2923
+ "been": 2,
2924
+ "moved": 2,
2925
+ "to": 2,
2926
+ "the": 3,
2927
+ "protected": 2,
2928
+ "fastscript": 4,
2929
+ "private": 2,
2930
+ "core": 2,
2931
+ "workspace": 2,
2932
+ "reason": 1,
2933
+ "it": 1,
2934
+ "contains": 1,
2935
+ "internal": 1,
2936
+ "release": 1,
2937
+ "and": 1,
2938
+ "procedures": 1,
2939
+ "that": 1,
2940
+ "are": 1,
2941
+ "not": 1,
2942
+ "part": 1,
2943
+ "of": 1,
2944
+ "public": 1,
2945
+ "developer": 1,
2946
+ "surface": 1,
2947
+ "for": 1,
2948
+ "authorized": 1,
2949
+ "access": 1,
2950
+ "contact": 1,
2951
+ "security": 1,
2952
+ "dev": 2,
2953
+ "legal": 1
2954
+ }
2955
+ },
2956
+ {
2957
+ "id": "runtime_permissions",
2958
+ "title": "Runtime Permissions",
2959
+ "path": "/docs/runtime_permissions",
2960
+ "summary": "FastScript exposes explicit runtime permission boundaries for:",
2961
+ "terms": {
2962
+ "1": 4,
2963
+ "2": 4,
2964
+ "3": 4,
2965
+ "4": 3,
2966
+ "5": 2,
2967
+ "6": 1,
2968
+ "runtime": 7,
2969
+ "permissions": 8,
2970
+ "fastscript": 8,
2971
+ "exposes": 3,
2972
+ "explicit": 2,
2973
+ "permission": 6,
2974
+ "boundaries": 2,
2975
+ "for": 3,
2976
+ "file": 2,
2977
+ "access": 6,
2978
+ "environment": 1,
2979
+ "network": 2,
2980
+ "subprocess": 2,
2981
+ "execution": 2,
2982
+ "dynamic": 2,
2983
+ "imports": 1,
2984
+ "plugin": 2,
2985
+ "default": 4,
2986
+ "policy": 4,
2987
+ "path": 2,
2988
+ "json": 2,
2989
+ "example": 2,
2990
+ "cli": 1,
2991
+ "show": 1,
2992
+ "active": 1,
2993
+ "summary": 1,
2994
+ "npm": 3,
2995
+ "run": 3,
2996
+ "check": 1,
2997
+ "a": 2,
2998
+ "specific": 1,
2999
+ "in": 1,
3000
+ "report": 1,
3001
+ "mode": 3,
3002
+ "kind": 2,
3003
+ "dynamicimportaccess": 1,
3004
+ "resource": 2,
3005
+ "app": 1,
3006
+ "pages": 1,
3007
+ "index": 1,
3008
+ "fs": 1,
3009
+ "enforce": 1,
3010
+ "assertion": 1,
3011
+ "assert": 1,
3012
+ "envaccess": 1,
3013
+ "profile": 2,
3014
+ "helpers": 2,
3015
+ "aware": 1,
3016
+ "permissionawareenvget": 1,
3017
+ "key": 1,
3018
+ "permissionawarereadfile": 1,
3019
+ "permissionawarefetch": 1,
3020
+ "url": 2,
3021
+ "init": 1,
3022
+ "permissionawarespawn": 1,
3023
+ "command": 1,
3024
+ "args": 1,
3025
+ "options": 1,
3026
+ "permissionawarepluginaccess": 1,
3027
+ "pluginid": 1,
3028
+ "onallowed": 1,
3029
+ "secure": 2,
3030
+ "preset": 2,
3031
+ "set": 1,
3032
+ "to": 3,
3033
+ "apply": 1,
3034
+ "stricter": 1,
3035
+ "deny": 3,
3036
+ "by": 3,
3037
+ "allow": 1,
3038
+ "import": 1,
3039
+ "only": 1,
3040
+ "local": 1,
3041
+ "data": 1,
3042
+ "kinds": 1,
3043
+ "audit": 3,
3044
+ "log": 2,
3045
+ "decisions": 1,
3046
+ "are": 1,
3047
+ "written": 1,
3048
+ "jsonl": 1,
3049
+ "use": 1,
3050
+ "settings": 1,
3051
+ "disable": 1,
3052
+ "or": 1,
3053
+ "relocate": 1,
3054
+ "this": 1
3055
+ }
3056
+ },
3057
+ {
3058
+ "id": "support_matrix",
3059
+ "title": "SUPPORT_MATRIX",
3060
+ "path": "/docs/support_matrix",
3061
+ "summary": "- Node HTTP runtime: supported",
3062
+ "terms": {
3063
+ "0": 1,
3064
+ "2": 1,
3065
+ "20": 2,
3066
+ "22": 1,
3067
+ "support": 5,
3068
+ "matrix": 4,
3069
+ "node": 5,
3070
+ "http": 2,
3071
+ "runtime": 3,
3072
+ "supported": 13,
3073
+ "fastscript": 2,
3074
+ "targets": 1,
3075
+ "pm2": 1,
3076
+ "process": 1,
3077
+ "manager": 1,
3078
+ "vercel": 1,
3079
+ "adapter": 2,
3080
+ "catch": 1,
3081
+ "all": 1,
3082
+ "ssr": 2,
3083
+ "api": 2,
3084
+ "cloudflare": 1,
3085
+ "worker": 1,
3086
+ "static": 1,
3087
+ "assets": 1,
3088
+ "language": 1,
3089
+ "surface": 1,
3090
+ "fs": 4,
3091
+ "files": 1,
3092
+ "with": 1,
3093
+ "state": 1,
3094
+ "fn": 1,
3095
+ "js": 2,
3096
+ "compatibility": 1,
3097
+ "mode": 1,
3098
+ "authored": 3,
3099
+ "in": 4,
3100
+ "ts": 1,
3101
+ "jsx": 1,
3102
+ "tsx": 1,
3103
+ "specific": 1,
3104
+ "syntax": 2,
3105
+ "optional": 1,
3106
+ "sugar": 1,
3107
+ "platform": 1,
3108
+ "windows": 1,
3109
+ "macos": 1,
3110
+ "linux": 1,
3111
+ "validation": 1,
3112
+ "source": 1,
3113
+ "ci": 2,
3114
+ "github": 1,
3115
+ "workflows": 1,
3116
+ "yml": 1,
3117
+ "minimum": 1,
3118
+ "tested": 2,
3119
+ "and": 1,
3120
+ "tooling": 1,
3121
+ "vs": 1,
3122
+ "code": 1,
3123
+ "lsp": 1,
3124
+ "smoke": 1,
3125
+ "cli": 1,
3126
+ "formatter": 1,
3127
+ "linter": 1,
3128
+ "typecheck": 1,
3129
+ "stable": 2,
3130
+ "under": 1,
3131
+ "qa": 1,
3132
+ "gate": 1,
3133
+ "release": 1,
3134
+ "current": 1,
3135
+ "line": 1,
3136
+ "x": 1,
3137
+ "lts": 2,
3138
+ "policy": 2,
3139
+ "reference": 1,
3140
+ "docs": 1,
3141
+ "md": 1
3142
+ }
3143
+ },
3144
+ {
3145
+ "id": "threat_model",
3146
+ "title": "Threat Model",
3147
+ "path": "/docs/threat_model",
3148
+ "summary": "This document has been moved to the protected FastScript private-core workspace.",
3149
+ "terms": {
3150
+ "threat": 2,
3151
+ "model": 2,
3152
+ "this": 2,
3153
+ "document": 2,
3154
+ "has": 2,
3155
+ "been": 2,
3156
+ "moved": 2,
3157
+ "to": 2,
3158
+ "the": 3,
3159
+ "protected": 2,
3160
+ "fastscript": 4,
3161
+ "private": 2,
3162
+ "core": 2,
3163
+ "workspace": 2,
3164
+ "reason": 1,
3165
+ "it": 1,
3166
+ "contains": 1,
3167
+ "internal": 1,
3168
+ "security": 2,
3169
+ "and": 1,
3170
+ "abuse": 1,
3171
+ "path": 1,
3172
+ "analysis": 1,
3173
+ "that": 1,
3174
+ "should": 1,
3175
+ "not": 1,
3176
+ "remain": 1,
3177
+ "in": 1,
3178
+ "public": 1,
3179
+ "facing": 1,
3180
+ "repository": 1,
3181
+ "for": 1,
3182
+ "authorized": 1,
3183
+ "access": 1,
3184
+ "contact": 1,
3185
+ "dev": 2,
3186
+ "legal": 1
3187
+ }
3188
+ },
3189
+ {
3190
+ "id": "troubleshooting",
3191
+ "title": "FastScript Troubleshooting",
3192
+ "path": "/docs/troubleshooting",
3193
+ "summary": "- Set `SESSION_SECRET` before `npm run start`.",
3194
+ "terms": {
3195
+ "1": 1,
3196
+ "fastscript": 4,
3197
+ "troubleshooting": 2,
3198
+ "set": 2,
3199
+ "session": 3,
3200
+ "secret": 4,
3201
+ "before": 2,
3202
+ "npm": 2,
3203
+ "run": 2,
3204
+ "start": 3,
3205
+ "missing": 1,
3206
+ "in": 3,
3207
+ "production": 1,
3208
+ "smoke": 1,
3209
+ "injects": 1,
3210
+ "a": 1,
3211
+ "local": 1,
3212
+ "test": 1,
3213
+ "automatically": 1,
3214
+ "style": 1,
3215
+ "validation": 1,
3216
+ "failed": 1,
3217
+ "add": 1,
3218
+ "class": 2,
3219
+ "names": 1,
3220
+ "to": 1,
3221
+ "app": 3,
3222
+ "design": 1,
3223
+ "allowlist": 1,
3224
+ "json": 2,
3225
+ "or": 1,
3226
+ "use": 1,
3227
+ "u": 1,
3228
+ "utility": 1,
3229
+ "classes": 1,
3230
+ "replace": 1,
3231
+ "raw": 1,
3232
+ "hex": 1,
3233
+ "values": 1,
3234
+ "styles": 1,
3235
+ "css": 1,
3236
+ "with": 1,
3237
+ "token": 1,
3238
+ "variables": 1,
3239
+ "var": 1,
3240
+ "fs": 3,
3241
+ "color": 1,
3242
+ "db": 1,
3243
+ "migrate": 1,
3244
+ "keeps": 1,
3245
+ "running": 2,
3246
+ "old": 1,
3247
+ "migrations": 3,
3248
+ "applied": 1,
3249
+ "migration": 1,
3250
+ "ledger": 2,
3251
+ "is": 2,
3252
+ "remove": 1,
3253
+ "entries": 1,
3254
+ "only": 1,
3255
+ "when": 1,
3256
+ "intentionally": 1,
3257
+ "re": 1,
3258
+ "plugin": 2,
3259
+ "not": 1,
3260
+ "loading": 1,
3261
+ "ensure": 2,
3262
+ "file": 1,
3263
+ "one": 1,
3264
+ "of": 1,
3265
+ "plugins": 2,
3266
+ "js": 2,
3267
+ "mjs": 2,
3268
+ "cjs": 2,
3269
+ "apiversion": 1
3270
+ }
3271
+ },
3272
+ {
3273
+ "id": "v1_forever_readiness",
3274
+ "title": "V1_FOREVER_READINESS",
3275
+ "path": "/docs/v1_forever_readiness",
3276
+ "summary": "Status key:",
3277
+ "terms": {
3278
+ "0": 3,
3279
+ "1": 5,
3280
+ "2": 2,
3281
+ "3": 2,
3282
+ "4": 2,
3283
+ "5": 1,
3284
+ "6": 1,
3285
+ "7": 1,
3286
+ "8": 1,
3287
+ "9": 1,
3288
+ "10": 1,
3289
+ "11": 1,
3290
+ "12": 1,
3291
+ "13": 1,
3292
+ "14": 1,
3293
+ "15": 1,
3294
+ "16": 1,
3295
+ "17": 1,
3296
+ "18": 1,
3297
+ "19": 1,
3298
+ "20": 1,
3299
+ "21": 1,
3300
+ "22": 1,
3301
+ "23": 1,
3302
+ "24": 1,
3303
+ "25": 1,
3304
+ "26": 1,
3305
+ "27": 1,
3306
+ "28": 1,
3307
+ "29": 1,
3308
+ "30": 1,
3309
+ "31": 1,
3310
+ "32": 1,
3311
+ "33": 1,
3312
+ "34": 1,
3313
+ "35": 1,
3314
+ "36": 1,
3315
+ "37": 1,
3316
+ "38": 1,
3317
+ "39": 1,
3318
+ "40": 1,
3319
+ "41": 1,
3320
+ "42": 1,
3321
+ "43": 1,
3322
+ "44": 1,
3323
+ "v1": 3,
3324
+ "forever": 2,
3325
+ "readiness": 2,
3326
+ "status": 2,
3327
+ "key": 2,
3328
+ "fastscript": 2,
3329
+ "matrix": 5,
3330
+ "complete": 46,
3331
+ "implemented": 1,
3332
+ "and": 18,
3333
+ "gated": 1,
3334
+ "in": 2,
3335
+ "repo": 1,
3336
+ "policy": 10,
3337
+ "documented": 1,
3338
+ "enforced": 1,
3339
+ "by": 2,
3340
+ "release": 11,
3341
+ "merge": 3,
3342
+ "process": 2,
3343
+ "language": 4,
3344
+ "spec": 8,
3345
+ "freeze": 5,
3346
+ "grammar": 1,
3347
+ "syntax": 1,
3348
+ "contract": 6,
3349
+ "evidence": 45,
3350
+ "md": 23,
3351
+ "module": 1,
3352
+ "resolution": 1,
3353
+ "rules": 4,
3354
+ "docs": 19,
3355
+ "interop": 4,
3356
+ "compatibility": 1,
3357
+ "migration": 2,
3358
+ "packs": 1,
3359
+ "type": 1,
3360
+ "system": 2,
3361
+ "semantics": 1,
3362
+ "inference": 1,
3363
+ "baseline": 8,
3364
+ "src": 9,
3365
+ "typecheck": 2,
3366
+ "mjs": 47,
3367
+ "routing": 1,
3368
+ "loader": 1,
3369
+ "middleware": 3,
3370
+ "runtime": 5,
3371
+ "order": 1,
3372
+ "routes": 3,
3373
+ "scripts": 38,
3374
+ "test": 24,
3375
+ "stable": 5,
3376
+ "compiler": 3,
3377
+ "error": 4,
3378
+ "code": 2,
3379
+ "catalog": 1,
3380
+ "codes": 2,
3381
+ "fs": 3,
3382
+ "semver": 1,
3383
+ "breaking": 1,
3384
+ "change": 1,
3385
+ "governance": 4,
3386
+ "versioning": 2,
3387
+ "hardening": 3,
3388
+ "deterministic": 1,
3389
+ "builds": 1,
3390
+ "check": 2,
3391
+ "determinism": 1,
3392
+ "parser": 2,
3393
+ "fuzz": 2,
3394
+ "crash": 1,
3395
+ "source": 1,
3396
+ "map": 1,
3397
+ "fidelity": 2,
3398
+ "validation": 4,
3399
+ "sourcemap": 1,
3400
+ "incremental": 1,
3401
+ "build": 2,
3402
+ "correctness": 1,
3403
+ "gates": 2,
3404
+ "roundtrip": 1,
3405
+ "cross": 1,
3406
+ "platform": 1,
3407
+ "parity": 2,
3408
+ "ci": 4,
3409
+ "github": 3,
3410
+ "workflows": 3,
3411
+ "yml": 3,
3412
+ "performance": 1,
3413
+ "reports": 1,
3414
+ "bench": 1,
3415
+ "report": 1,
3416
+ "benchmark": 3,
3417
+ "suite": 2,
3418
+ "ssr": 1,
3419
+ "client": 1,
3420
+ "smoke": 7,
3421
+ "dev": 1,
3422
+ "start": 1,
3423
+ "router": 1,
3424
+ "precedence": 1,
3425
+ "dynamic": 1,
3426
+ "static": 1,
3427
+ "route": 1,
3428
+ "tests": 5,
3429
+ "api": 1,
3430
+ "request": 1,
3431
+ "response": 1,
3432
+ "checks": 3,
3433
+ "auth": 3,
3434
+ "session": 1,
3435
+ "foundations": 1,
3436
+ "db": 4,
3437
+ "transactions": 1,
3438
+ "migrations": 1,
3439
+ "rollback": 4,
3440
+ "path": 1,
3441
+ "cli": 2,
3442
+ "npm": 11,
3443
+ "run": 11,
3444
+ "queue": 1,
3445
+ "jobs": 2,
3446
+ "retries": 1,
3447
+ "dead": 2,
3448
+ "letter": 2,
3449
+ "controls": 1,
3450
+ "worker": 1,
3451
+ "replay": 2,
3452
+ "storage": 4,
3453
+ "upload": 1,
3454
+ "primitives": 1,
3455
+ "webhook": 4,
3456
+ "signature": 1,
3457
+ "defenses": 1,
3458
+ "security": 4,
3459
+ "supply": 1,
3460
+ "chain": 1,
3461
+ "threat": 2,
3462
+ "model": 2,
3463
+ "published": 1,
3464
+ "dependency": 1,
3465
+ "audit": 2,
3466
+ "sbom": 3,
3467
+ "generation": 1,
3468
+ "gate": 5,
3469
+ "generate": 1,
3470
+ "json": 2,
3471
+ "secure": 1,
3472
+ "default": 1,
3473
+ "headers": 1,
3474
+ "cookies": 1,
3475
+ "csp": 2,
3476
+ "vercel": 1,
3477
+ "secrets": 1,
3478
+ "env": 3,
3479
+ "handling": 1,
3480
+ "schema": 2,
3481
+ "app": 1,
3482
+ "incident": 2,
3483
+ "disclosure": 1,
3484
+ "playbook": 1,
3485
+ "tooling": 1,
3486
+ "dx": 1,
3487
+ "lsp": 2,
3488
+ "diagnostics": 3,
3489
+ "resolve": 1,
3490
+ "refs": 1,
3491
+ "vscode": 2,
3492
+ "cjs": 1,
3493
+ "vs": 1,
3494
+ "extension": 2,
3495
+ "workflow": 1,
3496
+ "formatter": 1,
3497
+ "linter": 1,
3498
+ "behavior": 3,
3499
+ "format": 1,
3500
+ "lint": 2,
3501
+ "style": 3,
3502
+ "export": 3,
3503
+ "helpers": 1,
3504
+ "migrate": 1,
3505
+ "js": 1,
3506
+ "ts": 1,
3507
+ "quality": 1,
3508
+ "pr": 1,
3509
+ "coverage": 1,
3510
+ "on": 1,
3511
+ "integration": 1,
3512
+ "soak": 2,
3513
+ "window": 1,
3514
+ "drill": 1,
3515
+ "methodology": 1,
3516
+ "artifact": 2,
3517
+ "publication": 1,
3518
+ "proof": 1,
3519
+ "pack": 3,
3520
+ "candidate": 2,
3521
+ "checklist": 4,
3522
+ "signoff": 2,
3523
+ "flow": 1,
3524
+ "template": 1,
3525
+ "ops": 1,
3526
+ "verification": 2,
3527
+ "lts": 2,
3528
+ "branch": 1,
3529
+ "support": 1,
3530
+ "backup": 3,
3531
+ "restore": 2,
3532
+ "drills": 1,
3533
+ "verify": 1,
3534
+ "observability": 2,
3535
+ "defaults": 1,
3536
+ "metrics": 2,
3537
+ "ecosystem": 1,
3538
+ "starter": 1,
3539
+ "project": 1,
3540
+ "templates": 1,
3541
+ "reference": 2,
3542
+ "apps": 2,
3543
+ "available": 1,
3544
+ "create": 2,
3545
+ "startup": 1,
3546
+ "mvp": 1,
3547
+ "fullstack": 1,
3548
+ "first": 1,
3549
+ "party": 1,
3550
+ "ui": 1,
3551
+ "certification": 1,
3552
+ "production": 1,
3553
+ "runbooks": 1,
3554
+ "troubleshooting": 2,
3555
+ "deploy": 1,
3556
+ "guide": 2,
3557
+ "rollout": 1,
3558
+ "rfc": 1,
3559
+ "contribution": 1,
3560
+ "contributing": 1,
3561
+ "rfcs": 1,
3562
+ "readme": 1,
3563
+ "final": 1,
3564
+ "ship": 1,
3565
+ "operational": 1,
3566
+ "a": 1,
3567
+ "is": 3,
3568
+ "considered": 1,
3569
+ "grade": 1,
3570
+ "when": 1,
3571
+ "all": 2,
3572
+ "of": 1,
3573
+ "the": 1,
3574
+ "following": 1,
3575
+ "are": 1,
3576
+ "true": 1,
3577
+ "qa": 2,
3578
+ "green": 2,
3579
+ "for": 1,
3580
+ "cut": 1,
3581
+ "passes": 1,
3582
+ "including": 1,
3583
+ "vulnerability": 1,
3584
+ "no": 1,
3585
+ "open": 1,
3586
+ "blocker": 1,
3587
+ "items": 1
3588
+ }
3589
+ }
3590
+ ];
3591
+ export default DOC_SEARCH_INDEX;