What problem does it solve?
Raw Simplicité log files are verbose, multi-line, and too large to load into an AI context window for troubleshooting. This Skill converts them into compact, structured JSON containing only the fields you need, reducing token usage by roughly 56%.
Core Features & Use Cases
- Log Parsing: Converts raw Simplicité
.txt logs into structured JSON with fields like timestamp, level, and body.
- Field Filtering: Include or exclude specific fields (e.g. keep only
timestamp,level,body) to discard noise such as app, endpoint, or contextPath.
- Multi-line Support: Captures stack traces and multi-line error messages inside the
body field that simple text searches would miss.
- Use Case: A user shares a 10MB Simplicité error log. Run the Python script to produce a minified JSON with only the essential fields, then read that JSON to diagnose the issue without exhausting the context window.
Quick Start
Ask the AI to convert your Simplicité log file to JSON using the included Python script with only the timestamp, level, and body fields, then analyze the resulting output file.