@jimhoyd/urlcode 0.4.0-alpha.1 → 0.4.0-alpha.2

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 (191) hide show
  1. package/.claude/skills/urlcode-authoring/SKILL.md +24 -8
  2. package/.claude/skills/urlcode-operations/SKILL.md +10 -16
  3. package/.claude-plugin/marketplace.json +1 -1
  4. package/README.md +75 -62
  5. package/ROADMAP.md +61 -16
  6. package/SECURITY.md +23 -8
  7. package/dist/BUILD-MANIFEST.json +38 -43
  8. package/dist/agents-guide.js +18 -18
  9. package/dist/build-static.js +134 -0
  10. package/dist/capabilities.js +85 -31
  11. package/dist/capability-query.js +0 -1
  12. package/dist/cli.js +23 -31
  13. package/dist/compliance-rules/baseline.js +2 -10
  14. package/dist/compliance-rules/privacy.js +5 -16
  15. package/dist/compliance-rules/shared.js +0 -2
  16. package/dist/compliance.js +6 -8
  17. package/dist/config.js +15 -8
  18. package/dist/context.js +9 -10
  19. package/dist/examples.js +2 -2
  20. package/dist/explain-cli.js +3 -3
  21. package/dist/explain.js +5 -6
  22. package/dist/extensions.js +61 -2
  23. package/dist/function-sources.js +34 -2
  24. package/dist/function-worker.js +3 -1
  25. package/dist/functions.js +84 -13
  26. package/dist/guest-api.js +29 -3
  27. package/dist/index.js +3 -6
  28. package/dist/manifest.js +5 -7
  29. package/dist/mcp.js +1 -1
  30. package/dist/observability.js +1 -21
  31. package/dist/policies/cache.js +8 -3
  32. package/dist/policy.js +28 -9
  33. package/dist/project-tests.js +3 -3
  34. package/dist/readiness.js +32 -9
  35. package/dist/router.js +5 -7
  36. package/dist/runtime.js +77 -58
  37. package/dist/sandbox.js +48 -0
  38. package/dist/scaffold.js +0 -0
  39. package/dist/scripts/operational-drills.js +12 -54
  40. package/dist/server.js +3 -29
  41. package/dist/tooling.js +1 -1
  42. package/dist/trusted-functions.js +210 -0
  43. package/dist/types/build-static.d.ts +43 -0
  44. package/dist/types/capabilities.d.ts +14 -5
  45. package/dist/types/compliance-rules/shared.d.ts +0 -2
  46. package/dist/types/compliance.d.ts +0 -3
  47. package/dist/types/config.d.ts +2 -1
  48. package/dist/types/context.d.ts +2 -1
  49. package/dist/types/examples.d.ts +1 -1
  50. package/dist/types/extensions.d.ts +55 -0
  51. package/dist/types/function-sources.d.ts +4 -0
  52. package/dist/types/functions.d.ts +48 -5
  53. package/dist/types/guest-api.d.ts +1 -0
  54. package/dist/types/index.d.ts +3 -6
  55. package/dist/types/manifest.d.ts +1 -3
  56. package/dist/types/observability.d.ts +1 -14
  57. package/dist/types/project-tests.d.ts +1 -2
  58. package/dist/types/readiness.d.ts +10 -3
  59. package/dist/types/router.d.ts +2 -1
  60. package/dist/types/runtime.d.ts +0 -27
  61. package/dist/types/sandbox.d.ts +12 -0
  62. package/dist/types/scaffold.d.ts +0 -2
  63. package/dist/types/server.d.ts +1 -4
  64. package/dist/types/tooling.d.ts +3 -3
  65. package/dist/types/trusted-functions.d.ts +29 -0
  66. package/dist/types/types.d.ts +14 -7
  67. package/dist/types/verify-deployment.d.ts +2 -2
  68. package/dist/types.js +17 -4
  69. package/dist/typescript-authoring.js +55 -17
  70. package/dist/verify-deployment.js +3 -3
  71. package/docs/AI-AUTHORING.md +104 -9
  72. package/docs/AWS.md +4 -4
  73. package/docs/BEST-PRACTICES.md +3 -2
  74. package/docs/CAPABILITIES.md +29 -16
  75. package/docs/CAPACITY.md +128 -31
  76. package/docs/CLOUDFLARE.md +1 -2
  77. package/docs/COMPLIANCE.md +6 -9
  78. package/docs/DEPLOYMENT-CHECKS.md +1 -1
  79. package/docs/EXTENSIONS.md +183 -11
  80. package/docs/FRAMEWORK.md +35 -19
  81. package/docs/FUNCTION-SECURITY.md +129 -32
  82. package/docs/INSTALL.md +0 -5
  83. package/docs/LOAD-TESTING.md +4 -4
  84. package/docs/MIDDLEWARE.md +27 -16
  85. package/docs/MONITORING.md +2 -19
  86. package/docs/NEXT-PHASE-PLAN.md +12 -4
  87. package/docs/NEXT-STEPS.md +259 -40
  88. package/docs/OBSERVABILITY.md +7 -16
  89. package/docs/OPEN-DECISIONS.md +212 -0
  90. package/docs/OPERATIONAL-PROOF.md +26 -30
  91. package/docs/OPERATIONS.md +23 -32
  92. package/docs/POLICIES.md +15 -4
  93. package/docs/PRERENDER.md +2 -2
  94. package/docs/PROJECT-DIRECTION.md +34 -9
  95. package/docs/README.md +13 -11
  96. package/docs/RELEASE-READINESS.md +49 -29
  97. package/docs/RELEASE-SECURITY.md +89 -3
  98. package/docs/RESILIENCE.md +16 -15
  99. package/docs/ROUTING.md +8 -10
  100. package/docs/SANDBOX-REVIEW.md +19 -6
  101. package/docs/SCAFFOLDING.md +0 -2
  102. package/docs/SECURITY-AUDIT.md +40 -0
  103. package/docs/SPECIFICATION.md +60 -26
  104. package/docs/SPIKE-AI-FRAMEWORK-BENCHMARK.md +287 -0
  105. package/docs/SPIKE-BUSINESS-SUITE.md +8 -0
  106. package/docs/SPIKE-CORE-LAYERING.md +337 -0
  107. package/docs/SPIKE-DEFAULT-TRUST-MODEL.md +209 -0
  108. package/docs/SPIKE-EXTENSION-MODEL.md +2 -2
  109. package/docs/SPIKE-EXTENSIONS.md +5 -0
  110. package/docs/SPIKE-LAMBDA-COMPILE.md +4 -2
  111. package/docs/SPIKE-MONOREPO.md +322 -0
  112. package/docs/STARTERS.md +1 -1
  113. package/docs/STATIC.md +94 -0
  114. package/docs/TOOLING.md +13 -9
  115. package/docs/TUNNELS.md +0 -3
  116. package/docs/TYPESCRIPT-AUTHORING.md +27 -12
  117. package/docs/TYPESCRIPT.md +25 -4
  118. package/docs/USABILITY-REVIEW.md +7 -1
  119. package/docs/VERCEL.md +4 -5
  120. package/docs/VERSION-ALIGNMENT.md +205 -0
  121. package/docs/YAML-GUIDE.md +0 -3
  122. package/docs/YAML-REFERENCE.md +16 -6
  123. package/docs/policies/cache.md +13 -0
  124. package/examples/assets/example.yaml +1 -1
  125. package/examples/aws/example.yaml +1 -1
  126. package/examples/cloudflare/example.yaml +1 -1
  127. package/examples/conditions/example.yaml +1 -1
  128. package/examples/cookbook/example.yaml +1 -1
  129. package/examples/cookbook/middleware/bucket.mjs +12 -2
  130. package/examples/cookbook/middleware/locale.mjs +7 -3
  131. package/examples/egress/example.yaml +1 -1
  132. package/examples/extensions/example.yaml +1 -1
  133. package/examples/prerender/README.md +2 -2
  134. package/examples/prerender/example.yaml +1 -1
  135. package/examples/provider-conformance/example.yaml +1 -1
  136. package/examples/vercel/example.yaml +1 -1
  137. package/llms-full.txt +594 -219
  138. package/llms.txt +23 -12
  139. package/package.json +10 -3
  140. package/packaging/claude-plugin/.claude-plugin/plugin.json +1 -1
  141. package/packaging/claude-plugin/skills/urlcode-authoring/SKILL.md +24 -8
  142. package/packaging/claude-plugin/skills/urlcode-operations/SKILL.md +10 -16
  143. package/recipes/authenticated-json-api/recipe.yaml +1 -1
  144. package/recipes/contact-form/recipe.yaml +1 -1
  145. package/recipes/cors-api/recipe.yaml +1 -1
  146. package/recipes/health-page/recipe.yaml +1 -1
  147. package/recipes/json-api/recipe.yaml +1 -1
  148. package/recipes/middleware/middleware/bucket.mjs +12 -2
  149. package/recipes/middleware/middleware/locale.mjs +7 -3
  150. package/recipes/middleware/recipe.yaml +1 -1
  151. package/recipes/protected-download/recipe.yaml +1 -1
  152. package/recipes/redirect/recipe.yaml +1 -1
  153. package/recipes/static-plus-api/recipe.yaml +1 -1
  154. package/recipes/typescript/README.md +2 -1
  155. package/recipes/typescript/recipe.yaml +1 -1
  156. package/recipes/webhook-receiver/README.md +5 -1
  157. package/recipes/webhook-receiver/recipe.yaml +2 -1
  158. package/recipes/webhook-receiver/urlcode.yaml +7 -0
  159. package/schemas/recipe.schema.json +4 -3
  160. package/schemas/urlcode.schema.json +14 -41
  161. package/skills/urlcode/SKILL.md +29 -8
  162. package/starters/default/AGENTS.md +18 -18
  163. package/starters/default/urlcode.yaml +0 -1
  164. package/dist/link-api.js +0 -136
  165. package/dist/link-cli.js +0 -141
  166. package/dist/link-events.js +0 -76
  167. package/dist/link-records.js +0 -31
  168. package/dist/link-store-worker.js +0 -150
  169. package/dist/link-store.js +0 -250
  170. package/dist/management-policy.js +0 -40
  171. package/dist/sqlite-version.js +0 -6
  172. package/dist/types/link-api.d.ts +0 -30
  173. package/dist/types/link-cli.d.ts +0 -37
  174. package/dist/types/link-events.d.ts +0 -27
  175. package/dist/types/link-records.d.ts +0 -11
  176. package/dist/types/link-store-worker.d.ts +0 -1
  177. package/dist/types/link-store.d.ts +0 -130
  178. package/dist/types/management-policy.d.ts +0 -8
  179. package/dist/types/sqlite-version.d.ts +0 -1
  180. package/docs/DYNAMIC-LINKS.md +0 -61
  181. package/docs/MANAGEMENT-SECURITY.md +0 -82
  182. package/docs/links/cli.md +0 -110
  183. package/docs/links/limits.md +0 -175
  184. package/docs/links/management-api.md +0 -80
  185. package/docs/links/pools.md +0 -75
  186. package/docs/links/setup.md +0 -135
  187. package/docs/yaml/links.md +0 -30
  188. package/examples/live-links/README.md +0 -11
  189. package/examples/live-links/example.yaml +0 -21
  190. package/examples/live-links/tests/requests.json +0 -6
  191. package/examples/live-links/urlcode.yaml +0 -16
