error-handling-standardizer

Installation
SKILL.md

Error Handling Standardizer

Build consistent, debuggable error handling across the application.

Error Taxonomy

export class AppError extends Error {
  constructor(
    public code: string,
    public message: string,
    public statusCode: number = 500,
    public isOperational: boolean = true,
    public details?: any
  ) {
    super(message);
    Error.captureStackTrace(this, this.constructor);
  }
}
Related skills

More from patricio0312rev/skills

Installs
100
GitHub Stars
38
First Seen
Jan 24, 2026