# Portabilität: UNIVERSAL
# Version: 1.0.1
# Zuletzt validiert: 2026-05-17
# Nächste Prüfung: 2026-08-17

BUGFIX PROTOKOLL - SCHNELLREFERENZ
===================================

Bei Fehlern IMMER diese Reihenfolge:

1. STANDARD-FIXER ZUERST
   python system/tools/c_standard_fixer.py <datei>
   Behebt: BOM, Encoding, Umlaute, JSON-Probleme
   -> Problem geloest? Arbeit gespart!

2. IMPORT-DIAGNOSE
   python system/tools/c_import_diagnose.py <ordner>
   Prüft: Circular Imports, fehlende Module

3. CODE-ANALYSE
   python system/tools/c_method_analyzer.py <datei>
   Prüft: Attribut vor Definition, Signal-Callbacks

4. ISOLIERTES TESTEN
   Minimales Test-Script erstellen
   Schrittweise eingrenzen

5. 20-MINUTEN-REGEL
   Nach 20 Min ohne Fortschritt: STOP
   Bug-Report erstellen, später fortsetzen

SCHNELL-CHECK:

| Fehlertyp           | Erste Aktion              |
|---------------------|---------------------------|
| Import-Fehler       | c_import_diagnose.py      |
| AttributeError      | c_method_analyzer.py      |
| Silent Crash        | c_method_analyzer.py      |
| Encoding/BOM        | c_standard_fixer.py       |

HINWEIS: Diese Datei dokumentiert standalone Tools, keinen Handler.
         Detaillierte Bugfix-Workflows: skills/workflows/bugfix-protokoll.md
