What problem does it solve? Debugging application errors and investigating slow requests often requires digging through unstructured logs. This Skill reads structured wide-event logs written by evlog's file system drain and turns them into actionable answers about errors, performance, and request behavior. ## Core Features & Use Cases - Error Investigation: Filter events by level or status code, then read error.message, error.data.why, and error.data.fix to explain failures and suggest remediation. - Performance Analysis: Filter and sort on durationMs to find slow endpoints, degrading performance, and time-of-day patterns. - Request Tracing & Patterns: Trace a single request by requestId, compute error rates per endpoint, and compare client-side versus server-side errors. - Use Case: A user reports intermittent 500 errors on the checkout endpoint. The Skill reads the latest .jsonl log file, filters error events for /api/checkout, groups them by error.message, and surfaces the root cause with the suggested fix. ## Quick Start Analyze the logs in .evlog/logs and tell me why the recent requests to /api/checkout are failing.