Data OS
One engineer-native workspace to ingest, transform and deliver data.
It replaces a fragmented stack of integration middleware, reporting tools and one-off scripts with notebooks where SQL, Python, JavaScript and HTML cells share a single embedded analytical engine. Build in VS Code, then run the same notebook headless from a CLI or behind an HTTP endpoint.
CREATE TABLE sales AS SELECT region, SUM(amount) AS revenue FROM dataverse.opportunities WHERE statecode = 'Won' GROUP BY region;
df = data.get("sales")
df["share"] = df.revenue / df.revenue.sum()
data.put("sales_share", df)Ran 4 cells · zero-copy Parquet hand-off · chart and report rendered inline
Data work is scattered across too many tools
Integration lives in one product, transformation in another, reporting in a third, and the glue between them is scripts nobody owns. Every handoff adds licence cost, latency and a new place for things to break.
- 01
Connect
Pull from Dynamics 365 / Dataverse, SharePoint, OneDrive, Google Drive, Amazon S3, SQL Server, HTTP APIs or local files.
- 02
Transform
Mix SQL, Python and JavaScript cells in one document. Cells exchange data through an embedded DuckDB engine with zero-copy Parquet, so nothing is round-tripped through JSON.
- 03
Deliver
Write to files, databases or APIs, render Vega-Lite charts and reports, or serve the whole notebook as a live HTTP endpoint.
What you get
Polyglot notebooks
SQL, Python, JavaScript and HTML cells side by side in a single, versionable YAML document.
Embedded analytical engine
DuckDB in-process as the shared data layer, so there's no database server to stand up.
Automatic schema flattening
Nested JSON is split into relational tables linked by parent/child keys, ready to query immediately.
Headless runner
Run notebooks from the command line or CI, or expose them over an HTTP trigger server.
Open add-on SDK
One connector contract that runs unchanged in both the editor and the headless runner.
No account, no lock-in
Everything runs on your machine under the AGPL-3.0 licence. Commercial licensing is available.