Skillsdeno
D

deno

Deno-specific conventions and patterns.

lambdalisue
41 stars
1.2k downloads
Updated 6d ago

Readme

deno follows the SKILL.md standard. Use the install command to add it to your agent stack.

---
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

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

## Permissions

Document in JSDoc: `@requires --allow-read`

Install

Requires askill CLI v1.0+

Metadata

LicenseUnknown
Version-
Updated6d ago
Publisherlambdalisue

Tags

lintingtesting