framework/deno/skills/flowai-deno-cli/SKILL.md
Manage all Deno capabilities via CLI (run, test, fmt, lint, task, add, etc.). Use this skill when you need to execute Deno commands, manage dependencies, run tests, or handle local development workflows.
npx skillsauth add korchasa/flow flowai-deno-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides instructions for effective use of the Deno CLI for development, testing, and dependency management.
deno run [OPTIONS] <FILE>: Run a script. Always consider permission flags, e.g., --allow-net, --allow-read, --allow-env.deno task <TASK>: Run a task defined in deno.json. This is the preferred way to run project scripts.deno serve [OPTIONS] <FILE>: Run an HTTP server.deno repl: Start an interactive Read-Eval-Print Loop (REPL).deno eval: Evaluate a script from the command line.deno add <PACKAGE>: Add dependencies (e.g., deno add jsr:@std/assert or deno add npm:express).deno install: Install project dependencies.deno outdated: Check for outdated dependencies.deno remove <PACKAGE>: Remove a dependency.deno uninstall: Uninstall a dependency or a globally installed script.deno approve-scripts: Approve npm lifecycle scripts.deno test [OPTIONS]: Run tests. Use --watch for development mode.deno fmt: Format source files.deno lint: Lint source files.deno check: Type-check dependencies.deno bench: Run benchmarks.deno doc: Generate and show documentation.deno compile: Compile a script into a self-contained executable.deno coverage: Print coverage reports.deno info: Show info about cache or source files.deno init: Initialize a new project.deno publish: Publish the current package to JSR or npm.deno upgrade: Upgrade the Deno executable.deno clean: Remove the cache directory.deno jupyter: Deno kernel for Jupyter notebooks.Deno is secure by default. When using deno run or deno test, you must explicitly grant permissions if the script needs access to the network, files, or environment:
--allow-read: Read access.--allow-write: Write access.--allow-net: Network access.--allow-env: Environment variable access.-A or --allow-all: Allow everything (use with caution).Some Deno APIs require explicit opt-in via --unstable-* flags or deno.json config:
Deno.openKv() → --unstable-kv or "unstable": ["kv"] in deno.jsonDeno.cron() → --unstable-cron or "unstable": ["cron"] in deno.jsonnew Deno.UnsafeWindowSurface() → --unstable-webgpuWhen reviewing code, check for unstable API usage and ensure the corresponding flag is set.
deno.json)Always check for deno.json or deno.jsonc in the project root to understand imports, tasks, and lint/fmt settings.
deno test --allow-read --allow-env
deno add jsr:@std/http
deno fmt
deno help <command> for detailed information on any subcommand.deno compile to create standalone binaries.flowai-deno-deploy skill.development
Use when the user asks to add TypeScript strict-mode code-style rules to AGENTS.md for a TypeScript project using strict mode. Do NOT trigger for Deno projects (use setup-agent-code-style-deno) or non-strict TS configurations.
development
Use when the user asks to add Deno/TypeScript code-style rules to AGENTS.md, or during initial Deno project setup when code-style guidelines need to be established. Do NOT trigger for non-Deno TypeScript projects (use setup-agent-code-style-strict), or for runtime-agnostic style advice.
testing
Use when the user provides a source (URL, file path, or free text) to save into the project's memex — a long-term knowledge bank for AI agents. Stores the raw source, extracts entities into cross-linked pages, runs a backlink audit, and updates the index and activity log. Do NOT trigger on casual reads; only when the intent is to persist a source into the memex.
development
Use when the user asks to audit a memex (long-term knowledge bank for AI agents) for orphans, dead SALP REFs, missing sections, contradictions, or index drift. Runs a deterministic structural check, layers LLM-judgement findings, optionally auto-fixes trivial issues with `--fix`. Do NOT trigger on general code linting.