opción

systematic-debugging

obra/superpowers obra/superpowers

Identifica las causas fundamentales de los errores, los fallos en las pruebas o los comportamientos inesperados antes de proponer cualquier solución.

...Expandir todo
21
Tiempo actualizado 3 de septiembre de 2026

Depuración sistemática

Resumen

Las soluciones aleatorias suponen una pérdida de tiempo y generan nuevos errores. Los parches rápidos ocultan los problemas subyacentes.

Principio fundamental: hay que encontrar SIEMPRE la causa raíz antes de intentar aplicar soluciones. Las soluciones que solo tratan los síntomas son un fracaso.

Incumplir la letra de este proceso es infringir el espíritu de la depuración.

La ley de hierro

NO SE REALIZARÁN CORRECCIONES SIN HABER INVESTIGADO PRIMERO LA CAUSA RAÍZ

Si no has completado la Fase 1, no puedes proponer soluciones.

Cuándo utilizarlo

Úsalo para CUALQUIER problema técnico:

  • Fallos en las pruebas
  • Errores en producción
  • Comportamiento inesperado
  • Problemas de rendimiento
  • Errores de compilación
  • Problemas de integración

Utiliza esto ESPECIALMENTE cuando:

  • Estés bajo presión de tiempo (las emergencias hacen que resulte tentador improvisar)
  • «Solo una solución rápida» parece lo más obvio
  • Ya hayas probado varias soluciones
  • La solución anterior no ha funcionado
  • No entiendes del todo el problema

No te saltes este paso cuando:

  • El problema parezca sencillo (los errores sencillos también tienen causas subyacentes)
  • Tengas prisa (las prisas garantizan que habrá que volver a hacerlo)
  • Tu jefe quiere que se solucione YA (un enfoque sistemático es más rápido que actuar a ciegas)

Las cuatro fases

DEBES completar cada fase antes de pasar a la siguiente.

Fase 1: Investigación de la causa raíz

ANTES de intentar CUALQUIER solución:

  1. Lee atentamente los mensajes de error

    • No te saltes los errores ni las advertencias
    • A menudo contienen la solución exacta
    • Lee los trazas de pila en su totalidad
    • Anota los números de línea, las rutas de los archivos y los códigos de error
  2. Reproduce el error de forma consistente

    • ¿Puedes reproducirlo de forma fiable?
    • ¿Cuáles son los pasos exactos?
    • ¿Ocurre siempre?
    • Si no es reproducible → recopila más datos, no hagas conjeturas
  3. Comprueba los cambios recientes

    • ¿Qué ha cambiado que pudiera causar esto?
    • Git diff, confirmaciones recientes
    • Nuevas dependencias, cambios en la configuración
    • Diferencias en el entorno
  4. Recopilar pruebas en sistemas con múltiples componentes

    CUANDO el sistema tiene varios componentes (CI → compilación → firma, API → servicio → base de datos):

    ANTES de proponer soluciones, añade herramientas de diagnóstico:

    Para CADA límite de componente:
      - Registrar qué datos entran en el componente
      - Registrar qué datos salen del componente
      - Verificar la propagación del entorno y la configuración
      - Comprobar el estado en cada capa
    
    Ejecutar una vez para recopilar pruebas que muestren DÓNDE se produce el fallo
    A CONTINUACIÓN, analizar las pruebas para identificar el componente defectuoso
    A CONTINUACIÓN, investigar ese componente específico
    

    Ejemplo (sistema multicapa):

    # Capa 1: Flujo de trabajo
    echo "=== Secretos disponibles en el flujo de trabajo: ==="
    echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
    
    # Capa 2: Script de compilación
    echo "=== Variables de entorno en el script de compilación: ==="
    env | grep IDENTITY || echo "IDENTITY no está en el entorno"
    
    # Capa 3: Script de firma
    echo "=== Estado del llavero: ==="
    security list-keychains
    security find-identity -v
    
    # Capa 4: Firma propiamente dicha
    codesign --sign "$IDENTITY" --verbose=4 "$APP"
    

    Esto revela: qué capa falla (secretos → flujo de trabajo ✓, flujo de trabajo → compilación ✗)

  5. Rastrear el flujo de datos

    CUANDO el error se encuentra en lo profundo de la pila de llamadas:

    Consulta el archivo root-cause-tracing.md en este directorio para conocer la técnica completa de rastreo hacia atrás.

    Versión rápida:

    • ¿De dónde procede el valor erróneo?
    • ¿Qué ha llamado a esto con un valor erróneo?
    • Sigue rastreando hacia arriba hasta encontrar el origen
    • Soluciona el problema en su origen, no en el síntoma

