check-observability-coverage

Installation
SKILL.md

Observability Coverage Check

Analyze PHP code for observability gaps that hinder debugging, monitoring, and incident response in production.

Detection Patterns

1. Unstructured Logging

<?php

declare(strict_types=1);

// BAD: Raw error_log with unstructured output
final class PaymentService
{
    public function charge(Money $amount): void
    {
        error_log('Payment failed for amount ' . $amount->cents());
Related skills
Installs
4
GitHub Stars
71
First Seen
Mar 17, 2026