[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cloudflare-sandbox-stable":3,"mdc-sio9vs-key":37,"related-org-cloudflare-sandbox-stable":1720,"related-repo-cloudflare-sandbox-stable":1900},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":32,"sourceUrl":35,"mdContent":36},"sandbox-stable","manage stable Cloudflare Sandbox applications","Use when building or changing Cloudflare Sandbox apps on the current stable @cloudflare\u002Fsandbox package (default npm tag)—commands, sessions, files, ports, tunnels, terminals, bridge, production, or deprecated-API cleanup while staying on stable. Not for @cloudflare\u002Fsandbox@next (use sandbox-next) or for porting to 1.0 (use sandbox-migrate-to-next).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cloudflare","Cloudflare","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcloudflare.jpg",[12,14,17,20],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Sandboxing","sandboxing",{"name":18,"slug":19,"type":13},"Deployment","deployment",{"name":21,"slug":22,"type":13},"Code Execution","code-execution",2112,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fskills","2026-08-09T04:33:22.058246",null,192,[29,8,30,31],"agents","skills","workers",{"repoUrl":24,"stars":23,"forks":27,"topics":33,"description":34},[29,8,30,31],"Skills for teaching agents how to build on Cloudflare.","https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fsandbox-stable","---\nname: sandbox-stable\ndescription: Use when building or changing Cloudflare Sandbox apps on the current stable @cloudflare\u002Fsandbox package (default npm tag)—commands, sessions, files, ports, tunnels, terminals, bridge, production, or deprecated-API cleanup while staying on stable. Not for @cloudflare\u002Fsandbox@next (use sandbox-next) or for porting to 1.0 (use sandbox-migrate-to-next).\n---\n\n# Sandbox SDK — stable package\n\nIsolated Linux environments on [Cloudflare Containers](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fcontainers\u002F), driven from Workers.\n\n**Prefer the main Sandbox docs and installed stable types over memory.** This skill is a gate, a contract, and a retrieval map—not a full manual.\n\nThis line is the **current stable** default npm package. The main [Sandbox documentation](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F) describes it. Existing apps can stay here and keep shipping.\n\nWe recommend **new projects** on `@cloudflare\u002Fsandbox@next` with **`sandbox-next`**. When you can, plan a move with **`sandbox-migrate-to-next`** so you are ready when 1.0 becomes the stable release. Do not force that port unless the user asks.\n\n## 1. Gate — confirm the package line\n\nBefore writing code, inspect the app:\n\n| Check | Must match |\n| ----- | ---------- |\n| npm dependency | Default `@cloudflare\u002Fsandbox` (**not** `@next` \u002F preview tags) |\n| Container image | Matching **stable** image (not `cloudflare\u002Fsandbox:next`) |\n\n| If you find… | Action |\n| ------------ | ------ |\n| `@cloudflare\u002Fsandbox@next` or a `next` image | **Stop.** Load **`sandbox-next`**. |\n| User wants to port to 1.0 \u002F `@next` | **Stop.** Load **`sandbox-migrate-to-next`**. Do not half-apply preview APIs on a stable package. |\n| Only cleaning deprecated stable APIs | Stay here; use the [2026 deprecation guide](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F2026-deprecation\u002F). That is **not** a move to `@next`. |\n\nNever mix a stable Worker package with an `@next` container image (or the reverse).\n\nSkills install: [Agent setup](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fagent-setup\u002F) · [cloudflare\u002Fskills](https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fskills)\n\n## 2. Contract — non-negotiables\n\n- `await sandbox.exec(command)` takes a **command string** and resolves when the command **finishes**, with buffered `stdout` \u002F `stderr` \u002F `exitCode` (and related fields).\n- Long-running and streaming work use the **stable** command APIs (`startProcess`, `execStream`, and related helpers)—not the `@next` single-handle model. Open the Commands docs; do not invent `@next` `output()` handles on stable.\n- **Sessions** can preserve working directory and environment across commands (default session \u002F `enableDefaultSession`, `createSession`). See Sessions docs when state must carry across calls.\n- Interactive browser terminals often use **`sandbox.terminal(request)`** and session\u002Fxterm helpers on stable—not preview `createTerminal` unless the package is `@next`.\n- Prefer **RPC** transport when using tunnels or large\u002Fbinary streaming. HTTP\u002FWebSocket transports are deprecated (cleanup guide below).\n- Files, mounts, ports, tunnels, backups, lifecycle, and interpreter: use main docs for signatures; trust installed **stable** types.\n- Non-secret config in sandbox env; live credentials in the Worker. Use outbound handlers when processes call external APIs.\n- Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns.\n- Do **not** apply `@next` argv\u002F`process.output()` APIs while the dependency is still stable.\n- Self-deployed **bridge** stays on the stable package and image. [Bridge](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002F)\n\nMinimal shape:\n\n```ts\nimport { getSandbox, proxyToSandbox, Sandbox } from \"@cloudflare\u002Fsandbox\";\n\nexport { Sandbox };\n\nconst sandbox = getSandbox(env.Sandbox, \"user-123\");\nconst result = await sandbox.exec('python3 -c \"print(2 + 2)\"');\n\u002F\u002F result.stdout, result.exitCode, result.success\n```\n\n## 3. Retrieve — open the doc for the task\n\nFetch the page before implementing. Installed stable types win over guesses.\n\n| You need to… | Open |\n| ------------ | ---- |\n| Orient | [Sandbox overview](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F) |\n| First Worker, template, Docker | [Get started](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fget-started\u002F) |\n| `exec`, streaming, background processes | [Commands API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fcommands\u002F) · [Execute commands](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexecute-commands\u002F) · [Background processes](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbackground-processes\u002F) · [Streaming output](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fstreaming-output\u002F) |\n| Sessions \u002F shell state across commands | [Sessions concept](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fsessions\u002F) · [Sessions API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fsessions\u002F) |\n| `getSandbox` options, sleep, destroy | [Lifecycle API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Flifecycle\u002F) · [Sandbox options](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconfiguration\u002Fsandbox-options\u002F) |\n| Env vars | [Environment variables](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconfiguration\u002Fenvironment-variables\u002F) |\n| Files | [Files API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffiles\u002F) · [Manage files](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fmanage-files\u002F) · [File watching](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffile-watching\u002F) |\n| Buckets \u002F mounts | [Storage API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fstorage\u002F) · [Mount buckets](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fmount-buckets\u002F) |\n| Backups | [Backups API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fbackups\u002F) · [Backup and restore](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbackup-restore\u002F) |\n| Ports, preview URLs, expose | [Ports API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fports\u002F) · [Expose services](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexpose-services\u002F) |\n| Tunnels | [Tunnels API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ftunnels\u002F) |\n| Proxy \u002F Workers connections | [Proxy requests](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproxy-requests\u002F) · [Workers connections](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fworkers-connections\u002F) |\n| Browser \u002F PTY terminal | [Terminal API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fterminal\u002F) · [Terminal concept](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fterminal\u002F) · [Browser terminals](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbrowser-terminals\u002F) |\n| Code interpreter | [Interpreter API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Finterpreter\u002F) · [Code execution](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fcode-execution\u002F) |\n| Git in the sandbox | [Git workflows](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fgit-workflows\u002F) |\n| Secrets \u002F egress | [Outbound traffic](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Foutbound-traffic\u002F) |\n| WebSockets | [WebSocket connections](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fwebsocket-connections\u002F) |\n| Docker-in-Docker | [Docker in Docker](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fdocker-in-docker\u002F) |\n| Production deploy | [Production deployment](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproduction-deployment\u002F) |\n| Containers concept | [Containers](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fcontainers\u002F) |\n| How-to index | [Guides](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F) |\n| API index | [API reference](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002F) |\n| Deprecated APIs **while staying on stable** | [2026 deprecation guide](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F2026-deprecation\u002F) |\n| Self-deployed bridge | [Bridge](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002F) · [Bridge HTTP API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002Fhttp-api\u002F) |\n| Examples (stable\u002F`main`) | [examples on GitHub](https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fsandbox-sdk\u002Ftree\u002Fmain\u002Fexamples) |\n| New work on 1.0 preview | **`sandbox-next`** · [1.0 preview](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002F) |\n| Port existing app to `@next` | **`sandbox-migrate-to-next`** · [Migrate](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fmigrate\u002F) |\n\n### Deprecated-API cleanup (stay on stable)\n\nUpdate package + matching image first, then follow the guide. Typical search:\n\n```sh\nrg 'SANDBOX_TRANSPORT|transport:|exposePort\\(|enableDefaultSession|execStream\\(|readFileStream|writeFileStream'\n```\n\nThis path does **not** switch you to `@next`.\n\n## 4. Before you ship\n\n- Worker package and container image on the **same stable** line  \n- Typecheck against installed stable types  \n- No live secrets in sandbox env  \n- If using deprecated transports\u002Fhelpers, finish or track [2026 deprecation](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F2026-deprecation\u002F) cleanup  \n- When the team is ready for 1.0, use **`sandbox-migrate-to-next`**—do not force cutover unprompted  \n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,51,68,79,100,143,150,155,247,375,387,407,413,647,652,913,919,924,1593,1600,1605,1638,1655,1661,1714],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"sandbox-sdk-stable-package",[48],{"type":49,"value":50},"text","Sandbox SDK — stable package",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55,57,66],{"type":49,"value":56},"Isolated Linux environments on ",{"type":43,"tag":58,"props":59,"children":63},"a",{"href":60,"rel":61},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fcontainers\u002F",[62],"nofollow",[64],{"type":49,"value":65},"Cloudflare Containers",{"type":49,"value":67},", driven from Workers.",{"type":43,"tag":52,"props":69,"children":70},{},[71,77],{"type":43,"tag":72,"props":73,"children":74},"strong",{},[75],{"type":49,"value":76},"Prefer the main Sandbox docs and installed stable types over memory.",{"type":49,"value":78}," This skill is a gate, a contract, and a retrieval map—not a full manual.",{"type":43,"tag":52,"props":80,"children":81},{},[82,84,89,91,98],{"type":49,"value":83},"This line is the ",{"type":43,"tag":72,"props":85,"children":86},{},[87],{"type":49,"value":88},"current stable",{"type":49,"value":90}," default npm package. The main ",{"type":43,"tag":58,"props":92,"children":95},{"href":93,"rel":94},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F",[62],[96],{"type":49,"value":97},"Sandbox documentation",{"type":49,"value":99}," describes it. Existing apps can stay here and keep shipping.",{"type":43,"tag":52,"props":101,"children":102},{},[103,105,110,112,119,121,130,132,141],{"type":49,"value":104},"We recommend ",{"type":43,"tag":72,"props":106,"children":107},{},[108],{"type":49,"value":109},"new projects",{"type":49,"value":111}," on ",{"type":43,"tag":113,"props":114,"children":116},"code",{"className":115},[],[117],{"type":49,"value":118},"@cloudflare\u002Fsandbox@next",{"type":49,"value":120}," with ",{"type":43,"tag":72,"props":122,"children":123},{},[124],{"type":43,"tag":113,"props":125,"children":127},{"className":126},[],[128],{"type":49,"value":129},"sandbox-next",{"type":49,"value":131},". When you can, plan a move with ",{"type":43,"tag":72,"props":133,"children":134},{},[135],{"type":43,"tag":113,"props":136,"children":138},{"className":137},[],[139],{"type":49,"value":140},"sandbox-migrate-to-next",{"type":49,"value":142}," so you are ready when 1.0 becomes the stable release. Do not force that port unless the user asks.",{"type":43,"tag":144,"props":145,"children":147},"h2",{"id":146},"_1-gate-confirm-the-package-line",[148],{"type":49,"value":149},"1. Gate — confirm the package line",{"type":43,"tag":52,"props":151,"children":152},{},[153],{"type":49,"value":154},"Before writing code, inspect the app:",{"type":43,"tag":156,"props":157,"children":158},"table",{},[159,178],{"type":43,"tag":160,"props":161,"children":162},"thead",{},[163],{"type":43,"tag":164,"props":165,"children":166},"tr",{},[167,173],{"type":43,"tag":168,"props":169,"children":170},"th",{},[171],{"type":49,"value":172},"Check",{"type":43,"tag":168,"props":174,"children":175},{},[176],{"type":49,"value":177},"Must match",{"type":43,"tag":179,"props":180,"children":181},"tbody",{},[182,219],{"type":43,"tag":164,"props":183,"children":184},{},[185,191],{"type":43,"tag":186,"props":187,"children":188},"td",{},[189],{"type":49,"value":190},"npm dependency",{"type":43,"tag":186,"props":192,"children":193},{},[194,196,202,204,209,211,217],{"type":49,"value":195},"Default ",{"type":43,"tag":113,"props":197,"children":199},{"className":198},[],[200],{"type":49,"value":201},"@cloudflare\u002Fsandbox",{"type":49,"value":203}," (",{"type":43,"tag":72,"props":205,"children":206},{},[207],{"type":49,"value":208},"not",{"type":49,"value":210}," ",{"type":43,"tag":113,"props":212,"children":214},{"className":213},[],[215],{"type":49,"value":216},"@next",{"type":49,"value":218}," \u002F preview tags)",{"type":43,"tag":164,"props":220,"children":221},{},[222,227],{"type":43,"tag":186,"props":223,"children":224},{},[225],{"type":49,"value":226},"Container image",{"type":43,"tag":186,"props":228,"children":229},{},[230,232,237,239,245],{"type":49,"value":231},"Matching ",{"type":43,"tag":72,"props":233,"children":234},{},[235],{"type":49,"value":236},"stable",{"type":49,"value":238}," image (not ",{"type":43,"tag":113,"props":240,"children":242},{"className":241},[],[243],{"type":49,"value":244},"cloudflare\u002Fsandbox:next",{"type":49,"value":246},")",{"type":43,"tag":156,"props":248,"children":249},{},[250,266],{"type":43,"tag":160,"props":251,"children":252},{},[253],{"type":43,"tag":164,"props":254,"children":255},{},[256,261],{"type":43,"tag":168,"props":257,"children":258},{},[259],{"type":49,"value":260},"If you find…",{"type":43,"tag":168,"props":262,"children":263},{},[264],{"type":49,"value":265},"Action",{"type":43,"tag":179,"props":267,"children":268},{},[269,310,341],{"type":43,"tag":164,"props":270,"children":271},{},[272,290],{"type":43,"tag":186,"props":273,"children":274},{},[275,280,282,288],{"type":43,"tag":113,"props":276,"children":278},{"className":277},[],[279],{"type":49,"value":118},{"type":49,"value":281}," or a ",{"type":43,"tag":113,"props":283,"children":285},{"className":284},[],[286],{"type":49,"value":287},"next",{"type":49,"value":289}," image",{"type":43,"tag":186,"props":291,"children":292},{},[293,298,300,308],{"type":43,"tag":72,"props":294,"children":295},{},[296],{"type":49,"value":297},"Stop.",{"type":49,"value":299}," Load ",{"type":43,"tag":72,"props":301,"children":302},{},[303],{"type":43,"tag":113,"props":304,"children":306},{"className":305},[],[307],{"type":49,"value":129},{"type":49,"value":309},".",{"type":43,"tag":164,"props":311,"children":312},{},[313,323],{"type":43,"tag":186,"props":314,"children":315},{},[316,318],{"type":49,"value":317},"User wants to port to 1.0 \u002F ",{"type":43,"tag":113,"props":319,"children":321},{"className":320},[],[322],{"type":49,"value":216},{"type":43,"tag":186,"props":324,"children":325},{},[326,330,331,339],{"type":43,"tag":72,"props":327,"children":328},{},[329],{"type":49,"value":297},{"type":49,"value":299},{"type":43,"tag":72,"props":332,"children":333},{},[334],{"type":43,"tag":113,"props":335,"children":337},{"className":336},[],[338],{"type":49,"value":140},{"type":49,"value":340},". Do not half-apply preview APIs on a stable package.",{"type":43,"tag":164,"props":342,"children":343},{},[344,349],{"type":43,"tag":186,"props":345,"children":346},{},[347],{"type":49,"value":348},"Only cleaning deprecated stable APIs",{"type":43,"tag":186,"props":350,"children":351},{},[352,354,361,363,367,369,374],{"type":49,"value":353},"Stay here; use the ",{"type":43,"tag":58,"props":355,"children":358},{"href":356,"rel":357},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F2026-deprecation\u002F",[62],[359],{"type":49,"value":360},"2026 deprecation guide",{"type":49,"value":362},". That is ",{"type":43,"tag":72,"props":364,"children":365},{},[366],{"type":49,"value":208},{"type":49,"value":368}," a move to ",{"type":43,"tag":113,"props":370,"children":372},{"className":371},[],[373],{"type":49,"value":216},{"type":49,"value":309},{"type":43,"tag":52,"props":376,"children":377},{},[378,380,385],{"type":49,"value":379},"Never mix a stable Worker package with an ",{"type":43,"tag":113,"props":381,"children":383},{"className":382},[],[384],{"type":49,"value":216},{"type":49,"value":386}," container image (or the reverse).",{"type":43,"tag":52,"props":388,"children":389},{},[390,392,399,401],{"type":49,"value":391},"Skills install: ",{"type":43,"tag":58,"props":393,"children":396},{"href":394,"rel":395},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fagent-setup\u002F",[62],[397],{"type":49,"value":398},"Agent setup",{"type":49,"value":400}," · ",{"type":43,"tag":58,"props":402,"children":404},{"href":24,"rel":403},[62],[405],{"type":49,"value":406},"cloudflare\u002Fskills",{"type":43,"tag":144,"props":408,"children":410},{"id":409},"_2-contract-non-negotiables",[411],{"type":49,"value":412},"2. Contract — non-negotiables",{"type":43,"tag":414,"props":415,"children":416},"ul",{},[417,466,514,539,569,581,592,597,602,628],{"type":43,"tag":418,"props":419,"children":420},"li",{},[421,427,429,434,436,441,443,449,451,457,458,464],{"type":43,"tag":113,"props":422,"children":424},{"className":423},[],[425],{"type":49,"value":426},"await sandbox.exec(command)",{"type":49,"value":428}," takes a ",{"type":43,"tag":72,"props":430,"children":431},{},[432],{"type":49,"value":433},"command string",{"type":49,"value":435}," and resolves when the command ",{"type":43,"tag":72,"props":437,"children":438},{},[439],{"type":49,"value":440},"finishes",{"type":49,"value":442},", with buffered ",{"type":43,"tag":113,"props":444,"children":446},{"className":445},[],[447],{"type":49,"value":448},"stdout",{"type":49,"value":450}," \u002F ",{"type":43,"tag":113,"props":452,"children":454},{"className":453},[],[455],{"type":49,"value":456},"stderr",{"type":49,"value":450},{"type":43,"tag":113,"props":459,"children":461},{"className":460},[],[462],{"type":49,"value":463},"exitCode",{"type":49,"value":465}," (and related fields).",{"type":43,"tag":418,"props":467,"children":468},{},[469,471,475,477,483,485,491,493,498,500,505,506,512],{"type":49,"value":470},"Long-running and streaming work use the ",{"type":43,"tag":72,"props":472,"children":473},{},[474],{"type":49,"value":236},{"type":49,"value":476}," command APIs (",{"type":43,"tag":113,"props":478,"children":480},{"className":479},[],[481],{"type":49,"value":482},"startProcess",{"type":49,"value":484},", ",{"type":43,"tag":113,"props":486,"children":488},{"className":487},[],[489],{"type":49,"value":490},"execStream",{"type":49,"value":492},", and related helpers)—not the ",{"type":43,"tag":113,"props":494,"children":496},{"className":495},[],[497],{"type":49,"value":216},{"type":49,"value":499}," single-handle model. Open the Commands docs; do not invent ",{"type":43,"tag":113,"props":501,"children":503},{"className":502},[],[504],{"type":49,"value":216},{"type":49,"value":210},{"type":43,"tag":113,"props":507,"children":509},{"className":508},[],[510],{"type":49,"value":511},"output()",{"type":49,"value":513}," handles on stable.",{"type":43,"tag":418,"props":515,"children":516},{},[517,522,524,530,531,537],{"type":43,"tag":72,"props":518,"children":519},{},[520],{"type":49,"value":521},"Sessions",{"type":49,"value":523}," can preserve working directory and environment across commands (default session \u002F ",{"type":43,"tag":113,"props":525,"children":527},{"className":526},[],[528],{"type":49,"value":529},"enableDefaultSession",{"type":49,"value":484},{"type":43,"tag":113,"props":532,"children":534},{"className":533},[],[535],{"type":49,"value":536},"createSession",{"type":49,"value":538},"). See Sessions docs when state must carry across calls.",{"type":43,"tag":418,"props":540,"children":541},{},[542,544,553,555,561,563,568],{"type":49,"value":543},"Interactive browser terminals often use ",{"type":43,"tag":72,"props":545,"children":546},{},[547],{"type":43,"tag":113,"props":548,"children":550},{"className":549},[],[551],{"type":49,"value":552},"sandbox.terminal(request)",{"type":49,"value":554}," and session\u002Fxterm helpers on stable—not preview ",{"type":43,"tag":113,"props":556,"children":558},{"className":557},[],[559],{"type":49,"value":560},"createTerminal",{"type":49,"value":562}," unless the package is ",{"type":43,"tag":113,"props":564,"children":566},{"className":565},[],[567],{"type":49,"value":216},{"type":49,"value":309},{"type":43,"tag":418,"props":570,"children":571},{},[572,574,579],{"type":49,"value":573},"Prefer ",{"type":43,"tag":72,"props":575,"children":576},{},[577],{"type":49,"value":578},"RPC",{"type":49,"value":580}," transport when using tunnels or large\u002Fbinary streaming. HTTP\u002FWebSocket transports are deprecated (cleanup guide below).",{"type":43,"tag":418,"props":582,"children":583},{},[584,586,590],{"type":49,"value":585},"Files, mounts, ports, tunnels, backups, lifecycle, and interpreter: use main docs for signatures; trust installed ",{"type":43,"tag":72,"props":587,"children":588},{},[589],{"type":49,"value":236},{"type":49,"value":591}," types.",{"type":43,"tag":418,"props":593,"children":594},{},[595],{"type":49,"value":596},"Non-secret config in sandbox env; live credentials in the Worker. Use outbound handlers when processes call external APIs.",{"type":43,"tag":418,"props":598,"children":599},{},[600],{"type":49,"value":601},"Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns.",{"type":43,"tag":418,"props":603,"children":604},{},[605,607,611,613,618,620,626],{"type":49,"value":606},"Do ",{"type":43,"tag":72,"props":608,"children":609},{},[610],{"type":49,"value":208},{"type":49,"value":612}," apply ",{"type":43,"tag":113,"props":614,"children":616},{"className":615},[],[617],{"type":49,"value":216},{"type":49,"value":619}," argv\u002F",{"type":43,"tag":113,"props":621,"children":623},{"className":622},[],[624],{"type":49,"value":625},"process.output()",{"type":49,"value":627}," APIs while the dependency is still stable.",{"type":43,"tag":418,"props":629,"children":630},{},[631,633,638,640],{"type":49,"value":632},"Self-deployed ",{"type":43,"tag":72,"props":634,"children":635},{},[636],{"type":49,"value":637},"bridge",{"type":49,"value":639}," stays on the stable package and image. ",{"type":43,"tag":58,"props":641,"children":644},{"href":642,"rel":643},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002F",[62],[645],{"type":49,"value":646},"Bridge",{"type":43,"tag":52,"props":648,"children":649},{},[650],{"type":49,"value":651},"Minimal shape:",{"type":43,"tag":653,"props":654,"children":659},"pre",{"className":655,"code":656,"language":657,"meta":658,"style":658},"language-ts shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { getSandbox, proxyToSandbox, Sandbox } from \"@cloudflare\u002Fsandbox\";\n\nexport { Sandbox };\n\nconst sandbox = getSandbox(env.Sandbox, \"user-123\");\nconst result = await sandbox.exec('python3 -c \"print(2 + 2)\"');\n\u002F\u002F result.stdout, result.exitCode, result.success\n","ts","",[660],{"type":43,"tag":113,"props":661,"children":662},{"__ignoreMap":658},[663,736,746,768,776,840,903],{"type":43,"tag":664,"props":665,"children":668},"span",{"class":666,"line":667},"line",1,[669,675,681,687,692,697,701,706,711,716,721,726,731],{"type":43,"tag":664,"props":670,"children":672},{"style":671},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[673],{"type":49,"value":674},"import",{"type":43,"tag":664,"props":676,"children":678},{"style":677},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[679],{"type":49,"value":680}," {",{"type":43,"tag":664,"props":682,"children":684},{"style":683},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[685],{"type":49,"value":686}," getSandbox",{"type":43,"tag":664,"props":688,"children":689},{"style":677},[690],{"type":49,"value":691},",",{"type":43,"tag":664,"props":693,"children":694},{"style":683},[695],{"type":49,"value":696}," proxyToSandbox",{"type":43,"tag":664,"props":698,"children":699},{"style":677},[700],{"type":49,"value":691},{"type":43,"tag":664,"props":702,"children":703},{"style":683},[704],{"type":49,"value":705}," Sandbox",{"type":43,"tag":664,"props":707,"children":708},{"style":677},[709],{"type":49,"value":710}," }",{"type":43,"tag":664,"props":712,"children":713},{"style":671},[714],{"type":49,"value":715}," from",{"type":43,"tag":664,"props":717,"children":718},{"style":677},[719],{"type":49,"value":720}," \"",{"type":43,"tag":664,"props":722,"children":724},{"style":723},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[725],{"type":49,"value":201},{"type":43,"tag":664,"props":727,"children":728},{"style":677},[729],{"type":49,"value":730},"\"",{"type":43,"tag":664,"props":732,"children":733},{"style":677},[734],{"type":49,"value":735},";\n",{"type":43,"tag":664,"props":737,"children":739},{"class":666,"line":738},2,[740],{"type":43,"tag":664,"props":741,"children":743},{"emptyLinePlaceholder":742},true,[744],{"type":49,"value":745},"\n",{"type":43,"tag":664,"props":747,"children":749},{"class":666,"line":748},3,[750,755,759,763],{"type":43,"tag":664,"props":751,"children":752},{"style":671},[753],{"type":49,"value":754},"export",{"type":43,"tag":664,"props":756,"children":757},{"style":677},[758],{"type":49,"value":680},{"type":43,"tag":664,"props":760,"children":761},{"style":683},[762],{"type":49,"value":705},{"type":43,"tag":664,"props":764,"children":765},{"style":677},[766],{"type":49,"value":767}," };\n",{"type":43,"tag":664,"props":769,"children":771},{"class":666,"line":770},4,[772],{"type":43,"tag":664,"props":773,"children":774},{"emptyLinePlaceholder":742},[775],{"type":49,"value":745},{"type":43,"tag":664,"props":777,"children":779},{"class":666,"line":778},5,[780,786,791,796,801,806,810,815,819,823,828,832,836],{"type":43,"tag":664,"props":781,"children":783},{"style":782},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[784],{"type":49,"value":785},"const",{"type":43,"tag":664,"props":787,"children":788},{"style":683},[789],{"type":49,"value":790}," sandbox ",{"type":43,"tag":664,"props":792,"children":793},{"style":677},[794],{"type":49,"value":795},"=",{"type":43,"tag":664,"props":797,"children":799},{"style":798},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[800],{"type":49,"value":686},{"type":43,"tag":664,"props":802,"children":803},{"style":683},[804],{"type":49,"value":805},"(env",{"type":43,"tag":664,"props":807,"children":808},{"style":677},[809],{"type":49,"value":309},{"type":43,"tag":664,"props":811,"children":812},{"style":683},[813],{"type":49,"value":814},"Sandbox",{"type":43,"tag":664,"props":816,"children":817},{"style":677},[818],{"type":49,"value":691},{"type":43,"tag":664,"props":820,"children":821},{"style":677},[822],{"type":49,"value":720},{"type":43,"tag":664,"props":824,"children":825},{"style":723},[826],{"type":49,"value":827},"user-123",{"type":43,"tag":664,"props":829,"children":830},{"style":677},[831],{"type":49,"value":730},{"type":43,"tag":664,"props":833,"children":834},{"style":683},[835],{"type":49,"value":246},{"type":43,"tag":664,"props":837,"children":838},{"style":677},[839],{"type":49,"value":735},{"type":43,"tag":664,"props":841,"children":843},{"class":666,"line":842},6,[844,848,853,857,862,867,871,876,881,886,891,895,899],{"type":43,"tag":664,"props":845,"children":846},{"style":782},[847],{"type":49,"value":785},{"type":43,"tag":664,"props":849,"children":850},{"style":683},[851],{"type":49,"value":852}," result ",{"type":43,"tag":664,"props":854,"children":855},{"style":677},[856],{"type":49,"value":795},{"type":43,"tag":664,"props":858,"children":859},{"style":671},[860],{"type":49,"value":861}," await",{"type":43,"tag":664,"props":863,"children":864},{"style":683},[865],{"type":49,"value":866}," sandbox",{"type":43,"tag":664,"props":868,"children":869},{"style":677},[870],{"type":49,"value":309},{"type":43,"tag":664,"props":872,"children":873},{"style":798},[874],{"type":49,"value":875},"exec",{"type":43,"tag":664,"props":877,"children":878},{"style":683},[879],{"type":49,"value":880},"(",{"type":43,"tag":664,"props":882,"children":883},{"style":677},[884],{"type":49,"value":885},"'",{"type":43,"tag":664,"props":887,"children":888},{"style":723},[889],{"type":49,"value":890},"python3 -c \"print(2 + 2)\"",{"type":43,"tag":664,"props":892,"children":893},{"style":677},[894],{"type":49,"value":885},{"type":43,"tag":664,"props":896,"children":897},{"style":683},[898],{"type":49,"value":246},{"type":43,"tag":664,"props":900,"children":901},{"style":677},[902],{"type":49,"value":735},{"type":43,"tag":664,"props":904,"children":906},{"class":666,"line":905},7,[907],{"type":43,"tag":664,"props":908,"children":910},{"style":909},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[911],{"type":49,"value":912},"\u002F\u002F result.stdout, result.exitCode, result.success\n",{"type":43,"tag":144,"props":914,"children":916},{"id":915},"_3-retrieve-open-the-doc-for-the-task",[917],{"type":49,"value":918},"3. Retrieve — open the doc for the task",{"type":43,"tag":52,"props":920,"children":921},{},[922],{"type":49,"value":923},"Fetch the page before implementing. Installed stable types win over guesses.",{"type":43,"tag":156,"props":925,"children":926},{},[927,943],{"type":43,"tag":160,"props":928,"children":929},{},[930],{"type":43,"tag":164,"props":931,"children":932},{},[933,938],{"type":43,"tag":168,"props":934,"children":935},{},[936],{"type":49,"value":937},"You need to…",{"type":43,"tag":168,"props":939,"children":940},{},[941],{"type":49,"value":942},"Open",{"type":43,"tag":179,"props":944,"children":945},{},[946,963,981,1028,1054,1086,1104,1138,1164,1190,1216,1234,1260,1294,1320,1338,1356,1374,1392,1410,1428,1446,1464,1485,1509,1534,1561],{"type":43,"tag":164,"props":947,"children":948},{},[949,954],{"type":43,"tag":186,"props":950,"children":951},{},[952],{"type":49,"value":953},"Orient",{"type":43,"tag":186,"props":955,"children":956},{},[957],{"type":43,"tag":58,"props":958,"children":960},{"href":93,"rel":959},[62],[961],{"type":49,"value":962},"Sandbox overview",{"type":43,"tag":164,"props":964,"children":965},{},[966,971],{"type":43,"tag":186,"props":967,"children":968},{},[969],{"type":49,"value":970},"First Worker, template, Docker",{"type":43,"tag":186,"props":972,"children":973},{},[974],{"type":43,"tag":58,"props":975,"children":978},{"href":976,"rel":977},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fget-started\u002F",[62],[979],{"type":49,"value":980},"Get started",{"type":43,"tag":164,"props":982,"children":983},{},[984,994],{"type":43,"tag":186,"props":985,"children":986},{},[987,992],{"type":43,"tag":113,"props":988,"children":990},{"className":989},[],[991],{"type":49,"value":875},{"type":49,"value":993},", streaming, background processes",{"type":43,"tag":186,"props":995,"children":996},{},[997,1004,1005,1012,1013,1020,1021],{"type":43,"tag":58,"props":998,"children":1001},{"href":999,"rel":1000},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fcommands\u002F",[62],[1002],{"type":49,"value":1003},"Commands API",{"type":49,"value":400},{"type":43,"tag":58,"props":1006,"children":1009},{"href":1007,"rel":1008},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexecute-commands\u002F",[62],[1010],{"type":49,"value":1011},"Execute commands",{"type":49,"value":400},{"type":43,"tag":58,"props":1014,"children":1017},{"href":1015,"rel":1016},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbackground-processes\u002F",[62],[1018],{"type":49,"value":1019},"Background processes",{"type":49,"value":400},{"type":43,"tag":58,"props":1022,"children":1025},{"href":1023,"rel":1024},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fstreaming-output\u002F",[62],[1026],{"type":49,"value":1027},"Streaming output",{"type":43,"tag":164,"props":1029,"children":1030},{},[1031,1036],{"type":43,"tag":186,"props":1032,"children":1033},{},[1034],{"type":49,"value":1035},"Sessions \u002F shell state across commands",{"type":43,"tag":186,"props":1037,"children":1038},{},[1039,1046,1047],{"type":43,"tag":58,"props":1040,"children":1043},{"href":1041,"rel":1042},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fsessions\u002F",[62],[1044],{"type":49,"value":1045},"Sessions concept",{"type":49,"value":400},{"type":43,"tag":58,"props":1048,"children":1051},{"href":1049,"rel":1050},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fsessions\u002F",[62],[1052],{"type":49,"value":1053},"Sessions API",{"type":43,"tag":164,"props":1055,"children":1056},{},[1057,1068],{"type":43,"tag":186,"props":1058,"children":1059},{},[1060,1066],{"type":43,"tag":113,"props":1061,"children":1063},{"className":1062},[],[1064],{"type":49,"value":1065},"getSandbox",{"type":49,"value":1067}," options, sleep, destroy",{"type":43,"tag":186,"props":1069,"children":1070},{},[1071,1078,1079],{"type":43,"tag":58,"props":1072,"children":1075},{"href":1073,"rel":1074},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Flifecycle\u002F",[62],[1076],{"type":49,"value":1077},"Lifecycle API",{"type":49,"value":400},{"type":43,"tag":58,"props":1080,"children":1083},{"href":1081,"rel":1082},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconfiguration\u002Fsandbox-options\u002F",[62],[1084],{"type":49,"value":1085},"Sandbox options",{"type":43,"tag":164,"props":1087,"children":1088},{},[1089,1094],{"type":43,"tag":186,"props":1090,"children":1091},{},[1092],{"type":49,"value":1093},"Env vars",{"type":43,"tag":186,"props":1095,"children":1096},{},[1097],{"type":43,"tag":58,"props":1098,"children":1101},{"href":1099,"rel":1100},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconfiguration\u002Fenvironment-variables\u002F",[62],[1102],{"type":49,"value":1103},"Environment variables",{"type":43,"tag":164,"props":1105,"children":1106},{},[1107,1112],{"type":43,"tag":186,"props":1108,"children":1109},{},[1110],{"type":49,"value":1111},"Files",{"type":43,"tag":186,"props":1113,"children":1114},{},[1115,1122,1123,1130,1131],{"type":43,"tag":58,"props":1116,"children":1119},{"href":1117,"rel":1118},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffiles\u002F",[62],[1120],{"type":49,"value":1121},"Files API",{"type":49,"value":400},{"type":43,"tag":58,"props":1124,"children":1127},{"href":1125,"rel":1126},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fmanage-files\u002F",[62],[1128],{"type":49,"value":1129},"Manage files",{"type":49,"value":400},{"type":43,"tag":58,"props":1132,"children":1135},{"href":1133,"rel":1134},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffile-watching\u002F",[62],[1136],{"type":49,"value":1137},"File watching",{"type":43,"tag":164,"props":1139,"children":1140},{},[1141,1146],{"type":43,"tag":186,"props":1142,"children":1143},{},[1144],{"type":49,"value":1145},"Buckets \u002F mounts",{"type":43,"tag":186,"props":1147,"children":1148},{},[1149,1156,1157],{"type":43,"tag":58,"props":1150,"children":1153},{"href":1151,"rel":1152},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fstorage\u002F",[62],[1154],{"type":49,"value":1155},"Storage API",{"type":49,"value":400},{"type":43,"tag":58,"props":1158,"children":1161},{"href":1159,"rel":1160},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fmount-buckets\u002F",[62],[1162],{"type":49,"value":1163},"Mount buckets",{"type":43,"tag":164,"props":1165,"children":1166},{},[1167,1172],{"type":43,"tag":186,"props":1168,"children":1169},{},[1170],{"type":49,"value":1171},"Backups",{"type":43,"tag":186,"props":1173,"children":1174},{},[1175,1182,1183],{"type":43,"tag":58,"props":1176,"children":1179},{"href":1177,"rel":1178},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fbackups\u002F",[62],[1180],{"type":49,"value":1181},"Backups API",{"type":49,"value":400},{"type":43,"tag":58,"props":1184,"children":1187},{"href":1185,"rel":1186},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbackup-restore\u002F",[62],[1188],{"type":49,"value":1189},"Backup and restore",{"type":43,"tag":164,"props":1191,"children":1192},{},[1193,1198],{"type":43,"tag":186,"props":1194,"children":1195},{},[1196],{"type":49,"value":1197},"Ports, preview URLs, expose",{"type":43,"tag":186,"props":1199,"children":1200},{},[1201,1208,1209],{"type":43,"tag":58,"props":1202,"children":1205},{"href":1203,"rel":1204},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fports\u002F",[62],[1206],{"type":49,"value":1207},"Ports API",{"type":49,"value":400},{"type":43,"tag":58,"props":1210,"children":1213},{"href":1211,"rel":1212},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexpose-services\u002F",[62],[1214],{"type":49,"value":1215},"Expose services",{"type":43,"tag":164,"props":1217,"children":1218},{},[1219,1224],{"type":43,"tag":186,"props":1220,"children":1221},{},[1222],{"type":49,"value":1223},"Tunnels",{"type":43,"tag":186,"props":1225,"children":1226},{},[1227],{"type":43,"tag":58,"props":1228,"children":1231},{"href":1229,"rel":1230},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ftunnels\u002F",[62],[1232],{"type":49,"value":1233},"Tunnels API",{"type":43,"tag":164,"props":1235,"children":1236},{},[1237,1242],{"type":43,"tag":186,"props":1238,"children":1239},{},[1240],{"type":49,"value":1241},"Proxy \u002F Workers connections",{"type":43,"tag":186,"props":1243,"children":1244},{},[1245,1252,1253],{"type":43,"tag":58,"props":1246,"children":1249},{"href":1247,"rel":1248},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproxy-requests\u002F",[62],[1250],{"type":49,"value":1251},"Proxy requests",{"type":49,"value":400},{"type":43,"tag":58,"props":1254,"children":1257},{"href":1255,"rel":1256},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fworkers-connections\u002F",[62],[1258],{"type":49,"value":1259},"Workers connections",{"type":43,"tag":164,"props":1261,"children":1262},{},[1263,1268],{"type":43,"tag":186,"props":1264,"children":1265},{},[1266],{"type":49,"value":1267},"Browser \u002F PTY terminal",{"type":43,"tag":186,"props":1269,"children":1270},{},[1271,1278,1279,1286,1287],{"type":43,"tag":58,"props":1272,"children":1275},{"href":1273,"rel":1274},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fterminal\u002F",[62],[1276],{"type":49,"value":1277},"Terminal API",{"type":49,"value":400},{"type":43,"tag":58,"props":1280,"children":1283},{"href":1281,"rel":1282},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fterminal\u002F",[62],[1284],{"type":49,"value":1285},"Terminal concept",{"type":49,"value":400},{"type":43,"tag":58,"props":1288,"children":1291},{"href":1289,"rel":1290},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fbrowser-terminals\u002F",[62],[1292],{"type":49,"value":1293},"Browser terminals",{"type":43,"tag":164,"props":1295,"children":1296},{},[1297,1302],{"type":43,"tag":186,"props":1298,"children":1299},{},[1300],{"type":49,"value":1301},"Code interpreter",{"type":43,"tag":186,"props":1303,"children":1304},{},[1305,1312,1313],{"type":43,"tag":58,"props":1306,"children":1309},{"href":1307,"rel":1308},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Finterpreter\u002F",[62],[1310],{"type":49,"value":1311},"Interpreter API",{"type":49,"value":400},{"type":43,"tag":58,"props":1314,"children":1317},{"href":1315,"rel":1316},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fcode-execution\u002F",[62],[1318],{"type":49,"value":1319},"Code execution",{"type":43,"tag":164,"props":1321,"children":1322},{},[1323,1328],{"type":43,"tag":186,"props":1324,"children":1325},{},[1326],{"type":49,"value":1327},"Git in the sandbox",{"type":43,"tag":186,"props":1329,"children":1330},{},[1331],{"type":43,"tag":58,"props":1332,"children":1335},{"href":1333,"rel":1334},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fgit-workflows\u002F",[62],[1336],{"type":49,"value":1337},"Git workflows",{"type":43,"tag":164,"props":1339,"children":1340},{},[1341,1346],{"type":43,"tag":186,"props":1342,"children":1343},{},[1344],{"type":49,"value":1345},"Secrets \u002F egress",{"type":43,"tag":186,"props":1347,"children":1348},{},[1349],{"type":43,"tag":58,"props":1350,"children":1353},{"href":1351,"rel":1352},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Foutbound-traffic\u002F",[62],[1354],{"type":49,"value":1355},"Outbound traffic",{"type":43,"tag":164,"props":1357,"children":1358},{},[1359,1364],{"type":43,"tag":186,"props":1360,"children":1361},{},[1362],{"type":49,"value":1363},"WebSockets",{"type":43,"tag":186,"props":1365,"children":1366},{},[1367],{"type":43,"tag":58,"props":1368,"children":1371},{"href":1369,"rel":1370},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fwebsocket-connections\u002F",[62],[1372],{"type":49,"value":1373},"WebSocket connections",{"type":43,"tag":164,"props":1375,"children":1376},{},[1377,1382],{"type":43,"tag":186,"props":1378,"children":1379},{},[1380],{"type":49,"value":1381},"Docker-in-Docker",{"type":43,"tag":186,"props":1383,"children":1384},{},[1385],{"type":43,"tag":58,"props":1386,"children":1389},{"href":1387,"rel":1388},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fdocker-in-docker\u002F",[62],[1390],{"type":49,"value":1391},"Docker in Docker",{"type":43,"tag":164,"props":1393,"children":1394},{},[1395,1400],{"type":43,"tag":186,"props":1396,"children":1397},{},[1398],{"type":49,"value":1399},"Production deploy",{"type":43,"tag":186,"props":1401,"children":1402},{},[1403],{"type":43,"tag":58,"props":1404,"children":1407},{"href":1405,"rel":1406},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproduction-deployment\u002F",[62],[1408],{"type":49,"value":1409},"Production deployment",{"type":43,"tag":164,"props":1411,"children":1412},{},[1413,1418],{"type":43,"tag":186,"props":1414,"children":1415},{},[1416],{"type":49,"value":1417},"Containers concept",{"type":43,"tag":186,"props":1419,"children":1420},{},[1421],{"type":43,"tag":58,"props":1422,"children":1425},{"href":1423,"rel":1424},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fconcepts\u002Fcontainers\u002F",[62],[1426],{"type":49,"value":1427},"Containers",{"type":43,"tag":164,"props":1429,"children":1430},{},[1431,1436],{"type":43,"tag":186,"props":1432,"children":1433},{},[1434],{"type":49,"value":1435},"How-to index",{"type":43,"tag":186,"props":1437,"children":1438},{},[1439],{"type":43,"tag":58,"props":1440,"children":1443},{"href":1441,"rel":1442},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002F",[62],[1444],{"type":49,"value":1445},"Guides",{"type":43,"tag":164,"props":1447,"children":1448},{},[1449,1454],{"type":43,"tag":186,"props":1450,"children":1451},{},[1452],{"type":49,"value":1453},"API index",{"type":43,"tag":186,"props":1455,"children":1456},{},[1457],{"type":43,"tag":58,"props":1458,"children":1461},{"href":1459,"rel":1460},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002F",[62],[1462],{"type":49,"value":1463},"API reference",{"type":43,"tag":164,"props":1465,"children":1466},{},[1467,1477],{"type":43,"tag":186,"props":1468,"children":1469},{},[1470,1472],{"type":49,"value":1471},"Deprecated APIs ",{"type":43,"tag":72,"props":1473,"children":1474},{},[1475],{"type":49,"value":1476},"while staying on stable",{"type":43,"tag":186,"props":1478,"children":1479},{},[1480],{"type":43,"tag":58,"props":1481,"children":1483},{"href":356,"rel":1482},[62],[1484],{"type":49,"value":360},{"type":43,"tag":164,"props":1486,"children":1487},{},[1488,1493],{"type":43,"tag":186,"props":1489,"children":1490},{},[1491],{"type":49,"value":1492},"Self-deployed bridge",{"type":43,"tag":186,"props":1494,"children":1495},{},[1496,1501,1502],{"type":43,"tag":58,"props":1497,"children":1499},{"href":642,"rel":1498},[62],[1500],{"type":49,"value":646},{"type":49,"value":400},{"type":43,"tag":58,"props":1503,"children":1506},{"href":1504,"rel":1505},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002Fhttp-api\u002F",[62],[1507],{"type":49,"value":1508},"Bridge HTTP API",{"type":43,"tag":164,"props":1510,"children":1511},{},[1512,1524],{"type":43,"tag":186,"props":1513,"children":1514},{},[1515,1517,1523],{"type":49,"value":1516},"Examples (stable\u002F",{"type":43,"tag":113,"props":1518,"children":1520},{"className":1519},[],[1521],{"type":49,"value":1522},"main",{"type":49,"value":246},{"type":43,"tag":186,"props":1525,"children":1526},{},[1527],{"type":43,"tag":58,"props":1528,"children":1531},{"href":1529,"rel":1530},"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fsandbox-sdk\u002Ftree\u002Fmain\u002Fexamples",[62],[1532],{"type":49,"value":1533},"examples on GitHub",{"type":43,"tag":164,"props":1535,"children":1536},{},[1537,1542],{"type":43,"tag":186,"props":1538,"children":1539},{},[1540],{"type":49,"value":1541},"New work on 1.0 preview",{"type":43,"tag":186,"props":1543,"children":1544},{},[1545,1553,1554],{"type":43,"tag":72,"props":1546,"children":1547},{},[1548],{"type":43,"tag":113,"props":1549,"children":1551},{"className":1550},[],[1552],{"type":49,"value":129},{"type":49,"value":400},{"type":43,"tag":58,"props":1555,"children":1558},{"href":1556,"rel":1557},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002F",[62],[1559],{"type":49,"value":1560},"1.0 preview",{"type":43,"tag":164,"props":1562,"children":1563},{},[1564,1574],{"type":43,"tag":186,"props":1565,"children":1566},{},[1567,1569],{"type":49,"value":1568},"Port existing app to ",{"type":43,"tag":113,"props":1570,"children":1572},{"className":1571},[],[1573],{"type":49,"value":216},{"type":43,"tag":186,"props":1575,"children":1576},{},[1577,1585,1586],{"type":43,"tag":72,"props":1578,"children":1579},{},[1580],{"type":43,"tag":113,"props":1581,"children":1583},{"className":1582},[],[1584],{"type":49,"value":140},{"type":49,"value":400},{"type":43,"tag":58,"props":1587,"children":1590},{"href":1588,"rel":1589},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fmigrate\u002F",[62],[1591],{"type":49,"value":1592},"Migrate",{"type":43,"tag":1594,"props":1595,"children":1597},"h3",{"id":1596},"deprecated-api-cleanup-stay-on-stable",[1598],{"type":49,"value":1599},"Deprecated-API cleanup (stay on stable)",{"type":43,"tag":52,"props":1601,"children":1602},{},[1603],{"type":49,"value":1604},"Update package + matching image first, then follow the guide. Typical search:",{"type":43,"tag":653,"props":1606,"children":1610},{"className":1607,"code":1608,"language":1609,"meta":658,"style":658},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","rg 'SANDBOX_TRANSPORT|transport:|exposePort\\(|enableDefaultSession|execStream\\(|readFileStream|writeFileStream'\n","sh",[1611],{"type":43,"tag":113,"props":1612,"children":1613},{"__ignoreMap":658},[1614],{"type":43,"tag":664,"props":1615,"children":1616},{"class":666,"line":667},[1617,1623,1628,1633],{"type":43,"tag":664,"props":1618,"children":1620},{"style":1619},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1621],{"type":49,"value":1622},"rg",{"type":43,"tag":664,"props":1624,"children":1625},{"style":677},[1626],{"type":49,"value":1627}," '",{"type":43,"tag":664,"props":1629,"children":1630},{"style":723},[1631],{"type":49,"value":1632},"SANDBOX_TRANSPORT|transport:|exposePort\\(|enableDefaultSession|execStream\\(|readFileStream|writeFileStream",{"type":43,"tag":664,"props":1634,"children":1635},{"style":677},[1636],{"type":49,"value":1637},"'\n",{"type":43,"tag":52,"props":1639,"children":1640},{},[1641,1643,1647,1649,1654],{"type":49,"value":1642},"This path does ",{"type":43,"tag":72,"props":1644,"children":1645},{},[1646],{"type":49,"value":208},{"type":49,"value":1648}," switch you to ",{"type":43,"tag":113,"props":1650,"children":1652},{"className":1651},[],[1653],{"type":49,"value":216},{"type":49,"value":309},{"type":43,"tag":144,"props":1656,"children":1658},{"id":1657},"_4-before-you-ship",[1659],{"type":49,"value":1660},"4. Before you ship",{"type":43,"tag":414,"props":1662,"children":1663},{},[1664,1676,1681,1686,1699],{"type":43,"tag":418,"props":1665,"children":1666},{},[1667,1669,1674],{"type":49,"value":1668},"Worker package and container image on the ",{"type":43,"tag":72,"props":1670,"children":1671},{},[1672],{"type":49,"value":1673},"same stable",{"type":49,"value":1675}," line",{"type":43,"tag":418,"props":1677,"children":1678},{},[1679],{"type":49,"value":1680},"Typecheck against installed stable types",{"type":43,"tag":418,"props":1682,"children":1683},{},[1684],{"type":49,"value":1685},"No live secrets in sandbox env",{"type":43,"tag":418,"props":1687,"children":1688},{},[1689,1691,1697],{"type":49,"value":1690},"If using deprecated transports\u002Fhelpers, finish or track ",{"type":43,"tag":58,"props":1692,"children":1694},{"href":356,"rel":1693},[62],[1695],{"type":49,"value":1696},"2026 deprecation",{"type":49,"value":1698}," cleanup",{"type":43,"tag":418,"props":1700,"children":1701},{},[1702,1704,1712],{"type":49,"value":1703},"When the team is ready for 1.0, use ",{"type":43,"tag":72,"props":1705,"children":1706},{},[1707],{"type":43,"tag":113,"props":1708,"children":1710},{"className":1709},[],[1711],{"type":49,"value":140},{"type":49,"value":1713},"—do not force cutover unprompted",{"type":43,"tag":1715,"props":1716,"children":1717},"style",{},[1718],{"type":49,"value":1719},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1721,"total":1899},[1722,1737,1751,1766,1779,1793,1807,1821,1838,1855,1868,1883],{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":1734,"repoUrl":1735,"updatedAt":1736},"code-review","review code changes for quality and risk","Review code changes for correctness, clarity, and risk. Use when the user asks for a review, a second opinion on a diff, or feedback on code they wrote.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1728,1729,1731],{"name":9,"slug":8,"type":13},{"name":1730,"slug":1723,"type":13},"Code Review",{"name":1732,"slug":1733,"type":13},"Engineering","engineering",5284,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fagents","2026-06-08T08:19:41.621858",{"slug":1738,"name":1738,"fn":1739,"description":1740,"org":1741,"tags":1742,"stars":1734,"repoUrl":1735,"updatedAt":1750},"debug-plan","create systematic debugging plans","Create a systematic debugging plan for a bug report. Use when the user asks how to investigate a failure, regression, or unexpected behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1743,1746,1749],{"name":1744,"slug":1745,"type":13},"Code Analysis","code-analysis",{"name":1747,"slug":1748,"type":13},"Debugging","debugging",{"name":1732,"slug":1733,"type":13},"2026-05-30T06:16:58.837407",{"slug":1752,"name":1752,"fn":1753,"description":1754,"org":1755,"tags":1756,"stars":1734,"repoUrl":1735,"updatedAt":1765},"escalation","escalate customer issues to human agents","Decide when and how to escalate a customer conversation to a human agent. Use when a request is high-risk, the customer is frustrated, or the issue is outside what you can resolve.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1757,1760,1763],{"name":1758,"slug":1759,"type":13},"Communications","communications",{"name":1761,"slug":1762,"type":13},"Customer Support","customer-support",{"name":1764,"slug":1752,"type":13},"Escalation","2026-06-08T08:19:43.130686",{"slug":1767,"name":1767,"fn":1768,"description":1769,"org":1770,"tags":1771,"stars":1734,"repoUrl":1735,"updatedAt":1778},"pirate-voice","rewrite text in pirate voice","Rewrite or answer in a playful pirate voice. Use when the user asks for pirate tone, nautical phrasing, or says to talk like a pirate.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1772,1775],{"name":1773,"slug":1774,"type":13},"Creative","creative",{"name":1776,"slug":1777,"type":13},"Writing","writing","2026-05-30T06:17:00.080367",{"slug":1780,"name":1780,"fn":1781,"description":1782,"org":1783,"tags":1784,"stars":1734,"repoUrl":1735,"updatedAt":1792},"release-notes","draft product release notes","Draft short release notes from a list of changes. Use when the user asks for changelogs, release notes, or a concise product update.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1785,1788,1791],{"name":1786,"slug":1787,"type":13},"Content Creation","content-creation",{"name":1789,"slug":1790,"type":13},"Documentation","documentation",{"name":1776,"slug":1777,"type":13},"2026-05-30T06:17:01.278643",{"slug":1794,"name":1794,"fn":1795,"description":1796,"org":1797,"tags":1798,"stars":1734,"repoUrl":1735,"updatedAt":1806},"test-plan","produce focused test plans","Produce a focused test plan for a change. Use when the user asks how to test a feature, what cases to cover, or for a QA checklist before shipping.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1799,1800,1803],{"name":1732,"slug":1733,"type":13},{"name":1801,"slug":1802,"type":13},"QA","qa",{"name":1804,"slug":1805,"type":13},"Testing","testing","2026-05-30T06:17:02.479863",{"slug":1808,"name":1808,"fn":1809,"description":1810,"org":1811,"tags":1812,"stars":1734,"repoUrl":1735,"updatedAt":1820},"workspace-digest","summarize files in the shared workspace","Summarize the files saved in this assistant's shared workspace. Use when the user asks what is in their workspace, for a file inventory, or a digest of saved work.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1813,1814,1817],{"name":1789,"slug":1790,"type":13},{"name":1815,"slug":1816,"type":13},"Knowledge Management","knowledge-management",{"name":1818,"slug":1819,"type":13},"Summarization","summarization","2026-06-07T07:51:27.265303",{"slug":1822,"name":1822,"fn":1823,"description":1824,"org":1825,"tags":1826,"stars":1835,"repoUrl":1836,"updatedAt":1837},"cloudflare-bundler-apps","author Cloudflare Worker Bundler applications","Author Cloudflare Worker Bundler-compatible apps that build and preview correctly inside a space. Use this skill whenever you scaffold, modify, or deploy a project that will be built with `@cloudflare\u002Fworker-bundler` (i.e. anything served from `\u002Fspace\u002F:name\u002Fpreview\u002F:branch\u002F`). Covers wrangler config, project layout, static asset rules, server entry conventions, npm dependency limits, and the most common cause of blank previews (JSX in browser scripts).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1827,1828,1831,1832],{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},"Cloudflare Workers","cloudflare-workers",{"name":18,"slug":19,"type":13},{"name":1833,"slug":1834,"type":13},"Web Development","web-development",5193,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fvibesdk","2026-06-16T09:45:57.551207",{"slug":1839,"name":1839,"fn":1840,"description":1841,"org":1842,"tags":1843,"stars":1835,"repoUrl":1836,"updatedAt":1854},"frontend-design","create production-grade frontend interfaces","Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML\u002FCSS layouts, or when styling\u002Fbeautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1844,1847,1850,1853],{"name":1845,"slug":1846,"type":13},"Design","design",{"name":1848,"slug":1849,"type":13},"Frontend","frontend",{"name":1851,"slug":1852,"type":13},"HTML","html",{"name":1833,"slug":1834,"type":13},"2026-06-16T09:46:01.852741",{"slug":1856,"name":1856,"fn":1857,"description":1858,"org":1859,"tags":1860,"stars":1835,"repoUrl":1836,"updatedAt":1867},"frontend-design-landing-page","build marketing landing pages","Marketing landing page and conversion-focused product page reference. Use this skill when building hero sections, feature grids, pricing pages, testimonials, CTAs, footers, navigation bars, or any public-facing marketing surface. Covers a warm, professional, developer-friendly design language (cream backgrounds, generous whitespace, pill CTAs, corner-bracket card decorations) and a complete token set, animation system, and copy-paste component snippets. NOT for product\u002Fdashboard UIs — use frontend-design-saas for those.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1861,1862,1863,1866],{"name":1848,"slug":1849,"type":13},{"name":1851,"slug":1852,"type":13},{"name":1864,"slug":1865,"type":13},"Marketing","marketing",{"name":1833,"slug":1834,"type":13},"2026-06-16T09:46:00.515859",{"slug":1869,"name":1869,"fn":1870,"description":1871,"org":1872,"tags":1873,"stars":1835,"repoUrl":1836,"updatedAt":1882},"frontend-design-saas","build SaaS dashboard and product UIs","S-tier SaaS dashboard and product UI reference. Use this skill when building application shells, data tables, settings panels, billing pages, dashboards, auth flows, admin tools, or any internal\u002Fcustomer-facing SaaS product UI. Inspired by Stripe, Linear, Vercel, Airbnb, Notion. Covers neutral-led design tokens, sidebar+content shells, dense data UIs, form-heavy configuration pages, command palettes, empty states, and the accessibility (WCAG AA+) bar these products clear.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1874,1875,1876,1879],{"name":1845,"slug":1846,"type":13},{"name":1848,"slug":1849,"type":13},{"name":1877,"slug":1878,"type":13},"SaaS","saas",{"name":1880,"slug":1881,"type":13},"UI Components","ui-components","2026-06-16T09:45:58.956063",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":23,"repoUrl":24,"updatedAt":1898},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1889,1891,1892,1893,1896],{"name":1890,"slug":29,"type":13},"Agents",{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},{"name":1894,"slug":1895,"type":13},"MCP","mcp",{"name":1363,"slug":1897,"type":13},"websockets","2026-04-06T18:07:36.660888",24,{"items":1901,"total":2005},[1902,1910,1924,1937,1963,1982,1995],{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1903,"tags":1904,"stars":23,"repoUrl":24,"updatedAt":1898},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1905,1906,1907,1908,1909],{"name":1890,"slug":29,"type":13},{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},{"name":1894,"slug":1895,"type":13},{"name":1363,"slug":1897,"type":13},{"slug":8,"name":8,"fn":1911,"description":1912,"org":1913,"tags":1914,"stars":23,"repoUrl":24,"updatedAt":1923},"build on the full Cloudflare platform","Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1915,1916,1917,1920],{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},{"name":1918,"slug":1919,"type":13},"Serverless","serverless",{"name":1921,"slug":1922,"type":13},"Storage","storage","2026-04-06T18:07:35.399081",{"slug":1925,"name":1925,"fn":1926,"description":1927,"org":1928,"tags":1929,"stars":23,"repoUrl":24,"updatedAt":1936},"cloudflare-email-service","manage transactional emails with Cloudflare","Send and receive transactional emails with Cloudflare Email Service (Email Sending + Email Routing). Use when building email sending (Workers binding or REST API), email routing, Agents SDK email handling, or integrating email into any app — Workers, Node.js, Python, Go, etc. Also use for email deliverability, SPF\u002FDKIM\u002FDMARC, wrangler email setup, MCP email tools, or when a coding agent needs to send emails. Even for simple requests like \"add email to my Worker\" — this skill has critical config details.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1930,1931,1932,1935],{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},{"name":1933,"slug":1934,"type":13},"Email","email",{"name":1918,"slug":1919,"type":13},"2026-04-16T05:02:38.301955",{"slug":1938,"name":1938,"fn":1939,"description":1940,"org":1941,"tags":1942,"stars":23,"repoUrl":24,"updatedAt":1962},"cloudflare-one","configure and manage Cloudflare One Zero Trust","Guides Cloudflare One Zero Trust and SASE work across Access, Gateway, WARP, Tunnel, Cloudflare WAN, DLP, CASB, device posture, and identity. Use when designing, configuring, troubleshooting, or reviewing Cloudflare One deployments. Retrieval-first: use current Cloudflare docs\u002FAPI schemas instead of embedded product docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1943,1946,1947,1950,1953,1956,1959],{"name":1944,"slug":1945,"type":13},"Access Control","access-control",{"name":9,"slug":8,"type":13},{"name":1948,"slug":1949,"type":13},"Infrastructure","infrastructure",{"name":1951,"slug":1952,"type":13},"Networking","networking",{"name":1954,"slug":1955,"type":13},"SASE","sase",{"name":1957,"slug":1958,"type":13},"Security","security",{"name":1960,"slug":1961,"type":13},"Zero Trust","zero-trust","2026-06-15T09:51:34.015251",{"slug":1964,"name":1964,"fn":1965,"description":1966,"org":1967,"tags":1968,"stars":23,"repoUrl":24,"updatedAt":1981},"cloudflare-one-migrations","plan migrations to Cloudflare One","Plans migrations from Zscaler ZIA\u002FZPA, Palo Alto, legacy VPN, SWG, or SASE stacks to Cloudflare One. Use for migration assessments, policy mapping, rollout plans, and parity\u002Fgap analysis.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1969,1970,1973,1974,1977,1978],{"name":9,"slug":8,"type":13},{"name":1971,"slug":1972,"type":13},"Migration","migration",{"name":1951,"slug":1952,"type":13},{"name":1975,"slug":1976,"type":13},"Risk Assessment","risk-assessment",{"name":1957,"slug":1958,"type":13},{"name":1979,"slug":1980,"type":13},"Strategy","strategy","2026-06-15T09:51:35.348691",{"slug":1983,"name":1983,"fn":1984,"description":1985,"org":1986,"tags":1987,"stars":23,"repoUrl":24,"updatedAt":1994},"durable-objects","build Cloudflare Durable Objects","Create and review Cloudflare Durable Objects. Use when building stateful coordination (chat rooms, multiplayer games, booking systems), implementing RPC methods, SQLite storage, alarms, WebSockets, or reviewing DO code for best practices. Covers Workers integration, wrangler config, and testing with Vitest. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1988,1989,1990,1993],{"name":9,"slug":8,"type":13},{"name":1829,"slug":1830,"type":13},{"name":1991,"slug":1992,"type":13},"State Management","state-management",{"name":1363,"slug":1897,"type":13},"2026-04-06T18:07:39.148434",{"slug":140,"name":140,"fn":1996,"description":1997,"org":1998,"tags":1999,"stars":23,"repoUrl":24,"updatedAt":2004},"migrate Cloudflare Sandbox to SDK 1.0","Use when porting a Cloudflare Sandbox app from stable @cloudflare\u002Fsandbox to @cloudflare\u002Fsandbox@next (Sandbox SDK 1.0 preview), or when the user asks to migrate or upgrade to Sandbox 1.0 \u002F @next. Not for day-to-day stable work (sandbox-stable) or new @next apps (sandbox-next).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2000,2001,2002,2003],{"name":9,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"name":1971,"slug":1972,"type":13},{"name":15,"slug":16,"type":13},"2026-08-09T04:33:22.575638",13]