Skip to content

What Glade runs locally

Capabilities

Use this page to see what Glade runs locally, what runs with named limits, and what still requires Salesforce or a plugin.

  • Start with the status legend.
  • Check what requires Salesforce before an adoption review.
  • Use the checked Apex/runtime reports for method-level detail.

Start here when deciding whether Glade can run a project, a test class, or a local Salesforce API flow. Checked Apex/runtime reports carry the method-level detail. The LWC summary below links to the local shell guide and support table when you need route and module detail.

Before you adopt Glade

  • Your local loop uses supported Apex parse, check, test, SOQL, DML, trigger, and SObject paths.
  • Your test suite can mock callouts and live side effects.
  • Your project can tolerate explicit unsupported diagnostics for Salesforce-hosted services.
  • You will keep a Salesforce validation gate for features Glade does not model.
  • You will use first-party plugins for capability reports and advisory scans instead of expecting those scanners in base glade --help.

Status key

Runs locally
Runs with limits
Requires Salesforce
Not measured

Runs locally

These areas are the main local development contract.

AreaWhat to expect
Apex parsing and project indexingLarge SFDX projects, nested types, namespace tokens, and stable parse diagnostics.
Project configuration and package contractsglade.yml and SFDX discovery cover package dirs, default namespace, namespace remaps, source-backed managed package dependencies, captured package artifacts, package shims, org features, storage, and local limits.
Semantic checksType references, inheritance, interfaces, overloads, locals, assignments, return paths, and token ranges for the supported VM subset.
Local Apex tests@isTest, @TestSetup, isolated org state, static reset, governor windows, async drain, stack frames, JSON, and JUnit output.
SOQL, DML, triggers, and SObjectsStatic and dynamic SOQL, DML statements, Database.* result objects, trigger context, schema-backed SObjects, and local SQLite-backed storage.
Local API serverSalesforce-style REST discovery, SObject CRUD, query/queryAll, limits and record counts, userinfo stubs, Tooling executeAnonymous, local Tooling source/schema metadata queries, Composite sObject insert, Composite Batch, Tree, and Graph local requests, Bulk API v2 simple query jobs, layout/default-value metadata, metadata job status, reset endpoints, and optional SQLite persistence.
Editor and debug toolsLSP diagnostics, symbols, hover, completion, rename, semantic tokens, DAP stepping, watch mode, and trace/profile reports.

Runs with limits

These areas cover useful local test paths. They are not exact Salesforce service behavior.

AreaCurrent limit
Core standard libraryCommon System, String, date/time, math, assertions, labels, URLs, user info, and collection paths are covered. Method-level details live in the standard-library report.
Schema and describe APIsLocal describe supports checked object, field, record type, child relationship, data category metadata, and generated standard-object metadata. Hosted full-org metadata services remain outside the local model.
JSON, regex, encoding, and cryptoSerialization, parsing, regex, base64, hex, URL encoding, and digest rows are supported for the checked local contract.
HTTP, SOAP, and callout mocksRequest and response mock paths work for tests. Glade does not perform live outbound service calls.
MessagingLocal message and result objects, template rendering, attachment retrieval, send options, and invocation counts are covered. Glade does not deliver email, push, or other live messages.
Visualforce controller and page renderingPreview feature. PageReference, messages, current page, controller helpers, local /apex/<PageName> routes, common standard components, page lifecycle paths, signed view state with CSRF checks, transient field omission, static resources, uploads, remoting envelopes, Lightning Out/LWC dependency diagnostics, AJAX refresh paths, and local PDF fallback output are modeled for local development. Salesforce chrome, every component edge, exact lifecycle timing, Apex PageReference.getContent* output, and byte-for-byte PDF output remain outside the local contract.
Local LWC workbench and routesPreview feature. / and /lwc open the workbench, /lwc/builder opens the page composer, and preview routes cover components, record/app/home pages, tabs, actions, utility bars, Flow screens/actions, configured community pages, and direct community components.
Local LWC data and servicesPreview feature with local-data limits. Apex wire, selected LDS/UI API shims, local record mutations, schema/label/resource/user/community modules, navigation, LMS, toast/resource loading, lightning/refresh, Flow events, console and utility local models, practical base-component shims, and packaged SLDS 2 and classic SLDS assets run through local models. See Local LWC Shell and docs/LWC_SUPPORT.md.
Visualforce Lightning Out for LWCsPreview feature with limits. Visualforce-backed tab redirects and /apex/<PageName> Lightning Out hosts use the shared local LWC runtime. Hosted Lightning Out lifecycle timing and exact Salesforce chrome remain Salesforce checks.
Search and SOSL helpersLocal deterministic Search and SOSL rows are supported. Hosted ranking, analyzers, synonyms, and external indexes are not modeled.
Test helpersTracked Test.* local helper rows are supported. Hosted service accounting, packaged-resource expansion, and live External Service execution remain explicit gaps.
Local test harness and request contextRequest/UIRequest context, install/uninstall hooks, sandbox post-copy helpers, scheduled Apex, QuickAction DTOs, BusinessHours calendars and holidays, seeded approval routing, and TrailblazerIdentity helper calls have deterministic local models. Live hosted engines are not contacted.

Requires Salesforce

