You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[tissues:implementer] make-sure-the-readme-is-up-to-date-with-the-latest-merges-to-main: refresh README for v0.5.12 through v0.6.1 (#784)
Update changelog to cover the 12 releases since v0.5.11 (last README sync,
2026-03-25). Add three new Key Features entries — cross-dialect data parity,
automated dbt unit tests, GitLab MR review. Add Altimate LLM Gateway,
Databricks AI Gateway, Snowflake Cortex, and LM Studio to the providers list
(some were already shipping but never listed). Footnote Microsoft Fabric on
the warehouses line. Add capability-table row for cross-dialect data
validation. Add /data-parity and /dbt-unit-tests examples to Quick demo.
Enumerate the 19 built-in skills inline.
Editorial defaults applied (per questions.md): Q1=footnote (b), Q2=add row
(a), Q3=add 2 examples (b), Q4=one-line list (b), Q5=collapse pure-fix
release v0.5.13 (a), Q6=leave benchmarks as-is (a). Reviewer can flip any
of these in a follow-up commit.
No code changes. CHANGELOG.md is the source of truth — bullets are condensed
restatements of the entries there.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
| dbt integration | Basic file editing | Manifest parsing, test gen, model scaffolding, lineage |
@@ -104,6 +105,12 @@ altimate-code is a fork of [OpenCode](https://github.com/anomalyco/opencode) reb
104
105
105
106
# Get a cost report for your Snowflake account
106
107
> /cost-report
108
+
109
+
# Compare a Snowflake table to a BigQuery copy, row-by-row, without moving data
110
+
> /data-parity prod.orders (Snowflake) vs. analytics.orders (BigQuery), id key
111
+
112
+
# Generate dbt 1.8 unit tests for a model with CASE/WHEN and JOINs
113
+
> /dbt-unit-tests for models/marts/fct_revenue.sql
107
114
```
108
115
109
116
## Key Features
@@ -137,6 +144,15 @@ Built-in observability for AI interactions — trace tool calls, token usage, an
137
144
### AI Teammate Training
138
145
Teach your AI teammate project-specific patterns, naming conventions, and best practices. The training system learns from examples and applies rules automatically across sessions.
139
146
147
+
### Cross-Dialect Data Parity
148
+
Compare tables or query results row-by-row across 12 warehouses with the `/data-parity` skill or `data_diff` tool. Five algorithms — `auto`, `joindiff`, `hashdiff` (any-scale, no data egress), `profile` (column-stats only), and `cascade`. Date / numeric / categorical partitioning so 100M+ row tables diff in independent batches. Auto-discovers comparable columns and excludes audit/timestamp columns by name and catalog default.
149
+
150
+
### Automated dbt Unit Tests
151
+
Generate dbt 1.8+ unit tests from your terminal with `/dbt-unit-tests` or the `dbt_unit_test_gen` tool. Detects testable SQL constructs (CASE/WHEN, JOINs, NULLs, window functions, division, incremental models) and assembles complete YAML with type-correct mock data across 7 dialects.
152
+
153
+
### GitLab MR Review
154
+
Review merge requests directly from your terminal with `altimate gitlab review <MR_URL>`. Self-hosted GitLab instances and nested group paths supported. Comment deduplication updates an existing review instead of posting duplicates. Companion to the existing GitHub PR review flow.
155
+
140
156
## Agent Modes
141
157
142
158
Each mode has scoped permissions, tool access, and SQL write-access control.
@@ -151,19 +167,21 @@ Each mode has scoped permissions, tool access, and SQL write-access control.
Snowflake · BigQuery · Databricks · PostgreSQL · Redshift · ClickHouse · DuckDB · MySQL · SQL Server (incl. Microsoft Fabric) · Oracle · SQLite · MongoDB
155
171
156
172
First-class support with schema indexing, query execution, and metadata introspection. SSH tunneling available for secure connections.
157
173
158
174
## Works with Any LLM
159
175
160
176
Model-agnostic — bring your own provider or run locally.
161
177
162
-
Anthropic · OpenAI · Google Gemini · Google Vertex AI · Amazon Bedrock · Azure OpenAI · Mistral · Groq · DeepInfra · Cerebras · Cohere · Together AI · Perplexity · xAI · OpenRouter · Ollama · GitHub Copilot
178
+
Altimate LLM Gateway · Anthropic · OpenAI · Google Gemini · Google Vertex AI · Amazon Bedrock · Azure OpenAI · Databricks AI Gateway · Snowflake Cortex · Mistral · Groq · DeepInfra · Cerebras · Cohere · Together AI · Perplexity · xAI · OpenRouter · LM Studio · Ollama · GitHub Copilot
163
179
164
180
## Skills
165
181
166
-
altimate ships with built-in skills for every common data engineering task — type `/` in the TUI to browse available skills and get autocomplete. No memorization required.
182
+
altimate ships with 19 built-in skills — type `/` in the TUI to browse and get autocomplete. No memorization required.
0 commit comments