[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cloudflare-sandbox-next":3,"mdc--o6dh42-key":37,"related-repo-cloudflare-sandbox-next":1666,"related-org-cloudflare-sandbox-next":1783},{"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-next","build Cloudflare Sandbox applications","Use when building or changing Cloudflare Sandbox apps on @cloudflare\u002Fsandbox@next (Sandbox SDK 1.0 preview)—code execution, AI runners, interpreters, CI-like jobs, terminals, files, mounts, tunnels, preview URLs, lifecycle, or errors. Not for the default stable package (use sandbox-stable) or for porting stable to @next (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},"Code Execution","code-execution",{"name":21,"slug":22,"type":13},"AI Infrastructure","ai-infrastructure",2112,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fskills","2026-08-09T04:33:21.549002",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-next","---\nname: sandbox-next\ndescription: Use when building or changing Cloudflare Sandbox apps on @cloudflare\u002Fsandbox@next (Sandbox SDK 1.0 preview)—code execution, AI runners, interpreters, CI-like jobs, terminals, files, mounts, tunnels, preview URLs, lifecycle, or errors. Not for the default stable package (use sandbox-stable) or for porting stable to @next (use sandbox-migrate-to-next).\n---\n\n# Sandbox SDK — `@next` (1.0 preview)\n\nIsolated Linux environments on [Cloudflare Containers](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fcontainers\u002F), driven from Workers.\n\n**Prefer preview docs and installed `@next` types over memory.** APIs change; this skill is a gate, a contract, and a retrieval map—not a full manual.\n\nWe recommend **new projects** on this line. Apps still on the default package use **`sandbox-stable`**. Port only when asked, via **`sandbox-migrate-to-next`**.\n\n## 1. Gate — confirm the package line\n\nBefore writing code, inspect the app:\n\n| Check | Must match |\n| ----- | ---------- |\n| npm dependency | `@cloudflare\u002Fsandbox@next` (or another preview tag) |\n| Container image | Same line (e.g. `cloudflare\u002Fsandbox:next`, `next-python`) |\n\n| If you find… | Action |\n| ------------ | ------ |\n| Default `@cloudflare\u002Fsandbox` (no `@next`) | **Stop.** Load **`sandbox-stable`**. Do not apply this skill’s APIs. |\n| User wants to port stable → `@next` | **Stop.** Load **`sandbox-migrate-to-next`**. |\n| Self-deployed **bridge** only | Bridge is **not** on the 1.0 preview line yet. Keep bridge on stable package + image. [Bridge (stable)](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002F) |\n\nNever mix an `@next` Worker package with a stable 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- `sandbox.exec(argv)` takes an **argv** list and resolves when the process **starts**. It returns a **handle**, not a finished command result.\n- Collect results with handle methods: `output()`, `logs()`, `waitForExit()`, `waitForPort()`, `waitForLog()`, `kill(signal?)`.\n- No implicit shell. Shell syntax needs an explicit shell, e.g. `[\"\u002Fbin\u002Fbash\", \"-lc\", script]`.\n- Each launch is independent. A `cd` \u002F `export` in one `exec` is not visible to the next. Pass `cwd` and `env` per launch, or one shell script.\n- Process handles have **no stdin**. Interactive use → terminals (`createTerminal` + `connect`).\n- Local wait `timeout` \u002F `AbortSignal` cancel the **wait only**. They do not kill the process. Use `kill` or `exec`’s remote `timeout`.\n- `getProcess` \u002F `listProcesses` \u002F `getTerminal` \u002F `listTerminals` do **not** start a container; they return `null` \u002F `[]` when none is up.\n- Process and terminal IDs belong to the **current container**, not forever to a sandbox ID. For work that must survive replace, store the full job (argv, cwd, env, app state)—not only an id.\n- Non-secret config only in `setEnvVars` \u002F launch `env`. Live credentials stay in the Worker; use outbound handlers when the sandbox calls external APIs.\n- Do **not** invent removed stable APIs (`gitCheckout` on core, string-`exec` completion, session execution, `sandbox.terminal(request)`).\n- Do **not** use one retry loop for every error (see Errors docs).\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 process = await sandbox.exec([\"python3\", \"-c\", \"print(2 + 2)\"]);\nconst result = await process.output({ encoding: \"utf8\" });\n\u002F\u002F result.stdout, result.exitCode\n```\n\nOptional **non-exhaustive** cheatsheet (process\u002Fterminal\u002Finterpreter only): [references\u002Fapi-quick-ref.md](references\u002Fapi-quick-ref.md)  \nExamples index (`next` branch): [references\u002Fexamples.md](references\u002Fexamples.md)\n\n## 3. Retrieve — open the doc for the task\n\nFetch the page before implementing. Installed `@next` types win over guesses.\n\n| You need to… | Open |\n| ------------ | ---- |\n| Orient \u002F choose preview | [1.0 preview overview](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002F) |\n| First Worker, wrangler, Dockerfile | [Get started](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fget-started\u002F) |\n| `exec`, handles, readiness, durability | [Process execution](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fprocesses\u002F) |\n| Process API signatures | [Processes API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Fprocesses\u002F) |\n| Sandbox ID vs container vs sleep\u002Fdestroy | [Lifecycle](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Flifecycle\u002F) |\n| `cwd` \u002F `env` \u002F `setEnvVars` | [Environment](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fenvironment\u002F) |\n| Interactive PTY \u002F browser terminal | [Terminals](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fterminals\u002F) · [Terminals API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Fterminals\u002F) |\n| Python\u002FJS code interpreter | [Interpreter](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Finterpreter\u002F) · [Interpreter API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Finterpreter\u002F) |\n| Extensions model | [Extensions](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fextensions\u002F) |\n| Error classes and recovery | [Errors](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Ferrors\u002F) · [Errors API](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Ferrors\u002F) |\n| Common failures | [Troubleshooting](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Ftroubleshooting\u002F) |\n| API hub | [API reference](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002F) |\n| Files, mounts, backups, ports, tunnels, `proxyToSandbox` | Main docs for shared surfaces (ignore stable-only session\u002Ftransport\u002F`sandbox.terminal`): [Files](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffiles\u002F) · [Storage \u002F mounts](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fstorage\u002F) · [Ports](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fports\u002F) · [Tunnels](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ftunnels\u002F) · [Backups](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fbackups\u002F) · [Outbound traffic](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Foutbound-traffic\u002F) · [Expose services](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexpose-services\u002F) · [Production](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproduction-deployment\u002F) |\n| Example apps | [examples on `next`](https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fsandbox-sdk\u002Ftree\u002Fnext\u002Fexamples) |\n| Still on stable package | **`sandbox-stable`** · [Main Sandbox docs](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F) |\n| Porting an existing stable app | **`sandbox-migrate-to-next`** · [Migrate](https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fmigrate\u002F) |\n\n## 4. Before you ship\n\n- Lockfile and Dockerfile on the **same** `@next` line  \n- Typecheck against installed `@next` types  \n- No live secrets in sandbox env  \n- Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns  \n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,60,77,95,129,136,141,217,345,357,377,383,728,733,1107,1143,1149,1161,1610,1616,1660],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"sandbox-sdk-next-10-preview",[48,51,58],{"type":49,"value":50},"text","Sandbox SDK — ",{"type":43,"tag":52,"props":53,"children":55},"code",{"className":54},[],[56],{"type":49,"value":57},"@next",{"type":49,"value":59}," (1.0 preview)",{"type":43,"tag":61,"props":62,"children":63},"p",{},[64,66,75],{"type":49,"value":65},"Isolated Linux environments on ",{"type":43,"tag":67,"props":68,"children":72},"a",{"href":69,"rel":70},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fcontainers\u002F",[71],"nofollow",[73],{"type":49,"value":74},"Cloudflare Containers",{"type":49,"value":76},", driven from Workers.",{"type":43,"tag":61,"props":78,"children":79},{},[80,93],{"type":43,"tag":81,"props":82,"children":83},"strong",{},[84,86,91],{"type":49,"value":85},"Prefer preview docs and installed ",{"type":43,"tag":52,"props":87,"children":89},{"className":88},[],[90],{"type":49,"value":57},{"type":49,"value":92}," types over memory.",{"type":49,"value":94}," APIs change; this skill is a gate, a contract, and a retrieval map—not a full manual.",{"type":43,"tag":61,"props":96,"children":97},{},[98,100,105,107,116,118,127],{"type":49,"value":99},"We recommend ",{"type":43,"tag":81,"props":101,"children":102},{},[103],{"type":49,"value":104},"new projects",{"type":49,"value":106}," on this line. Apps still on the default package use ",{"type":43,"tag":81,"props":108,"children":109},{},[110],{"type":43,"tag":52,"props":111,"children":113},{"className":112},[],[114],{"type":49,"value":115},"sandbox-stable",{"type":49,"value":117},". Port only when asked, via ",{"type":43,"tag":81,"props":119,"children":120},{},[121],{"type":43,"tag":52,"props":122,"children":124},{"className":123},[],[125],{"type":49,"value":126},"sandbox-migrate-to-next",{"type":49,"value":128},".",{"type":43,"tag":130,"props":131,"children":133},"h2",{"id":132},"_1-gate-confirm-the-package-line",[134],{"type":49,"value":135},"1. Gate — confirm the package line",{"type":43,"tag":61,"props":137,"children":138},{},[139],{"type":49,"value":140},"Before writing code, inspect the app:",{"type":43,"tag":142,"props":143,"children":144},"table",{},[145,164],{"type":43,"tag":146,"props":147,"children":148},"thead",{},[149],{"type":43,"tag":150,"props":151,"children":152},"tr",{},[153,159],{"type":43,"tag":154,"props":155,"children":156},"th",{},[157],{"type":49,"value":158},"Check",{"type":43,"tag":154,"props":160,"children":161},{},[162],{"type":49,"value":163},"Must match",{"type":43,"tag":165,"props":166,"children":167},"tbody",{},[168,188],{"type":43,"tag":150,"props":169,"children":170},{},[171,177],{"type":43,"tag":172,"props":173,"children":174},"td",{},[175],{"type":49,"value":176},"npm dependency",{"type":43,"tag":172,"props":178,"children":179},{},[180,186],{"type":43,"tag":52,"props":181,"children":183},{"className":182},[],[184],{"type":49,"value":185},"@cloudflare\u002Fsandbox@next",{"type":49,"value":187}," (or another preview tag)",{"type":43,"tag":150,"props":189,"children":190},{},[191,196],{"type":43,"tag":172,"props":192,"children":193},{},[194],{"type":49,"value":195},"Container image",{"type":43,"tag":172,"props":197,"children":198},{},[199,201,207,209,215],{"type":49,"value":200},"Same line (e.g. ",{"type":43,"tag":52,"props":202,"children":204},{"className":203},[],[205],{"type":49,"value":206},"cloudflare\u002Fsandbox:next",{"type":49,"value":208},", ",{"type":43,"tag":52,"props":210,"children":212},{"className":211},[],[213],{"type":49,"value":214},"next-python",{"type":49,"value":216},")",{"type":43,"tag":142,"props":218,"children":219},{},[220,236],{"type":43,"tag":146,"props":221,"children":222},{},[223],{"type":43,"tag":150,"props":224,"children":225},{},[226,231],{"type":43,"tag":154,"props":227,"children":228},{},[229],{"type":49,"value":230},"If you find…",{"type":43,"tag":154,"props":232,"children":233},{},[234],{"type":49,"value":235},"Action",{"type":43,"tag":165,"props":237,"children":238},{},[239,281,311],{"type":43,"tag":150,"props":240,"children":241},{},[242,261],{"type":43,"tag":172,"props":243,"children":244},{},[245,247,253,255,260],{"type":49,"value":246},"Default ",{"type":43,"tag":52,"props":248,"children":250},{"className":249},[],[251],{"type":49,"value":252},"@cloudflare\u002Fsandbox",{"type":49,"value":254}," (no ",{"type":43,"tag":52,"props":256,"children":258},{"className":257},[],[259],{"type":49,"value":57},{"type":49,"value":216},{"type":43,"tag":172,"props":262,"children":263},{},[264,269,271,279],{"type":43,"tag":81,"props":265,"children":266},{},[267],{"type":49,"value":268},"Stop.",{"type":49,"value":270}," Load ",{"type":43,"tag":81,"props":272,"children":273},{},[274],{"type":43,"tag":52,"props":275,"children":277},{"className":276},[],[278],{"type":49,"value":115},{"type":49,"value":280},". Do not apply this skill’s APIs.",{"type":43,"tag":150,"props":282,"children":283},{},[284,294],{"type":43,"tag":172,"props":285,"children":286},{},[287,289],{"type":49,"value":288},"User wants to port stable → ",{"type":43,"tag":52,"props":290,"children":292},{"className":291},[],[293],{"type":49,"value":57},{"type":43,"tag":172,"props":295,"children":296},{},[297,301,302,310],{"type":43,"tag":81,"props":298,"children":299},{},[300],{"type":49,"value":268},{"type":49,"value":270},{"type":43,"tag":81,"props":303,"children":304},{},[305],{"type":43,"tag":52,"props":306,"children":308},{"className":307},[],[309],{"type":49,"value":126},{"type":49,"value":128},{"type":43,"tag":150,"props":312,"children":313},{},[314,326],{"type":43,"tag":172,"props":315,"children":316},{},[317,319,324],{"type":49,"value":318},"Self-deployed ",{"type":43,"tag":81,"props":320,"children":321},{},[322],{"type":49,"value":323},"bridge",{"type":49,"value":325}," only",{"type":43,"tag":172,"props":327,"children":328},{},[329,331,336,338],{"type":49,"value":330},"Bridge is ",{"type":43,"tag":81,"props":332,"children":333},{},[334],{"type":49,"value":335},"not",{"type":49,"value":337}," on the 1.0 preview line yet. Keep bridge on stable package + image. ",{"type":43,"tag":67,"props":339,"children":342},{"href":340,"rel":341},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fbridge\u002F",[71],[343],{"type":49,"value":344},"Bridge (stable)",{"type":43,"tag":61,"props":346,"children":347},{},[348,350,355],{"type":49,"value":349},"Never mix an ",{"type":43,"tag":52,"props":351,"children":353},{"className":352},[],[354],{"type":49,"value":57},{"type":49,"value":356}," Worker package with a stable container image (or the reverse).",{"type":43,"tag":61,"props":358,"children":359},{},[360,362,369,371],{"type":49,"value":361},"Skills install: ",{"type":43,"tag":67,"props":363,"children":366},{"href":364,"rel":365},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fagent-setup\u002F",[71],[367],{"type":49,"value":368},"Agent setup",{"type":49,"value":370}," · ",{"type":43,"tag":67,"props":372,"children":374},{"href":24,"rel":373},[71],[375],{"type":49,"value":376},"cloudflare\u002Fskills",{"type":43,"tag":130,"props":378,"children":380},{"id":379},"_2-contract-non-negotiables",[381],{"type":49,"value":382},"2. Contract — non-negotiables",{"type":43,"tag":384,"props":385,"children":386},"ul",{},[387,420,467,479,524,552,600,653,665,685,718],{"type":43,"tag":388,"props":389,"children":390},"li",{},[391,397,399,404,406,411,413,418],{"type":43,"tag":52,"props":392,"children":394},{"className":393},[],[395],{"type":49,"value":396},"sandbox.exec(argv)",{"type":49,"value":398}," takes an ",{"type":43,"tag":81,"props":400,"children":401},{},[402],{"type":49,"value":403},"argv",{"type":49,"value":405}," list and resolves when the process ",{"type":43,"tag":81,"props":407,"children":408},{},[409],{"type":49,"value":410},"starts",{"type":49,"value":412},". It returns a ",{"type":43,"tag":81,"props":414,"children":415},{},[416],{"type":49,"value":417},"handle",{"type":49,"value":419},", not a finished command result.",{"type":43,"tag":388,"props":421,"children":422},{},[423,425,431,432,438,439,445,446,452,453,459,460,466],{"type":49,"value":424},"Collect results with handle methods: ",{"type":43,"tag":52,"props":426,"children":428},{"className":427},[],[429],{"type":49,"value":430},"output()",{"type":49,"value":208},{"type":43,"tag":52,"props":433,"children":435},{"className":434},[],[436],{"type":49,"value":437},"logs()",{"type":49,"value":208},{"type":43,"tag":52,"props":440,"children":442},{"className":441},[],[443],{"type":49,"value":444},"waitForExit()",{"type":49,"value":208},{"type":43,"tag":52,"props":447,"children":449},{"className":448},[],[450],{"type":49,"value":451},"waitForPort()",{"type":49,"value":208},{"type":43,"tag":52,"props":454,"children":456},{"className":455},[],[457],{"type":49,"value":458},"waitForLog()",{"type":49,"value":208},{"type":43,"tag":52,"props":461,"children":463},{"className":462},[],[464],{"type":49,"value":465},"kill(signal?)",{"type":49,"value":128},{"type":43,"tag":388,"props":468,"children":469},{},[470,472,478],{"type":49,"value":471},"No implicit shell. Shell syntax needs an explicit shell, e.g. ",{"type":43,"tag":52,"props":473,"children":475},{"className":474},[],[476],{"type":49,"value":477},"[\"\u002Fbin\u002Fbash\", \"-lc\", script]",{"type":49,"value":128},{"type":43,"tag":388,"props":480,"children":481},{},[482,484,490,492,498,500,506,508,514,516,522],{"type":49,"value":483},"Each launch is independent. A ",{"type":43,"tag":52,"props":485,"children":487},{"className":486},[],[488],{"type":49,"value":489},"cd",{"type":49,"value":491}," \u002F ",{"type":43,"tag":52,"props":493,"children":495},{"className":494},[],[496],{"type":49,"value":497},"export",{"type":49,"value":499}," in one ",{"type":43,"tag":52,"props":501,"children":503},{"className":502},[],[504],{"type":49,"value":505},"exec",{"type":49,"value":507}," is not visible to the next. Pass ",{"type":43,"tag":52,"props":509,"children":511},{"className":510},[],[512],{"type":49,"value":513},"cwd",{"type":49,"value":515}," and ",{"type":43,"tag":52,"props":517,"children":519},{"className":518},[],[520],{"type":49,"value":521},"env",{"type":49,"value":523}," per launch, or one shell script.",{"type":43,"tag":388,"props":525,"children":526},{},[527,529,534,536,542,544,550],{"type":49,"value":528},"Process handles have ",{"type":43,"tag":81,"props":530,"children":531},{},[532],{"type":49,"value":533},"no stdin",{"type":49,"value":535},". Interactive use → terminals (",{"type":43,"tag":52,"props":537,"children":539},{"className":538},[],[540],{"type":49,"value":541},"createTerminal",{"type":49,"value":543}," + ",{"type":43,"tag":52,"props":545,"children":547},{"className":546},[],[548],{"type":49,"value":549},"connect",{"type":49,"value":551},").",{"type":43,"tag":388,"props":553,"children":554},{},[555,557,563,564,570,572,577,579,585,587,592,594,599],{"type":49,"value":556},"Local wait ",{"type":43,"tag":52,"props":558,"children":560},{"className":559},[],[561],{"type":49,"value":562},"timeout",{"type":49,"value":491},{"type":43,"tag":52,"props":565,"children":567},{"className":566},[],[568],{"type":49,"value":569},"AbortSignal",{"type":49,"value":571}," cancel the ",{"type":43,"tag":81,"props":573,"children":574},{},[575],{"type":49,"value":576},"wait only",{"type":49,"value":578},". They do not kill the process. Use ",{"type":43,"tag":52,"props":580,"children":582},{"className":581},[],[583],{"type":49,"value":584},"kill",{"type":49,"value":586}," or ",{"type":43,"tag":52,"props":588,"children":590},{"className":589},[],[591],{"type":49,"value":505},{"type":49,"value":593},"’s remote ",{"type":43,"tag":52,"props":595,"children":597},{"className":596},[],[598],{"type":49,"value":562},{"type":49,"value":128},{"type":43,"tag":388,"props":601,"children":602},{},[603,609,610,616,617,623,624,630,632,636,638,644,645,651],{"type":43,"tag":52,"props":604,"children":606},{"className":605},[],[607],{"type":49,"value":608},"getProcess",{"type":49,"value":491},{"type":43,"tag":52,"props":611,"children":613},{"className":612},[],[614],{"type":49,"value":615},"listProcesses",{"type":49,"value":491},{"type":43,"tag":52,"props":618,"children":620},{"className":619},[],[621],{"type":49,"value":622},"getTerminal",{"type":49,"value":491},{"type":43,"tag":52,"props":625,"children":627},{"className":626},[],[628],{"type":49,"value":629},"listTerminals",{"type":49,"value":631}," do ",{"type":43,"tag":81,"props":633,"children":634},{},[635],{"type":49,"value":335},{"type":49,"value":637}," start a container; they return ",{"type":43,"tag":52,"props":639,"children":641},{"className":640},[],[642],{"type":49,"value":643},"null",{"type":49,"value":491},{"type":43,"tag":52,"props":646,"children":648},{"className":647},[],[649],{"type":49,"value":650},"[]",{"type":49,"value":652}," when none is up.",{"type":43,"tag":388,"props":654,"children":655},{},[656,658,663],{"type":49,"value":657},"Process and terminal IDs belong to the ",{"type":43,"tag":81,"props":659,"children":660},{},[661],{"type":49,"value":662},"current container",{"type":49,"value":664},", not forever to a sandbox ID. For work that must survive replace, store the full job (argv, cwd, env, app state)—not only an id.",{"type":43,"tag":388,"props":666,"children":667},{},[668,670,676,678,683],{"type":49,"value":669},"Non-secret config only in ",{"type":43,"tag":52,"props":671,"children":673},{"className":672},[],[674],{"type":49,"value":675},"setEnvVars",{"type":49,"value":677}," \u002F launch ",{"type":43,"tag":52,"props":679,"children":681},{"className":680},[],[682],{"type":49,"value":521},{"type":49,"value":684},". Live credentials stay in the Worker; use outbound handlers when the sandbox calls external APIs.",{"type":43,"tag":388,"props":686,"children":687},{},[688,690,694,696,702,704,709,711,717],{"type":49,"value":689},"Do ",{"type":43,"tag":81,"props":691,"children":692},{},[693],{"type":49,"value":335},{"type":49,"value":695}," invent removed stable APIs (",{"type":43,"tag":52,"props":697,"children":699},{"className":698},[],[700],{"type":49,"value":701},"gitCheckout",{"type":49,"value":703}," on core, string-",{"type":43,"tag":52,"props":705,"children":707},{"className":706},[],[708],{"type":49,"value":505},{"type":49,"value":710}," completion, session execution, ",{"type":43,"tag":52,"props":712,"children":714},{"className":713},[],[715],{"type":49,"value":716},"sandbox.terminal(request)",{"type":49,"value":551},{"type":43,"tag":388,"props":719,"children":720},{},[721,722,726],{"type":49,"value":689},{"type":43,"tag":81,"props":723,"children":724},{},[725],{"type":49,"value":335},{"type":49,"value":727}," use one retry loop for every error (see Errors docs).",{"type":43,"tag":61,"props":729,"children":730},{},[731],{"type":49,"value":732},"Minimal shape:",{"type":43,"tag":734,"props":735,"children":740},"pre",{"className":736,"code":737,"language":738,"meta":739,"style":739},"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 process = await sandbox.exec([\"python3\", \"-c\", \"print(2 + 2)\"]);\nconst result = await process.output({ encoding: \"utf8\" });\n\u002F\u002F result.stdout, result.exitCode\n","ts","",[741],{"type":43,"tag":52,"props":742,"children":743},{"__ignoreMap":739},[744,817,827,848,856,920,1016,1097],{"type":43,"tag":745,"props":746,"children":749},"span",{"class":747,"line":748},"line",1,[750,756,762,768,773,778,782,787,792,797,802,807,812],{"type":43,"tag":745,"props":751,"children":753},{"style":752},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[754],{"type":49,"value":755},"import",{"type":43,"tag":745,"props":757,"children":759},{"style":758},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[760],{"type":49,"value":761}," {",{"type":43,"tag":745,"props":763,"children":765},{"style":764},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[766],{"type":49,"value":767}," getSandbox",{"type":43,"tag":745,"props":769,"children":770},{"style":758},[771],{"type":49,"value":772},",",{"type":43,"tag":745,"props":774,"children":775},{"style":764},[776],{"type":49,"value":777}," proxyToSandbox",{"type":43,"tag":745,"props":779,"children":780},{"style":758},[781],{"type":49,"value":772},{"type":43,"tag":745,"props":783,"children":784},{"style":764},[785],{"type":49,"value":786}," Sandbox",{"type":43,"tag":745,"props":788,"children":789},{"style":758},[790],{"type":49,"value":791}," }",{"type":43,"tag":745,"props":793,"children":794},{"style":752},[795],{"type":49,"value":796}," from",{"type":43,"tag":745,"props":798,"children":799},{"style":758},[800],{"type":49,"value":801}," \"",{"type":43,"tag":745,"props":803,"children":805},{"style":804},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[806],{"type":49,"value":252},{"type":43,"tag":745,"props":808,"children":809},{"style":758},[810],{"type":49,"value":811},"\"",{"type":43,"tag":745,"props":813,"children":814},{"style":758},[815],{"type":49,"value":816},";\n",{"type":43,"tag":745,"props":818,"children":820},{"class":747,"line":819},2,[821],{"type":43,"tag":745,"props":822,"children":824},{"emptyLinePlaceholder":823},true,[825],{"type":49,"value":826},"\n",{"type":43,"tag":745,"props":828,"children":830},{"class":747,"line":829},3,[831,835,839,843],{"type":43,"tag":745,"props":832,"children":833},{"style":752},[834],{"type":49,"value":497},{"type":43,"tag":745,"props":836,"children":837},{"style":758},[838],{"type":49,"value":761},{"type":43,"tag":745,"props":840,"children":841},{"style":764},[842],{"type":49,"value":786},{"type":43,"tag":745,"props":844,"children":845},{"style":758},[846],{"type":49,"value":847}," };\n",{"type":43,"tag":745,"props":849,"children":851},{"class":747,"line":850},4,[852],{"type":43,"tag":745,"props":853,"children":854},{"emptyLinePlaceholder":823},[855],{"type":49,"value":826},{"type":43,"tag":745,"props":857,"children":859},{"class":747,"line":858},5,[860,866,871,876,881,886,890,895,899,903,908,912,916],{"type":43,"tag":745,"props":861,"children":863},{"style":862},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[864],{"type":49,"value":865},"const",{"type":43,"tag":745,"props":867,"children":868},{"style":764},[869],{"type":49,"value":870}," sandbox ",{"type":43,"tag":745,"props":872,"children":873},{"style":758},[874],{"type":49,"value":875},"=",{"type":43,"tag":745,"props":877,"children":879},{"style":878},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[880],{"type":49,"value":767},{"type":43,"tag":745,"props":882,"children":883},{"style":764},[884],{"type":49,"value":885},"(env",{"type":43,"tag":745,"props":887,"children":888},{"style":758},[889],{"type":49,"value":128},{"type":43,"tag":745,"props":891,"children":892},{"style":764},[893],{"type":49,"value":894},"Sandbox",{"type":43,"tag":745,"props":896,"children":897},{"style":758},[898],{"type":49,"value":772},{"type":43,"tag":745,"props":900,"children":901},{"style":758},[902],{"type":49,"value":801},{"type":43,"tag":745,"props":904,"children":905},{"style":804},[906],{"type":49,"value":907},"user-123",{"type":43,"tag":745,"props":909,"children":910},{"style":758},[911],{"type":49,"value":811},{"type":43,"tag":745,"props":913,"children":914},{"style":764},[915],{"type":49,"value":216},{"type":43,"tag":745,"props":917,"children":918},{"style":758},[919],{"type":49,"value":816},{"type":43,"tag":745,"props":921,"children":923},{"class":747,"line":922},6,[924,928,933,937,942,947,951,955,960,964,969,973,977,981,986,990,994,998,1003,1007,1012],{"type":43,"tag":745,"props":925,"children":926},{"style":862},[927],{"type":49,"value":865},{"type":43,"tag":745,"props":929,"children":930},{"style":764},[931],{"type":49,"value":932}," process ",{"type":43,"tag":745,"props":934,"children":935},{"style":758},[936],{"type":49,"value":875},{"type":43,"tag":745,"props":938,"children":939},{"style":752},[940],{"type":49,"value":941}," await",{"type":43,"tag":745,"props":943,"children":944},{"style":764},[945],{"type":49,"value":946}," sandbox",{"type":43,"tag":745,"props":948,"children":949},{"style":758},[950],{"type":49,"value":128},{"type":43,"tag":745,"props":952,"children":953},{"style":878},[954],{"type":49,"value":505},{"type":43,"tag":745,"props":956,"children":957},{"style":764},[958],{"type":49,"value":959},"([",{"type":43,"tag":745,"props":961,"children":962},{"style":758},[963],{"type":49,"value":811},{"type":43,"tag":745,"props":965,"children":966},{"style":804},[967],{"type":49,"value":968},"python3",{"type":43,"tag":745,"props":970,"children":971},{"style":758},[972],{"type":49,"value":811},{"type":43,"tag":745,"props":974,"children":975},{"style":758},[976],{"type":49,"value":772},{"type":43,"tag":745,"props":978,"children":979},{"style":758},[980],{"type":49,"value":801},{"type":43,"tag":745,"props":982,"children":983},{"style":804},[984],{"type":49,"value":985},"-c",{"type":43,"tag":745,"props":987,"children":988},{"style":758},[989],{"type":49,"value":811},{"type":43,"tag":745,"props":991,"children":992},{"style":758},[993],{"type":49,"value":772},{"type":43,"tag":745,"props":995,"children":996},{"style":758},[997],{"type":49,"value":801},{"type":43,"tag":745,"props":999,"children":1000},{"style":804},[1001],{"type":49,"value":1002},"print(2 + 2)",{"type":43,"tag":745,"props":1004,"children":1005},{"style":758},[1006],{"type":49,"value":811},{"type":43,"tag":745,"props":1008,"children":1009},{"style":764},[1010],{"type":49,"value":1011},"])",{"type":43,"tag":745,"props":1013,"children":1014},{"style":758},[1015],{"type":49,"value":816},{"type":43,"tag":745,"props":1017,"children":1019},{"class":747,"line":1018},7,[1020,1024,1029,1033,1037,1042,1046,1051,1056,1061,1067,1072,1076,1081,1085,1089,1093],{"type":43,"tag":745,"props":1021,"children":1022},{"style":862},[1023],{"type":49,"value":865},{"type":43,"tag":745,"props":1025,"children":1026},{"style":764},[1027],{"type":49,"value":1028}," result ",{"type":43,"tag":745,"props":1030,"children":1031},{"style":758},[1032],{"type":49,"value":875},{"type":43,"tag":745,"props":1034,"children":1035},{"style":752},[1036],{"type":49,"value":941},{"type":43,"tag":745,"props":1038,"children":1039},{"style":764},[1040],{"type":49,"value":1041}," process",{"type":43,"tag":745,"props":1043,"children":1044},{"style":758},[1045],{"type":49,"value":128},{"type":43,"tag":745,"props":1047,"children":1048},{"style":878},[1049],{"type":49,"value":1050},"output",{"type":43,"tag":745,"props":1052,"children":1053},{"style":764},[1054],{"type":49,"value":1055},"(",{"type":43,"tag":745,"props":1057,"children":1058},{"style":758},[1059],{"type":49,"value":1060},"{",{"type":43,"tag":745,"props":1062,"children":1064},{"style":1063},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1065],{"type":49,"value":1066}," encoding",{"type":43,"tag":745,"props":1068,"children":1069},{"style":758},[1070],{"type":49,"value":1071},":",{"type":43,"tag":745,"props":1073,"children":1074},{"style":758},[1075],{"type":49,"value":801},{"type":43,"tag":745,"props":1077,"children":1078},{"style":804},[1079],{"type":49,"value":1080},"utf8",{"type":43,"tag":745,"props":1082,"children":1083},{"style":758},[1084],{"type":49,"value":811},{"type":43,"tag":745,"props":1086,"children":1087},{"style":758},[1088],{"type":49,"value":791},{"type":43,"tag":745,"props":1090,"children":1091},{"style":764},[1092],{"type":49,"value":216},{"type":43,"tag":745,"props":1094,"children":1095},{"style":758},[1096],{"type":49,"value":816},{"type":43,"tag":745,"props":1098,"children":1100},{"class":747,"line":1099},8,[1101],{"type":43,"tag":745,"props":1102,"children":1104},{"style":1103},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1105],{"type":49,"value":1106},"\u002F\u002F result.stdout, result.exitCode\n",{"type":43,"tag":61,"props":1108,"children":1109},{},[1110,1112,1117,1119,1124,1128,1130,1136,1138],{"type":49,"value":1111},"Optional ",{"type":43,"tag":81,"props":1113,"children":1114},{},[1115],{"type":49,"value":1116},"non-exhaustive",{"type":49,"value":1118}," cheatsheet (process\u002Fterminal\u002Finterpreter only): ",{"type":43,"tag":67,"props":1120,"children":1122},{"href":1121},"references\u002Fapi-quick-ref.md",[1123],{"type":49,"value":1121},{"type":43,"tag":1125,"props":1126,"children":1127},"br",{},[],{"type":49,"value":1129},"\nExamples index (",{"type":43,"tag":52,"props":1131,"children":1133},{"className":1132},[],[1134],{"type":49,"value":1135},"next",{"type":49,"value":1137}," branch): ",{"type":43,"tag":67,"props":1139,"children":1141},{"href":1140},"references\u002Fexamples.md",[1142],{"type":49,"value":1140},{"type":43,"tag":130,"props":1144,"children":1146},{"id":1145},"_3-retrieve-open-the-doc-for-the-task",[1147],{"type":49,"value":1148},"3. Retrieve — open the doc for the task",{"type":43,"tag":61,"props":1150,"children":1151},{},[1152,1154,1159],{"type":49,"value":1153},"Fetch the page before implementing. Installed ",{"type":43,"tag":52,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":49,"value":57},{"type":49,"value":1160}," types win over guesses.",{"type":43,"tag":142,"props":1162,"children":1163},{},[1164,1180],{"type":43,"tag":146,"props":1165,"children":1166},{},[1167],{"type":43,"tag":150,"props":1168,"children":1169},{},[1170,1175],{"type":43,"tag":154,"props":1171,"children":1172},{},[1173],{"type":49,"value":1174},"You need to…",{"type":43,"tag":154,"props":1176,"children":1177},{},[1178],{"type":49,"value":1179},"Open",{"type":43,"tag":165,"props":1181,"children":1182},{},[1183,1201,1219,1242,1260,1278,1311,1337,1363,1381,1407,1425,1443,1533,1556,1583],{"type":43,"tag":150,"props":1184,"children":1185},{},[1186,1191],{"type":43,"tag":172,"props":1187,"children":1188},{},[1189],{"type":49,"value":1190},"Orient \u002F choose preview",{"type":43,"tag":172,"props":1192,"children":1193},{},[1194],{"type":43,"tag":67,"props":1195,"children":1198},{"href":1196,"rel":1197},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002F",[71],[1199],{"type":49,"value":1200},"1.0 preview overview",{"type":43,"tag":150,"props":1202,"children":1203},{},[1204,1209],{"type":43,"tag":172,"props":1205,"children":1206},{},[1207],{"type":49,"value":1208},"First Worker, wrangler, Dockerfile",{"type":43,"tag":172,"props":1210,"children":1211},{},[1212],{"type":43,"tag":67,"props":1213,"children":1216},{"href":1214,"rel":1215},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fget-started\u002F",[71],[1217],{"type":49,"value":1218},"Get started",{"type":43,"tag":150,"props":1220,"children":1221},{},[1222,1232],{"type":43,"tag":172,"props":1223,"children":1224},{},[1225,1230],{"type":43,"tag":52,"props":1226,"children":1228},{"className":1227},[],[1229],{"type":49,"value":505},{"type":49,"value":1231},", handles, readiness, durability",{"type":43,"tag":172,"props":1233,"children":1234},{},[1235],{"type":43,"tag":67,"props":1236,"children":1239},{"href":1237,"rel":1238},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fprocesses\u002F",[71],[1240],{"type":49,"value":1241},"Process execution",{"type":43,"tag":150,"props":1243,"children":1244},{},[1245,1250],{"type":43,"tag":172,"props":1246,"children":1247},{},[1248],{"type":49,"value":1249},"Process API signatures",{"type":43,"tag":172,"props":1251,"children":1252},{},[1253],{"type":43,"tag":67,"props":1254,"children":1257},{"href":1255,"rel":1256},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Fprocesses\u002F",[71],[1258],{"type":49,"value":1259},"Processes API",{"type":43,"tag":150,"props":1261,"children":1262},{},[1263,1268],{"type":43,"tag":172,"props":1264,"children":1265},{},[1266],{"type":49,"value":1267},"Sandbox ID vs container vs sleep\u002Fdestroy",{"type":43,"tag":172,"props":1269,"children":1270},{},[1271],{"type":43,"tag":67,"props":1272,"children":1275},{"href":1273,"rel":1274},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Flifecycle\u002F",[71],[1276],{"type":49,"value":1277},"Lifecycle",{"type":43,"tag":150,"props":1279,"children":1280},{},[1281,1301],{"type":43,"tag":172,"props":1282,"children":1283},{},[1284,1289,1290,1295,1296],{"type":43,"tag":52,"props":1285,"children":1287},{"className":1286},[],[1288],{"type":49,"value":513},{"type":49,"value":491},{"type":43,"tag":52,"props":1291,"children":1293},{"className":1292},[],[1294],{"type":49,"value":521},{"type":49,"value":491},{"type":43,"tag":52,"props":1297,"children":1299},{"className":1298},[],[1300],{"type":49,"value":675},{"type":43,"tag":172,"props":1302,"children":1303},{},[1304],{"type":43,"tag":67,"props":1305,"children":1308},{"href":1306,"rel":1307},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fenvironment\u002F",[71],[1309],{"type":49,"value":1310},"Environment",{"type":43,"tag":150,"props":1312,"children":1313},{},[1314,1319],{"type":43,"tag":172,"props":1315,"children":1316},{},[1317],{"type":49,"value":1318},"Interactive PTY \u002F browser terminal",{"type":43,"tag":172,"props":1320,"children":1321},{},[1322,1329,1330],{"type":43,"tag":67,"props":1323,"children":1326},{"href":1324,"rel":1325},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fterminals\u002F",[71],[1327],{"type":49,"value":1328},"Terminals",{"type":49,"value":370},{"type":43,"tag":67,"props":1331,"children":1334},{"href":1332,"rel":1333},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Fterminals\u002F",[71],[1335],{"type":49,"value":1336},"Terminals API",{"type":43,"tag":150,"props":1338,"children":1339},{},[1340,1345],{"type":43,"tag":172,"props":1341,"children":1342},{},[1343],{"type":49,"value":1344},"Python\u002FJS code interpreter",{"type":43,"tag":172,"props":1346,"children":1347},{},[1348,1355,1356],{"type":43,"tag":67,"props":1349,"children":1352},{"href":1350,"rel":1351},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Finterpreter\u002F",[71],[1353],{"type":49,"value":1354},"Interpreter",{"type":49,"value":370},{"type":43,"tag":67,"props":1357,"children":1360},{"href":1358,"rel":1359},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Finterpreter\u002F",[71],[1361],{"type":49,"value":1362},"Interpreter API",{"type":43,"tag":150,"props":1364,"children":1365},{},[1366,1371],{"type":43,"tag":172,"props":1367,"children":1368},{},[1369],{"type":49,"value":1370},"Extensions model",{"type":43,"tag":172,"props":1372,"children":1373},{},[1374],{"type":43,"tag":67,"props":1375,"children":1378},{"href":1376,"rel":1377},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fextensions\u002F",[71],[1379],{"type":49,"value":1380},"Extensions",{"type":43,"tag":150,"props":1382,"children":1383},{},[1384,1389],{"type":43,"tag":172,"props":1385,"children":1386},{},[1387],{"type":49,"value":1388},"Error classes and recovery",{"type":43,"tag":172,"props":1390,"children":1391},{},[1392,1399,1400],{"type":43,"tag":67,"props":1393,"children":1396},{"href":1394,"rel":1395},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Ferrors\u002F",[71],[1397],{"type":49,"value":1398},"Errors",{"type":49,"value":370},{"type":43,"tag":67,"props":1401,"children":1404},{"href":1402,"rel":1403},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002Ferrors\u002F",[71],[1405],{"type":49,"value":1406},"Errors API",{"type":43,"tag":150,"props":1408,"children":1409},{},[1410,1415],{"type":43,"tag":172,"props":1411,"children":1412},{},[1413],{"type":49,"value":1414},"Common failures",{"type":43,"tag":172,"props":1416,"children":1417},{},[1418],{"type":43,"tag":67,"props":1419,"children":1422},{"href":1420,"rel":1421},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Ftroubleshooting\u002F",[71],[1423],{"type":49,"value":1424},"Troubleshooting",{"type":43,"tag":150,"props":1426,"children":1427},{},[1428,1433],{"type":43,"tag":172,"props":1429,"children":1430},{},[1431],{"type":49,"value":1432},"API hub",{"type":43,"tag":172,"props":1434,"children":1435},{},[1436],{"type":43,"tag":67,"props":1437,"children":1440},{"href":1438,"rel":1439},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fapi\u002F",[71],[1441],{"type":49,"value":1442},"API reference",{"type":43,"tag":150,"props":1444,"children":1445},{},[1446,1457],{"type":43,"tag":172,"props":1447,"children":1448},{},[1449,1451],{"type":49,"value":1450},"Files, mounts, backups, ports, tunnels, ",{"type":43,"tag":52,"props":1452,"children":1454},{"className":1453},[],[1455],{"type":49,"value":1456},"proxyToSandbox",{"type":43,"tag":172,"props":1458,"children":1459},{},[1460,1462,1468,1470,1477,1478,1485,1486,1493,1494,1501,1502,1509,1510,1517,1518,1525,1526],{"type":49,"value":1461},"Main docs for shared surfaces (ignore stable-only session\u002Ftransport\u002F",{"type":43,"tag":52,"props":1463,"children":1465},{"className":1464},[],[1466],{"type":49,"value":1467},"sandbox.terminal",{"type":49,"value":1469},"): ",{"type":43,"tag":67,"props":1471,"children":1474},{"href":1472,"rel":1473},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ffiles\u002F",[71],[1475],{"type":49,"value":1476},"Files",{"type":49,"value":370},{"type":43,"tag":67,"props":1479,"children":1482},{"href":1480,"rel":1481},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fstorage\u002F",[71],[1483],{"type":49,"value":1484},"Storage \u002F mounts",{"type":49,"value":370},{"type":43,"tag":67,"props":1487,"children":1490},{"href":1488,"rel":1489},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fports\u002F",[71],[1491],{"type":49,"value":1492},"Ports",{"type":49,"value":370},{"type":43,"tag":67,"props":1495,"children":1498},{"href":1496,"rel":1497},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Ftunnels\u002F",[71],[1499],{"type":49,"value":1500},"Tunnels",{"type":49,"value":370},{"type":43,"tag":67,"props":1503,"children":1506},{"href":1504,"rel":1505},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fapi\u002Fbackups\u002F",[71],[1507],{"type":49,"value":1508},"Backups",{"type":49,"value":370},{"type":43,"tag":67,"props":1511,"children":1514},{"href":1512,"rel":1513},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Foutbound-traffic\u002F",[71],[1515],{"type":49,"value":1516},"Outbound traffic",{"type":49,"value":370},{"type":43,"tag":67,"props":1519,"children":1522},{"href":1520,"rel":1521},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fexpose-services\u002F",[71],[1523],{"type":49,"value":1524},"Expose services",{"type":49,"value":370},{"type":43,"tag":67,"props":1527,"children":1530},{"href":1528,"rel":1529},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002Fguides\u002Fproduction-deployment\u002F",[71],[1531],{"type":49,"value":1532},"Production",{"type":43,"tag":150,"props":1534,"children":1535},{},[1536,1541],{"type":43,"tag":172,"props":1537,"children":1538},{},[1539],{"type":49,"value":1540},"Example apps",{"type":43,"tag":172,"props":1542,"children":1543},{},[1544],{"type":43,"tag":67,"props":1545,"children":1548},{"href":1546,"rel":1547},"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fsandbox-sdk\u002Ftree\u002Fnext\u002Fexamples",[71],[1549,1551],{"type":49,"value":1550},"examples on ",{"type":43,"tag":52,"props":1552,"children":1554},{"className":1553},[],[1555],{"type":49,"value":1135},{"type":43,"tag":150,"props":1557,"children":1558},{},[1559,1564],{"type":43,"tag":172,"props":1560,"children":1561},{},[1562],{"type":49,"value":1563},"Still on stable package",{"type":43,"tag":172,"props":1565,"children":1566},{},[1567,1575,1576],{"type":43,"tag":81,"props":1568,"children":1569},{},[1570],{"type":43,"tag":52,"props":1571,"children":1573},{"className":1572},[],[1574],{"type":49,"value":115},{"type":49,"value":370},{"type":43,"tag":67,"props":1577,"children":1580},{"href":1578,"rel":1579},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F",[71],[1581],{"type":49,"value":1582},"Main Sandbox docs",{"type":43,"tag":150,"props":1584,"children":1585},{},[1586,1591],{"type":43,"tag":172,"props":1587,"children":1588},{},[1589],{"type":49,"value":1590},"Porting an existing stable app",{"type":43,"tag":172,"props":1592,"children":1593},{},[1594,1602,1603],{"type":43,"tag":81,"props":1595,"children":1596},{},[1597],{"type":43,"tag":52,"props":1598,"children":1600},{"className":1599},[],[1601],{"type":49,"value":126},{"type":49,"value":370},{"type":43,"tag":67,"props":1604,"children":1607},{"href":1605,"rel":1606},"https:\u002F\u002Fdevelopers.cloudflare.com\u002Fsandbox\u002F1-0-preview\u002Fmigrate\u002F",[71],[1608],{"type":49,"value":1609},"Migrate",{"type":43,"tag":130,"props":1611,"children":1613},{"id":1612},"_4-before-you-ship",[1614],{"type":49,"value":1615},"4. Before you ship",{"type":43,"tag":384,"props":1617,"children":1618},{},[1619,1638,1650,1655],{"type":43,"tag":388,"props":1620,"children":1621},{},[1622,1624,1629,1631,1636],{"type":49,"value":1623},"Lockfile and Dockerfile on the ",{"type":43,"tag":81,"props":1625,"children":1626},{},[1627],{"type":49,"value":1628},"same",{"type":49,"value":1630}," ",{"type":43,"tag":52,"props":1632,"children":1634},{"className":1633},[],[1635],{"type":49,"value":57},{"type":49,"value":1637}," line",{"type":43,"tag":388,"props":1639,"children":1640},{},[1641,1643,1648],{"type":49,"value":1642},"Typecheck against installed ",{"type":43,"tag":52,"props":1644,"children":1646},{"className":1645},[],[1647],{"type":49,"value":57},{"type":49,"value":1649}," types",{"type":43,"tag":388,"props":1651,"children":1652},{},[1653],{"type":49,"value":1654},"No live secrets in sandbox env",{"type":43,"tag":388,"props":1656,"children":1657},{},[1658],{"type":49,"value":1659},"Production preview hostnames need wildcard DNS on a custom domain when using those URL patterns",{"type":43,"tag":1661,"props":1662,"children":1663},"style",{},[1664],{"type":49,"value":1665},"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":1667,"total":1782},[1668,1687,1701,1714,1740,1759,1772],{"slug":1669,"name":1669,"fn":1670,"description":1671,"org":1672,"tags":1673,"stars":23,"repoUrl":24,"updatedAt":1686},"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},[1674,1676,1677,1680,1683],{"name":1675,"slug":29,"type":13},"Agents",{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},"Cloudflare Workers","cloudflare-workers",{"name":1681,"slug":1682,"type":13},"MCP","mcp",{"name":1684,"slug":1685,"type":13},"WebSockets","websockets","2026-04-06T18:07:36.660888",{"slug":8,"name":8,"fn":1688,"description":1689,"org":1690,"tags":1691,"stars":23,"repoUrl":24,"updatedAt":1700},"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},[1692,1693,1694,1697],{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},{"name":1695,"slug":1696,"type":13},"Serverless","serverless",{"name":1698,"slug":1699,"type":13},"Storage","storage","2026-04-06T18:07:35.399081",{"slug":1702,"name":1702,"fn":1703,"description":1704,"org":1705,"tags":1706,"stars":23,"repoUrl":24,"updatedAt":1713},"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},[1707,1708,1709,1712],{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},{"name":1710,"slug":1711,"type":13},"Email","email",{"name":1695,"slug":1696,"type":13},"2026-04-16T05:02:38.301955",{"slug":1715,"name":1715,"fn":1716,"description":1717,"org":1718,"tags":1719,"stars":23,"repoUrl":24,"updatedAt":1739},"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},[1720,1723,1724,1727,1730,1733,1736],{"name":1721,"slug":1722,"type":13},"Access Control","access-control",{"name":9,"slug":8,"type":13},{"name":1725,"slug":1726,"type":13},"Infrastructure","infrastructure",{"name":1728,"slug":1729,"type":13},"Networking","networking",{"name":1731,"slug":1732,"type":13},"SASE","sase",{"name":1734,"slug":1735,"type":13},"Security","security",{"name":1737,"slug":1738,"type":13},"Zero Trust","zero-trust","2026-06-15T09:51:34.015251",{"slug":1741,"name":1741,"fn":1742,"description":1743,"org":1744,"tags":1745,"stars":23,"repoUrl":24,"updatedAt":1758},"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},[1746,1747,1750,1751,1754,1755],{"name":9,"slug":8,"type":13},{"name":1748,"slug":1749,"type":13},"Migration","migration",{"name":1728,"slug":1729,"type":13},{"name":1752,"slug":1753,"type":13},"Risk Assessment","risk-assessment",{"name":1734,"slug":1735,"type":13},{"name":1756,"slug":1757,"type":13},"Strategy","strategy","2026-06-15T09:51:35.348691",{"slug":1760,"name":1760,"fn":1761,"description":1762,"org":1763,"tags":1764,"stars":23,"repoUrl":24,"updatedAt":1771},"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},[1765,1766,1767,1770],{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},{"name":1768,"slug":1769,"type":13},"State Management","state-management",{"name":1684,"slug":1685,"type":13},"2026-04-06T18:07:39.148434",{"slug":126,"name":126,"fn":1773,"description":1774,"org":1775,"tags":1776,"stars":23,"repoUrl":24,"updatedAt":1781},"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},[1777,1778,1779,1780],{"name":9,"slug":8,"type":13},{"name":18,"slug":19,"type":13},{"name":1748,"slug":1749,"type":13},{"name":15,"slug":16,"type":13},"2026-08-09T04:33:22.575638",13,{"items":1784,"total":1954},[1785,1800,1814,1829,1842,1856,1870,1884,1901,1918,1931,1946],{"slug":1786,"name":1786,"fn":1787,"description":1788,"org":1789,"tags":1790,"stars":1797,"repoUrl":1798,"updatedAt":1799},"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},[1791,1792,1794],{"name":9,"slug":8,"type":13},{"name":1793,"slug":1786,"type":13},"Code Review",{"name":1795,"slug":1796,"type":13},"Engineering","engineering",5284,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fagents","2026-06-08T08:19:41.621858",{"slug":1801,"name":1801,"fn":1802,"description":1803,"org":1804,"tags":1805,"stars":1797,"repoUrl":1798,"updatedAt":1813},"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},[1806,1809,1812],{"name":1807,"slug":1808,"type":13},"Code Analysis","code-analysis",{"name":1810,"slug":1811,"type":13},"Debugging","debugging",{"name":1795,"slug":1796,"type":13},"2026-05-30T06:16:58.837407",{"slug":1815,"name":1815,"fn":1816,"description":1817,"org":1818,"tags":1819,"stars":1797,"repoUrl":1798,"updatedAt":1828},"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},[1820,1823,1826],{"name":1821,"slug":1822,"type":13},"Communications","communications",{"name":1824,"slug":1825,"type":13},"Customer Support","customer-support",{"name":1827,"slug":1815,"type":13},"Escalation","2026-06-08T08:19:43.130686",{"slug":1830,"name":1830,"fn":1831,"description":1832,"org":1833,"tags":1834,"stars":1797,"repoUrl":1798,"updatedAt":1841},"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},[1835,1838],{"name":1836,"slug":1837,"type":13},"Creative","creative",{"name":1839,"slug":1840,"type":13},"Writing","writing","2026-05-30T06:17:00.080367",{"slug":1843,"name":1843,"fn":1844,"description":1845,"org":1846,"tags":1847,"stars":1797,"repoUrl":1798,"updatedAt":1855},"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},[1848,1851,1854],{"name":1849,"slug":1850,"type":13},"Content Creation","content-creation",{"name":1852,"slug":1853,"type":13},"Documentation","documentation",{"name":1839,"slug":1840,"type":13},"2026-05-30T06:17:01.278643",{"slug":1857,"name":1857,"fn":1858,"description":1859,"org":1860,"tags":1861,"stars":1797,"repoUrl":1798,"updatedAt":1869},"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},[1862,1863,1866],{"name":1795,"slug":1796,"type":13},{"name":1864,"slug":1865,"type":13},"QA","qa",{"name":1867,"slug":1868,"type":13},"Testing","testing","2026-05-30T06:17:02.479863",{"slug":1871,"name":1871,"fn":1872,"description":1873,"org":1874,"tags":1875,"stars":1797,"repoUrl":1798,"updatedAt":1883},"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},[1876,1877,1880],{"name":1852,"slug":1853,"type":13},{"name":1878,"slug":1879,"type":13},"Knowledge Management","knowledge-management",{"name":1881,"slug":1882,"type":13},"Summarization","summarization","2026-06-07T07:51:27.265303",{"slug":1885,"name":1885,"fn":1886,"description":1887,"org":1888,"tags":1889,"stars":1898,"repoUrl":1899,"updatedAt":1900},"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},[1890,1891,1892,1895],{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},{"name":1893,"slug":1894,"type":13},"Deployment","deployment",{"name":1896,"slug":1897,"type":13},"Web Development","web-development",5193,"https:\u002F\u002Fgithub.com\u002Fcloudflare\u002Fvibesdk","2026-06-16T09:45:57.551207",{"slug":1902,"name":1902,"fn":1903,"description":1904,"org":1905,"tags":1906,"stars":1898,"repoUrl":1899,"updatedAt":1917},"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},[1907,1910,1913,1916],{"name":1908,"slug":1909,"type":13},"Design","design",{"name":1911,"slug":1912,"type":13},"Frontend","frontend",{"name":1914,"slug":1915,"type":13},"HTML","html",{"name":1896,"slug":1897,"type":13},"2026-06-16T09:46:01.852741",{"slug":1919,"name":1919,"fn":1920,"description":1921,"org":1922,"tags":1923,"stars":1898,"repoUrl":1899,"updatedAt":1930},"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},[1924,1925,1926,1929],{"name":1911,"slug":1912,"type":13},{"name":1914,"slug":1915,"type":13},{"name":1927,"slug":1928,"type":13},"Marketing","marketing",{"name":1896,"slug":1897,"type":13},"2026-06-16T09:46:00.515859",{"slug":1932,"name":1932,"fn":1933,"description":1934,"org":1935,"tags":1936,"stars":1898,"repoUrl":1899,"updatedAt":1945},"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},[1937,1938,1939,1942],{"name":1908,"slug":1909,"type":13},{"name":1911,"slug":1912,"type":13},{"name":1940,"slug":1941,"type":13},"SaaS","saas",{"name":1943,"slug":1944,"type":13},"UI Components","ui-components","2026-06-16T09:45:58.956063",{"slug":1669,"name":1669,"fn":1670,"description":1671,"org":1947,"tags":1948,"stars":23,"repoUrl":24,"updatedAt":1686},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1949,1950,1951,1952,1953],{"name":1675,"slug":29,"type":13},{"name":9,"slug":8,"type":13},{"name":1678,"slug":1679,"type":13},{"name":1681,"slug":1682,"type":13},{"name":1684,"slug":1685,"type":13},24]