Install
openclaw skills install data-modelDeep data modeling workflow—grain, facts and dimensions, keys, slowly changing dimensions, normalization trade-offs, and analytics query patterns. Use when designing warehouse/analytics models or reviewing star/snowflake schemas.
openclaw skills install data-modelAnalytics models succeed when grain is explicit, keys are stable, and slowly changing dimensions are chosen deliberately—not “star schema by default.”
Trigger conditions:
Initial offer:
Use six stages: (1) business questions & grain, (2) conformed dimensions, (3) facts & measures, (4) dimensions & SCD types, (5) keys & integrity, (6) performance & evolution). Confirm tooling (dbt, dimensional DW, BigQuery, etc.).
Goal: Grain = the atomic row: e.g., “one line item per order per day” not “sort of per order.”
Exit condition: One sentence grain per fact table.
Goal: Same customer/product definitions across facts—shared dimension tables or SCD policy aligned.
Goal: Additive vs semi-additive vs non-additive measures documented (balances, distinct counts).
Goal: SCD1 overwrite vs SCD2 history with valid_from/valid_to vs SCD3 limited history—match compliance and reporting needs.
Goal: Surrogate keys in facts; natural keys preserved as attributes; referential integrity strategy in the warehouse layer.
Goal: Partition and cluster keys for large facts; late-arriving facts policy; version dims when schema evolves.