What problem does it solve? Existing 1C spreadsheet layouts (MXL/Template.xml) are verbose XML files that are hard to read, analyze, or modify directly. This Skill converts them into a compact, human-readable JSON definition so you can inspect, edit, and regenerate print layouts programmatically. ## Core Features & Use Cases - XML to JSON DSL Conversion: Parses Template.xml and produces a structured JSON with columns, fonts, styles, areas, rows, and cells. - Automatic Naming: Generates meaningful font names (default, bold, header, small) and style names (bordered, bordered-center, bold-right) from format properties. - Smart Compression: Detects rowStyle patterns, compresses consecutive empty rows, merges column width ranges, and removes unused styles. - Use Case: You receive an existing print form layout from a 1C configuration. Decompile it to JSON, adjust areas or styles, then recompile with 1c-mxl-compile and verify with 1c-mxl-validate. ## Quick Start Ask the assistant to decompile the Template.xml of a 1C spreadsheet layout into JSON, providing the path to the template file.