af-skill-configure-deno-commands

Configure standardized Deno task commands in deno.json and scripts/check.ts.

3|Updated Oct 5, 2025
One-click install
npx skills add https://github.com/korchasa/ide-rules --skill af-skill-configure-deno-commands
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: af-skill-configure-deno-commands
Source: https://github.com/korchasa/ide-rules/tree/main/catalog/skills/af-skill-configure-deno-commands
Command: npx skills add https://github.com/korchasa/ide-rules --skill af-skill-configure-deno-commands

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Standardizes and streamlines Deno-based development workflows by scaffolding a consistent deno.json task interface and a central scripts/check.ts, enabling reliable, repeatable checks across projects.

Core Features & Use Cases

  • Scaffold a standardized development interface with deno.json tasks for check, test, dev, and prod.
  • Create a scripts/check.ts that runs the full verification pipeline (fmt, lint, test) and enforces non-zero exit codes on failure.
  • Ensure idempotent updates and easy integration during af-init or project updates.
  • Use cases include bootstrapping new projects with a ready-to-use Deno workflow or upgrading legacy projects to a uniform development interface.

Quick Start

Scaffolding the Deno command interface sets up deno.json tasks and a scripts/check.ts for automated verification.

Frequently Asked Questions about af-skill-configure-deno-commands

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I standardize Deno tasks across multiple projects?

Standardize Deno tasks by scaffolding a consistent deno.json task interface and a central scripts/check.ts. This ensures reliable, repeatable check, test, dev, and prod workflows across your projects.

How do I set up a CI-safe verification pipeline for Deno?

Set up a CI-safe Deno verification pipeline by creating a scripts/check.ts file that runs fmt, lint, and test. This script enforces non-zero exit codes on failure, ensuring your CI pipeline catches errors reliably.

What is the best way to configure deno.json for automated development workflows?

Configure deno.json for automated workflows by defining script-based task definitions for check, test, dev, and prod. This approach enforces idempotent scaffolding and ensures consistent development interfaces.

Can I update an existing Deno project to use a uniform task interface?

Yes, you can upgrade legacy Deno projects to a uniform development interface. The scaffolding process applies idempotent updates, ensuring easy integration during project initialization or when updating existing workflows.

Why do my Deno CI checks pass locally but fail in the pipeline?

Deno CI checks may fail if scripts do not enforce non-zero exit codes on failure. Creating a central scripts/check.ts that runs the full verification pipeline and enforces proper exit codes ensures CI safety.