Stood Flows Documentation Index

Stood Flows — User Documentation

Stood Flows is a desktop application that reads a Salesforce org and turns it into an actionable, end-to-end picture: what the org does (business processes, record types, automation), what it costs (licences, profile budgets, user activity), and how it talks to the outside world (inbound APIs, outbound callouts, Apex dependencies).

The methodology is deliberately layered. You start from the backbone of the org — the standard CRM objects and their record types — and progressively zoom in on volumes, complexity, code, licensing, and integrations. Each zoom level produces artefacts you can save, share, anchor issues against, and bring forward to the next refresh.

This documentation is for users who are comfortable with Salesforce concepts (objects, profiles, record types, Apex, named credentials) but may not have used everything Stood Flows surfaces — Event Log Files, External Data Sources, Apex dependency walks, etc. Those are explained where they appear.

Getting set up

Methodology & core views

Deep-dive analyses

Settings, sharing & security

Where things live on disk

Everything Stood Flows reads or writes is under ~/StoodFlows/:

~/StoodFlows/
├── config.json # app-global config (defaultOrg, offline flag, …)
├── workspaces/
│ └── <org-alias>/ # one folder per Salesforce org you connect
│ ├── license.key # optional licence key for refresh
│ └── graphs/
│ └── <graph-slug>/ # one graph per analysis project
│ ├── graph.json # graph config (enabled objects, tags, integrations)
│ ├── versions/ # versioned metadata snapshots
│ ├── apex/ # mirrored .cls / .trigger bodies
│ ├── apex-panel.json # extracted Apex analysis (RT/DML/SOQL)
│ ├── apex-packages/ # "Generate schema artefacts" output
│ ├── elf-aggregates/ # I/O + DML aggregates (JSON)
│ ├── flows-raw/ # record-triggered flow XML by object
│ ├── sfschema/ # per-object schema dumps
│ ├── usage-actors.json # backbone actors per (object, RT)
│ └── issues.csv # local issue tracker (when GitHub isn't used)

Nothing is uploaded anywhere. The app reads your org through the sf CLI and writes everything to that local folder.

Published with Nuclino