From DevOps & Reliability
Use this skill when computing or reporting error-budget status across whatever observability tools are connected through the gateway. Covers SLO/error-budget concepts applied practically — how to compute current burn rate from available observability data (Sentry error rate, Datadog/Grafana uptime or latency SLIs, BetterStack uptime checks), what counts as a budget-threatening trend versus noise, and how to degrade gracefully when no formal SLO is defined (fall back to raw error-rate/uptime trend reporting instead of a burn-rate calculation). Discover connected tools via conduit__search_tools before assuming a specific vendor; never hardcode a tool surface.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops-pack:error-budget-trackingWhen to use
When assessing whether a service is burning through its error budget too fast, reviewing uptime or error-rate trends, or reporting reliability status against an SLO. Use when: error budget, burn rate, SLO status, reliability scorecard, uptime review, are we meeting our SLOs, error rate trend, how reliable is this service.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
An error budget turns "is this service reliable enough" from a vague feeling
An error budget turns "is this service reliable enough" from a vague feeling into a number: given a target (e.g., 99.9% uptime, or a max acceptable error rate), the budget is the amount of unreliability you're allowed before you've spent it. Burn rate is how fast you're spending it. This skill computes both from whatever observability data is actually available, and — just as importantly — knows when there isn't enough to compute a formal burn rate at all, and falls back to something honest instead of a fabricated number.
This pack is cross-vendor. Before pulling any observability data:
conduit__search_tools to discover which observability connectors
are live — Sentry (error rate/issue volume), Datadog or Grafana
(uptime/latency SLIs, dashboards, monitors), BetterStack (uptime checks,
status pages). Tool names follow <vendor-slug>__<tool_name>, e.g.
sentry__list_issues, datadog__list_monitors, betterstack__list_monitors.The formal calculation needs three things: a defined SLO target, a measurement period, and current SLI data over that period. When all three are available:
Not every error spike or downtime blip threatens the budget. Distinguish:
A single data point is never enough to call something a trend — look at the trajectory over at least several data points or a meaningful fraction of the measurement window before characterizing something as budget-threatening rather than a transient blip.
Most connected services will not have a formally defined SLO object sitting in Datadog or Grafana, and that's normal, not a failure state. When no SLO target is discoverable and the user hasn't stated one:
conduit__search_tools.conduit__search_tools.healthy/flat > improving. State which classification type applied to each service so the ranking logic is auditable.
Say so explicitly: "No observability connector is available through the gateway, so reliability status can't be computed for any service." Do not fabricate uptime or error-rate figures.
Fall back to raw trend reporting per the graceful-degradation rules above — never invent a target to force a burn-rate number.
State this explicitly (e.g., "only 2 days of history available, insufficient for a reliable 7-day baseline comparison") rather than reporting a trend built on too little data as if it were solid.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin devops-packAudits error budget consumption, sets burn rate alerts, and guides reliability investment decisions based on SLO budget status. Use when balancing feature velocity vs. reliability.
Helps define SLOs, SLIs, and SLAs with error budget tracking and burn rate alerts. Use when implementing SRE practices or setting data-driven reliability targets.
Defines and implements Service Level Indicators (SLIs), Service Level Objectives (SLOs), and error budgets for measuring and tracking service reliability.