Agent skill

deno

Deno-specific conventions and patterns.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/testing/deno

SKILL.md

Conventions

  • Imports: Explicit extensions (.ts), JSR > @std > npm
  • Config: deno.json for imports, tasks, lint, fmt
  • Tools: deno fmt/lint/check/test (not Prettier/ESLint/Vitest)
  • No node_modules

Testing

typescript
Deno.test("behavior description", async (t) => {
  await t.step("specific case", () => {
    // AAA pattern, @std/assert
  });
});

Permissions

Document in JSDoc: @requires --allow-read

Didn't find tool you were looking for?

Be as detailed as possible for better results