laravel:exception-handling-and-logging

SkillMonitoring & ops

Use reportable/renderable exceptions, structured logs, and channel strategy for observability and graceful failures

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the laravel:exception-handling-and-logging skill

What this skill tells your AI

The instructions your AI receives, as published by jpcaparas/superpowers-laravel in skills/exception-handling-and-logging/SKILL.md and read by ahel’s review.

Treat errors as first-class signals; provide context and paths to remediation.

Commands

// app/Exceptions/Handler.php
public function register(): void
{
    $this->reportable(function (DomainException $e) {
        Log::warning('domain exception', ['code' => $e->getCode()]);
    });

    $this->renderable(function (ModelNotFoundException $e, $request) {
        if ($request->expectsJson()) {
            return response()->json(['message' => 'Not Found'], 404);
        }
    });
}

Patterns

  • Use domain-specific exceptions for expected error paths
  • Add structured context to logs; avoid logging secrets
  • Route noisy logs to separate channels; keep defaults actionable
  • Convert to API-appropriate responses in renderable()

Signals

GitHub stars
153
Forks
2
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
laravel-exception-handling-and-logging
Source
github.com/jpcaparas/superpowers-laravel