encore-code-review

Installation
SKILL.md

Encore Code Review

Instructions

When reviewing Encore.ts code, check for these common issues:

Critical Issues

1. Infrastructure Inside Functions

// WRONG: Infrastructure declared inside function
async function setup() {
  const db = new SQLDatabase("mydb", { migrations: "./migrations" });
  const topic = new Topic<Event>("events", { deliveryGuarantee: "at-least-once" });
}
Installs
474
GitHub Stars
25
First Seen
Jan 21, 2026
encore-code-review — encoredev/skills