Systematically traces bugs backward through the call stack to identify and fix the original source of errors rather than just symptoms.
Root Cause Tracing is a specialized debugging skill that provides a structured framework for navigating deep call stacks to find the original trigger of a bug. Instead of applying superficial fixes to where an error manifests, this skill guides you through a backward-tracing process, implementing strategic instrumentation and defense-in-depth validation layers. It is particularly effective for complex systems where invalid data originates several layers above the eventual failure point or when unidentified test pollution is causing side effects.
主な機能
01Systematic backward call stack navigation
02Test pollution identification via bisection scripts
03Strategic instrumentation and custom stack trace logging