What problem does it solve? When working with 1C:Enterprise configurations, developers need a quick overview of what a configuration contains — its properties, object composition, and support status — without manually parsing large XML dump files. This Skill reads Configuration.xml and returns typed, structured data instead of raw text reports. ## Core Features & Use Cases - Configuration identity and properties: Returns name, synonym, version, vendor, compatibility mode, launch mode, and other root properties from the dump. - Object composition counters: Provides per-kind object counts via childObjects plus a totalObjects total, so you can see how many catalogs, documents, or registers exist. - Support status inspection: Reads Ext/ParentConfigurations.bin to report whether the configuration is supported, an extension, or removed from support, with locked/editable/removed object counters — a risk signal before mutating operations. - Use Case: Before modifying a configuration, call the tool with the dump directory to check data.support.state and confirm how many objects are locked, then review childObjects to understand the configuration's composition. ## Quick Start Ask the assistant to show the structure and support status of the 1C configuration located in the src dump directory.