@@ -35,7 +35,7 @@ support a terminal `/*` wildcard with an otherwise literal path. Route keys cann
35
35
  percent encoding, spaces, backslashes or query strings. Path length is limited
36
36
  to 2,048 characters and 32 segments. `/_urlcode` is reserved.
37
37
 
38
- One handler per route: `function`, `redirect`, `page`, `static`, `download`, `respond`, `link`, `conditional` or `proxy`.
38
+ One handler per route: `function`, `redirect`, `page`, `static`, `download`, `respond`, `conditional`, `proxy` or an `extension` mount.
39
39
  See [asset configuration](ASSETS.md) for file handlers. Optional properties:
40
40
 
41
41
  - `methods`: unique HTTP methods; default GET and HEAD. Explicit lists are exact;
@@ -56,8 +56,8 @@ Requests decode the path once; invalid UTF-8/percent encoding, encoded slashes o
56
56
  backslashes, control characters and dot segments return 400. Query values decode
57
57
  once. Incoming query data is not automatically forwarded.
58
58
 
59
- See [route matching and new links](ROUTING.md) for examples, precedence, wildcard
60
- limits, reload behavior and the distinction between YAML routes and live link data.
59
+ See [route matching](ROUTING.md) for examples, precedence, wildcard
60
+ limits and reload behavior.
61
61
 
