Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# AGENTS Guidelines for This Repository

This repository contains a Deno application located in the root of this repository.

## Keep Dependencies in Sync

If you add or update dependencies remember to:

1. Update the appropriate lockfile (`deno.lock`, etc).

## Coding Conventions

1. Prefer TypeScript

## Always double check

Use the deno tasks and always run tests, formatting and lintting for every commit.
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo: "lintting" should be "linting".

Suggested change
Use the deno tasks and always run tests, formatting and lintting for every commit.
Use the deno tasks and always run tests, formatting and linting for every commit.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The guidance says to "Use the deno tasks" for tests/formatting/linting, but deno.json currently defines only the compile task. Consider either adding fmt/lint/test tasks to deno.json or updating this doc to reference the actual commands (e.g., deno fmt, deno lint, deno test).

Suggested change
Use the deno tasks and always run tests, formatting and lintting for every commit.
Always run `deno test`, `deno fmt`, and `deno lint` before every commit.

Copilot uses AI. Check for mistakes.