Sre review
Professional development studio for Claude Code CLI
npx -y skills add manastalukdar/ai-devstudio --skill sre-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Review code and configuration for SRE concerns — SLO/SLA coverage, observability gaps, toil, alerting blind spots, and reliability anti-patterns
SKILL.md
4.8 KB, ~1.3k tokens by cl100k_base, as published. Nobody here has run it
SRE Review
Evaluate a service or change for site reliability concerns: missing observability, absent SLOs, high toil, alerting gaps, and patterns that erode error budgets.
Usage
/sre-review # review staged changes for reliability regressions
/sre-review <path> # review a service directory
/sre-review --slo # focus only on SLO/SLA coverage gaps
/sre-review --toil # identify and quantify toil sources
Behavior
Step 1 — Detect service type and observability stack
# Identify metrics/tracing/logging libraries in use
grep -rn "prometheus\|datadog\|opentelemetry\|jaeger\|statsd\|pino\|winston\|structlog\|zap" \
--include="*.ts" --include="*.py" --include="*.go" -l . | head -20
# Find existing SLO/alert definitions
find . -name "*.yaml" -o -name "*.yml" | xargs grep -l "slo\|alert\|rule\|record" 2>/dev/null | head -10
Step 2 — Check observability coverage
For each critical path (HTTP endpoints, queue consumers, scheduled jobs), verify:
| Signal | What to look for | Gap indicator |
|---|---|---|
| Metrics | Request rate, error rate, latency histogram | No counter/histogram/gauge instrumentation |
| Traces | Span creation at service boundaries | No startSpan/tracer.trace/@trace |
| Logs | Structured logging with correlation IDs | console.log, unstructured strings, no request ID |
| Health checks | /health, /ready, /live endpoints | No health endpoint registered |
Step 3 — Review SLO/SLA coverage
Check for:
- Defined availability target (e.g., 99.9%)
- Error budget burn rate alerts (fast burn: 2% in 1h; slow burn: 5% in 6h)
- Latency SLO (p50, p95, p99 thresholds)
- SLO dashboards or recording rules
If no SLO definitions found, propose a minimal starting set:
Suggested SLOs for <service>:
Availability: 99.9% (allow 43.8 min/month downtime)
Latency p95: < 500ms for /api/* endpoints
Error rate: < 0.1% of requests return 5xx
Step 4 — Identify toil
Toil is manual, repetitive work that scales with service load. Flag:
- Manual steps in deployment scripts (no automation)
- Ad-hoc fixes applied more than once (visible in git log)
- Runbooks without automation links
- Cron jobs that require human verification
- Alerting rules with no automated remediation
# Find manual steps or TODOs in ops files
grep -rn "TODO\|FIXME\|manual\|manually\|hand" deploy/ ops/ scripts/ k8s/ 2>/dev/null | head -20
Step 5 — Check alerting quality
For each alert rule found:
- Signal to noise: Does the alert fire on symptoms (not causes)?
- Actionability: Does the alert link to a runbook?
- Severity calibration: Is it paging the right level (P1 vs P2)?
- Missing alerts: No alert on error rate, no alert on SLO burn rate
Flag:
- Alerts with no
runbook_urlannotation - Severity: critical alerts that are informational in practice
- Missing burn-rate alerts when SLOs are defined
Step 6 — Report findings
SRE REVIEW — <service/path>
Observability Gaps (3)
src/payments/processor.ts No latency histogram on charge() — p95 invisible
src/jobs/email-worker.ts console.log only — no structured logging, no correlation ID
No /health endpoint Load balancer cannot distinguish healthy from unhealthy pods
SLO Issues (2)
No SLO definitions found — error budget burn goes undetected
Suggested starter SLOs: [see below]
Toil (2)
scripts/deploy.sh:45 Manual DB migration step before every deploy
k8s/cronjob.yaml Nightly report job requires human sign-off email
Alerting Gaps (1)
No error rate alert — 5xx spikes are invisible until users report them
Reliability Anti-patterns (1)
src/cache/redis.ts:88 Cache-aside with no stampede protection (thundering herd risk at TTL expiry)
Suggested SLOs:
Availability: 99.9% | Latency p95: 500ms | Error rate: < 0.1%
Edge Cases
- No observability libraries: Recommend adding the lightest option for the detected stack (e.g.,
pinofor Node,structlogfor Python). - No staged changes: Analyze the full path provided in
$ARGUMENTS. - Kubernetes: Check Deployment
livenessProbe/readinessProbeand resourcerequests/limits. - Serverless: Adapt checks for cold-start latency, concurrency limits, and function timeout settings.
Token Optimization
Expected range: 500–1,800 tokens; 100–200 tokens (early exit, no integrations)
Patterns used: Grep-before-Read, git diff scope defaults, progressive disclosure (summary then detail per category)
Early exit: If --slo flag and no YAML config files exist, report the gap immediately without scanning source files.
Gives 0 of the 12 instructions most review quality skills give in ~1.3k tokens
Counted across 1,048 of the 1,783 authors here whose files we hold, read 2026-08-06
- ask questions one at a timein 82 of 1048, across 54 files
- provide a recommended answer for each questionin 73 of 1048, across 45 files
- explore the codebase instead of asking answerable questionsin 66 of 1048, across 37 files
- resolve dependencies between decisions one-by-onein 42 of 1048, across 15 files
- interview the user relentlessly about the planin 39 of 1048, across 12 files
- order findings by severityin 29 of 1048
- resolve each branch of the decision treein 28 of 1048, across 5 files
- run a grilling sessionin 26 of 1048, across 5 files
- update CONTEXT.md immediately when a term is resolvedin 26 of 1048, across 9 files
- propose precise canonical terms for vague languagein 25 of 1048, across 6 files
- create documentation files lazilyin 24 of 1048, across 5 files
- use the domain-modeling skillin 22 of 1048, across 3 files
Said here and by no other author read
- detect service type and observability stack
- verify observability coverage on critical paths
- review SLO and SLA coverage
- identify and quantify toil sources
- check alerting quality and missing alerts
- flag reliability anti-patterns
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.