deno-sandbox
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: deno-sandbox description: Use when building features that execute untrusted user code, AI-generated code, or need isolated code execution environments.
Tool: SKILL.md [2/2] Description: Wrong - always use "await using" for sandbox creation // Never write: const sandbox = await Sandbox.create() without "await using" // ✅ Correct - use "await using" for automatic cleanup await using sandbox = await Sandbox.create(); await sandbox.spawn("echo", { args: ["hello"] }); // sandbox automatically disposed when scope ends ``` **Giving user code too many permissions** ```typescript // ❌ Wrong - gives untrusted code full access const child = await sandbox.