Help us improve
Share bugs, ideas, or general feedback.
From meridian
Audits code for observability gaps like leftover debug logs, unlogged errors, missing log context, and untracked slow operations using existing tooling.
npx claudepluginhub markmdev/meridianHow this skill is triggered — by the user, by Claude, or both
Slash command
/meridian:observability-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Code that works locally but is impossible to debug in production. This skill finds and fixes observability gaps using whatever tools the app already has.
Audits existing observability instrumentation and designs structured logging, metrics, distributed tracing, and alerting for production services. Use for coverage gaps, SLIs/SLOs.
Analyzes PHP code for observability gaps: detects unstructured logging, missing correlation IDs, health endpoints, and OpenTelemetry setup. Improves production debugging and monitoring.
Provides rigid checks for structured logs, request IDs, tracing, metrics in production request handlers, RPCs, background jobs to ensure diagnosability.
Share bugs, ideas, or general feedback.
Code that works locally but is impossible to debug in production. This skill finds and fixes observability gaps using whatever tools the app already has.
Before anything else, explore the codebase to understand what's already in use:
logger or telemetry utilities?Read how they're configured and how they're used in existing code. All fixes must use these — never introduce a new observability dependency or pattern.
Debug artifacts left in production code:
console.log, console.debug, console.info that aren't part of the established logging patternErrors that disappear:
catch(e) that propagates or re-throws without logging first — the error reaches the user but leaves no trace for debugginglogger.error(e) alone, with no info about what operation failed, what inputs were involved, or what the user was doingMissing context on log entries:
Untracked slow or critical operations:
console.log goes away entirely — no conversion to structured log, just deletedreferences/observability-patterns.md — Detection patterns, bad/fix examples for debug artifacts, missing logging, missing context, untracked operations. Read before starting the audit.Summarize by file: what was removed, what was added or improved, what context was missing and is now included.