Free · Browser-based · Zero backend

Your Salesforce
Dev Toolbox

Connect any Salesforce org once and access all tools instantly. Your credentials never leave the browser.

Connect an org to get started

All tools share a single connection. Set up CORS once and every tool works.

Nickname
Environment

First time? You'll need to add this site to your org's CORS allowlist. See the banner below ↓

Connected to
⚠️ One-time setup required per org
Run this in Anonymous Apex (Setup → Developer Console → Debug → Execute Anonymous). You only need to do this once per org — it covers all OrgKit tools.
CorsWhitelistEntry cors = new CorsWhitelistEntry();
cors.UrlPattern = 'https://orgkit.dev';
insert cors;

CspTrustedSite csp = new CspTrustedSite();
csp.EndpointUrl = 'https://orgkit.dev';
csp.EndpointName = 'OrgKit';
csp.Context = 'All';
csp.IsActive = true;
insert csp;

System.debug('Done — all OrgKit tools are now unblocked.');
Set up once, covers all tools on this domain.
LIVE
Automation Switch
Bulk enable/disable Validation Rules, Flows, Apex Triggers, and Workflow Rules before a data migration. Snapshot and revert in one click.
Validation Rules Flows Apex Triggers Workflow Rules Snapshot+Revert
Open tool → saves ~45min/migration
🗺️
LIVE
Schema Atlas
Browse any Salesforce object's fields, relationships, and metadata. Export to Excel or Lucidchart-compatible CSV for documentation.
Field metadata Relationships Excel export Lucidchart CSV
Open tool → all objects, all fields
🔍
LIVE
Profile Drift Console
Compare Salesforce profiles across orgs or within one org. Audit permission risks, spot drift between Dev, UAT, and Prod. Generate a deployable sync package.
3-org compare Permission audit Risk scoring Sync package
Open tool → catch drift before it hurts
🧩
LIVE NEW
OmniStudio Integrity
Detect native vs packaged OmniStudio components. Map cross-component dependencies — OmniScript → DataRaptor → FlexCard — and catch broken references before deployment.
OmniScript DataRaptor FlexCard Dependency graph
Open tool → catch broken deps before deploy
🔬
COMING SOON
Field Inspector
Deep-dive into any field: picklist values, dependencies, formula parsing, usage across flows and validation rules.
Picklist values Field dependencies Formula analysis
In development
🛡️
COMING SOON
Permission Analyzer
Full permission matrix across Profiles and Permission Sets. Identify over-privileged users, Modify All violations, and compliance risks.
Profile matrix Permission sets Compliance audit
In development