What problem does it solve? 1C spreadsheet layouts (MXL templates) are stored as Template.xml files that can span thousands of lines, making it impractical to read them manually before writing fill code. This Skill parses the XML and outputs a compact structural summary so you can understand the layout without opening the raw file. ## Core Features & Use Cases - Area and Parameter Extraction: Lists named areas (Rows, Columns, Rectangle, Drawing) sorted top to bottom with their parameters, detailParameter drill-downs, and template parameters marked with a [tpl] suffix. - Column Set and Intersection Detection: Reports multiple column sets per area and generates intersection pairs (e.g. LabelHeight|LabelWidth) for use with GetArea in BSL code. - Flexible Output and Pagination: Supports text or JSON output, optional static text content via -WithText, and line-limit/offset pagination for overflow protection. - Use Case: Before writing BSL fill code for a print form, run the script on the template to get the exact area names, row ranges, and parameter lists, then write output code following the area order top to bottom. ## Quick Start Ask the assistant to analyze the structure of a 1C print form template by running the mxl-info script against its Template.xml path.