What problem does it solve? Reading a 1C:Enterprise managed form's Form.xml directly means scrolling through thousands of lines of XML just to understand its elements, attributes, commands, and event handlers. This Skill produces a compact structured summary of the form so you can write form modules and analyze handlers without parsing raw XML. ## Core Features & Use Cases - Form structure summary: Reads Form.xml and outputs the element tree, attributes with types, commands, and events in a compact typed view. - Flexible target selection: Accepts either a file path to Form.xml or a logical metadata address (e.g. Catalog.<Object>.Form.<Form>) combined with a source set name from v8project.yaml. - Vendor lock awareness: Shows support status of the form's owner object from Ext/ParentConfigurations.bin, helping you assess CFE/release-support paths for locked vendor objects. - Use Case: Before writing a form module for the Номенклатура catalog item form, request the form summary to see all elements, commands, and event handlers at a glance instead of opening the raw XML. ## Quick Start Ask the assistant to show the structure of the managed form at src/Catalogs/Номенклатура/Forms/ФормаЭлемента, including its elements, attributes, commands, and events.