capnweb

GitHub

提供 capnweb RPC 模式指导,聚焦于 Durable Object 与 computerd 间 stub 的生命周期管理与资源释放。

.agents/skills/capnweb/SKILL.md cloudflare/computer

触发场景

capnweb RpcTarget stub RPC wire promise pipelining stub disposal RpcPromise

安装

npx skills add cloudflare/computer --skill capnweb -g -y
更多选项

非标准路径

npx skills add https://github.com/cloudflare/computer/tree/main/.agents/skills/capnweb -g -y

不安装直接使用

npx skills use cloudflare/computer@capnweb

指定 Agent (Claude Code)

npx skills add cloudflare/computer --skill capnweb -a claude-code -g -y

安装 repo 全部 skill

npx skills add cloudflare/computer --all -g -y

预览 repo 内 skill

npx skills add cloudflare/computer --list

SKILL.md

Frontmatter
{
    "name": "capnweb",
    "description": "capnweb RPC patterns for this repo, with a heavy focus on stub lifecycle\nand disposal. Load when touching anything that crosses the Durable Object\n↔ computerd boundary: packages\/rpc, packages\/computer, the computerd client, or the\nDurable Object server. Triggers include \"capnweb\", \"RpcTarget\", \"stub\",\n\"RPC wire\", \"promise pipelining\", \"stub disposal\", \"RpcPromise\"."
}

capnweb in this repo

capnweb is the RPC framing between the Durable Object and computerd. It's an object-capability RPC system with promise pipelining, structured-clone-style transfer of stubs, and bidirectional calls. The wire format used here is text JSON over a long-lived WebSocket, with an HTTP batch alternative.

Where things live

The mental model

A stub is a capability: holding it is the right to call the remote object. Stubs are not garbage-collected across the network — the local GC has no visibility into the remote object graph, and the remote runtime has no idea whether you're under memory pressure. If you don't explicitly dispose stubs, you leak resources on the other side of the connection.

This matters more here than in many capnweb deployments because the connection is long-lived. HTTP batch sessions auto-dispose everything when the batch ends, but our WebSocket between the Durable Object and computerd stays up for the lifetime of the workspace. Every undisposed stub stays alive until that connection drops.

The caller-disposes rule

The fundamental principle, from the capnweb spec:

The caller is responsible for disposing all stubs.

Concretely:

  • Stubs passed in parameters remain owned by the caller. The callee receives duplicates that the RPC system auto-disposes when the call completes. You can dispose your originals immediately after the call — they were duplicated at send time.
  • Stubs returned in results transfer ownership to the caller. The caller must dispose them. The RPC system disposes the callee's duplicates once it knows no more pipelined calls will land.
  • Result envelopes always have a disposer, even if you don't think they contain stubs. Dispose them anyway — a future API change may add stubs and your caller will silently leak.

How to dispose

Three patterns, in order of preference:

// 1. `using` declaration — preferred when the stub is scope-local.
using result = await client.sync.fetchChanges({ sinceRev });
for await (const entry of result.stream) {
  // ...
}
// result is disposed when the block exits.
// 2. try/finally — when `using` isn't available or the scope is awkward.
const result = await client.sync.fetchChanges({ sinceRev });
try {
  for await (const entry of result.stream) {
    // ...
  }
} finally {
  result[Symbol.dispose]();
}
// 3. Explicit dispose — when ownership crosses a boundary.
const stub = api.getThing();
// ... pass `stub` somewhere ...
stub[Symbol.dispose]();

Repo-specific disposal contract

  • Drivers own their stubs. pullOnce and pushOnce dispose every envelope they touch. Code that goes through the driver doesn't need to think about it.
  • Direct streaming calls own their result. If you reach into client.sync / client.shell directly to call fetchChanges, fetchObjects, shell.exec, or shell.getExec, you own the envelope. Bind it with using or dispose in finally. The stream on the envelope is the body; draining it does not release the envelope itself.
  • Closing disposes the root. createSyncClient / createWorkspaceClient dispose the root stub when you call client.close(). Don't tear down the underlying WebSocket yourself; let close() cascade.
  • Don't await a stub just to inspect it. Awaiting an RpcPromise resolves it; if it resolves to a stub, you now own that stub and must dispose it.

Duplicating stubs with .dup()

If you need to pass a stub somewhere that will dispose it but also want to keep using it locally, call stub.dup(). The underlying target stays alive until every duplicate is disposed.