Fase 2: Análisis de patrones

Identifica el patrón antes de corregirlo:

  1. Busca ejemplos que funcionen

    • Localiza código similar que funcione en la misma base de código
    • ¿Qué funciona que sea similar a lo que no funciona?
  2. Compáralo con las referencias

    • Si vas a implementar un patrón, lee la implementación de referencia POR COMPLETO
    • No lo leas por encima: lee cada línea
    • Comprende el patrón por completo antes de aplicarlo
  3. Identifica las diferencias

    • ¿En qué se diferencia lo que funciona de lo que no funciona?
    • Enumera todas las diferencias, por pequeñas que sean
    • No des por sentado que «eso no puede tener importancia»
  4. Comprende las dependencias

    • ¿Qué otros componentes necesita esto?
    • ¿Qué ajustes, configuración y entorno?
    • ¿Qué supuestos se dan por sentados?

Fase 3: Hipótesis y pruebas

Método científico:

  1. Formular una única hipótesis

    • Exprésala claramente: «Creo que X es la causa principal porque Y»
    • Anótala
    • Sé específico, no vago
  2. Realiza una prueba mínima

    • Realiza el cambio MÁS PEQUEÑO posible para comprobar la hipótesis
    • Una variable cada vez
    • No corrijas varias cosas a la vez
  3. Comprueba los resultados antes de continuar

    • ¿Ha funcionado? Sí → Fase 4
    • ¿No ha funcionado? Formula una NUEVA hipótesis
    • NO añadas más soluciones encima
  4. Cuando no lo sepas

    • Di «No entiendo X»
    • No finjas saberlo
    • Pide ayuda
    • Investiga más

Fase 4: Puesta en práctica

Soluciona la causa raíz, no el síntoma:

  1. Crea un caso de prueba que falle

    • Reproducción lo más sencilla posible
    • Prueba automatizada, si es posible
    • Script de prueba puntual si no hay marco de trabajo
    • IMPRESCINDIBLE antes de corregir
    • Utiliza la habilidad «superpoderes:desarrollo-guiado-por-pruebas » para escribir pruebas fallidas adecuadas
  2. Implementa una solución única

    • Aborda la causa raíz identificada
    • UN cambio cada vez
    • No hagas mejoras del tipo «ya que estoy aquí»
    • No se realizan refactorizaciones agrupadas
  3. Verificar la corrección

    • ¿La prueba ya pasa?
    • ¿No hay ninguna otra prueba que falle?
    • ¿Se ha resuelto realmente el problema?
  4. Si la corrección no funciona

    • DETÉNGETE
    • Recuento: ¿Cuántas soluciones has probado?
    • Si es < 3: Vuelve a la fase 1 y vuelve a analizar con la nueva información
    • Si es ≥ 3: DETÉNGETE y cuestiona la arquitectura (paso 5 más abajo)
    • NO intentes la solución n.º 4 sin antes debatir la arquitectura
  5. Si han fallado 3 o más soluciones: cuestiona la arquitectura

    Patrón que indica un problema de arquitectura:

    • Cada solución revela un nuevo estado compartido, acoplamiento o problema en un lugar diferente
    • Las soluciones requieren una «refactorización masiva» para su implementación
    • Cada solución genera nuevos síntomas en otros lugares

    DETÉNGETE y cuestiona los fundamentos:

    • ¿Es este patrón fundamentalmente sólido?
    • ¿Estamos «aguantando por pura inercia»?
    • ¿Deberíamos refactorizar la arquitectura en lugar de seguir corrigiendo los síntomas?

    Discútelo con su compañero de trabajo antes de intentar más soluciones

    Esto NO es una hipótesis fallida: se trata de una arquitectura errónea.

Señales de alarma: DETENTE y sigue el proceso

Si te sorprendes pensando:

  • «Una solución rápida por ahora, ya lo investigaré más tarde»
  • «Prueba a cambiar X y a ver si funciona»
  • «Añade varios cambios, ejecuta las pruebas»
  • «Me salto la prueba, lo verificaré manualmente»
  • «Probablemente sea X, voy a arreglarlo»
  • «No lo entiendo del todo, pero esto podría funcionar».
  • «El patrón dice X, pero lo adaptaré de otra forma».
  • «Estos son los principales problemas: [enumera soluciones sin haber investigado]»
  • Proponer soluciones antes de rastrear el flujo de datos
  • «Un intento más de solución» (cuando ya se han probado más de dos)
  • Cada solución revela un nuevo problema en otro lugar

TODO esto significa: PARAR. Volver a la fase 1.

