Documentation

Loomkindle Docs

Everything you need to set up semantic models, configure ETL pipelines, and use agentic routing in your data stack.

Semantic Models

A Loomkindle semantic model is a YAML file that defines metrics, entities, and dimensions in a single place. Models live in your git repository under models/ and are validated on commit.

models/revenue.yml
version: 1
semantic_model:
  name: revenue
  source: orders
  metrics:
    - name: total_revenue
      type: sum
      expr: order_amount_usd

Pipeline Configuration

ETL pipelines are configured as YAML files under pipelines/. Each pipeline specifies a source connector, optional transform chain, and destination.

Read the quickstart guide for a full walkthrough →