62
62
  The optional top-level `site` block (entry file only) generates native routes
63
63
  for site conventions: `robots` → `/robots.txt`, `sitemap` → `/sitemap.xml`,
@@ -157,15 +157,11 @@ keys preserve repeated values. Headers are forwarded only through explicit maps.
157
157
 
158
158
  ## Stored links
159
159
 
160
- The entry `urlcode.yaml` must opt in with `dynamicLinks: true` (default false).
161
- Included files cannot set this project-level flag. Parameterized redirects and
162
- functions do not require it.
163
-
164
- `link: {collection: links, code: {from: path, name: code}}` resolves a declared
165
- path input against an operator-bound store. GET/HEAD only. The logical collection
166
- is portable; file paths and store credentials are external deployment bindings.
167
- No general storage capability is exposed to guest code. See [dynamic links](DYNAMIC-LINKS.md)
168
- for validation, persistence, mutation, expiry and read-after-write behavior.
160
+ Core has no native `link` handler or `dynamicLinks` project flag; both were
161
+ removed. Stored short links are moving to a future `urlcode-dynamic-link`
162
+ extension package (mount-based, like `auth`/`admin`), not yet published. A
163
+ project needing them declares an `extension` mount once that package exists;
164
+ there is no in-core replacement or deprecation shim for `link`/`dynamicLinks`.
169
165
 
170
166
  ## Functions
171
167
 
@@ -211,8 +207,34 @@ ES modules only (`.mjs` or `.js`, independent of Node package settings).
211
207
  JavaScript modules in a separate output project; serving does not transpile them.
212
208
  The build never imports application code into Node, uses fixed compiler settings,
213
209
  and does not perform semantic type checking. Grants must target the built