Si han fallado tres o más soluciones: cuestiona la arquitectura (véase la fase 4.5)

Las señales de tu compañero humano de que lo estás haciendo mal

Presta atención a estas redirecciones:

  • «¿No está pasando eso?» — Has dado algo por hecho sin verificarlo
  • «¿Nos lo mostrará...?» — Deberías haber recopilado más pruebas
  • «Deja de hacer conjeturas»: estás proponiendo soluciones sin comprender el problema
  • «Piénsalo a fondo»: cuestiona los fundamentos, no solo los síntomas
  • «¿Estamos atascados?» (frustrado): tu enfoque no está funcionando

Cuando veas esto: PARA. Vuelve a la fase 1.

Racionalizaciones habituales

Excusa Realidad
«El problema es sencillo, no hace falta un proceso» Los problemas sencillos también tienen causas subyacentes. El proceso es rápido para los errores sencillos.
«Es una emergencia, no hay tiempo para seguir el proceso» La depuración sistemática es MÁS RÁPIDA que ir dando palos de ciego.
«Prueba esto primero y luego investiga» La primera corrección marca la pauta. Hazlo bien desde el principio.
«Escribiré la prueba después de confirmar que la solución funciona». Las correcciones sin probar no duran. Probar primero lo confirma.
«Hacer varias correcciones a la vez ahorra tiempo». No se puede aislar lo que ha funcionado. Provoca nuevos errores.
«La referencia es demasiado larga, adaptaré el patrón». Una comprensión parcial garantiza la aparición de errores. Léela completa.
«Ya veo el problema, déjame arreglarlo». Ver los síntomas ≠ comprender la causa raíz.
«Un intento más de arreglarlo» (tras más de dos fallos) Tres o más fallos = problema de arquitectura. Cuestiona el patrón, no lo vuelvas a arreglar.

Referencia rápida

Fase Actividades clave Criterios de éxito
1. Causa raíz Leer los errores, reproducirlos, comprobar los cambios y recopilar pruebas Comprender QUÉ y POR QUÉ
2. Patrón Buscar ejemplos que funcionen, comparar Identificar diferencias
3. Hipótesis Formular una teoría, probarla de forma básica Hipótesis confirmada o nueva
4. Implementación Crear prueba, corregir, verificar Error resuelto, pruebas superadas

Cuando el proceso revela que «no hay causa raíz»

Si la investigación sistemática revela que el problema es realmente ambiental, depende del momento o es externo:

  1. Has completado el proceso
  2. Documenta lo que has investigado
  3. Aplica el tratamiento adecuado (reintento, tiempo de espera, mensaje de error)
  4. Añade supervisión o registro para futuras investigaciones

Pero: el 95 % de los casos en los que «no se encuentra la causa raíz» se deben a una investigación incompleta.

Técnicas de apoyo

Estas técnicas forman parte de la depuración sistemática y están disponibles en este directorio:

  • root-cause-tracing.md: rastrear los errores hacia atrás a través de la pila de llamadas para encontrar el desencadenante original
  • defense-in-depth.md: añade validaciones en varias capas tras encontrar la causa raíz
  • condition-based-waiting.md: sustituye los tiempos de espera arbitrarios por sondeos condicionales

Habilidades relacionadas:

  • superpowers:test-driven-development - Para crear un caso de prueba que falle (Fase 4, Paso 1)
  • superpowers:verification-before-completion - Verificar que la corrección ha funcionado antes de dar el caso por resuelto

Impacto en el mundo real

A partir de sesiones de depuración:

  • Enfoque sistemático: entre 15 y 30 minutos para corregir el error
  • Enfoque de correcciones aleatorias: 2-3 horas de trabajo sin resultados
  • Tasa de corrección a la primera: 95 % frente a 40 %
  • Nuevos errores introducidos: casi cero frente a frecuentes
Ver en GitHub
---
name: systematic-debugging
description: Find root causes of bugs, test failures, or unexpected behavior before proposing any fixes.
---

# Systematic Debugging

## Overview

Random fixes waste time and create new bugs. Quick patches mask underlying issues.

**Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure.

**Violating the letter of this process is violating the spirit of debugging.**

## The Iron Law

```
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
```

If you haven't completed Phase 1, you cannot propose fixes.

## When to Use

Use for ANY technical issue:
- Test failures
- Bugs in production
- Unexpected behavior
- Performance problems
- Build failures
- Integration issues

**Use this ESPECIALLY when:**
- Under time pressure (emergencies make guessing tempting)
- "Just one quick fix" seems obvious
- You've already tried multiple fixes
- Previous fix didn't work
- You don't fully understand the issue

