What problem does it solve? Data pipeline conventions around ClickHouse ReplacingMergeTree engines, unique_key formulas, and read-time deduplication drift silently as connectors and silver models evolve, causing duplicate rows and inflated metrics. This Skill systematically audits the dbt codebase against the documented architecture rules and reports every deviation with file paths and line numbers. ## Core Features & Use Cases - Eight-rule convention audit: Verifies engine=ReplacingMergeTree, order_by=['unique_key'], silver delete+insert strategy, unique_key formula prefixes, bronze-to-RMT promotion, Airbyte append-only sync mode, ephemeral wrapping, incremental-by-default materialization, and read-time dedup of every RMT read. - Actionable violation reports: Outputs per-check PASS/FAIL status with exact file paths, line numbers, offending text, and minimal fix suggestions. - Use Case: Before merging a new connector PR, run the audit to confirm the connector projects a unique_key, has a bronze_promoted bootstrap model, uses append sync mode, and deduplicates all RMT reads via FINAL, QUALIFY, or the union_by_tag macro. ## Quick Start Run the dbt conventions audit on the ingestion codebase and report any violations with file paths and suggested fixes.