Deno
PassAudited by ClawScan on May 1, 2026.
Overview
This is a coherent instruction-only Deno guidance skill that mainly warns users to scope permissions and pin dependencies.
This skill appears safe to install as Deno reference guidance. Review any Deno commands it helps produce, especially permission flags such as --allow-read, --allow-env, --allow-net, --allow-run, or --allow-all, and keep them narrowly scoped.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If an agent suggests a Deno command based on this skill, the permission flags determine which files, network hosts, commands, or environment variables the user's code can access.
The skill provides examples of running Deno programs with network, file-read, and environment-variable permissions. This is central to Deno guidance and the document explicitly recommends scoping, but these flags can materially affect what a user's program can access.
deno run \ --allow-net=0.0.0.0:8000,api.stripe.com \ --allow-read=./public,./templates \ --allow-env=STRIPE_KEY,DATABASE_URL \ server.ts
Before running generated Deno commands, confirm that permission flags are limited to the specific paths, hosts, commands, and environment variables needed.