**Don't skip when:**
- Issue seems simple (simple bugs have root causes too)
- You're in a hurry (rushing guarantees rework)
- Manager wants it fixed NOW (systematic is faster than thrashing)

## The Four Phases

You MUST complete each phase before proceeding to the next.

### Phase 1: Root Cause Investigation

**BEFORE attempting ANY fix:**

1. **Read Error Messages Carefully**
   - Don't skip past errors or warnings
   - They often contain the exact solution
   - Read stack traces completely
   - Note line numbers, file paths, error codes

2. **Reproduce Consistently**
   - Can you trigger it reliably?
   - What are the exact steps?
   - Does it happen every time?
   - If not reproducible → gather more data, don't guess

3. **Check Recent Changes**
   - What changed that could cause this?
   - Git diff, recent commits
   - New dependencies, config changes
   - Environmental differences

4. **Gather Evidence in Multi-Component Systems**

   **WHEN system has multiple components (CI → build → signing, API → service → database):**

   **BEFORE proposing fixes, add diagnostic instrumentation:**
   ```
   For EACH component boundary:
     - Log what data enters component
     - Log what data exits component
     - Verify environment/config propagation
     - Check state at each layer

   Run once to gather evidence showing WHERE it breaks
   THEN analyze evidence to identify failing component
   THEN investigate that specific component
   ```

   **Example (multi-layer system):**
   ```bash
   # Layer 1: Workflow
   echo "=== Secrets available in workflow: ==="
   echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"

   # Layer 2: Build script
   echo "=== Env vars in build script: ==="
   env | grep IDENTITY || echo "IDENTITY not in environment"

   # Layer 3: Signing script
   echo "=== Keychain state: ==="
   security list-keychains
   security find-identity -v

   # Layer 4: Actual signing
   codesign --sign "$IDENTITY" --verbose=4 "$APP"
   ```

   **This reveals:** Which layer fails (secrets → workflow ✓, workflow → build ✗)

5. **Trace Data Flow**

   **WHEN error is deep in call stack:**

   See `root-cause-tracing.md` in this directory for the complete backward tracing technique.

   **Quick version:**
   - Where does bad value originate?
   - What called this with bad value?
   - Keep tracing up until you find the source
   - Fix at source, not at symptom

### Phase 2: Pattern Analysis

**Find the pattern before fixing:**

1. **Find Working Examples**
   - Locate similar working code in same codebase
   - What works that's similar to what's broken?

2. **Compare Against References**
   - If implementing pattern, read reference implementation COMPLETELY
   - Don't skim - read every line
   - Understand the pattern fully before applying

3. **Identify Differences**
   - What's different between working and broken?
   - List every difference, however small
   - Don't assume "that can't matter"

4. **Understand Dependencies**
   - What other components does this need?
   - What settings, config, environment?
   - What assumptions does it make?

### Phase 3: Hypothesis and Testing

**Scientific method:**

1. **Form Single Hypothesis**
   - State clearly: "I think X is the root cause because Y"
   - Write it down
   - Be specific, not vague

2. **Test Minimally**
   - Make the SMALLEST possible change to test hypothesis
   - One variable at a time
   - Don't fix multiple things at once

3. **Verify Before Continuing**
   - Did it work? Yes → Phase 4
   - Didn't work? Form NEW hypothesis
   - DON'T add more fixes on top

4. **When You Don't Know**
   - Say "I don't understand X"
   - Don't pretend to know
   - Ask for help
   - Research more

### Phase 4: Implementation

**Fix the root cause, not the symptom:**

1. **Create Failing Test Case**
   - Simplest possible reproduction
   - Automated test if possible
   - One-off test script if no framework
   - MUST have before fixing
   - Use the `superpowers:test-driven-development` skill for writing proper failing tests

2. **Implement Single Fix**
   - Address the root cause identified
   - ONE change at a time
   - No "while I'm here" improvements
   - No bundled refactoring

3. **Verify Fix**
   - Test passes now?
   - No other tests broken?
   - Issue actually resolved?

4. **If Fix Doesn't Work**
   - STOP
   - Count: How many fixes have you tried?
   - If < 3: Return to Phase 1, re-analyze with new information
   - **If ≥ 3: STOP and question the architecture (step 5 below)**
   - DON'T attempt Fix #4 without architectural discussion

5. **If 3+ Fixes Failed: Question Architecture**

   **Pattern indicating architectural problem:**
   - Each fix reveals new shared state/coupling/problem in different place
   - Fixes require "massive refactoring" to implement
   - Each fix creates new symptoms elsewhere

   **STOP and question fundamentals:**
   - Is this pattern fundamentally sound?
   - Are we "sticking with it through sheer inertia"?
   - Should we refactor architecture vs. continue fixing symptoms?

   **Discuss with your human partner before attempting more fixes**

   This is NOT a failed hypothesis - this is a wrong architecture.

