Claude Code Plugins

Community-maintained marketplace

Feedback

observability

@SylphxAI/flow
4
0

Observability - logging, metrics, tracing. Use when adding monitoring.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name observability
description Observability - logging, metrics, tracing. Use when adding monitoring.

Observability Guideline

Tech Stack

  • Error Tracking: Sentry
  • Analytics: PostHog
  • Platform: Vercel

Non-Negotiables

  • Correlation IDs must exist end-to-end (request → job → webhook)
  • Alerts must exist for critical failures (webhook failures, auth attacks, drift)

Context

Observability is about answering questions when things go wrong. It's 3am, something is broken, users are complaining — can you figure out what happened? How fast?

Good observability makes debugging easy. Bad observability means you're guessing, adding log lines, redeploying, and hoping. Consider: what questions would you need to answer during an incident, and can you answer them today?

Driving Questions

  • If something breaks in production right now, how would we find out?
  • What blind spots exist where errors go unnoticed?
  • How long would it take to trace a user's request through the entire system?
  • What alerts exist, and do they fire for the right things?
  • Where do we have noise that's training people to ignore alerts?
  • What production issue in the last month was hard to debug, and why?