Perform root cause analysis deeply
devlyn.resolvecommandsetup L1★27
FayAndXan/xanlens ↗What it does
Root-cause analysis of bugs with evidence-based 5 Whys and test-driven fixes
Best for
When you have a mysterious bug and need deep root-cause analysis with test-driven validation
Inputs
- · issue_description
- · error_logs_if_available
Outputs
- · root_cause_analysis (symptom, code_path, root_cause, hypotheses_tested, complexity)
- · test_case
- · fixed_code
- · verification_report
Requires
- · file_reader
- · code_parser
- · test_framework
Preconditions
Issue must be specific enough to investigate; relevant files readable
Failure modes
- · Hypothesis mismatch
- · No failing test written
- · Regression introduced
Trust signals
- · Reads code before forming hypotheses
- · Validates each hypothesis with failing test
- · Runs full test suite after fix