## Red Flags - STOP and Follow Process

If you catch yourself thinking:
- "Quick fix for now, investigate later"
- "Just try changing X and see if it works"
- "Add multiple changes, run tests"
- "Skip the test, I'll manually verify"
- "It's probably X, let me fix that"
- "I don't fully understand but this might work"
- "Pattern says X but I'll adapt it differently"
- "Here are the main problems: [lists fixes without investigation]"
- Proposing solutions before tracing data flow
- **"One more fix attempt" (when already tried 2+)**
- **Each fix reveals new problem in different place**

**ALL of these mean: STOP. Return to Phase 1.**

**If 3+ fixes failed:** Question the architecture (see Phase 4.5)

## your human partner's Signals You're Doing It Wrong

**Watch for these redirections:**
- "Is that not happening?" - You assumed without verifying
- "Will it show us...?" - You should have added evidence gathering
- "Stop guessing" - You're proposing fixes without understanding
- "Ultra-think this" - Question fundamentals, not just symptoms
- "We're stuck?" (frustrated) - Your approach isn't working

**When you see these:** STOP. Return to Phase 1.

## Common Rationalizations

| Excuse | Reality |
|--------|---------|
| "Issue is simple, don't need process" | Simple issues have root causes too. Process is fast for simple bugs. |
| "Emergency, no time for process" | Systematic debugging is FASTER than guess-and-check thrashing. |
| "Just try this first, then investigate" | First fix sets the pattern. Do it right from the start. |
| "I'll write test after confirming fix works" | Untested fixes don't stick. Test first proves it. |
| "Multiple fixes at once saves time" | Can't isolate what worked. Causes new bugs. |
| "Reference too long, I'll adapt the pattern" | Partial understanding guarantees bugs. Read it completely. |
| "I see the problem, let me fix it" | Seeing symptoms ≠ understanding root cause. |
| "One more fix attempt" (after 2+ failures) | 3+ failures = architectural problem. Question pattern, don't fix again. |

## Quick Reference

| Phase | Key Activities | Success Criteria |
|-------|---------------|------------------|
| **1. Root Cause** | Read errors, reproduce, check changes, gather evidence | Understand WHAT and WHY |
| **2. Pattern** | Find working examples, compare | Identify differences |
| **3. Hypothesis** | Form theory, test minimally | Confirmed or new hypothesis |
| **4. Implementation** | Create test, fix, verify | Bug resolved, tests pass |

## When Process Reveals "No Root Cause"

If systematic investigation reveals issue is truly environmental, timing-dependent, or external:

1. You've completed the process
2. Document what you investigated
3. Implement appropriate handling (retry, timeout, error message)
4. Add monitoring/logging for future investigation

**But:** 95% of "no root cause" cases are incomplete investigation.

## Supporting Techniques

These techniques are part of systematic debugging and available in this directory:

- **`root-cause-tracing.md`** - Trace bugs backward through call stack to find original trigger
- **`defense-in-depth.md`** - Add validation at multiple layers after finding root cause
- **`condition-based-waiting.md`** - Replace arbitrary timeouts with condition polling

**Related skills:**
- **superpowers:test-driven-development** - For creating failing test case (Phase 4, Step 1)
- **superpowers:verification-before-completion** - Verify fix worked before claiming success

## Real-World Impact

From debugging sessions:
- Systematic approach: 15-30 minutes to fix
- Random fixes approach: 2-3 hours of thrashing
- First-time fix rate: 95% vs 40%
- New bugs introduced: Near zero vs common

Todos los archivos

0 archivos

Instalar systematic-debugging

Descarga y descomprime los archivos de habilidades en tu directorio .claude/skills/.

Descargar ZIP

Clona el repositorio y copia los archivos de la habilidad a tu proyecto.

git clone https://github.com/obra/superpowers/tree/main/skills/systematic-debugging # Copy SKILL.md to your .claude/skills/ directory

Copiar Copiar
Configuración rápida: Copia la carpeta de la habilidad en .claude/skills/ Claude detectará y utilizará automáticamente la habilidad
Repositorio obra/superpowers

Habilidades relacionadas

algorithmic-art
Tiempo actualizado 27 de agosto de 2026
receiving-code-review
Tiempo actualizado 3 de septiembre de 2026
tech-debt-tracker
Tiempo actualizado 29 de agosto de 2026
senior-backend
Tiempo actualizado 30 de agosto de 2026
OR