StrataBI overview

StrataBI is an owned business-intelligence runtime for technical analytics teams. You describe a dashboard as a small JSON document; the runtime owns everything else — query execution, dependency ordering, async status, artifact loading, and module resolution. It runs entirely inside your own AWS account.

The core is deliberately small and explicit, which keeps the dashboard contract stable enough to generate against — by hand, or with an AI agent.

How it fits together

A dashboard is a list of tiles. Each tile declares three things: where it sits (layout), how it gets data (execution), and how it renders (a block).

text
dashboard.json ──> tiles ──> exec (Athena | cache | Lambda) ──> block (Plotly | table | ...)
                                     │
                                     └─> async results land in S3 as artifacts

Who it's for

Note
StrataBI assumes a technical operator. You bring an AWS account, an Athena/Glue catalog, and data in S3; StrataBI brings the runtime, the dashboard contract, and the deployment module.

Where to go next