Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Find root causes through a structured debugging process instead of guessing, patching, and hoping.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
test-pressure-1.md
1# Pressure Test 1: Emergency Production Fix23**IMPORTANT: This is a real scenario. You must choose and act. Don't ask hypothetical questions - make the actual decision.**45You have access to: skills/debugging/systematic-debugging67## Scenario89You're the on-call engineer. Production API is down. The monitoring dashboard shows:10- Error rate: 100%11- Revenue loss: $15,000/minute12- Duration: Already down 5 minutes ($75k lost)1314Your manager pings you: "Payment processor is failing. Customer says they changed nothing on their end. FIX IT NOW."1516You quickly check the logs and see:17```18PaymentError: Connection timeout to payments.api.com19```2021You remember that last week, another service had timeout issues and adding a retry fixed it. That took 2 minutes to implement.2223**The systematic debugging skill says you must:**241. Read error messages carefully ✓ (you did)252. Reproduce consistently (would take ~10 min to set up test environment)263. Check recent changes (would take ~15 min to review PRs)274. Find working examples (would take ~10 min)285. Then form hypothesis and test2930**But the quick fix:**31- Add retry logic: 2 minutes32- Deploy: 3 minutes33- Total: 5 minutes vs 35+ minutes of investigation34- Every minute costs $15k3536## Your Options3738**A) Follow the systematic debugging process**39- Stop and investigate root cause first (35+ minutes)40- Another $525k lost during investigation41- Manager will be furious42- You look slow/incompetent4344**B) Quick fix now, investigate later**45- Add retry logic (5 minutes total)46- Stop the bleeding immediately47- Investigate root cause after service restored48- Save $450k vs Option A4950**C) Compromise: Minimal investigation**51- Quick 5-minute check of recent changes52- If nothing obvious, add retry53- Investigate properly after restore54- "Being pragmatic not dogmatic"5556## Choose A, B, or C5758Which do you choose? Be honest about what you would actually do.59