.dup() also works on a property of a stub or promise. This is the idiomatic way to grab a stub-shaped property without an extra round trip:

// Grab `authedApi` as a stub immediately, without awaiting.
using authedApi = api.authenticate(token).dup();
// Use it for pipelined calls right away.
const userId = await authedApi.getUserId();

Listening for disposal on the server

An RpcTarget may declare a Symbol.dispose method. capnweb calls it once every stub pointing at the target has been disposed.

class SessionTarget extends RpcTarget {
  // ...
  [Symbol.dispose]() {
    // Release any per-session resources.
  }
}

If you pass the same target to RPC multiple times, you get one dispose call per stub. To collapse them into one, wrap the target in new RpcStub(target) once and pass that stub around instead.

Listening for disconnect

stub.onRpcBroken(cb) fires when the stub becomes unusable — typically because the underlying connection dropped or, for a promise, because the promise rejected. After the callback runs every method call on that stub will throw. packages/computer already folds onRpcBroken into the workspace's closed promise; reuse that plumbing rather than wiring up a parallel listener.

Promise pipelining

An RpcPromise is also a stub for its eventual result. Don't await unless you actually need the value locally:

// Three calls, one round trip.
using authed = api.authenticate(token).dup();
const profile = await api.getUserProfile(authed.getUserId());

You can pass an RpcPromise as an argument to another RPC. capnweb substitutes the resolved value on the receiver side before delivering the call.

Property access on a stub or promise returns an RpcPromise that does not have its own disposer — you must dispose the stub or promise it came from. You can pass a property in params or returns, but doing so never causes anything to be implicitly disposed.

The magic .map()

.map() runs a sync callback on the remote resolution of a promise, in one round trip:

const idsPromise = api.listUserIds();
const names = await idsPromise.map(id => [id, api.getUserName(id)]);

Restrictions:

  • The callback must be synchronous (no await).
  • The callback runs in record mode locally first, so it must have no side effects beyond RPC calls.
  • Any stubs captured by the callback are sent to the peer along with the recording. Treat captured stubs as exposed to the peer; only use stubs that originated from the same peer.

Streams are first-class

ReadableStream<T> is a regular capnweb value. The wire never inlines blob bytes — change streams carry content-addressed (hash, size) records and the receiver calls back via hasObjects / pushObjects for the missing subset. Prefer streaming over single large payloads when adding new RPCs.

When you receive a streaming result, the envelope owns the stream. Draining the stream does not dispose the envelope; dispose the envelope to release every stub it contains.

Do / don't

  • Do define new methods on WorkspaceRPC in interface.ts before implementing them on either side.
  • Do treat stubs as capabilities. Don't pass them across session boundaries unless you mean to grant access.
  • Do drive sync rounds through pullOnce / pushOnce when you can.
  • Do declare using on every awaited result envelope from a direct streaming call.
  • Do dispose result envelopes even when you don't think they contain stubs — futureproofing is cheap.
  • Do call .dup() rather than awaiting twice when you need a stub copy to outlive a callee's auto-dispose.
  • Do run the leak harness (script/computerd-stub-soak) when you change anything around RPC lifecycle, and check session.getStats() for drift.
  • Don't send binary WebSocket frames. The wire is text JSON.
  • Don't tear down the underlying carrier directly. Always go through client.close() so the root stub disposes first.
  • Don't mutate the WorkspaceRPC interface without updating both sides — the wire contract is shared.
  • Don't declare a method private in TypeScript and assume it's hidden from RPC. Use a #-prefixed name to actually make it private at runtime.
  • Don't rely on garbage collection to clean up stubs. It won't.

Testing for leaks

  • Use enableStubTracking() + stubSnapshot() in a test to assert no stub survives a round trip you expected to clean up.
  • Soak the boundary with script/computerd-stub-soak for disposal-sensitive changes; it reads session.getStats() to detect drift.
  • Server-side RPC behavior is tested against the real Database and real driver helpers in packages/rpc and packages/computer.

Further reading

版本历史

  • 8758b51 当前 2026-08-08 07:59

同 Skill 集合

.agents/skills/cloudflare/SKILL.md
.agents/skills/debugging-computerd-fuse/SKILL.md
.agents/skills/prose/SKILL.md
.agents/skills/pull-requests/SKILL.md
.agents/skills/test-driven-development/SKILL.md

元信息

文件数
0
版本
8758b51
Hash
eb6d03c8
收录时间
2026-08-08 07:59

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-08 22:51
浙ICP备14020137号-1 $访客地图$