tauri-errors-runtime
Installation
SKILL.md
tauri-errors-runtime
Quick Diagnosis
When a Tauri 2 app crashes or behaves unexpectedly at runtime, identify the error category:
Runtime Error Categories:
1. State panics --> Type mismatch, unmanaged state
2. IPC errors --> Command not found, permission denied, argument mismatch
3. Window errors --> Window/webview not found, already destroyed
4. Plugin errors --> Plugin not initialized, missing permissions
5. Event errors --> Invalid event name, listener leaks
6. Asset errors --> File not found, protocol not configured
7. Panic/crash --> Unhandled panic, thread panic
ALWAYS check the terminal/console output -- Tauri prints panics and errors to stderr.