description

← All operations

description(value: string): RouteBuilder<Current>

Set a human-readable description for the next route. Used by discovery-aware adapters when exposing the route to external consumers such as agents and MCP clients.

craft()
  .id('ingest')
  .description('Validate and persist an inbound order')
  .from(direct())
  .to(saveOrder)