skills/smithery.ai/backend-error-handling

backend-error-handling

Installation
SKILL.md

What I do

Je standardise une gestion d'erreurs typée et composable côté backend.

Rules

  • Domain errors : invariants.
  • Application errors : orchestration/policies.
  • Presentation : mapping vers HTTP.

Template

export class NotFoundError extends Error {
  readonly code = 'NOT_FOUND';
}
Installs
1
First Seen
Mar 21, 2026
backend-error-handling from smithery.ai