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: Enforces JSON log events with stable event names, consistent log levels, and mandatory correlation IDs propagated across services. - Metrics and Tracing: Applies RED/USE metric patterns with bounded label cardinality and OpenTelemetry distributed tracing with context propagation. - Symptom-Based Alerting: Designs actionable alerts tied to user-facing symptoms with runbooks, plus a verification process that test-fires alerts and validates telemetry output. - Use Case: When adding a payment retry flow to a checkout service, use this Skill to define on-call questions, add structured payment_failed log events, RED metrics on the provider calls, and a symptom-based error-rate alert before shipping. ## Quick Start Use the observability skill to instrument my new checkout endpoint with structured logs, RED metrics, tracing, and an alert before it ships to production.