altimate-code 0.8.6 → 0.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.8.7] - 2026-06-10
9
+
10
+ ### Added
11
+
12
+ - **Verified query optimization — `altimate_core_rewrite` now proves a rewrite is safe before suggesting it.** A new `verify_equivalence` mode composes the rewrite engine with the equivalence checker: a candidate rewrite is labeled **VERIFIED** only when the engine affirmatively returns `equivalent === true`; everything else (including the no-schema case) is still returned but labeled "review before applying." This is the gated core for one-click verified query optimization, so an optimization that silently changes results is never presented as safe. (#918)
13
+ - **Per-turn tool retrieval trims the tool-definition context flood.** Three flag-gated, default-off agent-loop reliability features: a per-turn tool subset (always-on core tools + lexical top-k, never dropping a tool referenced mid-trajectory) that cuts the ~78-tool definition payload sent each turn; grammar/JSON-Schema constrained decoding for local models (vLLM/LM Studio/llama.cpp); and a pluggable pre-execution critic gate for side-effecting tools. All default off, so the existing agent path is unchanged unless explicitly enabled. (#858)
14
+
15
+ ### Changed
16
+
17
+ - **Upgraded the SQL engine `@altimateai/altimate-core` `0.4.0` → `0.5.1` and wired its new equivalence capabilities into the dbt PR reviewer.** The reviewer now forwards the project's SQL **dialect** hint to the equivalence engine, so dialect-specific compiled warehouse SQL (e.g. Snowflake semi-structured `col:field`) parses and the comparison is decided instead of abstaining on a syntax error, and it honors the engine's new authoritative **`decidable`** flag — abstaining when the engine itself says it could not decide, rather than guessing. An empty/auto-detect dialect is coerced to "no hint" so the engine is never handed an unknown dialect. (#925, #928)
18
+
19
+ ### Fixed
20
+
21
+ - **The dbt PR reviewer is more reliable and less noisy.** Demo-parity hardening: tighter PII-review precision, reduced safe-refactor review noise, schema YAML catalog rules now run in review, and added DuckDB data-diff end-to-end coverage. (#919)
22
+ - **dbt review no longer misclassifies YAML files.** Schema/property YAML files are classified correctly so the right rules apply to them. (#920)
23
+ - **The `release-v0.8.5` adversarial test gate is pinned to a constant version** so it stops breaking on every subsequent release. (#923)
24
+
25
+ ### Internal
26
+
27
+ - **Centralized code-review dispatch on PR ready.** A gated loop dispatches a centralized OCR/Gemini review when a pull request is marked ready for review. (#914)
28
+
8
29
  ## [0.8.6] - 2026-06-08
9
30
 
10
31
  ### Added
package/package.json CHANGED
@@ -14,20 +14,20 @@
14
14
  "scripts": {
15
15
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
16
16
  },
17
- "version": "0.8.6",
17
+ "version": "0.8.7",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@altimateai/altimate-core": "0.4.0"
20
+ "@altimateai/altimate-core": "0.5.1"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@altimateai/altimate-code-linux-arm64": "0.8.6",
24
- "@altimateai/altimate-code-darwin-arm64": "0.8.6",
25
- "@altimateai/altimate-code-linux-x64-baseline": "0.8.6",
26
- "@altimateai/altimate-code-darwin-x64-baseline": "0.8.6",
27
- "@altimateai/altimate-code-windows-x64-baseline": "0.8.6",
28
- "@altimateai/altimate-code-darwin-x64": "0.8.6",
29
- "@altimateai/altimate-code-windows-x64": "0.8.6",
30
- "@altimateai/altimate-code-linux-x64": "0.8.6"
23
+ "@altimateai/altimate-code-linux-x64-baseline": "0.8.7",
24
+ "@altimateai/altimate-code-windows-x64": "0.8.7",
25
+ "@altimateai/altimate-code-linux-x64": "0.8.7",
26
+ "@altimateai/altimate-code-darwin-x64": "0.8.7",
27
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.8.7",
28
+ "@altimateai/altimate-code-darwin-arm64": "0.8.7",
29
+ "@altimateai/altimate-code-windows-x64-baseline": "0.8.7",
30
+ "@altimateai/altimate-code-linux-arm64": "0.8.7"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "pg": ">=8",
@@ -7,7 +7,7 @@ description: Analyze and optimize SQL queries for better performance
7
7
 
8
8
  ## Requirements
9
9
  **Agent:** any (read-only analysis)
10
- **Tools used:** sql_optimize, sql_analyze, sql_explain, altimate_core_equivalence, read, glob, schema_inspect, warehouse_list
10
+ **Tools used:** altimate_core_rewrite (with `verify_equivalence: true`), sql_analyze, sql_explain, read, glob, schema_inspect, warehouse_list
11
11
 
12
12
  Analyze SQL queries for performance issues and suggest concrete optimizations including rewritten SQL.
13
13
 
@@ -20,9 +20,9 @@ Analyze SQL queries for performance issues and suggest concrete optimizations in
20
20
 
21
21
  2. **Determine the dialect** -- Default to `snowflake`. If the user specifies a dialect (postgres, bigquery, duckdb, etc.), use that instead. Check the project for warehouse connections using `warehouse_list` if unsure.
22
22
 
23
- 3. **Run the optimizer**:
24
- - Call `sql_optimize` with the SQL, dialect, and schema context if available
25
- - If the user has a warehouse connection, first call `schema_inspect` on the relevant tables to build schema context for better optimization (e.g., SELECT * expansion)
23
+ 3. **Run the verified optimizer**:
24
+ - If the user has a warehouse connection, first call `schema_inspect` on the relevant tables to build schema context (needed both for better rewrites — e.g. SELECT * expansion — and to verify equivalence)
25
+ - Call `altimate_core_rewrite` with the SQL, schema context, and **`verify_equivalence: true`**. This proposes rewrites AND proves each one returns the same results as the original in a single step. The result is partitioned into **verified-equivalent** rewrites (safe to apply) and **unverified** rewrites (review before applying), so you never recommend a rewrite that silently changes semantics.
26
26
 
27
27
  4. **Run detailed analysis**:
28
28
  - Call `sql_analyze` with the same SQL and dialect to get the full anti-pattern breakdown with recommendations
@@ -32,10 +32,10 @@ Analyze SQL queries for performance issues and suggest concrete optimizations in
32
32
  - Look for: full table scans, sort operations on large datasets, inefficient join strategies, missing partition pruning
33
33
  - Include key findings in the report under "Execution Plan Insights"
34
34
 
35
- 6. **Verify rewrites preserve correctness**:
36
- - If `sql_optimize` produced a rewritten query, call `altimate_core_equivalence` to verify the original and optimized queries produce the same result set
37
- - If not equivalent, flag the difference and present both versions for the user to decide
38
- - This prevents "optimization" that silently changes query semantics
35
+ 6. **Equivalence verification is built into step 3** (`verify_equivalence: true`):
36
+ - Present the **verified-equivalent** rewrites as safe to apply.
37
+ - Present **unverified** rewrites separately with their reason ("review before applying") do not recommend applying these without manual review.
38
+ - If no schema was available, all rewrites come back unverified; say so and recommend supplying a schema (or a warehouse connection) to enable verification.
39
39
 
40
40
  7. **Present findings** in a structured format:
41
41
 
@@ -83,4 +83,4 @@ The user invokes this skill with SQL or a file path:
83
83
  - `/query-optimize models/staging/stg_orders.sql` -- Optimize SQL from a file
84
84
  - `/query-optimize` -- Optimize the most recently discussed SQL in the conversation
85
85
 
86
- Use the tools: `sql_optimize`, `sql_analyze`, `sql_explain` (execution plans), `altimate_core_equivalence` (rewrite verification), `read` (for file-based SQL), `glob` (to find SQL files), `schema_inspect` (for schema context), `warehouse_list` (to check connections).
86
+ Use the tools: `altimate_core_rewrite` with `verify_equivalence: true` (proposes rewrites AND proves they preserve results in one step), `sql_analyze`, `sql_explain` (execution plans), `read` (for file-based SQL), `glob` (to find SQL files), `schema_inspect` (for schema context), `warehouse_list` (to check connections).