Loading...
Loading...
Root cause analysis for debugging. Use when bugs, test failures, or unexpected behavior have non-obvious causes, or after multiple fix attempts have failed.
npx skill4agent add izyanrajwani/agent-skills-library systematic-debuggingNO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRSTFor EACH component boundary:
- Log what data enters/exits component
- Verify environment/config propagation
- Check state at each layer
Run once to gather evidence → analyze → identify failing component# Layer 1: Workflow
echo "=== Secrets available: ==="
echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
# Layer 2: Build script
env | grep IDENTITY || echo "IDENTITY not in environment"
# Layer 3: Signing
security find-identity -vreferences/root-cause-tracing.mdtest-driven-developmentreferences/root-cause-tracing.mddefense-in-depth.mdcondition-based-waiting.mdtest-driven-developmentverification-before-completion