What problem does it solve? Salesforce ended support for Process Builder on 31 December 2025, yet many orgs still run active processes that conflict with flows, write the same fields in undefined order, and cannot be safely edited. This Skill guides the inventory, analysis, conversion, and cutover of those processes into record-triggered Flows without loading tens of thousands of tokens of process XML into context. ## Core Features & Use Cases - Inventory and planning: Query FlowDefinitionView to find every active process, then run the vf-process-to-flow.js plan command to get a per-criteria-node work list without reading the raw XML. - Mechanical conversion: Convert qualifying criteria nodes into before-save flows with $Record assignments, while blocked nodes (prior-value references, cross-object formulas, guarded chains) are reported with reasons instead of guessed. - Semantics-safe cutover: Preserve start-of-process value semantics and reevaluation behavior, map scheduled actions to scheduledPaths, and cut over in two deploys so the org never runs both automations or none. - Use Case: An audit finds an active Case triage process fighting a flow over the Priority field. Use this Skill to plan the migration, convert the field-stamping criteria to a before-save flow, rebuild the email alert as an after-save action, and deactivate the process in a second deploy. ## Quick Start Ask the assistant to migrate the active Process Builder process on Case to a record-triggered Flow, starting with an inventory and a conversion plan.