add claude skills

This commit is contained in:
@gabriel.pereira
2026-03-26 16:29:53 -03:00
parent 11d3cc66d5
commit 5c4e6075e1
11 changed files with 716 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
-- Dimension model: deduplicated entity list from staging or transform.
-- Provide one row per unique entity (customer, product, employee, etc.)
select distinct
<natural_key> as <entity>_key,
<descriptive_field_1> as <readable_field_1>,
<descriptive_field_2> as <readable_field_2>
from {{ ref('<stg_or_trf_model>') }}
where <natural_key> is not null