214
- configuration/source revision. `export` defaults to `default`. Functions execute
215
- inside QuickJS/WASM, never through Node imports. Only relative `.js`/`.mjs`
210
+ configuration/source revision. `export` defaults to `default`.
211
+
212
+ ### Trust: unsandboxed by default, `sandbox: true` opt-in
213
+
214
+ A route's `function`/`middleware` chain runs one of two ways, chosen by the
215
+ route's `sandbox` field (false or absent — the default — versus `true`; see
216
+ [docs/SPIKE-DEFAULT-TRUST-MODEL.md](SPIKE-DEFAULT-TRUST-MODEL.md)):
217
+
218
+ - **`sandbox` false/absent (trusted, the default):** the module is imported
219
+ directly into the host process with ordinary Node module resolution — bare
220
+ specifiers, `node:` builtins, npm packages and dynamic `import()` all work,
221
+ none of the module-graph/source-size limits below apply, and there is no
222
+ fresh-heap-per-call reset (module-level state persists across requests like
223
+ any other Node server). The handler/middleware signature and `context`
224
+ shape are unchanged from the sandboxed contract below; a trusted function
225
+ additionally has the full Fetch API, Node built-ins and the filesystem
226
+ available to it, not just the guest text/JSON subset. `args`/`env`/
227
+ `secrets` are exactly what the route declares and an operator grants,
228
+ identically to the sandboxed path.
229
+ - **`sandbox: true`:** the rest of this section, unchanged from every earlier
230
+ release. A sandboxed route's functions and middleware execute inside
231
+ QuickJS/WASM, never through Node imports.
232
+
233
+ The remainder of this section (module restrictions, the guest API subset,
234
+ guest limits and deadlines) describes the `sandbox: true` path specifically,
235
+ unless stated otherwise.
236
+
237
+ Only relative `.js`/`.mjs`
216
238
  project imports are supported, with a snapshotted dependency graph. No bare/npm,
217
239
  Node built-in, remote, dynamic source imports or `import.meta`. Runtime-created
218
240
  imports remain restricted to the route's middleware and handler dependency graphs; there is no fallback.
@@ -225,7 +247,8 @@ delete/get/has/entries/getSetCookie; Response constructor with string/null body,
225
247
  Requests decode body bytes as UTF-8. Binary/streaming bodies, URL helpers,
226
248
  fetch/WebSocket, crypto and filesystem are not exposed. Promise/async and
227
249
  bounded timers (128 pending per invocation) work inside the guest. Unsupported
228
- APIs fail; they never execute on the host. Do not claim full browser/Node API parity.
250
+ APIs fail; they never execute on the host. Do not claim full browser/Node API
251
+ parity for a `sandbox: true` route; a trusted route has no such restriction.
229
252
 
230
253
  Context contains `inputs.path/query/header`, `args`, `env`, `secrets`. Arguments
231
254
  may be scalar literals, input references, `{env: alias}` or `{secret: alias}`.
@@ -241,12 +264,17 @@ Dotenv supports single-line NAME=value, paired single/double quotes, blank lines
241
264
  and full-line comments, without expansion/escapes/shell execution. Loading a
242
265
  value does not authorize exposing it to a function; the policy still applies.
243
266
 
244
- Every invocation has a fresh guest heap and module state. No cross-request
245
- counters, cached secrets or prototype mutation. QuickJS heap limit is 32 MiB,
246
- stack limit 512 KiB; outer worker and deployment limits are additional defenses,
247
- not a claim that total process RSS is capped at 32 MiB. Two workers, no queue;
248
- saturation returns 503. The independent 5-second deadline terminates a worker
249
- and returns 504. Generic failures return 502; worker replacement is bounded.
267
+ A `sandbox: true` invocation has a fresh guest heap and module state every
268
+ time. No cross-request counters, cached secrets or prototype mutation. QuickJS
269
+ heap limit is 32 MiB, stack limit 512 KiB; outer worker and deployment limits
270
+ are additional defenses, not a claim that total process RSS is capped at 32
271
+ MiB. Two workers, no queue; saturation returns 503. The independent 5-second
272
+ deadline terminates a worker and returns 504. Generic failures return 502;
273
+ worker replacement is bounded. A trusted route has none of this: no fresh
274
+ heap/module reset, no fixed worker-pool ceiling (bounded instead by ordinary
275
+ Node concurrency and the HTTP admission cap), and its deadline races the
276
+ call's promise rather than force-terminating a worker — see
277
+ [capacity](CAPACITY.md) for both models side by side.
250
278
 
251
279
  HEAD invokes the handler as HEAD and suppresses body output. Code must guard
252
280
  its own application side effects when future brokered integrations are enabled.
@@ -255,12 +283,18 @@ not arbitrary Host/forwarded headers. Request/response bodies default to 1 MiB;
255
283
  response headers 16 KiB, maximum 256 pairs. Hop-by-hop headers are stripped;
