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);
  }
}
Installs
8
GitHub Stars
2
First Seen
Feb 16, 2026
error-handling-standardizer — monkey1sai/openai-cli