Claude Code Plugins

Community-maintained marketplace

Feedback

Deno-specific conventions and patterns.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name deno
description Deno-specific conventions and patterns.

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

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

Permissions

Document in JSDoc: @requires --allow-read