Просмотр исходного кода

Merge branch 'code-runtime-worker' into code-mode-tools

Tianyi Cui 2 месяцев назад
Родитель
Сommit
dc855dbd4e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/code-runtime/README.md

+ 1 - 1
packages/code-runtime/README.md

@@ -5,6 +5,6 @@ The code-execution capability seam (see [capability seams](../../docs/rfc/implem
 | Package | Role | ctx key |
 |---|---|---|
 | `code-runtime/` | Abstract code-execution seam (interface + vocabulary) | `ctx.codeRuntime` |
-| [`code-runtime-worker/`](code-runtime-worker/README.md) | Worker-thread backend: fresh worker per run, TypeScript via host-side type-strip, port-bridged bindings, budget/heap containment | registers `ctx.codeRuntime` |
+| [`code-runtime-worker/`](code-runtime-worker/README.md) | Worker-thread backend: fresh worker per run, TypeScript via host-side type-strip (annotations advisory, never type-checked), port-bridged bindings, budget/heap containment | registers `ctx.codeRuntime` |
 
 The interface lives at `code-runtime/code-runtime/`; the shipped backend at `code-runtime/code-runtime-worker/`. Backends differ by execution substrate (worker thread, process, container) and by source language — both readonly descriptors on the service — and register `ctx.codeRuntime` without touching the interface or its consumer; that split is what makes a hardened backend a drop-in later.