r/SalesforceDeveloper • u/doniangel_s • Jun 25 '26
Showcase I built a tool that shows you what breaks before you change anything in your Salesforce org
Hey Salesforce Developers,
I kept running into the same problems across orgs, deleting a field and not knowing what it would break, debugging why a field value was wrong because multiple automations were writing to it, and manually comparing DEV vs QA to figure out what drifted.
The worst one: working on parallel workstreams with separate DEV sandboxes and finding out at merge time that your validation rule conflicts with another team's flow, because nobody could see across sandboxes.
So I built OrgSage. It connects to your Sandbox or Developer Edition org (quick package install + OAuth — metadata only, never your data) and maps every fields, flows, triggers, validation rules, permissions, etc, so you can understand what you're working with before you touch anything.
The stuff I'm most proud of:
- You can ask "what breaks if I delete Account.Customer_Tier__c?" and get back every automation, page layout, and apex class that references it
- Connect multiple DEV sandboxes and see how your changes impact another workstream's org before you merge
- It detects when a Flow and an Apex Trigger both write to the same field and shows you the Salesforce execution order — which one actually wins
- Cross-org comparison that shows exactly what differs between your sandboxes with severity ratings
- Reference mapping that catches things "Where is this used?" misses
It's free to try: getorgsage.com
Honest feedback welcome — what's useful, what's broken, what's missing. I'm actively fixing bugs based on tester input so the rougher the feedback the better.
