route-handler-authoring
Installation
SKILL.md
Route Handler Authoring Guide
Conventions for writing route handlers in agents-api/src/domains/**/routes/ and their corresponding CRUD tests.
Spread Pattern (Required)
When forwarding a validated request body to a DAL function, always spread the body. Never use explicit field-picking.
Correct Pattern
const body = c.req.valid('json');