256
284
  cookies are preserved individually. Default response cache policy is `no-store`.
257
285
 
258
- No unrestricted host execution option exists. Declarative proxy and webhook
259
- signals use the separately granted host broker described in [egress](EGRESS.md);
260
- guests still have no fetch API or general persistent state capability. Approved secrets can be
261
- returned by code that receives them; isolation does not automatically enforce
286
+ A trusted (non-`sandbox`) route already has unrestricted host execution by
287
+ design that is the point of the default described above. For a `sandbox:
288
+ true` route, there is no unrestricted host-execution fallback: declarative
289
+ proxy and webhook signals use the separately granted host broker described in
290
+ [egress](EGRESS.md), and that route's guests still have no fetch API or
291
+ general persistent state capability. Approved secrets can be returned by code
292
+ that receives them, in either mode; isolation does not automatically enforce
262
293
  information-flow rules on authorized inputs. Keep grants narrow and review the
263
- exact pinned revision. The sandbox still needs independent security review before hostile multi-tenant use.
294
+ exact pinned revision. The `sandbox: true` path still needs independent
295
+ security review before hostile multi-tenant use of that specific mode; that
296
+ review's scope was never a claim about a route that opts out of the sandbox
297
+ (see [docs/SANDBOX-REVIEW.md](SANDBOX-REVIEW.md)).
264
298
 
265
299
  ## Reload and status
266
300
 
