What problem does it solve? Production features often ship without telemetry, so when incidents occur engineers cannot tell what happened from the available data. This Skill guides you to instrument code alongside the feature so production behavior is visible and diagnosable from the outside. ## Core Features & Use Cases - Structured Logging: Emit JSON log events with stable event names, correlation IDs, and entry-point attribution, while keeping secrets and PII out of log pipelines. - Metrics and Tracing: Apply RED/USE metrics with bounded label cardinality and OpenTelemetry distributed tracing to answer rate, error, latency, and cross-service questions. - Symptom-Based Alerting and Runbooks: Create actionable alerts tied to user-facing symptoms, each linked to a minimal runbook, and verify telemetry by inducing failures in staging. - Use Case: When adding a payment retry flow, define the on-call questions first, then add a payment_failed structured log event, a latency histogram for provider calls, and an alert on error rate with a runbook link. ## Quick Start Use the observability-and-instrumentation skill to add structured logging, RED metrics, and tracing to my new checkout endpoint.