A wrench set for data engineering LLMs that can't read your warehouse
altimate-code gives deterministic SQL analysis, lineage, and warehouse tools to any AI agent so it stops hallucinating schema.

What it does
altimate-code is a TypeScript CLI that wraps 100+ deterministic tools around SQL, dbt, and cloud warehouses. Install it globally via npm or curl, point it at your LLM provider, and it becomes a specialized data engineering layer you can run standalone or slide underneath Claude Code / Codex. It auto-discovers your stack — dbt projects, warehouse connections from profiles.yml, installed tools — then exposes skills like SQL translation, column-level lineage, FinOps cost analysis, and cross-warehouse data diffing through a TUI or headless commands.
The interesting bit
The whole pitch is anti-LLM-hallucination. Every core feature — 19 SQL anti-pattern rules, column-level lineage, PII detection — is deterministic parsing and tracing, not prompt engineering. The README benchmarks claim 100% F1 on 1,077 anti-pattern queries and 100% edge-match on 500 lineage queries, which is either impressively rigorous or impressively specific about the test set. It also runs read-only “Analyst” mode against production by default, which is the rare safety default that doesn’t require reading the manual first.
Key highlights
- Deterministic SQL engine: 19 anti-pattern rules with confidence scores, cross-dialect translation across 8+ warehouses, no LLM pattern-matching involved.
- Column-level lineage: Automatic extraction from SQL across dialects; integrates with dbt manifests for project-wide tracing.
- dbt-native tooling: Manifest parsing, test generation, model scaffolding, medallion patterns, and dbt 1.8+ unit test generation with mock data.
- FinOps & cost analysis: Credit consumption, expensive query detection, warehouse right-sizing — though the README doesn’t quantify savings.
- Cross-warehouse data parity: Row-by-row diff across 12 warehouses with 5 algorithms including hashdiff that avoids data egress.
- Agent modes with scoped permissions: Builder (read/write, but
DROP DATABASEhard-blocked), Analyst (SELECT-only), Plan (read files only). - Model-agnostic: 22+ LLM providers including local Ollama; one-command setup for Claude Code and Codex integration.
Caveats
- The standalone curl binary doesn’t support Alpine Linux (musl) or Windows ARM64 — need
gcompator WSL respectively. - Benchmark claims are self-reported with methodology linked but not independently verified in the README.
- README is truncated mid-changelog; latest version details are incomplete.
Verdict
Worth a look if you’re running AI-assisted data engineering and tired of LLMs inventing column names. Probably overkill if you’re not already in the dbt/Snowflake/BigQuery ecosystem. The “100+ tools” claim is plausible given the skill list, but expect to spend time in the TUI learning which / commands map to your actual workflow.