← ClaudeAtlas

debuglisted

Debug systematically across software, data pipelines, infrastructure, and analytics. Find root cause before fixing - for bugs, test failures, CI/CD breakage, K8s/Cloud incidents, dbt/Airflow pipeline failures, schema drift, freshness violations, dashboard wrong-numbers, and performance issues. Validates at every layer; verifies with fresh evidence before claiming done.
vanducng/skills · ★ 2 · Code & Development · score 74
Install: claude install-skill vanducng/skills
# Debug Comprehensive debugging across the four disciplines you work in: software, data engineering, devops, analytics. Systematic investigation, root-cause-first, defense-in-depth, and verified-before-claimed-done. ## Iron law ``` NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST ``` Random fixes waste time and create new bugs. Find root cause → fix at source → validate at every layer → verify with fresh evidence before claiming done. ## Proof gate Before calling a cause confirmed: 1. Observe or reproduce the symptom at the closest realistic boundary. 2. Compare the failing case with the nearest working control and find the first divergence. 3. Show the evidence chain from trigger to mechanism to symptom. If any link is unverified, label it a hypothesis and run the smallest check that distinguishes it from the next plausible cause. Stop when the chain is proven and the requested decision is unblocked; keep unrelated findings separate. ## When to use | Surface | Triggers | |---|---| | **Software** | test failures, bugs, exceptions, build failures, integration regressions | | **System** | server 5xx, CI/CD pipeline failures, deploy failures, performance degradation, OOM, timeouts | | **Data pipeline** | DAG failures, dbt test failures, source-freshness alerts, schema drift, late/missing data, row-count anomalies, lineage breaks | | **Infrastructure** | K8s pod CrashLoopBackOff, secret rotation issues, env-var mismatch across environments, IaC drift, image pull errors,