.claude/skills/ts-deno/SKILL.md
Assists with building secure JavaScript and TypeScript applications using the Deno runtime. Use when creating servers, CLI tools, or scripts with Deno's built-in tooling, permission model, and web standards APIs. Trigger words: deno, deno deploy, deno serve, deno kv, deno permissions, secure runtime, jsr.
npx skillsauth add eliferjunior/Claude denoInstall 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.
Deno is a secure JavaScript/TypeScript runtime with built-in tooling including a formatter, linter, test runner, and bundler. It features a permissions model that restricts file, network, and environment access by default, native TypeScript support without transpilation, and full web standards compatibility.
Deno.serve() for high-performance HTTP handling with Web Standards Request/Response, and enable parallel workers with deno serve --parallel for multi-core utilization.--allow-read, --allow-net, --allow-env) scoped to specific paths, hosts, or variable names. Never deploy with --allow-all.jsr:) for versioned, type-checked packages, npm: specifier for npm packages, and configure import maps in deno.json for clean paths.Deno.test() with @std/assert assertions, @std/testing for mocking, and deno test --coverage for coverage reports. Deno's sanitizers detect resource leaks automatically.deno compile to produce standalone executables that cross-compile for Linux, macOS, and Windows with no runtime dependency.Deno.cron() for scheduled tasks, and queues for background processing.["users", id, "profile"]), use atomic() for transactions, and configure TTL with expireIn for automatic expiration.User request: "Create an API with Deno that stores data in Deno KV"
Actions:
Deno.serve() and route matchingDeno.openKv() and define key structurekv.get(), kv.set(), and kv.atomic()deno.json task definitionsOutput: A secure API with embedded key-value storage, ready for Deno Deploy.
User request: "Create a Deno CLI tool that can be distributed as a single binary"
Actions:
@std/cliDeno.test() and run with deno testdeno compile --target for each platformOutput: Cross-platform standalone executables with no runtime dependency.
--allow-all.deno.json imports map for clean import paths instead of raw URLs.jsr:) over URL imports for versioned, type-checked, immutable packages.npm: specifier for npm packages instead of CDN URLs.deno fmt and deno lint in CI for zero-config formatting and linting.Deno.serve() over third-party frameworks for simple APIs; it is faster and lighter.deno compile for distribution with no runtime dependency.development
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.