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');
Installs
1
Repository
inkeep/agents
GitHub Stars
1.1K
First Seen
Apr 5, 2026
route-handler-authoring — inkeep/agents