What problem does it solve? Creating Salesforce Flow metadata by hand is error-prone and requires deep knowledge of Flow XML structure. This Skill generates valid Flow metadata for Screen, Autolaunched, Record-Triggered, and Scheduled Flows by orchestrating a strict three-step MCP pipeline, eliminating manual XML authoring. ## Core Features & Use Cases - Guided Flow Generation: Runs the mandatory fetchGroundedObjectMetadata → flowElementSelection → flowElementGeneration pipeline via the execute_metadata_action MCP tool to produce valid Flow XML. - Custom Object Grounding: Scans the local sfdx project and passes relevant custom objects and fields as structured inflightMetadata so generated Flows reference real schema. - Multi-Flow Handling: Splits multi-flow requests into separate sequential pipelines, one focused userPrompt per flow. - Use Case: A user asks to create a Record-Triggered Flow that updates a custom object's status when assigned. The Skill extracts the custom object metadata from the sfdx project, runs the three pipeline steps, loops the generation step until complete, and returns the final Flow XML. ## Quick Start Ask the assistant to create a Record-Triggered Flow on your custom object that updates a field when a record is created, and the Skill will run the pipeline and return the Flow XML.