Wrangler-shaped CLI
init, dev, secret, versions, deploy, browser, whoami — the local worker lifecycle and state commands you expect, plus a wrangler bin alias so it drops into toolchains that expect the command name. Cloudflare-account families it does not yet own stay honest explicit placeholders.
Programmatic dev API
unstable_dev(), unstable_startWorker(), and getPlatformProxy() for local worker testing. x-ranger imports the worker module and calls fetch(request, env, ctx) directly — no isolate, no sandbox, no runtime emulation.
Multi-lane transport
One worker fetch handler, three transports. The same fetch export answers over HTTP (always on), TCP Aeon Flow, and UDP Aeon Flow — all sharing one mesh policy, one platform proxy, and one execution context. The wire envelope is pure JSON over base64, dependency-free.
Formally-verified mesh policy
A per-path port-authenticated mesh: default-deny transitions, an explicit port whitelist, ICE overlays, honey-pit traps, and linked-mesh composition — backed by ten zero-sorry Lean modules and a TypeScript SSOT in @a0n/gnosis/mesh-policy.
Local binding emulation
Local worker loading and fetch simulation with binding emulation for vars, KV, R2, D1, and service bindings — plus local d1 execute and d1 migrations create/list/apply backed by persisted D1 files, secret/version/deployment state, and rollback history.
Rust + gnosis-uring ingress
Built in Rust to minimize CLI overhead, with gnosis-uring fronting the local runtime for the fast ingress path. Native execution keeps local developer workflows and automated toolchains fast as the monorepo grows.