@@ -0,0 +1,287 @@
1
+ # Spike: AI-first URLCode framework benchmark
2
+
3
+ Status: proposed research and execution plan. This document adds no benchmark
4
+ implementation or measured results. It preserves the agreed independent-agent
5
+ experiment and improvement loop; executing the phases below is follow-up work.
6
+
7
+ ## Objective and core principle
8
+
9
+ Measure whether autonomous agents can build a correct, realistic application
10
+ with URLCode, how much application intent its abstractions express, how easily
11
+ agents discover those abstractions, and how the resulting application performs.
12
+ Report AI effectiveness, framework expressiveness, AI discoverability and runtime
13
+ performance separately. Do not collapse them into a single score or assume that
14
+ URLCode will outperform another framework.
15
+
16
+ The canonical implementation rule for the explicitly guided run is:
17
+
18
+ > Use URLCode's highest-level declarative features whenever possible. Generate custom JavaScript only when the framework cannot express the requirement.
19
+
20
+ Before implementing functionality manually, check for a declarative primitive,
21
+ YAML configuration, built-in capability, extension, reusable template or documented
22
+ pattern. Custom JavaScript is an escape hatch. The experiment must also establish
23
+ whether an unfamiliar agent discovers this approach without explicit coaching.
24
+
25
+ ## Phase 0 — Research existing work first
26
+
27
+ Before building the application or a new harness, investigate:
28
+
29
+ - RealWorld / Conduit and its reusable application and acceptance specification.
30
+ - TechEmpower Framework Benchmarks and their runtime methodology.
31
+ - SWE-bench and other coding-agent benchmarks.
32
+ - Agent productivity studies, framework comparison applications and standard
33
+ CRUD/full-stack benchmark applications.
34
+ - URLCode's existing [agent harness](../benchmarks/agent/README.md), authoring
35
+ evals, [next-steps plan](NEXT-STEPS.md), and runtime benchmarks in
36
+ `benchmarks/routing.ts`, `benchmarks/bulk.ts` and
37
+ `benchmarks/sandbox-vs-trusted.ts`.
38
+
39
+ Write a dated research report with primary-source links, versions/revisions,
40
+ what each candidate measures, what can be reused, what is missing, and the
41
+ reuse/adapt/build decision. Verify current maintenance status during research;
42
+ do not assume this proposal is novel or that an additional suite is necessary.
43
+
44
+ The existing agent harness already records shared acceptance results, generated
45
+ lines, prompts and provider-reported usage. Its README explicitly limits claims:
46
+ its tasks do not test persistence or runtime performance, its URLCode arm receives
47
+ curated guidance, and stub records are pipeline tests rather than model evidence.
48
+ Reuse suitable accounting and acceptance infrastructure after auditing it against
49
+ the current runtime. Do not treat its guided arm as the unprompted baseline or
50
+ silently reinterpret historical measurements under a new counting rule.
51
+
52
+ Exit criterion: record the selected specification and harness approach before
53
+ implementation begins, including the evidence for any departure from existing work.
54
+
55
+ ## Phase 1 — Freeze a realistic, framework-neutral specification
56
+
57
+ Prefer RealWorld when practical. Otherwise justify a smaller RealWorld-inspired
58
+ application, such as TaskFlow: users own projects, projects contain tasks, and
59
+ users cannot access another user's private records. A basic Todo application alone
60
+ is insufficient. Freeze observable API behavior and shared acceptance tests before
61
+ agent runs; use exactly the same requirements for URLCode and Fastify.
62
+
63
+ Exercise routing, CRUD, authentication, authorization, persistent relational data,
64
+ relationships, validation, structured errors, filtering, sorting, pagination,
65
+ environment configuration, secrets, middleware, logging and automated tests.
66
+ Include registration/login, current-user lookup, ownership checks, restart
67
+ persistence, invalid inputs and unauthenticated/unauthorized requests in acceptance
68
+ coverage. Define logout semantics if applicable to the selected authentication
69
+ model. Specify a health endpoint and reproducible schema/migrations and seed data.
70
+
71
+ Also define isolated plaintext, JSON serialization, single-record database read
72
+ and database write endpoints, borrowing established runtime benchmark semantics
73
+ where practical. Freeze response bodies, status codes, headers, data size, database
74
+ work and cache behavior; database reads must actually hit the database, and writes
75
+ must persist. Keep these separate from realistic application workloads.
76
+
77
+ Use the same database engine/version and equivalent data in all comparable runs.
78
+ Choose it before implementation, not separately for each framework. Use synthetic
79
+ data and environment-supplied secrets. Keep benchmark applications isolated from
80
+ production runtime source. Record permitted extension packages and versions;
81
+ extension functionality must not be presented as built into core.
82
+
83
+ Correctness is the first gate: report passed/total acceptance cases, incomplete
84
+ requirements and failures. Do not compare an incomplete application's apparent
85
+ code savings or throughput as if it delivered the same functionality.
86
+
87
+ ## Phase 2 — Reproducible harness and measurement
88
+
89
+ Capture exact prompts, model identifiers, agent/version, framework and extension
90
+ commits, lockfiles, documentation snapshots, harness version, runtime, OS, hardware,
91
+ database, tools and configuration. Record the initial workspace and available
92
+ instructions/tools. Fix time, turn and token budgets, stopping rules and permitted
93
+ human assistance before running; log interventions and failed or capped runs.
94
+
95
+ | Area | Measurements |
96
+ |---|---|
97
+ | Agent work | Input/output/cached/total tokens, elapsed time, turns, tool calls, shell commands, documentation searches, test/fix cycles, completion rate |
98
+ | Implementation | Total/source/configuration/JS/TS files, application LOC, configuration LOC, test LOC, direct/transitive dependencies, custom handlers and custom JavaScript |
99
+ | URLCode expression | Declarative routes, routes needing custom code, declarative versus imperative LOC, required extensions, JavaScript escape hatches, functionality manually duplicated despite an existing capability |
100
+ | Runtime | Startup time, idle memory, CPU, memory under load, requests/sec, p50/p95/p99 latency, response errors and timeouts |
101
+
102
+ Never estimate unavailable measurements: mark them unavailable and explain why.
103
+ Preserve provider usage fields and document whether cached tokens are included in
104
+ input totals so totals do not double-count them. Separate measured values from
105
+ derived calculations. Define LOC counting and exclusions in advance; separately
106
+ report configuration, tests, generated output, dependencies and copied templates.
107
+ Existing code-ratio metrics are not automatically declarative-coverage metrics.
108
+
109
+ For runtime comparisons hold hardware/resource limits, runtime, database, data,
110
+ concurrency, warm-up, duration and load generator constant. Specify startup start/
111
+ ready events and memory/CPU sampling. Record trust/sandbox mode, worker counts,
112
+ policies and extension overhead; compare equivalent behavior and disclose any
113
+ unavoidable differences. Do not disable correctness or security requirements to
114
+ improve scores. Reset data between trials and verify benchmark response semantics.
115
+
116
+ Predeclare repeated fresh-agent runs and repeated runtime trials, retain every
117
+ trial and report variability, sample counts and failures rather than selecting
118
+ best runs. Keep the load generator from becoming the bottleneck. Version changed
119
+ prompts, fixtures and counting rules so incompatible results are not pooled.
120
+
121
+ ## Phase 3 — Independent URLCode agents
122
+
123
+ Each run starts with a fresh context and isolated worktree/environment. Agents
124
+ must not see another agent's implementation, logs or findings. The coordinator
125
+ collects evidence after each run; shared prompts contain the neutral specification
126
+ and operational rules, not the hypothesis or a desired token/LOC outcome.
127
+
128
+ ### Protect the discovery baseline
129
+
130
+ This spike itself contains the instruction being tested. Do not expose it, its
131
+ index entry, benchmark prompts, prepared answers or prior findings to Agent A.
132
+ Use a pinned source/documentation snapshot preceding this spike, or a documented
133
+ filtered workspace with no access to excluded artifacts or repository history.
134
+ Apply the same underlying snapshot and access controls to the comparison runs,
135
+ with only the intended prompt treatment different. Record the exact manifest and
136
+ restrictions; if an agent reads excluded material, mark the run contaminated and
137
+ repeat it with a fresh agent rather than counting it as unprompted evidence.
138
+
139
+ Existing product documentation, skills and ordinary repository instructions are
140
+ part of what Agent A may discover; do not remove existing declarative guidance to
141
+ manufacture a worse baseline. Preserve the baseline before changing those sources.
142
+
143
+ ### Agent A — Unprompted discovery
144
+
145
+ Supply the application specification, URLCode source and existing documentation.
146
+ The framework-specific instruction is only:
147
+
148
+ > Build this application using URLCode following the framework's documented conventions and recommended practices.
149
+
150
+ Do not supply the declarative-first rule or curated hints about where to find it.
151
+ Record whether the agent independently finds and uses it, including evidence of
152
+ unnecessary JavaScript, duplicated capabilities, missed primitives, misunderstood
153
+ abstractions, repeated searches, incorrect assumptions, unclear errors and stalls.
154
+ Treat these as potential framework/documentation problems, not automatically as
155
+ agent failures.
156
+
157
+ ### Agent B — Explicitly URLCode-native
158
+
159
+ Run the identical application from scratch with a fresh independent agent. Add:
160
+
161
+ > Use URLCode's highest-level declarative features whenever possible. Generate custom JavaScript only when the framework cannot express the requirement.
162
+
163
+ > Before implementing functionality manually, determine whether URLCode already provides a declarative primitive, YAML configuration, built-in capability, extension, reusable template, or documented pattern.
164
+
165
+ Compare A and B on correctness, tokens, custom JavaScript, YAML, files, LOC,
166
+ implementation time, debugging cycles and documentation searches. A repeatable
167
+ advantage for B is evidence to investigate discoverability, not proof that every
168
+ individual mistake is a documentation defect.
169
+
170
+ ### Agent C — Gap finder
171
+
172
+ Use another fresh agent, independent of A/B implementations and findings during
173
+ its attempt. Give it the same requirements and this instruction:
174
+
175
+ > Attempt to implement every requirement using URLCode's intended abstractions. Whenever URLCode cannot express something cleanly, document the limitation rather than hiding it behind substantial custom code.
176
+
177
+ Classify findings as missing capability, documentation gap, AI discoverability
178
+ problem, confusing API/schema, poor error message, unnecessary boilerplate,
179
+ extension-system limitation, performance problem, possible framework bug or agent
180
+ misunderstanding. Record the attempted declaration, missing requirement, relevant
181
+ documentation and any necessary workaround. A requirement that cannot be expressed
182
+ stays visibly incomplete; substantial custom code must not hide the gap.
183
+
184
+ ## Phase 4 — Verify findings and prepare/file GitHub issues
185
+
186
+ After independent attempts are preserved, reproduce each candidate problem against
187
+ the pinned revision, inspect the supported contract and search existing issues and
188
+ PRs. Distinguish missing functionality from functionality the agent failed to find.
189
+ Do not file an issue merely because one agent made a mistake. Note corroborating
190
+ encounters by multiple fresh agents, while avoiding unsupported causal claims.
191
+
192
+ For each verified, actionable issue include:
193
+
194
+ - Problem and benchmark scenario, affected repository/revision and environment.
195
+ - Expected versus actual behavior and minimal synthetic reproduction.
196
+ - Relevant YAML/code, commands, errors and links to run evidence.
197
+ - Classification, proposed improvement and impact on human developers and agents.
198
+ - Acceptance criteria and related/duplicate issue links.
199
+
200
+ Use the owning repository's issue template and the ownership map in
201
+ [AGENTS.md](../AGENTS.md): core/runtime issues belong here, public documentation
202
+ in `urlcode-docs`, and extension defects in the corresponding extension repository.
203
+ Update existing issues with new evidence rather than duplicating them. Track
204
+ prepared, filed, duplicate and unverified dispositions in the findings report;
205
+ file verified issues and retain unresolved hypotheses as explicitly unverified
206
+ observations. Follow [SECURITY.md](../SECURITY.md) for private vulnerability reports.
207
+
208
+ ## Phase 5 — Audit AI discoverability
209
+
210
+ Audit README, documentation, examples, schemas, CLI help, package metadata,
211
+ `llms.txt`, agent instructions/skills, scaffolding and errors. Determine whether an
212
+ unfamiliar agent can find the framework's purpose, declarative-first philosophy,
213
+ YAML capabilities, built-in primitives, extensions, authentication, database access,
214
+ validation, errors, custom functionality, testing and debugging guidance.
215
+
216
+ Specifically search for guidance equivalent to the canonical rule above; record
217
+ exact locations, prominence and the navigation/search path used to discover it.
218
+ Do not assume it is absent just because the exact sentence is missing. Check the
219
+ current contract when documents and historical benchmark assumptions differ.
220
+
221
+ Preserve Agent A's baseline before editing guidance. Then propose the smallest
222
+ authoritative set of changes that makes the principle clear to people and agents,
223
+ including when custom JavaScript is appropriate. Public authoring guidance belongs
224
+ in `urlcode-docs`; contributor records and spikes remain here. Do not copy the rule
225
+ everywhere or expose the experimental prompt as product guidance by accident.
226
+
227
+ ## Phase 6 — Fastify comparison
228
+
229
+ Once the URLCode methodology works, give a fresh independent agent the same frozen
230
+ specification, budgets, tool access and acceptance criteria, using:
231
+
232
+ > Build this application using Fastify following the framework's documented conventions and recommended practices.
233
+
234
+ Do not mention URLCode or expose its implementations/findings. Use Fastify
235
+ idiomatically; do not force it to imitate URLCode's architecture. Compare correctness,
236
+ agent work, files/LOC/dependencies, configuration, debugging/searches and runtime
237
+ measurements separately. Document framework-specific dependencies and setup work.
238
+ Later candidates include Hono, Express, NestJS and Elysia; they are not prerequisites
239
+ for the first comparison.
240
+
241
+ ## Phase 7 — Findings and deliverables
242
+
243
+ Publish the contributor findings in `docs/benchmarks/AI_FRAMEWORK_BENCHMARK.md` when
244
+ runs exist. Keep implementation and raw evidence paths versioned and linked from
245
+ that report; do not create a results document implying measurements already exist.
246
+ Deliver:
247
+
248
+ 1. Dated benchmark research and reuse decision.
249
+ 2. Frozen application specification and shared acceptance suite.
250
+ 3. Reproducible harness, commands and independent agent prompts.
251
+ 4. URLCode A/B/C and Fastify implementations or explicit incomplete outcomes.
252
+ 5. Raw agent logs/usage, implementation counts and runtime trial data.
253
+ 6. Methodology, provenance, comparison tables, uncertainty and evidence limitations.
254
+ 7. Agent behavior/search/failure analysis and classified framework/discovery gaps.
255
+ 8. Verified issue ledger, proposed/filed issue links and prioritized improvements.
256
+ 9. Before/after findings following the fresh-agent regression phase.
257
+
258
+ Remove secrets from published logs while retaining measurement provenance. Keep
259
+ stub/harness validation records distinct from real-agent evidence. Report every
260
+ failed attempt, not just successful applications, and avoid subjective scores or
261
+ claims beyond the measured cases.
262
+
263
+ ## Phases 8–9 — Improve and rerun with fresh agents
264
+
265
+ Prioritize demonstrated friction: missing declarative primitives, defaults, YAML,
266
+ schemas, errors, examples, extension discovery, README/AI documentation, CLI and
267
+ scaffolding. Make legitimate application-development improvements, not special
268
+ cases that game the benchmark. Track each change to its verified issue/evidence.
269
+
270
+ After improvements, rerun with entirely fresh agents and isolated environments.
271
+ The new discovery agent must again receive no explicit declarative-first rule or
272
+ prior findings; it may discover the improved ordinary documentation naturally.
273
+ Keep this spike and benchmark answers excluded. Repeat B, C and the comparison
274
+ where needed to distinguish framework changes from model/harness drift. Hold model,
275
+ budgets, requirements and runtime conditions fixed where possible; disclose changes
276
+ and do not attribute their effects solely to URLCode.
277
+
278
+ Compare before/after correctness, tokens, elapsed time, generated JavaScript, YAML,
279
+ LOC, files, dependencies, tool calls, searches, failed attempts, test/fix cycles and
280
+ runtime performance. Keep dimensions separate and preserve the original baseline.
281
+
282
+ The repeatable loop is: independent agent encounters friction → evidence captures
283
+ it → verified issue → URLCode improvement → fresh-agent rerun → measured outcome.
284
+ Use it for significant releases to detect regressions in AI usability, declarative
285
+ coverage, documentation, capability and runtime performance. Completion means
286
+ reproducible evidence and an actionable issue/improvement trail, not a claim that
287
+ URLCode won the comparison.
@@ -5,6 +5,14 @@ Core inspected at `50790d3` (0.4.0-alpha.1), plus local auth, admin, UI and
5
5
  shortener source/status files. Competitor research below is a documentation
6
6
  review, not hands-on benchmarking. Features and commercial packaging can change.
7
7
 
8
+ > **Update:** this proposal was written when `link`/`LinkStore` was still a
9
+ > native core feature. Core no longer has that API — it was extracted to the
10
+ > separate [`urlcode-dynamic-link`](https://github.com/jimhoyd-com/urlcode-dynamic-link)
11
+ > package. References below to core owning link storage (e.g. "Reuse core's
12
+ > LinkStore", "Retain core link semantics", the `core LinkStore -> short`
13
+ > dependency line) describe the pre-extraction state this spike was proposing
14
+ > against, not current core.
15
+
8
16
  ## Recommendation
9
17
 
10
18
  Build seven independently released Apache-2.0 applications on URLCode: