What problem does it solve? Authoring or editing Salesforce metadata XML files (like .object-meta.xml or .flow-meta.xml) requires knowing exact field names, types, required values, and namespace rules, and looking these up manually across Salesforce documentation is slow and error-prone. ## Core Features & Use Cases - Metadata Type Reference: Access field definitions, descriptions, WSDL schema segments, and sample XML for all 604 Metadata API types (CustomObject, Flow, Profile, PermissionSet, and more). - Token-Optimized Loading: Extract only the JSON sections you need (fields, description, examples) using jq, Python, or Node.js, reducing token consumption by 60-80% per file. - XML Generation Guidance: Enforces correct namespace, root elements, required fields, file naming conventions, and Salesforce DX directory structure for deployable metadata. - Use Case: When asked to create a Flow metadata file, load only the 'fields' section from Flow.json, check required fields, and generate a valid .flow-meta.xml ready for sf project deploy validate. ## Quick Start Ask the AI to show only the 'fields' section from CustomObject.json so you can author a new custom object metadata file.