Check this list before relying on Glade for a project.

AreaWhy it is outside the current local contract
Live Salesforce auth and sessionsThe local server exposes local stubs. It does not implement real Salesforce OAuth, session validation, or org identity services.
Live service APIsAnswers zone search, password reset output, live identity/admin mutation, and hosted process/service engines require Salesforce-hosted data or execution.
Exact hosted Visualforce behaviorGlade serves local Visualforce pages for development. It does not promise Salesforce-hosted chrome, every component edge, exact lifecycle timing, Apex PageReference.getContent* output, every remoting/browser behavior, or byte-for-byte PDF output.
Exact hosted Lightning Experience behaviorThe local LWC shell does not promise Salesforce-hosted app chrome, hosted permission assignment, full UI API and GraphQL semantics, every lightning-* base component edge, exact SLDS fidelity, Flow Builder behavior, live EMP streaming, hosted utility chrome, or every Lightning Out edge. Console workspace APIs and utility-bar APIs have local models for development; exact hosted console behavior remains a Salesforce check. The package-exposed base-component module surface resolves locally with practical shims, including common button/card/layout/formatted-number contracts, with a small source-backed allowlist for simple base components.
REST and Tooling APIs outside the local baselineThe local API server covers the checked local baseline, including Composite Batch, Tree, and Composite Graph local requests over supported subrequests, Bulk API v2 simple query jobs, layout/default-value metadata, metadata job status, and local Tooling responses. Bulk API locator paging, Streaming/PubSub, GraphQL, live metadata deploy/retrieve, live auth, and live org-only Tooling APIs remain outside the local contract.
Live outbound side effectsReal callouts, delivered email, push notifications, and external service mutations are not performed. Tests should use local mocks and result objects.
Exact Salesforce governor accountingGlade tracks deterministic local limits. Salesforce's full production accounting and every platform-specific counter are not complete.

Example diagnostic:

text
UnsupportedFeature: unsupported call "Answers.findSimilar local Answers zone search surface"

Area details

AreaStatusNotes
Apex front endRuns locallyParser, project loader, symbols, semantic checks, LSP, and diagnostics form the starting point.
Runtime and testsRuns locallyVM execution, local tests, SObjects, SOQL, DML, triggers, async drain, and local storage are the core contract.
Local Salesforce APIRuns locallyUseful for local REST, SObject CRUD/query, record count, Tooling executeAnonymous, and local source/schema metadata flows. It is not a hosted-org replacement.
Standard libraryRuns locallyThe checked standard-library report has 267 supported rows, 19 unsupported hosted-boundary rows, and 0 partial rows.
Platform service APIsRuns locallyDeterministic DTO and harness rows are modeled when the capability report says supported. Hosted service execution stays explicitly unsupported.

Standard library families

Counts come from the checked standard library capability report in this repository state.

FamilyStatusRows
DatabaseRuns locally37 supported / 37 tracked
Date, Datetime, Time, TimeZoneRuns locally26 supported / 26 tracked
String, Decimal, Boolean, MathRuns locally32 supported / 32 tracked
System, Assert, LimitsSupported local rows, hosted gaps17 supported, 3 unsupported / 20 tracked
Schema and SObjectSupported local rows, hosted gaps7 supported, 1 unsupported / 8 tracked
Test helpersSupported local rows, hosted gaps28 supported, 3 unsupported / 31 tracked
JSON, Pattern, EncodingUtil, CryptoRuns locally17 supported / 17 tracked
ApexPages and PageReferenceSupported controller rows, hosted rendering gaps15 supported, 2 unsupported / 17 tracked
HTTP and WebServiceCalloutSupported mock rows, live transport gaps6 supported, 2 unsupported / 8 tracked
MessagingSupported local rows, hosted delivery gaps6 supported, 2 unsupported / 8 tracked
Search and SOSL helpersSupported local rows, hosted ranking gap11 supported, 1 unsupported / 12 tracked
UserInfo, URL, Label, and TrailblazerIdentityBroad local capability24 supported / 24 tracked
Type, FeatureManagement, and ExceptionSupported local rows, hosted package gap8 supported, 1 unsupported / 9 tracked
Local test harness and request contextSupported local rows, hosted and malformed-input gaps32 supported, 2 unsupported / 34 tracked
Hosted-service and platform boundary rowsRequires Salesforce, plus stable diagnostics1 supported diagnostic row, 2 unsupported / 3 tracked

The local test harness and request-context group includes Approval list processing, BusinessHours, QuickAction, Request, UIRequest, Sandbox, Schedulable, and AccessLevel rows. The hosted-service boundary group includes Answers and ResetPasswordResult rows plus the stable UnsupportedFeature diagnostic row.

Capability claims

The checked capability status and standard-library report now show no partial rows. Every remaining hosted-only behavior is split into an explicit unsupported row.

MeasureRows
Capability features marked supported31
Capability features marked partial0
Capability features marked unsupported2
Standard-library rows marked supported267
Standard-library rows marked partial0
Standard-library rows marked unsupported19

Drill down

Use this page first, then open the method-level report when you need the checked row.

One rule keeps the marks honest. Do not call an API supported until the row has implementation and compatibility evidence.

Glade is local-first Apex tooling.