Docs

Get started in three commands.

Skemia runs as a local Studio, a CLI, and an MCP server over the same map. Here is the fast path. Full reference lives on the documentation site.

1. Run the Studio

The fastest way in. Download the binary, run it, and open the local URL.

terminal
# start the local Studio
./skemia-macos-arm64 serve
▸ http://localhost:4999

2. Scan a project

Point it at any Salesforce DX repo. The analysis is source-only and writes a map you can query.

terminal
skemia scan --project . --out skemia-output

3. Ask the map questions

Query the built map directly instead of reading files. Same engine powers the CLI, the MCP server, and the SQL console.

terminal
# what breaks if I change this
skemia query impact --out skemia-output --component QuoteService

# who writes a field, who reads it
skemia query writers --out skemia-output --field Quote__c.Approval_Status__c